From 3752241edd8861eff09872bc99245d0a337be577 Mon Sep 17 00:00:00 2001 From: Lean stage0 autoupdater <> Date: Fri, 29 Nov 2024 21:32:14 +0000 Subject: [PATCH] chore: update stage0 --- stage0/src/include/lean/lean.h | 16 +- stage0/src/runtime/io.cpp | 12 +- stage0/stdlib/Init/Data/Fin/Basic.c | 36 +- stage0/stdlib/Init/Data/List/Lemmas.c | 40 + stage0/stdlib/Init/Data/UInt/Basic.c | 52 + stage0/stdlib/Init/Data/UInt/Lemmas.c | 22071 +++++++++------- stage0/stdlib/Init/System/IO.c | 30 +- stage0/stdlib/Init/Util.c | 20 - stage0/stdlib/Lake/Load/Materialize.c | 2 +- stage0/stdlib/Lean/AddDecl.c | 1987 +- stage0/stdlib/Lean/Class.c | 4 +- stage0/stdlib/Lean/Compiler/CSimpAttr.c | 6 +- stage0/stdlib/Lean/Compiler/LCNF/FVarUtil.c | 8 +- stage0/stdlib/Lean/Compiler/LCNF/Main.c | 3970 ++- .../Lean/Compiler/LCNF/Simp/ConstantFold.c | 16 +- stage0/stdlib/Lean/CoreM.c | 3992 +-- stage0/stdlib/Lean/Elab/Command.c | 5989 ++--- stage0/stdlib/Lean/Elab/DefView.c | 38 +- stage0/stdlib/Lean/Elab/MutualDef.c | 50 +- stage0/stdlib/Lean/Elab/PreDefinition/Basic.c | 3978 ++- stage0/stdlib/Lean/Elab/PreDefinition/Main.c | 2003 +- .../Elab/PreDefinition/Structural/IndPred.c | 4211 +-- .../Elab/Tactic/BVDecide/Frontend/BVDecide.c | 10075 ++++--- .../Lean/Elab/Tactic/BVDecide/Frontend/LRAT.c | 9915 ++++--- .../Elab/Tactic/BVDecide/Frontend/Normalize.c | 2001 +- stage0/stdlib/Lean/Elab/Tactic/Basic.c | 2011 +- stage0/stdlib/Lean/Elab/Tactic/NormCast.c | 6069 ++--- .../stdlib/Lean/Elab/Tactic/Omega/Frontend.c | 4234 +-- stage0/stdlib/Lean/Elab/Term.c | 2037 +- stage0/stdlib/Lean/Environment.c | 484 +- stage0/stdlib/Lean/Expr.c | 26 +- stage0/stdlib/Lean/Language/Basic.c | 36 +- stage0/stdlib/Lean/Language/Lean.c | 1819 +- stage0/stdlib/Lean/Level.c | 4 +- stage0/stdlib/Lean/Meta/Basic.c | 2063 +- stage0/stdlib/Lean/Meta/Check.c | 2001 +- stage0/stdlib/Lean/Meta/Closure.c | 12 +- stage0/stdlib/Lean/Meta/ExprDefEq.c | 2024 +- stage0/stdlib/Lean/Meta/ExprLens.c | 8 +- stage0/stdlib/Lean/Meta/Injective.c | 2001 +- stage0/stdlib/Lean/Meta/LitValues.c | 18 +- stage0/stdlib/Lean/Meta/Match/MatchEqs.c | 2001 +- stage0/stdlib/Lean/Meta/SynthInstance.c | 10209 +++---- stage0/stdlib/Lean/Meta/Tactic/Backtrack.c | 3990 ++- stage0/stdlib/Lean/Meta/Tactic/FunInd.c | 10028 +++---- .../Lean/Meta/Tactic/Grind/Preprocessor.c | 118 +- .../stdlib/Lean/Meta/Tactic/LibrarySearch.c | 2001 +- .../Meta/Tactic/Simp/BuiltinSimprocs/UInt.c | 771 + stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c | 4 +- stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c | 4170 +-- .../Lean/Meta/Tactic/Simp/SimpTheorems.c | 2 +- stage0/stdlib/Lean/Meta/Tactic/Simp/Types.c | 118 +- stage0/stdlib/Lean/Meta/Transform.c | 10 +- stage0/stdlib/Lean/Meta/WHNF.c | 2001 +- .../Delaborator/TopDownAnalyze.c | 2001 +- stage0/stdlib/Lean/Server/Watchdog.c | 1963 +- stage0/stdlib/Lean/Util/Trace.c | 2126 +- .../stdlib/Std/Time/DateTime/PlainDateTime.c | 6 +- stage0/stdlib/Std/Time/Format.c | 34 +- stage0/stdlib/Std/Time/Format/Basic.c | 613 +- stage0/stdlib/Std/Time/Time/PlainTime.c | 32 +- stage0/stdlib/Std/Time/Time/Unit/Nanosecond.c | 39 +- stage0/stdlib/Std/Time/Zoned/Database.c | 579 +- stage0/stdlib/Std/Time/Zoned/Database/Basic.c | 4 +- stage0/stdlib/Std/Time/Zoned/Database/TZdb.c | 895 +- stage0/stdlib/Std/Time/Zoned/Database/TzIf.c | 62 +- 66 files changed, 72900 insertions(+), 66246 deletions(-) diff --git a/stage0/src/include/lean/lean.h b/stage0/src/include/lean/lean.h index c0b127058f..88ad3af320 100644 --- a/stage0/src/include/lean/lean.h +++ b/stage0/src/include/lean/lean.h @@ -1692,6 +1692,7 @@ static inline uint8_t lean_uint8_dec_le(uint8_t a1, uint8_t a2) { return a1 <= a static inline uint16_t lean_uint8_to_uint16(uint8_t a) { return ((uint16_t)a); } static inline uint32_t lean_uint8_to_uint32(uint8_t a) { return ((uint32_t)a); } static inline uint64_t lean_uint8_to_uint64(uint8_t a) { return ((uint64_t)a); } +static inline size_t lean_uint8_to_usize(uint8_t a) { return ((size_t)a); } /* UInt16 */ @@ -1727,6 +1728,7 @@ static inline uint8_t lean_uint16_dec_le(uint16_t a1, uint16_t a2) { return a1 < static inline uint8_t lean_uint16_to_uint8(uint16_t a) { return ((uint8_t)a); } static inline uint32_t lean_uint16_to_uint32(uint16_t a) { return ((uint32_t)a); } static inline uint64_t lean_uint16_to_uint64(uint16_t a) { return ((uint64_t)a); } +static inline size_t lean_uint16_to_usize(uint16_t a) { return ((size_t)a); } /* UInt32 */ @@ -1762,7 +1764,7 @@ static inline uint8_t lean_uint32_dec_le(uint32_t a1, uint32_t a2) { return a1 < static inline uint8_t lean_uint32_to_uint8(uint32_t a) { return ((uint8_t)a); } static inline uint16_t lean_uint32_to_uint16(uint32_t a) { return ((uint16_t)a); } static inline uint64_t lean_uint32_to_uint64(uint32_t a) { return ((uint64_t)a); } -static inline size_t lean_uint32_to_usize(uint32_t a) { return a; } +static inline size_t lean_uint32_to_usize(uint32_t a) { return ((size_t)a); } /* UInt64 */ @@ -1834,6 +1836,8 @@ static inline uint8_t lean_usize_dec_le(size_t a1, size_t a2) { return a1 <= a2; /* usize -> other */ +static inline uint8_t lean_usize_to_uint8(size_t a) { return ((uint8_t)a); } +static inline uint16_t lean_usize_to_uint16(size_t a) { return ((uint16_t)a); } static inline uint32_t lean_usize_to_uint32(size_t a) { return ((uint32_t)a); } static inline uint64_t lean_usize_to_uint64(size_t a) { return ((uint64_t)a); } @@ -2801,16 +2805,6 @@ static inline lean_obj_res lean_nat_pred(b_lean_obj_arg n) { return lean_nat_sub(n, lean_box(1)); } -static inline lean_obj_res lean_runtime_mark_multi_threaded(lean_obj_arg a) { - lean_mark_mt(a); - return a; -} - -static inline lean_obj_res lean_runtime_mark_persistent(lean_obj_arg a) { - lean_mark_persistent(a); - return a; -} - #ifdef __cplusplus } #endif diff --git a/stage0/src/runtime/io.cpp b/stage0/src/runtime/io.cpp index 8768c740b8..6e495b0f52 100644 --- a/stage0/src/runtime/io.cpp +++ b/stage0/src/runtime/io.cpp @@ -692,7 +692,7 @@ extern "C" LEAN_EXPORT obj_res lean_windows_get_next_transition(b_obj_arg timezo tm = (int64_t)(nextTransition / 1000.0); } - + int32_t dst_offset = ucal_get(cal, UCAL_DST_OFFSET, &status); if (U_FAILURE(status)) { @@ -1450,6 +1450,16 @@ extern "C" LEAN_EXPORT obj_res lean_io_exit(uint8_t code, obj_arg /* w */) { exit(code); } +extern "C" LEAN_EXPORT obj_res lean_runtime_mark_multi_threaded(obj_arg a, obj_arg /* w */) { + lean_mark_mt(a); + return io_result_mk_ok(a); +} + +extern "C" LEAN_EXPORT obj_res lean_runtime_mark_persistent(obj_arg a, obj_arg /* w */) { + lean_mark_persistent(a); + return io_result_mk_ok(a); +} + void initialize_io() { g_io_error_nullptr_read = lean_mk_io_user_error(mk_ascii_string_unchecked("null reference read")); mark_persistent(g_io_error_nullptr_read); diff --git a/stage0/stdlib/Init/Data/Fin/Basic.c b/stage0/stdlib/Init/Data/Fin/Basic.c index fd33331e24..1f5566122e 100644 --- a/stage0/stdlib/Init/Data/Fin/Basic.c +++ b/stage0/stdlib/Init/Data/Fin/Basic.c @@ -209,6 +209,24 @@ lean_dec(x_1); return x_2; } } +LEAN_EXPORT lean_object* l_Fin_ofNat_x27(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = lean_nat_mod(x_3, x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Fin_ofNat_x27___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Fin_ofNat_x27(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec(x_1); +return x_4; +} +} LEAN_EXPORT lean_object* l_Fin_ofNat(lean_object* x_1, lean_object* x_2) { _start: { @@ -230,24 +248,6 @@ lean_dec(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Fin_ofNat_x27(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = lean_nat_mod(x_3, x_1); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Fin_ofNat_x27___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Fin_ofNat_x27(x_1, x_2, x_3); -lean_dec(x_3); -lean_dec(x_1); -return x_4; -} -} LEAN_EXPORT lean_object* l_Fin_add(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { diff --git a/stage0/stdlib/Init/Data/List/Lemmas.c b/stage0/stdlib/Init/Data/List/Lemmas.c index bc0915346c..b5aaaee5bc 100644 --- a/stage0/stdlib/Init/Data/List/Lemmas.c +++ b/stage0/stdlib/Init/Data/List/Lemmas.c @@ -24,6 +24,7 @@ LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_splitAt_go_ma LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_findSome_x3f_match__1_splitter___rarg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_splitAt_go_match__1_splitter___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_filterMap__replicate_match__1_splitter___rarg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__GetElem_x3f_match__1_splitter___rarg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_partition_loop_match__1_splitter(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldlRecOn(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_getLastD_match__1_splitter(lean_object*, lean_object*); @@ -47,15 +48,54 @@ lean_object* lean_nat_sub(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_getLast_x21_match__1_splitter___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_foldl_match__1_splitter(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_filterMap__replicate_match__1_splitter___rarg___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__GetElem_x3f_match__1_splitter___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_foldl__filterMap_match__1_splitter___rarg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_foldl__filterMap_match__1_splitter___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_filter_match__1_splitter___rarg(uint8_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__Option_isSome_match__1_splitter___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__Option_isSome_match__1_splitter___rarg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_partition_loop_match__1_splitter___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__GetElem_x3f_match__1_splitter(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_getLast_match__1_splitter(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_filterMap__replicate_match__1_splitter(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_foldl__filterMap_match__1_splitter(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__GetElem_x3f_match__1_splitter___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_dec(x_2); +lean_inc(x_3); +return x_3; +} +else +{ +lean_object* x_4; lean_object* x_5; +x_4 = lean_ctor_get(x_1, 0); +lean_inc(x_4); +lean_dec(x_1); +x_5 = lean_apply_1(x_2, x_4); +return x_5; +} +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__GetElem_x3f_match__1_splitter(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l___private_Init_Data_List_Lemmas_0__GetElem_x3f_match__1_splitter___rarg___boxed), 3, 0); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__GetElem_x3f_match__1_splitter___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l___private_Init_Data_List_Lemmas_0__GetElem_x3f_match__1_splitter___rarg(x_1, x_2, x_3); +lean_dec(x_3); +return x_4; +} +} LEAN_EXPORT lean_object* l___private_Init_Data_List_Lemmas_0__List_foldl_match__1_splitter___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { diff --git a/stage0/stdlib/Init/Data/UInt/Basic.c b/stage0/stdlib/Init/Data/UInt/Basic.c index a8af294a31..dcb9d3a991 100644 --- a/stage0/stdlib/Init/Data/UInt/Basic.c +++ b/stage0/stdlib/Init/Data/UInt/Basic.c @@ -17,6 +17,7 @@ LEAN_EXPORT lean_object* l_UInt64_modn___boxed(lean_object*, lean_object*); uint8_t lean_uint8_sub(uint8_t, uint8_t); LEAN_EXPORT uint8_t l_instDecidableLtUInt16(uint16_t, uint16_t); LEAN_EXPORT lean_object* l_instComplementUInt32; +LEAN_EXPORT lean_object* l_USize_toUInt16___boxed(lean_object*); LEAN_EXPORT lean_object* l_USize_mul___boxed(lean_object*, lean_object*); lean_object* lean_uint16_to_nat(uint16_t); uint32_t lean_bool_to_uint32(uint8_t); @@ -60,6 +61,7 @@ size_t lean_uint64_to_usize(uint64_t); uint64_t lean_uint64_lor(uint64_t, uint64_t); LEAN_EXPORT lean_object* l_instMaxUInt64___boxed(lean_object*, lean_object*); static lean_object* l_instShiftLeftUInt64___closed__1; +uint8_t lean_usize_to_uint8(size_t); static lean_object* l_instHModUInt64Nat___closed__1; LEAN_EXPORT lean_object* l_instAddUInt16; uint32_t lean_uint32_complement(uint32_t); @@ -74,6 +76,7 @@ static lean_object* l_instDivUSize___closed__1; LEAN_EXPORT lean_object* l_USize_div___boxed(lean_object*, lean_object*); static lean_object* l_instShiftRightUInt8___closed__1; LEAN_EXPORT lean_object* l_UInt64_decLt___boxed(lean_object*, lean_object*); +size_t lean_uint8_to_usize(uint8_t); LEAN_EXPORT uint16_t l_instMaxUInt16(uint16_t, uint16_t); uint16_t lean_uint16_complement(uint16_t); LEAN_EXPORT lean_object* l_instOrOpUSize; @@ -101,6 +104,7 @@ LEAN_EXPORT lean_object* l_instMaxUInt8___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instAndOpUSize; LEAN_EXPORT lean_object* l_Nat_cast___at_UInt8_modn___spec__1(lean_object*); static lean_object* l_instAddUInt64___closed__1; +uint16_t lean_usize_to_uint16(size_t); uint64_t lean_uint64_land(uint64_t, uint64_t); static lean_object* l_instShiftRightUInt16___closed__1; LEAN_EXPORT lean_object* l_UInt64_add___boxed(lean_object*, lean_object*); @@ -172,6 +176,7 @@ LEAN_EXPORT lean_object* l_UInt8_mod___boxed(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_instDecidableLeUInt64(uint64_t, uint64_t); extern lean_object* l_System_Platform_numBits; LEAN_EXPORT lean_object* l_instHModUInt16Nat; +size_t lean_uint16_to_usize(uint16_t); lean_object* lean_usize_to_nat(size_t); static lean_object* l_instAddUInt32___closed__1; uint8_t lean_uint8_mul(uint8_t, uint8_t); @@ -260,11 +265,13 @@ uint32_t lean_uint32_lor(uint32_t, uint32_t); LEAN_EXPORT lean_object* l_instAndOpUInt32; LEAN_EXPORT lean_object* l_instXorUInt64; uint32_t lean_uint32_shift_left(uint32_t, uint32_t); +LEAN_EXPORT lean_object* l_UInt8_toUSize___boxed(lean_object*); uint8_t lean_uint64_dec_le(uint64_t, uint64_t); uint8_t lean_uint8_dec_le(uint8_t, uint8_t); uint64_t lean_uint64_shift_left(uint64_t, uint64_t); static lean_object* l_instShiftLeftUInt8___closed__1; uint8_t lean_uint8_shift_right(uint8_t, uint8_t); +LEAN_EXPORT lean_object* l_USize_toUInt8___boxed(lean_object*); LEAN_EXPORT lean_object* l_USize_shiftLeft___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instMinUSize___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instMinUInt64___boxed(lean_object*, lean_object*); @@ -276,6 +283,7 @@ static lean_object* l_instXorUInt8___closed__1; LEAN_EXPORT lean_object* l_instSubUInt16; LEAN_EXPORT uint16_t l_instMinUInt16(uint16_t, uint16_t); LEAN_EXPORT lean_object* l_UInt64_xor___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_UInt16_toUSize___boxed(lean_object*); LEAN_EXPORT lean_object* l_UInt16_modn(uint16_t, lean_object*); uint64_t lean_bool_to_uint64(uint8_t); LEAN_EXPORT lean_object* l_UInt32_land___boxed(lean_object*, lean_object*); @@ -2465,6 +2473,50 @@ x_4 = lean_box_usize(x_3); return x_4; } } +LEAN_EXPORT lean_object* l_UInt8_toUSize___boxed(lean_object* x_1) { +_start: +{ +uint8_t x_2; size_t x_3; lean_object* x_4; +x_2 = lean_unbox(x_1); +lean_dec(x_1); +x_3 = lean_uint8_to_usize(x_2); +x_4 = lean_box_usize(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_USize_toUInt8___boxed(lean_object* x_1) { +_start: +{ +size_t x_2; uint8_t x_3; lean_object* x_4; +x_2 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_3 = lean_usize_to_uint8(x_2); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_UInt16_toUSize___boxed(lean_object* x_1) { +_start: +{ +uint16_t x_2; size_t x_3; lean_object* x_4; +x_2 = lean_unbox(x_1); +lean_dec(x_1); +x_3 = lean_uint16_to_usize(x_2); +x_4 = lean_box_usize(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_USize_toUInt16___boxed(lean_object* x_1) { +_start: +{ +size_t x_2; uint16_t x_3; lean_object* x_4; +x_2 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_3 = lean_usize_to_uint16(x_2); +x_4 = lean_box(x_3); +return x_4; +} +} LEAN_EXPORT lean_object* l_UInt32_toUSize___boxed(lean_object* x_1) { _start: { diff --git a/stage0/stdlib/Init/Data/UInt/Lemmas.c b/stage0/stdlib/Init/Data/UInt/Lemmas.c index eb3c357452..7d536a1067 100644 --- a/stage0/stdlib/Init/Data/UInt/Lemmas.c +++ b/stage0/stdlib/Init/Data/UInt/Lemmas.c @@ -13,591 +13,737 @@ #ifdef __cplusplus extern "C" { #endif -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__365; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__232; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__412; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__74; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__482; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__36; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__478; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__210; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__93; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__373; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__123; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__119; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__467; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__71; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__313; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__296; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__56; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__224; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__464; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__387; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__393; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__288; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__30; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__34; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__177; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__290; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__132; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__8; +static lean_object* l_commandDeclare__uint__theorems_______closed__15; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__99; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__39; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__236; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__510; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__205; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__160; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__41; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__446; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__194; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__3; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__124; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__447; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__164; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__587; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__479; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__230; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__301; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__267; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__48; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__26; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__206; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__261; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__561; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__409; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__324; +static lean_object* l_commandDeclare__uint__theorems_______closed__5; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__359; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__184; lean_object* lean_mk_empty_array_with_capacity(lean_object*); -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__335; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__158; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__470; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__153; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__60; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__501; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__1; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__220; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__449; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__28; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__276; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__148; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__469; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__303; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__63; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__235; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__456; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__154; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__318; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__137; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__96; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__87; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__284; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__95; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__351; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__72; -LEAN_EXPORT size_t l_USize_instInhabited; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__316; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__433; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__259; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__342; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__481; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__420; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__392; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__401; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__191; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__12; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__248; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__179; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__356; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__442; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__515; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__353; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__24; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__190; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__271; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__174; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__483; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__300; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__113; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__173; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__321; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__102; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__31; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__180; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__42; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__504; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__189; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__192; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__524; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__134; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__46; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__527; -static lean_object* l_commandDeclare__uint__theorems_____closed__9; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__518; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__202; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__368; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__309; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__381; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__310; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__308; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__111; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__466; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__217; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__33; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__305; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__326; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__32; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__484; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__283; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__35; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__21; -static lean_object* l_commandDeclare__uint__theorems_____closed__5; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__171; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__327; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__436; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__227; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__269; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__387; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__309; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__1; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__489; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__228; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__76; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__438; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__142; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__552; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__220; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__474; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__478; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__402; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__406; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__7; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__258; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__6; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__182; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__134; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__24; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__303; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__450; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__482; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__84; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__33; +LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___boxed(lean_object**); +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__337; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__244; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__358; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__249; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__63; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__181; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__12; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__12; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__70; +LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__330; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__312; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__108; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__367; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__577; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__442; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__455; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__352; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__302; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__591; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__274; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__260; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__470; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__535; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__563; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__10; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__139; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__400; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__350; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__325; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__61; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__604; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__7; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__467; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__16; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__30; +lean_object* lean_array_push(lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__525; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__245; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__401; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__567; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__75; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__464; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__590; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__466; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__381; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__410; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__602; +lean_object* l_Lean_Syntax_getArgs(lean_object*); +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__456; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__114; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__9; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__437; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__314; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__317; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__583; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__16; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__530; +LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__71; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__275; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__413; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__159; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__411; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__4; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__375; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__485; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__66; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__49; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__279; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__284; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__546; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__538; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__348; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__440; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__557; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__569; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__483; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__548; +static lean_object* l_commandDeclare__uint__theorems_______closed__14; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__361; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__218; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__150; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__280; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__165; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__357; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__153; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__336; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__473; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__18; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__2; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__141; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__201; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__398; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__581; lean_object* l_Lean_Syntax_node5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__172; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__500; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__19; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__462; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__51; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__246; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__187; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__214; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__446; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__99; -static lean_object* l_commandDeclare__uint__theorems_____closed__1; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__465; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__459; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__343; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__240; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__445; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__415; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__245; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__426; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__68; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__138; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__160; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__486; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__345; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__238; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__184; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__164; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__40; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__81; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__194; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__315; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__45; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__376; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__362; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__23; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__94; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__183; -static lean_object* l_commandDeclare__uint__theorems_____closed__7; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__395; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__336; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__399; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__265; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__251; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__389; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__340; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__266; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__258; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__263; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__85; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__127; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__5; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__227; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__198; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__382; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__219; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__335; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__424; +LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___boxed(lean_object**); +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__186; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__13; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__463; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__319; +static lean_object* l_commandDeclare__uint__theorems_______closed__4; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__109; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__169; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__420; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__364; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__207; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__190; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__555; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__180; +static lean_object* l_commandDeclare__uint__theorems_______closed__9; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__363; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__320; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__329; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__5; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__5; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__229; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__558; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__559; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__425; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__334; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__542; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__354; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__499; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__136; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__1; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__7; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__83; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__5; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__210; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__21; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__532; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__465; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__234; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__81; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__369; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__35; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__239; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__290; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__271; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__421; lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__157; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__178; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__135; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__403; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__434; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__103; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__317; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__452; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__144; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__243; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__156; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__225; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__203; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__280; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__410; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__37; -LEAN_EXPORT lean_object* l_commandDeclare__uint__theorems__; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__38; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__6; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__223; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__226; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__78; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__441; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__76; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__90; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__255; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__479; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__182; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__98; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__382; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__288; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__15; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__183; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__211; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__192; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__459; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__513; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__107; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__428; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__484; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__349; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__31; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__243; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__96; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__172; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__534; +LEAN_EXPORT lean_object* l_commandDeclare__uint__theorems____; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__439; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__289; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__123; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__203; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__379; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__596; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__215; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__208; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__247; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__556; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__264; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__515; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__54; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__332; +static lean_object* l_commandDeclare__uint__theorems_______closed__1; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__128; +LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__265; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__345; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__568; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__566; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__188; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__16; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__399; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__44; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__221; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__540; lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__523; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__50; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__565; lean_object* l_Lean_Syntax_node6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__256; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__163; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__312; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__451; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__372; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__298; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__371; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__22; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__350; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__366; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__463; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__320; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__49; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__100; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__425; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__108; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__512; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__341; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__507; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__80; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__416; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__473; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__88; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__423; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__282; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__294; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__361; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__428; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__440; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__62; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__54; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__453; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__522; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__175; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__278; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__333; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__16; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__143; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__346; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__323; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__234; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__139; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__355; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__43; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__510; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__437; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__66; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__57; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__14; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__503; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__67; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__472; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__181; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__487; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__268; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__292; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__274; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__481; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__511; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__176; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__571; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__115; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__248; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__372; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__122; +LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__311; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__445; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__286; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__11; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__419; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__392; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__223; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__235; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__304; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__93; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__1; +static lean_object* l_commandDeclare__uint__theorems_______closed__12; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__10; +LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__497; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__270; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__29; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__95; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__276; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__104; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__458; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__431; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__14; +static lean_object* l_commandDeclare__uint__theorems_______closed__2; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__285; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__512; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__216; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__254; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__299; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__316; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__396; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__283; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__543; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__353; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__282; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__162; +static lean_object* l_commandDeclare__uint__theorems_______closed__7; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__341; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__103; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__496; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__595; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__272; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__490; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__140; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__1; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__3; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__593; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__444; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__6; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__338; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__576; lean_object* l_Lean_Syntax_node3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__9; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__429; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__480; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__162; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__359; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__391; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__186; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__207; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__348; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__418; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__127; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__69; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__145; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__404; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__125; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__253; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__193; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__477; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__58; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__417; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__205; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__374; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__325; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__233; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__492; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__237; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__424; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__17; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__511; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__338; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__29; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__115; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__378; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__432; -static lean_object* l_commandDeclare__uint__theorems_____closed__6; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__517; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__37; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__600; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__346; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__82; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__173; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__589; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__156; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__241; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__89; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__58; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__7; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__389; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__373; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__521; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__226; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__120; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__326; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__131; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__495; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__45; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__310; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__119; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__278; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__13; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__586; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__64; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__529; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__397; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__6; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__62; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__436; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__212; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__453; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__606; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__116; lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__509; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__295; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__55; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__495; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__77; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__505; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__114; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__307; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__92; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__27; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__253; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__415; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__238; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__13; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__8; lean_object* l_Lean_Syntax_node2(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__136; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__91; -LEAN_EXPORT uint16_t l_UInt16_instInhabited; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__366; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__384; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__74; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__368; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__196; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__7; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__254; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__10; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__236; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__526; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__334; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__270; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__61; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__64; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__488; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__242; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__170; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__352; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__447; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__208; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__140; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__2; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__385; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__461; -LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__384; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__47; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__116; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__405; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__421; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__414; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__454; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__489; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__409; -LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1(lean_object*, lean_object*, lean_object*); -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__519; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__185; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__394; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__506; -static lean_object* l_commandDeclare__uint__theorems_____closed__2; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__397; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__301; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__485; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__490; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__408; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__287; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__358; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__128; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__79; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__267; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__419; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__219; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__11; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__52; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__129; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__455; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__142; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__13; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__329; -static lean_object* l_commandDeclare__uint__theorems_____closed__8; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__158; +LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___boxed(lean_object**); +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__295; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__157; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__578; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__257; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__77; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__287; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__262; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__307; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__174; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__178; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__607; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__2; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__531; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__343; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__9; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__417; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__88; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__145; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__40; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__47; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__117; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__80; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__73; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__2; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__291; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__585; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__433; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__3; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__460; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__10; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__1; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__385; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__533; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__256; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__17; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__273; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__86; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__351; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__8; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__403; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__144; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__191; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__505; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__231; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__224; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__514; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__170; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__547; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__506; +static lean_object* l_commandDeclare__uint__theorems_______closed__6; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__393; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__56; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__204; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__404; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__597; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__4; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__246; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__486; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__318; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__2; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__454; lean_object* l_Lean_Syntax_node4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__200; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__297; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__50; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__458; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__347; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__293; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__165; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__257; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__286; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__379; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__386; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__450; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__117; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__215; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__244; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__110; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__101; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__146; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__204; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__228; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__26; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__84; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__82; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__5; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__306; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__130; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__262; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__302; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__491; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__502; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__273; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__166; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__339; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__133; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__375; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__147; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__411; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__496; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__398; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__151; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__408; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__471; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__536; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__199; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__53; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__493; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__232; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__429; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__550; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__161; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__522; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__427; +static lean_object* l_commandDeclare__uint__theorems_______closed__13; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__5; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__491; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__92; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__60; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__572; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__605; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__603; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__129; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__5; +LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___boxed(lean_object**); +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__300; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__386; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__281; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__394; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__171; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__526; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__79; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__501; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__65; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__87; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__430; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__189; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__305; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__143; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__4; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__94; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__340; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__163; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__34; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__322; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__4; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__321; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__423; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__588; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__222; +uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__138; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__168; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__298; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__166; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__277; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__105; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__195; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__377; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__371; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__443; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__414; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__461; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__360; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__22; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__75; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__222; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__516; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__122; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__212; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__73; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__328; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__176; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__369; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__513; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__188; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__177; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__380; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__8; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__242; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__8; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__112; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__418; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__508; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__237; lean_object* l_Lean_Syntax_node7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__344; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__17; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__52; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__225; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__296; lean_object* l_Lean_Syntax_node1(lean_object*, lean_object*, lean_object*); -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__448; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__430; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__529; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__149; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__218; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__241; -static lean_object* l_commandDeclare__uint__theorems_____closed__10; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__291; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__216; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__406; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__443; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__277; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__89; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__104; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__319; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__247; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__252; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__86; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__331; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__211; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__209; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__260; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__118; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__131; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__106; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__438; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__525; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__161; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__476; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__314; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__239; -static lean_object* l_commandDeclare__uint__theorems_____closed__4; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__105; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__229; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__197; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__474; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__521; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__383; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__388; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__520; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__444; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__121; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__457; -static lean_object* l_commandDeclare__uint__theorems_____closed__11; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__250; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__377; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__354; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__275; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__126; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__264; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__592; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__553; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__78; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__3; +static lean_object* l_commandDeclare__uint__theorems_______closed__10; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__488; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__462; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__179; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__240; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__376; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__331; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__125; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__259; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__549; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__43; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__504; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__90; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__426; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__4; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__554; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__110; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__6; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__293; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__97; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__355; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__575; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__441; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__42; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__594; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__388; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__395; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__544; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__519; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__539; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__422; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__111; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__570; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__315; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__167; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__25; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__560; +static lean_object* l_commandDeclare__uint__theorems_______closed__3; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__545; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__175; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__475; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__306; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__527; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__126; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__537; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__598; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__11; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__313; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__202; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__72; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__152; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__4; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__370; lean_object* lean_array_mk(lean_object*); -LEAN_EXPORT uint32_t l_UInt32_instInhabited; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__364; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__167; -LEAN_EXPORT uint64_t l_UInt64_instInhabited; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__112; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__44; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__41; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__70; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__427; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__107; -static lean_object* l_commandDeclare__uint__theorems_____closed__3; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__337; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__159; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__141; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__199; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__460; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__370; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__59; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__27; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__198; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__195; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__523; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__472; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__121; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__507; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__503; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__362; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__599; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__448; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__509; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__69; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__480; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__149; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__266; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__407; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__435; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__15; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__477; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__154; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__573; +static lean_object* l_commandDeclare__uint__theorems_______closed__11; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__12; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__3; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__452; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__541; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__98; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__132; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__252; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__146; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__432; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__185; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__344; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__51; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__251; +static lean_object* l_commandDeclare__uint__theorems_______closed__8; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__564; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__15; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__23; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__59; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__292; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__342; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__347; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__391; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__3; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__147; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__32; lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__514; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__402; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__396; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__289; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__413; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__431; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__124; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__439; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__48; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__168; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__150; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__493; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__471; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__390; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__285; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__422; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__279; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__349; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__155; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__332; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__517; -LEAN_EXPORT uint8_t l_UInt8_instInhabited; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__20; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__249; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__508; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__299; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__231; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__311; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__468; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__109; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__499; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__25; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__322; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__39; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__230; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__357; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__528; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__497; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__400; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__363; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__367; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__65; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__475; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__304; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__217; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__451; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__9; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__6; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__492; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__19; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__101; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__494; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__528; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__269; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__268; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__68; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__374; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__155; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__250; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__469; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__85; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__214; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__551; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__46; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__91; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__20; +lean_object* l_Lean_Syntax_isNatLit_x3f(lean_object*); +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__356; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__233; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__516; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__294; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__67; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__36; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__55; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__137; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__57; +uint8_t lean_nat_dec_le(lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__106; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__135; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__113; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__133; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__582; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__468; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__390; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__187; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__500; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__28; +LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__193; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__383; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__378; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__487; +LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1(lean_object*, lean_object*, lean_object*); +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__502; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__323; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__457; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__365; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__14; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__297; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__118; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__197; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__38; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__520; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__263; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__200; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__339; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__213; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__328; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__327; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__102; lean_object* l_String_toSubstring_x27(lean_object*); -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__494; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__213; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__407; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__272; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__8; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__83; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__330; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__261; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__18; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__221; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__360; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__324; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__498; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__380; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__206; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__435; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__281; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__201; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__152; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__97; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__53; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__169; -static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__120; -static lean_object* _init_l_commandDeclare__uint__theorems_____closed__1() { +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__2; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__449; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__333; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__562; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__498; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__308; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__416; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__412; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__100; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__518; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__584; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__574; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__151; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__434; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__14; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__255; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__405; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__148; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__7; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__130; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__524; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__579; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__580; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__601; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__476; +static lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__11; +static lean_object* _init_l_commandDeclare__uint__theorems_______closed__1() { _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("commandDeclare_uint_theorems_", 29, 29); +x_1 = lean_mk_string_unchecked("commandDeclare_uint_theorems__", 30, 30); return x_1; } } -static lean_object* _init_l_commandDeclare__uint__theorems_____closed__2() { +static lean_object* _init_l_commandDeclare__uint__theorems_______closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_commandDeclare__uint__theorems_____closed__1; +x_2 = l_commandDeclare__uint__theorems_______closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_commandDeclare__uint__theorems_____closed__3() { +static lean_object* _init_l_commandDeclare__uint__theorems_______closed__3() { _start: { lean_object* x_1; @@ -605,17 +751,17 @@ x_1 = lean_mk_string_unchecked("andthen", 7, 7); return x_1; } } -static lean_object* _init_l_commandDeclare__uint__theorems_____closed__4() { +static lean_object* _init_l_commandDeclare__uint__theorems_______closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_commandDeclare__uint__theorems_____closed__3; +x_2 = l_commandDeclare__uint__theorems_______closed__3; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_commandDeclare__uint__theorems_____closed__5() { +static lean_object* _init_l_commandDeclare__uint__theorems_______closed__5() { _start: { lean_object* x_1; @@ -623,17 +769,17 @@ x_1 = lean_mk_string_unchecked("declare_uint_theorems", 21, 21); return x_1; } } -static lean_object* _init_l_commandDeclare__uint__theorems_____closed__6() { +static lean_object* _init_l_commandDeclare__uint__theorems_______closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_commandDeclare__uint__theorems_____closed__5; +x_1 = l_commandDeclare__uint__theorems_______closed__5; x_2 = lean_alloc_ctor(5, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_commandDeclare__uint__theorems_____closed__7() { +static lean_object* _init_l_commandDeclare__uint__theorems_______closed__7() { _start: { lean_object* x_1; @@ -641,33 +787,33 @@ x_1 = lean_mk_string_unchecked("ident", 5, 5); return x_1; } } -static lean_object* _init_l_commandDeclare__uint__theorems_____closed__8() { +static lean_object* _init_l_commandDeclare__uint__theorems_______closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_commandDeclare__uint__theorems_____closed__7; +x_2 = l_commandDeclare__uint__theorems_______closed__7; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_commandDeclare__uint__theorems_____closed__9() { +static lean_object* _init_l_commandDeclare__uint__theorems_______closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_commandDeclare__uint__theorems_____closed__8; +x_1 = l_commandDeclare__uint__theorems_______closed__8; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_commandDeclare__uint__theorems_____closed__10() { +static lean_object* _init_l_commandDeclare__uint__theorems_______closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_commandDeclare__uint__theorems_____closed__4; -x_2 = l_commandDeclare__uint__theorems_____closed__6; -x_3 = l_commandDeclare__uint__theorems_____closed__9; +x_1 = l_commandDeclare__uint__theorems_______closed__4; +x_2 = l_commandDeclare__uint__theorems_______closed__6; +x_3 = l_commandDeclare__uint__theorems_______closed__9; x_4 = lean_alloc_ctor(2, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -675,13 +821,57 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_commandDeclare__uint__theorems_____closed__11() { +static lean_object* _init_l_commandDeclare__uint__theorems_______closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("term", 4, 4); +return x_1; +} +} +static lean_object* _init_l_commandDeclare__uint__theorems_______closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_commandDeclare__uint__theorems_______closed__11; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_commandDeclare__uint__theorems_______closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_commandDeclare__uint__theorems_______closed__12; +x_2 = lean_unsigned_to_nat(1023u); +x_3 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_commandDeclare__uint__theorems_______closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_commandDeclare__uint__theorems_____closed__2; +x_1 = l_commandDeclare__uint__theorems_______closed__4; +x_2 = l_commandDeclare__uint__theorems_______closed__10; +x_3 = l_commandDeclare__uint__theorems_______closed__13; +x_4 = lean_alloc_ctor(2, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_commandDeclare__uint__theorems_______closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_commandDeclare__uint__theorems_______closed__2; x_2 = lean_unsigned_to_nat(1022u); -x_3 = l_commandDeclare__uint__theorems_____closed__10; +x_3 = l_commandDeclare__uint__theorems_______closed__14; x_4 = lean_alloc_ctor(3, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -689,33 +879,15 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_commandDeclare__uint__theorems__() { +static lean_object* _init_l_commandDeclare__uint__theorems____() { _start: { lean_object* x_1; -x_1 = l_commandDeclare__uint__theorems_____closed__11; +x_1 = l_commandDeclare__uint__theorems_______closed__15; return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("null", 4, 4); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__1; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -723,7 +895,7 @@ x_1 = lean_mk_string_unchecked("Lean", 4, 4); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2() { _start: { lean_object* x_1; @@ -731,7 +903,7 @@ x_1 = lean_mk_string_unchecked("Parser", 6, 6); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__5() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__3() { _start: { lean_object* x_1; @@ -739,7 +911,1884 @@ x_1 = lean_mk_string_unchecked("Command", 7, 7); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__6() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("end", 3, 3); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__3; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__4; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; uint8_t x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_7 = lean_ctor_get(x_5, 5); +x_8 = 0; +x_9 = l_Lean_SourceInfo_fromRef(x_7, x_8); +x_10 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__4; +lean_inc(x_9); +x_11 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_11, 0, x_9); +lean_ctor_set(x_11, 1, x_10); +lean_inc(x_1); +lean_inc(x_9); +x_12 = l_Lean_Syntax_node1(x_9, x_1, x_2); +x_13 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__5; +x_14 = l_Lean_Syntax_node2(x_9, x_13, x_11, x_12); +x_15 = lean_array_push(x_3, x_14); +x_16 = lean_box(2); +x_17 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_1); +lean_ctor_set(x_17, 2, x_15); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_17); +lean_ctor_set(x_18, 1, x_6); +return x_18; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("@[", 2, 2); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("simp", 4, 4); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("]", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("theorem", 7, 7); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toNat_toUInt64", 14, 14); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__5; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__5; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("(", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(":", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__10() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(")", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("x.toUInt64.toNat", 16, 16); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__11; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__13() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("x", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__14() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toUInt64", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__15() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toNat", 5, 5); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__13; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__14; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__15; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__17() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("=", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__18() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(":=", 2, 2); +return x_1; +} +} +LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26, lean_object* x_27, lean_object* x_28, lean_object* x_29, lean_object* x_30) { +_start: +{ +lean_object* x_31; uint8_t x_32; +x_31 = lean_unsigned_to_nat(64u); +x_32 = lean_nat_dec_lt(x_1, x_31); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; +lean_dec(x_26); +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_23); +lean_dec(x_22); +lean_dec(x_21); +lean_dec(x_20); +lean_dec(x_19); +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_33 = lean_box(0); +x_34 = lean_apply_4(x_2, x_27, x_33, x_29, x_30); +return x_34; +} +else +{ +lean_object* x_35; uint8_t x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_35 = lean_ctor_get(x_29, 5); +lean_inc(x_35); +x_36 = 0; +x_37 = l_Lean_SourceInfo_fromRef(x_35, x_36); +lean_dec(x_35); +lean_inc(x_3); +lean_inc(x_37); +x_38 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_38, 0, x_37); +lean_ctor_set(x_38, 1, x_3); +lean_ctor_set(x_38, 2, x_4); +x_39 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__1; +lean_inc(x_37); +x_40 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_40, 0, x_37); +lean_ctor_set(x_40, 1, x_39); +lean_inc(x_38); +lean_inc(x_37); +x_41 = l_Lean_Syntax_node1(x_37, x_5, x_38); +x_42 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__2; +lean_inc(x_37); +x_43 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_43, 0, x_37); +lean_ctor_set(x_43, 1, x_42); +lean_inc_n(x_38, 3); +lean_inc(x_37); +x_44 = l_Lean_Syntax_node4(x_37, x_6, x_43, x_38, x_38, x_38); +lean_inc(x_37); +x_45 = l_Lean_Syntax_node2(x_37, x_7, x_41, x_44); +lean_inc(x_3); +lean_inc(x_37); +x_46 = l_Lean_Syntax_node1(x_37, x_3, x_45); +x_47 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__3; +lean_inc(x_37); +x_48 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_48, 0, x_37); +lean_ctor_set(x_48, 1, x_47); +lean_inc(x_37); +x_49 = l_Lean_Syntax_node3(x_37, x_8, x_40, x_46, x_48); +lean_inc(x_3); +lean_inc(x_37); +x_50 = l_Lean_Syntax_node1(x_37, x_3, x_49); +lean_inc_n(x_38, 5); +lean_inc(x_37); +x_51 = l_Lean_Syntax_node6(x_37, x_9, x_38, x_50, x_38, x_38, x_38, x_38); +x_52 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__4; +lean_inc(x_37); +x_53 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_53, 0, x_37); +lean_ctor_set(x_53, 1, x_52); +x_54 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__6; +x_55 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__7; +lean_inc(x_10); +lean_inc(x_37); +x_56 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_56, 0, x_37); +lean_ctor_set(x_56, 1, x_54); +lean_ctor_set(x_56, 2, x_55); +lean_ctor_set(x_56, 3, x_10); +lean_inc(x_38); +lean_inc(x_37); +x_57 = l_Lean_Syntax_node2(x_37, x_11, x_56, x_38); +x_58 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__8; +lean_inc(x_37); +x_59 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_59, 0, x_37); +lean_ctor_set(x_59, 1, x_58); +lean_inc(x_10); +lean_inc(x_37); +x_60 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_60, 0, x_37); +lean_ctor_set(x_60, 1, x_12); +lean_ctor_set(x_60, 2, x_13); +lean_ctor_set(x_60, 3, x_10); +lean_inc(x_3); +lean_inc(x_37); +x_61 = l_Lean_Syntax_node1(x_37, x_3, x_60); +x_62 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__9; +lean_inc(x_37); +x_63 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_63, 0, x_37); +lean_ctor_set(x_63, 1, x_62); +lean_inc(x_63); +lean_inc(x_3); +lean_inc(x_37); +x_64 = l_Lean_Syntax_node2(x_37, x_3, x_63, x_14); +x_65 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__10; +lean_inc(x_37); +x_66 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_66, 0, x_37); +lean_ctor_set(x_66, 1, x_65); +lean_inc(x_38); +lean_inc(x_37); +x_67 = l_Lean_Syntax_node5(x_37, x_15, x_59, x_61, x_64, x_38, x_66); +lean_inc(x_37); +x_68 = l_Lean_Syntax_node1(x_37, x_3, x_67); +x_69 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__12; +x_70 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__16; +lean_inc(x_10); +lean_inc(x_37); +x_71 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_71, 0, x_37); +lean_ctor_set(x_71, 1, x_69); +lean_ctor_set(x_71, 2, x_70); +lean_ctor_set(x_71, 3, x_10); +x_72 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__17; +lean_inc(x_37); +x_73 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_73, 0, x_37); +lean_ctor_set(x_73, 1, x_72); +lean_inc(x_10); +lean_inc(x_37); +x_74 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_74, 0, x_37); +lean_ctor_set(x_74, 1, x_16); +lean_ctor_set(x_74, 2, x_17); +lean_ctor_set(x_74, 3, x_10); +lean_inc(x_37); +x_75 = l_Lean_Syntax_node3(x_37, x_18, x_71, x_73, x_74); +lean_inc(x_37); +x_76 = l_Lean_Syntax_node2(x_37, x_19, x_63, x_75); +lean_inc(x_37); +x_77 = l_Lean_Syntax_node2(x_37, x_20, x_68, x_76); +x_78 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__18; +lean_inc(x_37); +x_79 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_79, 0, x_37); +lean_ctor_set(x_79, 1, x_78); +lean_inc(x_37); +x_80 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_80, 0, x_37); +lean_ctor_set(x_80, 1, x_21); +lean_ctor_set(x_80, 2, x_22); +lean_ctor_set(x_80, 3, x_10); +lean_inc_n(x_38, 2); +lean_inc(x_37); +x_81 = l_Lean_Syntax_node2(x_37, x_23, x_38, x_38); +lean_inc(x_37); +x_82 = l_Lean_Syntax_node4(x_37, x_24, x_79, x_80, x_81, x_38); +lean_inc(x_37); +x_83 = l_Lean_Syntax_node4(x_37, x_25, x_53, x_57, x_77, x_82); +x_84 = l_Lean_Syntax_node2(x_37, x_26, x_51, x_83); +x_85 = lean_array_push(x_27, x_84); +x_86 = lean_box(0); +x_87 = lean_apply_4(x_2, x_85, x_86, x_29, x_30); +return x_87; +} +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toNat_toUSize", 13, 13); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__1; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("x.toUSize.toNat", 15, 15); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__4; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toUSize", 7, 7); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__13; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__6; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__15; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("%", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__9() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("2", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__10() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("^", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("System.Platform.numBits", 23, 23); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__11; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__13() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("System", 6, 6); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__14() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Platform", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__15() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("numBits", 7, 7); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__13; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__14; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__15; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26, lean_object* x_27, lean_object* x_28, lean_object* x_29, lean_object* x_30, lean_object* x_31, lean_object* x_32, lean_object* x_33) { +_start: +{ +lean_object* x_34; uint8_t x_35; +x_34 = lean_unsigned_to_nat(32u); +x_35 = lean_nat_dec_le(x_1, x_34); +if (x_35 == 0) +{ +lean_object* x_36; uint8_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; +x_36 = lean_ctor_get(x_32, 5); +lean_inc(x_36); +x_37 = 0; +x_38 = l_Lean_SourceInfo_fromRef(x_36, x_37); +lean_dec(x_36); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_38); +x_39 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_39, 1, x_3); +lean_ctor_set(x_39, 2, x_4); +x_40 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__1; +lean_inc(x_38); +x_41 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_41, 0, x_38); +lean_ctor_set(x_41, 1, x_40); +lean_inc(x_39); +lean_inc(x_5); +lean_inc(x_38); +x_42 = l_Lean_Syntax_node1(x_38, x_5, x_39); +x_43 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__2; +lean_inc(x_38); +x_44 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_44, 0, x_38); +lean_ctor_set(x_44, 1, x_43); +lean_inc_n(x_39, 3); +lean_inc(x_6); +lean_inc(x_38); +x_45 = l_Lean_Syntax_node4(x_38, x_6, x_44, x_39, x_39, x_39); +lean_inc(x_7); +lean_inc(x_38); +x_46 = l_Lean_Syntax_node2(x_38, x_7, x_42, x_45); +lean_inc(x_3); +lean_inc(x_38); +x_47 = l_Lean_Syntax_node1(x_38, x_3, x_46); +x_48 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__3; +lean_inc(x_38); +x_49 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_49, 0, x_38); +lean_ctor_set(x_49, 1, x_48); +lean_inc(x_8); +lean_inc(x_38); +x_50 = l_Lean_Syntax_node3(x_38, x_8, x_41, x_47, x_49); +lean_inc(x_3); +lean_inc(x_38); +x_51 = l_Lean_Syntax_node1(x_38, x_3, x_50); +lean_inc_n(x_39, 5); +lean_inc(x_9); +lean_inc(x_38); +x_52 = l_Lean_Syntax_node6(x_38, x_9, x_39, x_51, x_39, x_39, x_39, x_39); +x_53 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__4; +lean_inc(x_38); +x_54 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_54, 0, x_38); +lean_ctor_set(x_54, 1, x_53); +x_55 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__2; +x_56 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__3; +lean_inc(x_10); +lean_inc(x_38); +x_57 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_57, 0, x_38); +lean_ctor_set(x_57, 1, x_55); +lean_ctor_set(x_57, 2, x_56); +lean_ctor_set(x_57, 3, x_10); +lean_inc(x_39); +lean_inc(x_11); +lean_inc(x_38); +x_58 = l_Lean_Syntax_node2(x_38, x_11, x_57, x_39); +x_59 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__8; +lean_inc(x_38); +x_60 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_60, 0, x_38); +lean_ctor_set(x_60, 1, x_59); +lean_inc(x_10); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_38); +x_61 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_61, 0, x_38); +lean_ctor_set(x_61, 1, x_12); +lean_ctor_set(x_61, 2, x_13); +lean_ctor_set(x_61, 3, x_10); +lean_inc(x_3); +lean_inc(x_38); +x_62 = l_Lean_Syntax_node1(x_38, x_3, x_61); +x_63 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__9; +lean_inc(x_38); +x_64 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_64, 0, x_38); +lean_ctor_set(x_64, 1, x_63); +lean_inc(x_14); +lean_inc(x_64); +lean_inc(x_3); +lean_inc(x_38); +x_65 = l_Lean_Syntax_node2(x_38, x_3, x_64, x_14); +x_66 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__10; +lean_inc(x_38); +x_67 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_67, 0, x_38); +lean_ctor_set(x_67, 1, x_66); +lean_inc(x_39); +lean_inc(x_15); +lean_inc(x_38); +x_68 = l_Lean_Syntax_node5(x_38, x_15, x_60, x_62, x_65, x_39, x_67); +lean_inc(x_3); +lean_inc(x_38); +x_69 = l_Lean_Syntax_node1(x_38, x_3, x_68); +x_70 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__5; +x_71 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__7; +lean_inc(x_10); +lean_inc(x_38); +x_72 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_72, 0, x_38); +lean_ctor_set(x_72, 1, x_70); +lean_ctor_set(x_72, 2, x_71); +lean_ctor_set(x_72, 3, x_10); +x_73 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__17; +lean_inc(x_38); +x_74 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_74, 0, x_38); +lean_ctor_set(x_74, 1, x_73); +lean_inc(x_10); +lean_inc(x_17); +lean_inc(x_16); +lean_inc(x_38); +x_75 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_75, 0, x_38); +lean_ctor_set(x_75, 1, x_16); +lean_ctor_set(x_75, 2, x_17); +lean_ctor_set(x_75, 3, x_10); +x_76 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__8; +lean_inc(x_38); +x_77 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_77, 0, x_38); +lean_ctor_set(x_77, 1, x_76); +x_78 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__9; +lean_inc(x_38); +x_79 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_79, 0, x_38); +lean_ctor_set(x_79, 1, x_78); +lean_inc(x_38); +x_80 = l_Lean_Syntax_node1(x_38, x_27, x_79); +x_81 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__10; +lean_inc(x_38); +x_82 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_82, 0, x_38); +lean_ctor_set(x_82, 1, x_81); +x_83 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__12; +x_84 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__16; +lean_inc(x_10); +lean_inc(x_38); +x_85 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_85, 0, x_38); +lean_ctor_set(x_85, 1, x_83); +lean_ctor_set(x_85, 2, x_84); +lean_ctor_set(x_85, 3, x_10); +lean_inc(x_38); +x_86 = l_Lean_Syntax_node3(x_38, x_28, x_80, x_82, x_85); +lean_inc(x_38); +x_87 = l_Lean_Syntax_node3(x_38, x_29, x_75, x_77, x_86); +lean_inc(x_18); +lean_inc(x_38); +x_88 = l_Lean_Syntax_node3(x_38, x_18, x_72, x_74, x_87); +lean_inc(x_19); +lean_inc(x_38); +x_89 = l_Lean_Syntax_node2(x_38, x_19, x_64, x_88); +lean_inc(x_20); +lean_inc(x_38); +x_90 = l_Lean_Syntax_node2(x_38, x_20, x_69, x_89); +x_91 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__18; +lean_inc(x_38); +x_92 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_92, 0, x_38); +lean_ctor_set(x_92, 1, x_91); +lean_inc(x_10); +lean_inc(x_22); +lean_inc(x_21); +lean_inc(x_38); +x_93 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_93, 0, x_38); +lean_ctor_set(x_93, 1, x_21); +lean_ctor_set(x_93, 2, x_22); +lean_ctor_set(x_93, 3, x_10); +lean_inc_n(x_39, 2); +lean_inc(x_23); +lean_inc(x_38); +x_94 = l_Lean_Syntax_node2(x_38, x_23, x_39, x_39); +lean_inc(x_24); +lean_inc(x_38); +x_95 = l_Lean_Syntax_node4(x_38, x_24, x_92, x_93, x_94, x_39); +lean_inc(x_25); +lean_inc(x_38); +x_96 = l_Lean_Syntax_node4(x_38, x_25, x_54, x_58, x_90, x_95); +lean_inc(x_26); +x_97 = l_Lean_Syntax_node2(x_38, x_26, x_52, x_96); +x_98 = lean_array_push(x_30, x_97); +x_99 = lean_box(0); +x_100 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_98, x_99, x_32, x_33); +return x_100; +} +else +{ +lean_object* x_101; uint8_t x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; +lean_dec(x_29); +lean_dec(x_28); +lean_dec(x_27); +x_101 = lean_ctor_get(x_32, 5); +lean_inc(x_101); +x_102 = 0; +x_103 = l_Lean_SourceInfo_fromRef(x_101, x_102); +lean_dec(x_101); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_103); +x_104 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_104, 0, x_103); +lean_ctor_set(x_104, 1, x_3); +lean_ctor_set(x_104, 2, x_4); +x_105 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__1; +lean_inc(x_103); +x_106 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_106, 0, x_103); +lean_ctor_set(x_106, 1, x_105); +lean_inc(x_104); +lean_inc(x_5); +lean_inc(x_103); +x_107 = l_Lean_Syntax_node1(x_103, x_5, x_104); +x_108 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__2; +lean_inc(x_103); +x_109 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_109, 0, x_103); +lean_ctor_set(x_109, 1, x_108); +lean_inc_n(x_104, 3); +lean_inc(x_6); +lean_inc(x_103); +x_110 = l_Lean_Syntax_node4(x_103, x_6, x_109, x_104, x_104, x_104); +lean_inc(x_7); +lean_inc(x_103); +x_111 = l_Lean_Syntax_node2(x_103, x_7, x_107, x_110); +lean_inc(x_3); +lean_inc(x_103); +x_112 = l_Lean_Syntax_node1(x_103, x_3, x_111); +x_113 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__3; +lean_inc(x_103); +x_114 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_114, 0, x_103); +lean_ctor_set(x_114, 1, x_113); +lean_inc(x_8); +lean_inc(x_103); +x_115 = l_Lean_Syntax_node3(x_103, x_8, x_106, x_112, x_114); +lean_inc(x_3); +lean_inc(x_103); +x_116 = l_Lean_Syntax_node1(x_103, x_3, x_115); +lean_inc_n(x_104, 5); +lean_inc(x_9); +lean_inc(x_103); +x_117 = l_Lean_Syntax_node6(x_103, x_9, x_104, x_116, x_104, x_104, x_104, x_104); +x_118 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__4; +lean_inc(x_103); +x_119 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_119, 0, x_103); +lean_ctor_set(x_119, 1, x_118); +x_120 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__2; +x_121 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__3; +lean_inc(x_10); +lean_inc(x_103); +x_122 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_122, 0, x_103); +lean_ctor_set(x_122, 1, x_120); +lean_ctor_set(x_122, 2, x_121); +lean_ctor_set(x_122, 3, x_10); +lean_inc(x_104); +lean_inc(x_11); +lean_inc(x_103); +x_123 = l_Lean_Syntax_node2(x_103, x_11, x_122, x_104); +x_124 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__8; +lean_inc(x_103); +x_125 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_125, 0, x_103); +lean_ctor_set(x_125, 1, x_124); +lean_inc(x_10); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_103); +x_126 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_126, 0, x_103); +lean_ctor_set(x_126, 1, x_12); +lean_ctor_set(x_126, 2, x_13); +lean_ctor_set(x_126, 3, x_10); +lean_inc(x_3); +lean_inc(x_103); +x_127 = l_Lean_Syntax_node1(x_103, x_3, x_126); +x_128 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__9; +lean_inc(x_103); +x_129 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_129, 0, x_103); +lean_ctor_set(x_129, 1, x_128); +lean_inc(x_14); +lean_inc(x_129); +lean_inc(x_3); +lean_inc(x_103); +x_130 = l_Lean_Syntax_node2(x_103, x_3, x_129, x_14); +x_131 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__10; +lean_inc(x_103); +x_132 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_132, 0, x_103); +lean_ctor_set(x_132, 1, x_131); +lean_inc(x_104); +lean_inc(x_15); +lean_inc(x_103); +x_133 = l_Lean_Syntax_node5(x_103, x_15, x_125, x_127, x_130, x_104, x_132); +lean_inc(x_3); +lean_inc(x_103); +x_134 = l_Lean_Syntax_node1(x_103, x_3, x_133); +x_135 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__5; +x_136 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__7; +lean_inc(x_10); +lean_inc(x_103); +x_137 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_137, 0, x_103); +lean_ctor_set(x_137, 1, x_135); +lean_ctor_set(x_137, 2, x_136); +lean_ctor_set(x_137, 3, x_10); +x_138 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__17; +lean_inc(x_103); +x_139 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_139, 0, x_103); +lean_ctor_set(x_139, 1, x_138); +lean_inc(x_10); +lean_inc(x_17); +lean_inc(x_16); +lean_inc(x_103); +x_140 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_140, 0, x_103); +lean_ctor_set(x_140, 1, x_16); +lean_ctor_set(x_140, 2, x_17); +lean_ctor_set(x_140, 3, x_10); +lean_inc(x_18); +lean_inc(x_103); +x_141 = l_Lean_Syntax_node3(x_103, x_18, x_137, x_139, x_140); +lean_inc(x_19); +lean_inc(x_103); +x_142 = l_Lean_Syntax_node2(x_103, x_19, x_129, x_141); +lean_inc(x_20); +lean_inc(x_103); +x_143 = l_Lean_Syntax_node2(x_103, x_20, x_134, x_142); +x_144 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__18; +lean_inc(x_103); +x_145 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_145, 0, x_103); +lean_ctor_set(x_145, 1, x_144); +lean_inc(x_10); +lean_inc(x_22); +lean_inc(x_21); +lean_inc(x_103); +x_146 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_146, 0, x_103); +lean_ctor_set(x_146, 1, x_21); +lean_ctor_set(x_146, 2, x_22); +lean_ctor_set(x_146, 3, x_10); +lean_inc_n(x_104, 2); +lean_inc(x_23); +lean_inc(x_103); +x_147 = l_Lean_Syntax_node2(x_103, x_23, x_104, x_104); +lean_inc(x_24); +lean_inc(x_103); +x_148 = l_Lean_Syntax_node4(x_103, x_24, x_145, x_146, x_147, x_104); +lean_inc(x_25); +lean_inc(x_103); +x_149 = l_Lean_Syntax_node4(x_103, x_25, x_119, x_123, x_143, x_148); +lean_inc(x_26); +x_150 = l_Lean_Syntax_node2(x_103, x_26, x_117, x_149); +x_151 = lean_array_push(x_30, x_150); +x_152 = lean_box(0); +x_153 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_151, x_152, x_32, x_33); +return x_153; +} +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toNat_toUInt32", 14, 14); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__1; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("x.toUInt32.toNat", 16, 16); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__4; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toUInt32", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__13; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__6; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__15; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("32", 2, 2); +return x_1; +} +} +LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26, lean_object* x_27, lean_object* x_28, lean_object* x_29, lean_object* x_30, lean_object* x_31, lean_object* x_32, lean_object* x_33) { +_start: +{ +lean_object* x_34; uint8_t x_35; +x_34 = lean_unsigned_to_nat(32u); +x_35 = lean_nat_dec_lt(x_1, x_34); +if (x_35 == 0) +{ +uint8_t x_36; +x_36 = lean_nat_dec_lt(x_34, x_1); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; +x_37 = lean_box(0); +x_38 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28, x_29, x_30, x_37, x_32, x_33); +return x_38; +} +else +{ +lean_object* x_39; uint8_t x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; +x_39 = lean_ctor_get(x_32, 5); +lean_inc(x_39); +x_40 = 0; +x_41 = l_Lean_SourceInfo_fromRef(x_39, x_40); +lean_dec(x_39); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_41); +x_42 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_42, 0, x_41); +lean_ctor_set(x_42, 1, x_3); +lean_ctor_set(x_42, 2, x_4); +x_43 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__1; +lean_inc(x_41); +x_44 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_44, 0, x_41); +lean_ctor_set(x_44, 1, x_43); +lean_inc(x_42); +lean_inc(x_5); +lean_inc(x_41); +x_45 = l_Lean_Syntax_node1(x_41, x_5, x_42); +x_46 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__2; +lean_inc(x_41); +x_47 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_47, 0, x_41); +lean_ctor_set(x_47, 1, x_46); +lean_inc_n(x_42, 3); +lean_inc(x_6); +lean_inc(x_41); +x_48 = l_Lean_Syntax_node4(x_41, x_6, x_47, x_42, x_42, x_42); +lean_inc(x_7); +lean_inc(x_41); +x_49 = l_Lean_Syntax_node2(x_41, x_7, x_45, x_48); +lean_inc(x_3); +lean_inc(x_41); +x_50 = l_Lean_Syntax_node1(x_41, x_3, x_49); +x_51 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__3; +lean_inc(x_41); +x_52 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_52, 0, x_41); +lean_ctor_set(x_52, 1, x_51); +lean_inc(x_8); +lean_inc(x_41); +x_53 = l_Lean_Syntax_node3(x_41, x_8, x_44, x_50, x_52); +lean_inc(x_3); +lean_inc(x_41); +x_54 = l_Lean_Syntax_node1(x_41, x_3, x_53); +lean_inc_n(x_42, 5); +lean_inc(x_9); +lean_inc(x_41); +x_55 = l_Lean_Syntax_node6(x_41, x_9, x_42, x_54, x_42, x_42, x_42, x_42); +x_56 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__4; +lean_inc(x_41); +x_57 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_57, 0, x_41); +lean_ctor_set(x_57, 1, x_56); +x_58 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__2; +x_59 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__3; +lean_inc(x_10); +lean_inc(x_41); +x_60 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_60, 0, x_41); +lean_ctor_set(x_60, 1, x_58); +lean_ctor_set(x_60, 2, x_59); +lean_ctor_set(x_60, 3, x_10); +lean_inc(x_42); +lean_inc(x_11); +lean_inc(x_41); +x_61 = l_Lean_Syntax_node2(x_41, x_11, x_60, x_42); +x_62 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__8; +lean_inc(x_41); +x_63 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_63, 0, x_41); +lean_ctor_set(x_63, 1, x_62); +lean_inc(x_10); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_41); +x_64 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_64, 0, x_41); +lean_ctor_set(x_64, 1, x_12); +lean_ctor_set(x_64, 2, x_13); +lean_ctor_set(x_64, 3, x_10); +lean_inc(x_3); +lean_inc(x_41); +x_65 = l_Lean_Syntax_node1(x_41, x_3, x_64); +x_66 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__9; +lean_inc(x_41); +x_67 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_67, 0, x_41); +lean_ctor_set(x_67, 1, x_66); +lean_inc(x_14); +lean_inc(x_67); +lean_inc(x_3); +lean_inc(x_41); +x_68 = l_Lean_Syntax_node2(x_41, x_3, x_67, x_14); +x_69 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__10; +lean_inc(x_41); +x_70 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_70, 0, x_41); +lean_ctor_set(x_70, 1, x_69); +lean_inc(x_42); +lean_inc(x_15); +lean_inc(x_41); +x_71 = l_Lean_Syntax_node5(x_41, x_15, x_63, x_65, x_68, x_42, x_70); +lean_inc(x_3); +lean_inc(x_41); +x_72 = l_Lean_Syntax_node1(x_41, x_3, x_71); +x_73 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__5; +x_74 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__7; +lean_inc(x_10); +lean_inc(x_41); +x_75 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_75, 0, x_41); +lean_ctor_set(x_75, 1, x_73); +lean_ctor_set(x_75, 2, x_74); +lean_ctor_set(x_75, 3, x_10); +x_76 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__17; +lean_inc(x_41); +x_77 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_77, 0, x_41); +lean_ctor_set(x_77, 1, x_76); +lean_inc(x_10); +lean_inc(x_17); +lean_inc(x_16); +lean_inc(x_41); +x_78 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_78, 0, x_41); +lean_ctor_set(x_78, 1, x_16); +lean_ctor_set(x_78, 2, x_17); +lean_ctor_set(x_78, 3, x_10); +x_79 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__8; +lean_inc(x_41); +x_80 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_80, 0, x_41); +lean_ctor_set(x_80, 1, x_79); +x_81 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__9; +lean_inc(x_41); +x_82 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_82, 0, x_41); +lean_ctor_set(x_82, 1, x_81); +lean_inc(x_27); +lean_inc(x_41); +x_83 = l_Lean_Syntax_node1(x_41, x_27, x_82); +x_84 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__10; +lean_inc(x_41); +x_85 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_85, 0, x_41); +lean_ctor_set(x_85, 1, x_84); +x_86 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__8; +lean_inc(x_41); +x_87 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_87, 0, x_41); +lean_ctor_set(x_87, 1, x_86); +lean_inc(x_27); +lean_inc(x_41); +x_88 = l_Lean_Syntax_node1(x_41, x_27, x_87); +lean_inc(x_28); +lean_inc(x_41); +x_89 = l_Lean_Syntax_node3(x_41, x_28, x_83, x_85, x_88); +lean_inc(x_29); +lean_inc(x_41); +x_90 = l_Lean_Syntax_node3(x_41, x_29, x_78, x_80, x_89); +lean_inc(x_18); +lean_inc(x_41); +x_91 = l_Lean_Syntax_node3(x_41, x_18, x_75, x_77, x_90); +lean_inc(x_19); +lean_inc(x_41); +x_92 = l_Lean_Syntax_node2(x_41, x_19, x_67, x_91); +lean_inc(x_20); +lean_inc(x_41); +x_93 = l_Lean_Syntax_node2(x_41, x_20, x_72, x_92); +x_94 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__18; +lean_inc(x_41); +x_95 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_95, 0, x_41); +lean_ctor_set(x_95, 1, x_94); +lean_inc(x_10); +lean_inc(x_22); +lean_inc(x_21); +lean_inc(x_41); +x_96 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_96, 0, x_41); +lean_ctor_set(x_96, 1, x_21); +lean_ctor_set(x_96, 2, x_22); +lean_ctor_set(x_96, 3, x_10); +lean_inc_n(x_42, 2); +lean_inc(x_23); +lean_inc(x_41); +x_97 = l_Lean_Syntax_node2(x_41, x_23, x_42, x_42); +lean_inc(x_24); +lean_inc(x_41); +x_98 = l_Lean_Syntax_node4(x_41, x_24, x_95, x_96, x_97, x_42); +lean_inc(x_25); +lean_inc(x_41); +x_99 = l_Lean_Syntax_node4(x_41, x_25, x_57, x_61, x_93, x_98); +lean_inc(x_26); +x_100 = l_Lean_Syntax_node2(x_41, x_26, x_55, x_99); +x_101 = lean_array_push(x_30, x_100); +x_102 = lean_box(0); +x_103 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28, x_29, x_101, x_102, x_32, x_33); +return x_103; +} +} +else +{ +lean_object* x_104; uint8_t x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; +x_104 = lean_ctor_get(x_32, 5); +lean_inc(x_104); +x_105 = 0; +x_106 = l_Lean_SourceInfo_fromRef(x_104, x_105); +lean_dec(x_104); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_106); +x_107 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_107, 0, x_106); +lean_ctor_set(x_107, 1, x_3); +lean_ctor_set(x_107, 2, x_4); +x_108 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__1; +lean_inc(x_106); +x_109 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_109, 0, x_106); +lean_ctor_set(x_109, 1, x_108); +lean_inc(x_107); +lean_inc(x_5); +lean_inc(x_106); +x_110 = l_Lean_Syntax_node1(x_106, x_5, x_107); +x_111 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__2; +lean_inc(x_106); +x_112 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_112, 0, x_106); +lean_ctor_set(x_112, 1, x_111); +lean_inc_n(x_107, 3); +lean_inc(x_6); +lean_inc(x_106); +x_113 = l_Lean_Syntax_node4(x_106, x_6, x_112, x_107, x_107, x_107); +lean_inc(x_7); +lean_inc(x_106); +x_114 = l_Lean_Syntax_node2(x_106, x_7, x_110, x_113); +lean_inc(x_3); +lean_inc(x_106); +x_115 = l_Lean_Syntax_node1(x_106, x_3, x_114); +x_116 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__3; +lean_inc(x_106); +x_117 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_117, 0, x_106); +lean_ctor_set(x_117, 1, x_116); +lean_inc(x_8); +lean_inc(x_106); +x_118 = l_Lean_Syntax_node3(x_106, x_8, x_109, x_115, x_117); +lean_inc(x_3); +lean_inc(x_106); +x_119 = l_Lean_Syntax_node1(x_106, x_3, x_118); +lean_inc_n(x_107, 5); +lean_inc(x_9); +lean_inc(x_106); +x_120 = l_Lean_Syntax_node6(x_106, x_9, x_107, x_119, x_107, x_107, x_107, x_107); +x_121 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__4; +lean_inc(x_106); +x_122 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_122, 0, x_106); +lean_ctor_set(x_122, 1, x_121); +x_123 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__2; +x_124 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__3; +lean_inc(x_10); +lean_inc(x_106); +x_125 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_125, 0, x_106); +lean_ctor_set(x_125, 1, x_123); +lean_ctor_set(x_125, 2, x_124); +lean_ctor_set(x_125, 3, x_10); +lean_inc(x_107); +lean_inc(x_11); +lean_inc(x_106); +x_126 = l_Lean_Syntax_node2(x_106, x_11, x_125, x_107); +x_127 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__8; +lean_inc(x_106); +x_128 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_128, 0, x_106); +lean_ctor_set(x_128, 1, x_127); +lean_inc(x_10); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_106); +x_129 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_129, 0, x_106); +lean_ctor_set(x_129, 1, x_12); +lean_ctor_set(x_129, 2, x_13); +lean_ctor_set(x_129, 3, x_10); +lean_inc(x_3); +lean_inc(x_106); +x_130 = l_Lean_Syntax_node1(x_106, x_3, x_129); +x_131 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__9; +lean_inc(x_106); +x_132 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_132, 0, x_106); +lean_ctor_set(x_132, 1, x_131); +lean_inc(x_14); +lean_inc(x_132); +lean_inc(x_3); +lean_inc(x_106); +x_133 = l_Lean_Syntax_node2(x_106, x_3, x_132, x_14); +x_134 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__10; +lean_inc(x_106); +x_135 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_135, 0, x_106); +lean_ctor_set(x_135, 1, x_134); +lean_inc(x_107); +lean_inc(x_15); +lean_inc(x_106); +x_136 = l_Lean_Syntax_node5(x_106, x_15, x_128, x_130, x_133, x_107, x_135); +lean_inc(x_3); +lean_inc(x_106); +x_137 = l_Lean_Syntax_node1(x_106, x_3, x_136); +x_138 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__5; +x_139 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__7; +lean_inc(x_10); +lean_inc(x_106); +x_140 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_140, 0, x_106); +lean_ctor_set(x_140, 1, x_138); +lean_ctor_set(x_140, 2, x_139); +lean_ctor_set(x_140, 3, x_10); +x_141 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__17; +lean_inc(x_106); +x_142 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_142, 0, x_106); +lean_ctor_set(x_142, 1, x_141); +lean_inc(x_10); +lean_inc(x_17); +lean_inc(x_16); +lean_inc(x_106); +x_143 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_143, 0, x_106); +lean_ctor_set(x_143, 1, x_16); +lean_ctor_set(x_143, 2, x_17); +lean_ctor_set(x_143, 3, x_10); +lean_inc(x_18); +lean_inc(x_106); +x_144 = l_Lean_Syntax_node3(x_106, x_18, x_140, x_142, x_143); +lean_inc(x_19); +lean_inc(x_106); +x_145 = l_Lean_Syntax_node2(x_106, x_19, x_132, x_144); +lean_inc(x_20); +lean_inc(x_106); +x_146 = l_Lean_Syntax_node2(x_106, x_20, x_137, x_145); +x_147 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__18; +lean_inc(x_106); +x_148 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_148, 0, x_106); +lean_ctor_set(x_148, 1, x_147); +lean_inc(x_10); +lean_inc(x_22); +lean_inc(x_21); +lean_inc(x_106); +x_149 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_149, 0, x_106); +lean_ctor_set(x_149, 1, x_21); +lean_ctor_set(x_149, 2, x_22); +lean_ctor_set(x_149, 3, x_10); +lean_inc_n(x_107, 2); +lean_inc(x_23); +lean_inc(x_106); +x_150 = l_Lean_Syntax_node2(x_106, x_23, x_107, x_107); +lean_inc(x_24); +lean_inc(x_106); +x_151 = l_Lean_Syntax_node4(x_106, x_24, x_148, x_149, x_150, x_107); +lean_inc(x_25); +lean_inc(x_106); +x_152 = l_Lean_Syntax_node4(x_106, x_25, x_122, x_126, x_146, x_151); +lean_inc(x_26); +x_153 = l_Lean_Syntax_node2(x_106, x_26, x_120, x_152); +x_154 = lean_array_push(x_30, x_153); +x_155 = lean_box(0); +x_156 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28, x_29, x_154, x_155, x_32, x_33); +return x_156; +} +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toNat_toUInt16", 14, 14); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__1; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("x.toUInt16.toNat", 16, 16); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__4; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toUInt16", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__13; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__6; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__15; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("16", 2, 2); +return x_1; +} +} +LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21, lean_object* x_22, lean_object* x_23, lean_object* x_24, lean_object* x_25, lean_object* x_26, lean_object* x_27, lean_object* x_28, lean_object* x_29, lean_object* x_30, lean_object* x_31, lean_object* x_32, lean_object* x_33) { +_start: +{ +lean_object* x_34; uint8_t x_35; +x_34 = lean_unsigned_to_nat(16u); +x_35 = lean_nat_dec_lt(x_1, x_34); +if (x_35 == 0) +{ +uint8_t x_36; +x_36 = lean_nat_dec_lt(x_34, x_1); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; +x_37 = lean_box(0); +x_38 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28, x_29, x_30, x_37, x_32, x_33); +return x_38; +} +else +{ +lean_object* x_39; uint8_t x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; +x_39 = lean_ctor_get(x_32, 5); +lean_inc(x_39); +x_40 = 0; +x_41 = l_Lean_SourceInfo_fromRef(x_39, x_40); +lean_dec(x_39); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_41); +x_42 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_42, 0, x_41); +lean_ctor_set(x_42, 1, x_3); +lean_ctor_set(x_42, 2, x_4); +x_43 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__1; +lean_inc(x_41); +x_44 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_44, 0, x_41); +lean_ctor_set(x_44, 1, x_43); +lean_inc(x_42); +lean_inc(x_5); +lean_inc(x_41); +x_45 = l_Lean_Syntax_node1(x_41, x_5, x_42); +x_46 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__2; +lean_inc(x_41); +x_47 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_47, 0, x_41); +lean_ctor_set(x_47, 1, x_46); +lean_inc_n(x_42, 3); +lean_inc(x_6); +lean_inc(x_41); +x_48 = l_Lean_Syntax_node4(x_41, x_6, x_47, x_42, x_42, x_42); +lean_inc(x_7); +lean_inc(x_41); +x_49 = l_Lean_Syntax_node2(x_41, x_7, x_45, x_48); +lean_inc(x_3); +lean_inc(x_41); +x_50 = l_Lean_Syntax_node1(x_41, x_3, x_49); +x_51 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__3; +lean_inc(x_41); +x_52 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_52, 0, x_41); +lean_ctor_set(x_52, 1, x_51); +lean_inc(x_8); +lean_inc(x_41); +x_53 = l_Lean_Syntax_node3(x_41, x_8, x_44, x_50, x_52); +lean_inc(x_3); +lean_inc(x_41); +x_54 = l_Lean_Syntax_node1(x_41, x_3, x_53); +lean_inc_n(x_42, 5); +lean_inc(x_9); +lean_inc(x_41); +x_55 = l_Lean_Syntax_node6(x_41, x_9, x_42, x_54, x_42, x_42, x_42, x_42); +x_56 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__4; +lean_inc(x_41); +x_57 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_57, 0, x_41); +lean_ctor_set(x_57, 1, x_56); +x_58 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__2; +x_59 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__3; +lean_inc(x_10); +lean_inc(x_41); +x_60 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_60, 0, x_41); +lean_ctor_set(x_60, 1, x_58); +lean_ctor_set(x_60, 2, x_59); +lean_ctor_set(x_60, 3, x_10); +lean_inc(x_42); +lean_inc(x_11); +lean_inc(x_41); +x_61 = l_Lean_Syntax_node2(x_41, x_11, x_60, x_42); +x_62 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__8; +lean_inc(x_41); +x_63 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_63, 0, x_41); +lean_ctor_set(x_63, 1, x_62); +lean_inc(x_10); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_41); +x_64 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_64, 0, x_41); +lean_ctor_set(x_64, 1, x_12); +lean_ctor_set(x_64, 2, x_13); +lean_ctor_set(x_64, 3, x_10); +lean_inc(x_3); +lean_inc(x_41); +x_65 = l_Lean_Syntax_node1(x_41, x_3, x_64); +x_66 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__9; +lean_inc(x_41); +x_67 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_67, 0, x_41); +lean_ctor_set(x_67, 1, x_66); +lean_inc(x_14); +lean_inc(x_67); +lean_inc(x_3); +lean_inc(x_41); +x_68 = l_Lean_Syntax_node2(x_41, x_3, x_67, x_14); +x_69 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__10; +lean_inc(x_41); +x_70 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_70, 0, x_41); +lean_ctor_set(x_70, 1, x_69); +lean_inc(x_42); +lean_inc(x_15); +lean_inc(x_41); +x_71 = l_Lean_Syntax_node5(x_41, x_15, x_63, x_65, x_68, x_42, x_70); +lean_inc(x_3); +lean_inc(x_41); +x_72 = l_Lean_Syntax_node1(x_41, x_3, x_71); +x_73 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__5; +x_74 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__7; +lean_inc(x_10); +lean_inc(x_41); +x_75 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_75, 0, x_41); +lean_ctor_set(x_75, 1, x_73); +lean_ctor_set(x_75, 2, x_74); +lean_ctor_set(x_75, 3, x_10); +x_76 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__17; +lean_inc(x_41); +x_77 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_77, 0, x_41); +lean_ctor_set(x_77, 1, x_76); +lean_inc(x_10); +lean_inc(x_17); +lean_inc(x_16); +lean_inc(x_41); +x_78 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_78, 0, x_41); +lean_ctor_set(x_78, 1, x_16); +lean_ctor_set(x_78, 2, x_17); +lean_ctor_set(x_78, 3, x_10); +x_79 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__8; +lean_inc(x_41); +x_80 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_80, 0, x_41); +lean_ctor_set(x_80, 1, x_79); +x_81 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__9; +lean_inc(x_41); +x_82 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_82, 0, x_41); +lean_ctor_set(x_82, 1, x_81); +lean_inc(x_27); +lean_inc(x_41); +x_83 = l_Lean_Syntax_node1(x_41, x_27, x_82); +x_84 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__10; +lean_inc(x_41); +x_85 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_85, 0, x_41); +lean_ctor_set(x_85, 1, x_84); +x_86 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__8; +lean_inc(x_41); +x_87 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_87, 0, x_41); +lean_ctor_set(x_87, 1, x_86); +lean_inc(x_27); +lean_inc(x_41); +x_88 = l_Lean_Syntax_node1(x_41, x_27, x_87); +lean_inc(x_28); +lean_inc(x_41); +x_89 = l_Lean_Syntax_node3(x_41, x_28, x_83, x_85, x_88); +lean_inc(x_29); +lean_inc(x_41); +x_90 = l_Lean_Syntax_node3(x_41, x_29, x_78, x_80, x_89); +lean_inc(x_18); +lean_inc(x_41); +x_91 = l_Lean_Syntax_node3(x_41, x_18, x_75, x_77, x_90); +lean_inc(x_19); +lean_inc(x_41); +x_92 = l_Lean_Syntax_node2(x_41, x_19, x_67, x_91); +lean_inc(x_20); +lean_inc(x_41); +x_93 = l_Lean_Syntax_node2(x_41, x_20, x_72, x_92); +x_94 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__18; +lean_inc(x_41); +x_95 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_95, 0, x_41); +lean_ctor_set(x_95, 1, x_94); +lean_inc(x_10); +lean_inc(x_22); +lean_inc(x_21); +lean_inc(x_41); +x_96 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_96, 0, x_41); +lean_ctor_set(x_96, 1, x_21); +lean_ctor_set(x_96, 2, x_22); +lean_ctor_set(x_96, 3, x_10); +lean_inc_n(x_42, 2); +lean_inc(x_23); +lean_inc(x_41); +x_97 = l_Lean_Syntax_node2(x_41, x_23, x_42, x_42); +lean_inc(x_24); +lean_inc(x_41); +x_98 = l_Lean_Syntax_node4(x_41, x_24, x_95, x_96, x_97, x_42); +lean_inc(x_25); +lean_inc(x_41); +x_99 = l_Lean_Syntax_node4(x_41, x_25, x_57, x_61, x_93, x_98); +lean_inc(x_26); +x_100 = l_Lean_Syntax_node2(x_41, x_26, x_55, x_99); +x_101 = lean_array_push(x_30, x_100); +x_102 = lean_box(0); +x_103 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28, x_29, x_101, x_102, x_32, x_33); +return x_103; +} +} +else +{ +lean_object* x_104; uint8_t x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; +x_104 = lean_ctor_get(x_32, 5); +lean_inc(x_104); +x_105 = 0; +x_106 = l_Lean_SourceInfo_fromRef(x_104, x_105); +lean_dec(x_104); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_106); +x_107 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_107, 0, x_106); +lean_ctor_set(x_107, 1, x_3); +lean_ctor_set(x_107, 2, x_4); +x_108 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__1; +lean_inc(x_106); +x_109 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_109, 0, x_106); +lean_ctor_set(x_109, 1, x_108); +lean_inc(x_107); +lean_inc(x_5); +lean_inc(x_106); +x_110 = l_Lean_Syntax_node1(x_106, x_5, x_107); +x_111 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__2; +lean_inc(x_106); +x_112 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_112, 0, x_106); +lean_ctor_set(x_112, 1, x_111); +lean_inc_n(x_107, 3); +lean_inc(x_6); +lean_inc(x_106); +x_113 = l_Lean_Syntax_node4(x_106, x_6, x_112, x_107, x_107, x_107); +lean_inc(x_7); +lean_inc(x_106); +x_114 = l_Lean_Syntax_node2(x_106, x_7, x_110, x_113); +lean_inc(x_3); +lean_inc(x_106); +x_115 = l_Lean_Syntax_node1(x_106, x_3, x_114); +x_116 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__3; +lean_inc(x_106); +x_117 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_117, 0, x_106); +lean_ctor_set(x_117, 1, x_116); +lean_inc(x_8); +lean_inc(x_106); +x_118 = l_Lean_Syntax_node3(x_106, x_8, x_109, x_115, x_117); +lean_inc(x_3); +lean_inc(x_106); +x_119 = l_Lean_Syntax_node1(x_106, x_3, x_118); +lean_inc_n(x_107, 5); +lean_inc(x_9); +lean_inc(x_106); +x_120 = l_Lean_Syntax_node6(x_106, x_9, x_107, x_119, x_107, x_107, x_107, x_107); +x_121 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__4; +lean_inc(x_106); +x_122 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_122, 0, x_106); +lean_ctor_set(x_122, 1, x_121); +x_123 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__2; +x_124 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__3; +lean_inc(x_10); +lean_inc(x_106); +x_125 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_125, 0, x_106); +lean_ctor_set(x_125, 1, x_123); +lean_ctor_set(x_125, 2, x_124); +lean_ctor_set(x_125, 3, x_10); +lean_inc(x_107); +lean_inc(x_11); +lean_inc(x_106); +x_126 = l_Lean_Syntax_node2(x_106, x_11, x_125, x_107); +x_127 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__8; +lean_inc(x_106); +x_128 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_128, 0, x_106); +lean_ctor_set(x_128, 1, x_127); +lean_inc(x_10); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_106); +x_129 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_129, 0, x_106); +lean_ctor_set(x_129, 1, x_12); +lean_ctor_set(x_129, 2, x_13); +lean_ctor_set(x_129, 3, x_10); +lean_inc(x_3); +lean_inc(x_106); +x_130 = l_Lean_Syntax_node1(x_106, x_3, x_129); +x_131 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__9; +lean_inc(x_106); +x_132 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_132, 0, x_106); +lean_ctor_set(x_132, 1, x_131); +lean_inc(x_14); +lean_inc(x_132); +lean_inc(x_3); +lean_inc(x_106); +x_133 = l_Lean_Syntax_node2(x_106, x_3, x_132, x_14); +x_134 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__10; +lean_inc(x_106); +x_135 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_135, 0, x_106); +lean_ctor_set(x_135, 1, x_134); +lean_inc(x_107); +lean_inc(x_15); +lean_inc(x_106); +x_136 = l_Lean_Syntax_node5(x_106, x_15, x_128, x_130, x_133, x_107, x_135); +lean_inc(x_3); +lean_inc(x_106); +x_137 = l_Lean_Syntax_node1(x_106, x_3, x_136); +x_138 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__5; +x_139 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__7; +lean_inc(x_10); +lean_inc(x_106); +x_140 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_140, 0, x_106); +lean_ctor_set(x_140, 1, x_138); +lean_ctor_set(x_140, 2, x_139); +lean_ctor_set(x_140, 3, x_10); +x_141 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__17; +lean_inc(x_106); +x_142 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_142, 0, x_106); +lean_ctor_set(x_142, 1, x_141); +lean_inc(x_10); +lean_inc(x_17); +lean_inc(x_16); +lean_inc(x_106); +x_143 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_143, 0, x_106); +lean_ctor_set(x_143, 1, x_16); +lean_ctor_set(x_143, 2, x_17); +lean_ctor_set(x_143, 3, x_10); +lean_inc(x_18); +lean_inc(x_106); +x_144 = l_Lean_Syntax_node3(x_106, x_18, x_140, x_142, x_143); +lean_inc(x_19); +lean_inc(x_106); +x_145 = l_Lean_Syntax_node2(x_106, x_19, x_132, x_144); +lean_inc(x_20); +lean_inc(x_106); +x_146 = l_Lean_Syntax_node2(x_106, x_20, x_137, x_145); +x_147 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__18; +lean_inc(x_106); +x_148 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_148, 0, x_106); +lean_ctor_set(x_148, 1, x_147); +lean_inc(x_10); +lean_inc(x_22); +lean_inc(x_21); +lean_inc(x_106); +x_149 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_149, 0, x_106); +lean_ctor_set(x_149, 1, x_21); +lean_ctor_set(x_149, 2, x_22); +lean_ctor_set(x_149, 3, x_10); +lean_inc_n(x_107, 2); +lean_inc(x_23); +lean_inc(x_106); +x_150 = l_Lean_Syntax_node2(x_106, x_23, x_107, x_107); +lean_inc(x_24); +lean_inc(x_106); +x_151 = l_Lean_Syntax_node4(x_106, x_24, x_148, x_149, x_150, x_107); +lean_inc(x_25); +lean_inc(x_106); +x_152 = l_Lean_Syntax_node4(x_106, x_25, x_122, x_126, x_146, x_151); +lean_inc(x_26); +x_153 = l_Lean_Syntax_node2(x_106, x_26, x_120, x_152); +x_154 = lean_array_push(x_30, x_153); +x_155 = lean_box(0); +x_156 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28, x_29, x_154, x_155, x_32, x_33); +return x_156; +} +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("null", 4, 4); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__3() { _start: { lean_object* x_1; @@ -747,19 +2796,19 @@ x_1 = lean_mk_string_unchecked("namespace", 9, 9); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__7() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__5; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__6; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__3; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__3; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__8() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__5() { _start: { lean_object* x_1; @@ -767,19 +2816,19 @@ x_1 = lean_mk_string_unchecked("declaration", 11, 11); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__9() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__5; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__8; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__3; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__5; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__10() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__7() { _start: { lean_object* x_1; @@ -787,19 +2836,19 @@ x_1 = lean_mk_string_unchecked("declModifiers", 13, 13); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__11() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__5; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__10; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__3; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__7; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__12() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; @@ -808,339 +2857,19 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__13() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("instance", 8, 8); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__14() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__5; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__13; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__3; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__4; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Term", 4, 4); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__16() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("attrKind", 8, 8); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__17() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__16; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__18() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("declSig", 7, 7); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__19() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__5; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__18; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__20() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("typeSpec", 8, 8); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__21() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__20; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__22() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked(":", 1, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__23() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("app", 3, 3); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__24() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__23; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__25() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Inhabited", 9, 9); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__26() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__25; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__27() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__25; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__28() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("whereStructInst", 15, 15); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__29() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__5; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__28; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__30() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("where", 5, 5); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__31() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("structInstFields", 16, 16); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__32() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__31; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__33() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("whereStructField", 16, 16); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__34() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__5; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__33; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__35() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("letDecl", 7, 7); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__36() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__35; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__37() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("letIdDecl", 9, 9); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__38() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__37; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__39() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("default", 7, 7); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__40() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__39; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__41() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__39; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__42() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked(":=", 2, 2); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__43() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("num", 3, 3); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__44() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__43; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__45() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("0", 1, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__46() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("theorem", 7, 7); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__47() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__5; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__46; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__48() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__11() { _start: { lean_object* x_1; @@ -1148,19 +2877,19 @@ x_1 = lean_mk_string_unchecked("declId", 6, 6); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__49() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__5; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__48; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__3; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__11; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__50() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__13() { _start: { lean_object* x_1; @@ -1168,26 +2897,74 @@ x_1 = lean_mk_string_unchecked("zero_def", 8, 8); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__51() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__50; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__13; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__52() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__50; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__53() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__16() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("declSig", 7, 7); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__3; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__16; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Term", 4, 4); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__19() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("typeSpec", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__19; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__21() { _start: { lean_object* x_1; @@ -1195,17 +2972,17 @@ x_1 = lean_mk_string_unchecked("term_=_", 7, 7); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__54() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__53; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__21; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__55() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__23() { _start: { lean_object* x_1; @@ -1213,43 +2990,45 @@ x_1 = lean_mk_string_unchecked("typeAscription", 14, 14); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__56() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__55; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__23; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__57() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__25() { _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("(", 1, 1); +x_1 = lean_mk_string_unchecked("num", 3, 3); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__58() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__26() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__25; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__27() { _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked(")", 1, 1); +x_1 = lean_mk_string_unchecked("0", 1, 1); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__59() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("=", 1, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__60() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__28() { _start: { lean_object* x_1; @@ -1257,19 +3036,19 @@ x_1 = lean_mk_string_unchecked("anonymousCtor", 13, 13); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__61() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__60; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__28; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__62() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__30() { _start: { lean_object* x_1; @@ -1277,7 +3056,7 @@ x_1 = lean_mk_string_unchecked("⟨", 3, 1); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__63() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__31() { _start: { lean_object* x_1; @@ -1285,7 +3064,7 @@ x_1 = lean_mk_string_unchecked("⟩", 3, 1); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__64() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__32() { _start: { lean_object* x_1; @@ -1293,19 +3072,19 @@ x_1 = lean_mk_string_unchecked("declValSimple", 13, 13); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__65() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__5; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__64; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__3; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__32; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__66() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__34() { _start: { lean_object* x_1; @@ -1313,26 +3092,26 @@ x_1 = lean_mk_string_unchecked("rfl", 3, 3); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__67() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__35() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__66; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__34; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__68() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__36() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__66; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__34; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__69() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__37() { _start: { lean_object* x_1; @@ -1340,7 +3119,7 @@ x_1 = lean_mk_string_unchecked("Termination", 11, 11); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__70() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__38() { _start: { lean_object* x_1; @@ -1348,19 +3127,19 @@ x_1 = lean_mk_string_unchecked("suffix", 6, 6); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__71() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__39() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__69; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__70; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__37; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__38; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__72() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__40() { _start: { lean_object* x_1; @@ -1368,26 +3147,26 @@ x_1 = lean_mk_string_unchecked("one_def", 7, 7); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__73() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__41() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__72; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__40; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__74() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__42() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__72; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__40; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__75() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__43() { _start: { lean_object* x_1; @@ -1395,7 +3174,7 @@ x_1 = lean_mk_string_unchecked("1", 1, 1); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__76() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__44() { _start: { lean_object* x_1; @@ -1403,26 +3182,26 @@ x_1 = lean_mk_string_unchecked("sub_def", 7, 7); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__77() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__45() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__76; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__44; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__78() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__46() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__76; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__44; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__79() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__47() { _start: { lean_object* x_1; @@ -1430,19 +3209,19 @@ x_1 = lean_mk_string_unchecked("explicitBinder", 14, 14); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__80() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__48() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__79; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__47; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__81() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__49() { _start: { lean_object* x_1; @@ -1450,26 +3229,26 @@ x_1 = lean_mk_string_unchecked("a", 1, 1); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__82() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__50() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__81; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__49; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__83() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__51() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__81; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__49; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__84() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__52() { _start: { lean_object* x_1; @@ -1477,26 +3256,26 @@ x_1 = lean_mk_string_unchecked("b", 1, 1); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__85() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__53() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__84; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__52; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__86() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__54() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__84; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__52; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__87() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__55() { _start: { lean_object* x_1; @@ -1504,17 +3283,17 @@ x_1 = lean_mk_string_unchecked("term_-_", 7, 7); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__88() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__56() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__87; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__55; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__89() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__57() { _start: { lean_object* x_1; @@ -1522,7 +3301,7 @@ x_1 = lean_mk_string_unchecked("-", 1, 1); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__90() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__58() { _start: { lean_object* x_1; @@ -1530,16 +3309,16 @@ x_1 = lean_mk_string_unchecked("a.toBitVec", 10, 10); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__91() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__59() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__90; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__58; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__92() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__60() { _start: { lean_object* x_1; @@ -1547,17 +3326,17 @@ x_1 = lean_mk_string_unchecked("toBitVec", 8, 8); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__93() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__61() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__81; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__92; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__49; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__60; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__94() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__62() { _start: { lean_object* x_1; @@ -1565,26 +3344,26 @@ x_1 = lean_mk_string_unchecked("b.toBitVec", 10, 10); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__95() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__63() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__94; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__62; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__96() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__64() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__84; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__92; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__52; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__60; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__97() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__65() { _start: { lean_object* x_1; @@ -1592,26 +3371,26 @@ x_1 = lean_mk_string_unchecked("mul_def", 7, 7); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__98() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__66() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__97; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__65; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__99() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__67() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__97; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__65; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__100() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__68() { _start: { lean_object* x_1; @@ -1619,17 +3398,17 @@ x_1 = lean_mk_string_unchecked("term_*_", 7, 7); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__101() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__69() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__100; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__68; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__102() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__70() { _start: { lean_object* x_1; @@ -1637,7 +3416,7 @@ x_1 = lean_mk_string_unchecked("*", 1, 1); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__103() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__71() { _start: { lean_object* x_1; @@ -1645,26 +3424,26 @@ x_1 = lean_mk_string_unchecked("mod_def", 7, 7); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__104() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__72() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__103; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__71; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__105() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__73() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__103; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__71; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__106() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__74() { _start: { lean_object* x_1; @@ -1672,25 +3451,17 @@ x_1 = lean_mk_string_unchecked("term_%_", 7, 7); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__107() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__75() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__106; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__74; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__108() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("%", 1, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__109() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__76() { _start: { lean_object* x_1; @@ -1698,26 +3469,26 @@ x_1 = lean_mk_string_unchecked("add_def", 7, 7); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__110() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__77() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__109; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__76; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__111() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__78() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__109; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__76; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__112() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__79() { _start: { lean_object* x_1; @@ -1725,17 +3496,17 @@ x_1 = lean_mk_string_unchecked("term_+_", 7, 7); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__113() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__80() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__112; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__79; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__114() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__81() { _start: { lean_object* x_1; @@ -1743,7 +3514,7 @@ x_1 = lean_mk_string_unchecked("+", 1, 1); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__115() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__82() { _start: { lean_object* x_1; @@ -1751,27 +3522,19 @@ x_1 = lean_mk_string_unchecked("attributes", 10, 10); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__116() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__83() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__115; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__82; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__117() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("@[", 2, 2); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__118() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__84() { _start: { lean_object* x_1; @@ -1779,19 +3542,39 @@ x_1 = lean_mk_string_unchecked("attrInstance", 12, 12); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__119() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__85() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__118; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__84; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__120() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__86() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("attrKind", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__87() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__86; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__88() { _start: { lean_object* x_1; @@ -1799,420 +3582,46 @@ x_1 = lean_mk_string_unchecked("Attr", 4, 4); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__121() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("simp", 4, 4); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__122() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__89() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__120; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__121; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__88; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__2; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__123() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__90() { _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("]", 1, 1); +x_1 = lean_mk_string_unchecked("toNat_mk", 8, 8); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__124() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("mk_toBitVec_eq", 14, 14); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__125() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__91() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__124; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__90; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__126() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__92() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__124; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__90; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__127() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("forall", 6, 6); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__128() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__127; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__129() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("∀", 3, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__130() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked(",", 1, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__131() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("mk", 2, 2); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__132() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__131; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__133() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__131; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__134() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("declValEqns", 11, 11); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__135() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__5; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__134; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__136() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("matchAltsWhereDecls", 19, 19); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__137() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__136; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__138() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("matchAlts", 9, 9); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__139() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__138; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__140() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("matchAlt", 8, 8); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__141() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__140; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__142() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("|", 1, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__143() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("hole", 4, 4); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__144() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__143; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__145() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("_", 1, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__146() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("=>", 2, 2); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__147() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("toBitVec_eq_of_lt", 17, 17); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__148() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__147; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__149() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__147; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__150() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("implicitBinder", 14, 14); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__151() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__150; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__152() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("{", 1, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__153() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Nat", 3, 3); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__154() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__153; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__155() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__153; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__156() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("}", 1, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__157() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("arrow", 5, 5); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__158() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__157; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__159() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("term_<_", 7, 7); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__160() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__159; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__161() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("<", 1, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__162() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("size", 4, 4); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__163() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__162; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__164() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__162; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__165() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("→", 3, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__166() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__93() { _start: { lean_object* x_1; @@ -2220,19 +3629,19 @@ x_1 = lean_mk_string_unchecked("proj", 4, 4); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__167() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__94() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__166; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__93; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__168() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__95() { _start: { lean_object* x_1; @@ -2240,46 +3649,66 @@ x_1 = lean_mk_string_unchecked("paren", 5, 5); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__169() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__96() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__168; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__95; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__170() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__97() { _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("ofNat", 5, 5); +x_1 = lean_mk_string_unchecked("app", 3, 3); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__171() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__98() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__97; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__99() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("mk", 2, 2); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__100() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__170; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__99; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__172() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__101() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__170; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__99; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__173() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__102() { _start: { lean_object* x_1; @@ -2287,1788 +3716,26 @@ x_1 = lean_mk_string_unchecked(".", 1, 1); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__174() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("toBitVec.toNat", 14, 14); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__175() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__103() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__174; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__15; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__176() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("toNat", 5, 5); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__177() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__92; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__176; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__178() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Nat.mod_eq_of_lt", 16, 16); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__179() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__178; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__180() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("mod_eq_of_lt", 12, 12); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__181() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__153; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__180; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__182() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("toNat_ofNat_of_lt", 17, 17); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__183() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__182; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__184() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__104() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__182; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__15; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__185() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("n", 1, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__186() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__185; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__187() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__185; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__188() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("h", 1, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__189() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__188; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__190() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__188; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__191() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__176; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__192() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__176; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__193() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("byTactic", 8, 8); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__194() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__193; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__195() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("by", 2, 2); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Tactic", 6, 6); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__197() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("tacticSeq", 9, 9); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__198() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__197; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__199() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("tacticSeq1Indented", 18, 18); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__200() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__199; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__201() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("rwSeq", 5, 5); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__202() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__201; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__203() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("rw", 2, 2); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__204() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("optConfig", 9, 9); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__205() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__204; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__206() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("rwRuleSeq", 9, 9); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__207() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__206; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__208() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("[", 1, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__209() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("rwRule", 6, 6); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__210() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__209; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__211() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("le_def", 6, 6); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__212() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__211; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__213() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__211; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__214() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("term_↔_", 9, 7); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__215() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__214; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__216() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("term_≤_", 9, 7); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__217() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__216; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__218() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("≤", 3, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__219() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("↔", 3, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__220() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("dotIdent", 8, 8); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__221() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__220; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__222() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("lt_def", 6, 6); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__223() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__222; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__224() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__222; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__225() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("protected", 9, 9); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__226() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__5; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__225; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__227() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("not_le", 6, 6); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__228() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__227; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__229() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__227; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__230() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("term¬_", 7, 6); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__231() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__230; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__232() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("¬", 2, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__233() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__121; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__234() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("simpLemma", 9, 9); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__235() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__234; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__236() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("not_lt", 6, 6); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__237() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__236; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__238() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__236; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__239() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("le_refl", 7, 7); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__240() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__239; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__241() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__239; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__242() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("lt_irrefl", 9, 9); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__243() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__242; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__244() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__242; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__245() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("le_trans", 8, 8); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__246() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__245; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__247() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__245; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__248() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("c", 1, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__249() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__248; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__250() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__248; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__251() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("BitVec.le_trans", 15, 15); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__252() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__251; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__253() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("BitVec", 6, 6); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__254() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__253; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__245; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__255() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("lt_trans", 8, 8); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__256() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__255; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__257() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__255; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__258() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("BitVec.lt_trans", 15, 15); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__259() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__258; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__260() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__253; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__255; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__261() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("le_total", 8, 8); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__262() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__261; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__263() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__261; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__264() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("term_∨_", 9, 7); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__265() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__264; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__266() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("∨", 3, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__267() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("BitVec.le_total", 15, 15); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__268() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__267; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__269() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__253; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__261; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__270() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("ellipsis", 8, 8); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__271() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__270; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__272() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("..", 2, 2); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__273() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("lt_asymm", 8, 8); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__274() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__273; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__275() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__273; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__276() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("BitVec.lt_asymm", 15, 15); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__277() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__276; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__278() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__253; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__273; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__279() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("toBitVec_eq_of_eq", 17, 17); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__280() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__279; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__281() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__279; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__282() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("subst", 5, 5); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__283() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__282; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__284() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("▸", 3, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__285() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("eq_of_toBitVec_eq", 17, 17); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__286() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__285; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__287() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__285; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__288() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("cases", 5, 5); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__289() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__288; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__290() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("casesTarget", 11, 11); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__291() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__290; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__292() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked(";", 1, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__293() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("simpAll", 7, 7); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__294() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__293; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__295() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("simp_all", 8, 8); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__296() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("in", 2, 2); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__297() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__5; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__296; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__298() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("open", 4, 4); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__299() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__5; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__298; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__300() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("openOnly", 8, 8); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__301() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__5; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__300; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__302() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("eq_of_val_eq", 12, 12); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__303() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__302; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__304() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__302; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__305() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("a.val", 5, 5); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__306() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__305; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__307() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("val", 3, 3); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__308() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__81; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__307; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__309() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("b.val", 5, 5); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__310() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__309; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__311() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__84; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__307; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__312() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("rcases", 6, 6); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__313() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__312; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__314() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("with", 4, 4); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__315() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("rcasesPatLo", 11, 11); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__316() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__315; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__317() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("rcasesPatMed", 12, 12); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__318() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__317; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__319() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("rcasesPat", 9, 9); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__320() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("tuple", 5, 5); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__321() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__319; -x_5 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__320; -x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); -return x_6; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__322() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("ignore", 6, 6); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__323() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__319; -x_5 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__322; -x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); -return x_6; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__324() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__307; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__325() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__307; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__326() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("ne_of_toBitVec_ne", 17, 17); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__327() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__326; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__328() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__326; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__329() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("term_≠_", 9, 7); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__330() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__329; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__331() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("≠", 3, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__332() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("fun", 3, 3); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__333() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__332; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__334() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("basicFun", 8, 8); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__335() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__334; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__336() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("h'", 2, 2); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__337() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__336; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__338() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__336; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__339() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("absurd", 6, 6); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__340() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__339; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__341() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__339; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__342() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("ne_of_lt", 8, 8); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__343() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__342; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__344() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__342; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__345() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("apply", 5, 5); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__346() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__345; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__347() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("BitVec.ne_of_lt", 15, 15); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__348() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__347; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__349() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__253; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__342; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__350() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("simpa", 5, 5); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__351() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__350; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__352() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("simpaArgsRest", 13, 13); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__353() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__352; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__354() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("simpArgs", 8, 8); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__355() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__354; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__356() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("using", 5, 5); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__357() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("toNat_zero", 10, 10); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__358() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__357; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__359() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__357; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__360() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Nat.zero_mod", 12, 12); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__361() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__360; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__362() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("zero_mod", 8, 8); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__363() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__153; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__362; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__364() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("toNat_mod", 9, 9); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__365() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__364; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__366() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__364; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__367() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__105() { _start: { lean_object* x_1; @@ -4076,969 +3743,26 @@ x_1 = lean_mk_string_unchecked("a.toNat", 7, 7); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__368() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__106() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__367; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__105; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__369() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__107() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__81; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__176; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__49; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__15; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__370() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("b.toNat", 7, 7); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__371() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__370; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__372() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__84; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__176; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__373() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("BitVec.toNat_umod", 17, 17); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__374() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__373; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__375() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("toNat_umod", 10, 10); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__376() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__253; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__375; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__377() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("toNat_div", 9, 9); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__378() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__377; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__379() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__377; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__380() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("term_/_", 7, 7); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__381() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__380; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__382() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("/", 1, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__383() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("BitVec.toNat_udiv", 17, 17); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__384() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__383; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__385() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("toNat_udiv", 10, 10); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__386() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__253; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__385; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__387() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("toNat_sub_of_le", 15, 15); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__388() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__387; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__389() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__387; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__390() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("BitVec.toNat_sub_of_le", 22, 22); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__391() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__390; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__392() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__253; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__387; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__393() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("toNat_lt_size", 13, 13); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__394() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__393; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__395() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__393; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__396() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("a.toBitVec.isLt", 15, 15); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__397() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__396; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__398() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("isLt", 4, 4); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__399() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__81; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__92; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__398; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__400() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("toNat_mod_lt", 12, 12); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__401() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__400; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__402() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__400; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__403() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("m", 1, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__404() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__403; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__405() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__403; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__406() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("u", 1, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__407() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__406; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__408() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__406; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__409() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("term_>_", 7, 7); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__410() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__409; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__411() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked(">", 1, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__412() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("intro", 5, 5); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__413() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__412; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__414() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("h1", 2, 2); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__415() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__414; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__416() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__414; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__417() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("tacticBy_cases_:_", 17, 17); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__418() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__417; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__419() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("by_cases", 8, 8); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__420() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("h2", 2, 2); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__421() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__420; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__422() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__420; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__423() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("cdot", 4, 4); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__424() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__423; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__425() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("cdotTk", 6, 6); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__426() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__425; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__427() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("patternIgnore", 13, 13); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__428() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__427; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__429() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("token", 5, 5); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__430() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("· ", 3, 2); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__431() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__429; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__430; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__432() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("·", 2, 1); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__433() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Nat.mod_lt", 10, 10); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__434() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__433; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__435() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("mod_lt", 6, 6); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__436() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__153; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__435; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__437() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Nat.lt_of_lt_of_le", 18, 18); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__438() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__437; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__439() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("lt_of_lt_of_le", 14, 14); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__440() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__153; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__439; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__441() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("set_option", 10, 10); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__442() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__5; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__441; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__443() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("linter.deprecated", 17, 17); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__444() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__443; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__445() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("linter", 6, 6); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__446() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("deprecated", 10, 10); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__447() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__445; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__446; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__448() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("false", 5, 5); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__449() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__446; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__450() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("since", 5, 5); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__451() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("str", 3, 3); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__452() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__451; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__453() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("\"2024-09-24\"", 12, 12); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__454() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("modn_lt", 7, 7); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__455() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__454; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__456() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__454; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__457() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("only", 4, 4); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__458() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__423; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__459() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("gt_iff_lt", 9, 9); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__460() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__459; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__461() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__459; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__462() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("modn", 4, 4); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__463() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__462; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__464() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__462; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__465() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Fin.modn_val", 12, 12); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__466() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__465; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__467() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("Fin", 3, 3); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__468() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("modn_val", 8, 8); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__469() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__467; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__468; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__470() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("BitVec.natCast_eq_ofNat", 23, 23); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__471() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__470; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__472() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("natCast_eq_ofNat", 16, 16); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__473() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__253; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__472; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__474() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("BitVec.toNat_ofNat", 18, 18); -return x_1; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__475() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__474; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__476() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__108() { _start: { lean_object* x_1; @@ -5046,17 +3770,3712 @@ x_1 = lean_mk_string_unchecked("toNat_ofNat", 11, 11); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__477() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__109() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__108; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__110() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__253; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__476; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__108; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__111() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("implicitBinder", 14, 14); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__112() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__111; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__113() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("{", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__114() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("n", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__115() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__114; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__116() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__114; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__117() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Nat", 3, 3); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__118() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__117; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__119() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__117; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__120() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("}", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__121() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("ofNat", 5, 5); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__122() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__121; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__123() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__121; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__124() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("term_^_", 7, 7); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__125() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__124; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__126() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("BitVec.toNat_ofNat", 18, 18); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__127() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__126; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__128() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("BitVec", 6, 6); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__129() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__128; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__108; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__478() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__130() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("ellipsis", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__131() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__130; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__132() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("..", 2, 2); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__133() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toNat_ofNatCore", 15, 15); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__134() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__133; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__135() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__133; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__136() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("h", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__137() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__136; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__138() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__136; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__139() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("term_<_", 7, 7); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__140() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__139; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__141() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("<", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__142() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("size", 4, 4); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__143() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__142; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__144() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__142; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__145() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("ofNatCore", 9, 9); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__146() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__145; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__147() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__145; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__148() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("BitVec.toNat_ofNatLt", 20, 20); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__149() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__148; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__150() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toNat_ofNatLt", 13, 13); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__151() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__128; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__150; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__152() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("val_val_eq_toNat", 16, 16); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__153() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__152; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__154() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__152; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__155() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__13; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__156() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__13; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__157() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("x.val.val", 9, 9); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__158() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__157; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__159() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("val", 3, 3); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__160() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__13; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__159; +x_3 = l_Lean_Name_mkStr3(x_1, x_2, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__161() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("x.toNat", 7, 7); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__162() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__161; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__163() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__13; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__15; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__164() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toNat_toBitVec_eq_toNat", 23, 23); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__165() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__164; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__166() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__164; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__167() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("x.toBitVec.toNat", 16, 16); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__168() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__167; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__169() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__13; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__60; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__15; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__170() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("mk_toBitVec_eq", 14, 14); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__171() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__170; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__172() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__170; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__173() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("forall", 6, 6); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__174() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__173; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__175() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("∀", 3, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__176() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(",", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__177() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("declValEqns", 11, 11); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__178() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__3; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__177; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__179() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("matchAltsWhereDecls", 19, 19); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__180() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__179; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__181() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("matchAlts", 9, 9); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__182() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__181; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__183() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("matchAlt", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__184() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__183; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__185() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("|", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__186() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("hole", 4, 4); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__187() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__186; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__188() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("_", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__189() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("=>", 2, 2); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__190() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toBitVec_eq_of_lt", 17, 17); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__191() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__190; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__192() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__190; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__193() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("arrow", 5, 5); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__194() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__193; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__195() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("→", 3, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__196() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toBitVec.toNat", 14, 14); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__197() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__196; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__198() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__60; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__15; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__199() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Nat.mod_eq_of_lt", 16, 16); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__200() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__199; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__201() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("mod_eq_of_lt", 12, 12); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__202() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__117; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__201; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__203() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toNat_ofNat_of_lt", 17, 17); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__204() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__203; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__205() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__203; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__206() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("byTactic", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__207() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__206; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__208() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("by", 2, 2); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Tactic", 6, 6); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__210() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("tacticSeq", 9, 9); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__211() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__210; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__212() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("tacticSeq1Indented", 18, 18); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__213() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__212; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__214() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("rwSeq", 5, 5); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__215() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__214; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__216() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("rw", 2, 2); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__217() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("optConfig", 9, 9); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__218() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__217; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__219() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("rwRuleSeq", 9, 9); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__220() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__219; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__221() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("[", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__222() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("rwRule", 6, 6); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__223() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__222; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__224() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("le_def", 6, 6); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__225() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__224; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__226() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__224; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__227() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("term_↔_", 9, 7); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__228() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__227; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__229() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("term_≤_", 9, 7); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__230() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__229; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__231() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("≤", 3, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__232() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("↔", 3, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__233() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("dotIdent", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__234() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__233; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__235() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("lt_def", 6, 6); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__236() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__235; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__237() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__235; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__238() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("le_iff_toNat_le", 15, 15); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__239() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__238; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__240() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__238; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__241() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("b.toNat", 7, 7); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__242() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__241; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__243() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__52; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__15; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__244() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("lt_iff_toNat_lt", 15, 15); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__245() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__244; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__246() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__244; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__247() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("protected", 9, 9); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__248() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__3; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__247; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__249() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("not_le", 6, 6); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__250() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__249; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__251() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__249; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__252() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("term¬_", 7, 6); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__253() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__252; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__254() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("¬", 2, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__255() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__2; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__256() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("simpLemma", 9, 9); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__257() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__256; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__258() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("not_lt", 6, 6); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__259() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__258; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__260() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__258; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__261() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("le_refl", 7, 7); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__262() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__261; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__263() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__261; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__264() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("lt_irrefl", 9, 9); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__265() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__264; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__266() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__264; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__267() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("le_trans", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__268() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__267; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__269() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__267; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__270() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("c", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__271() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__270; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__272() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__270; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__273() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("BitVec.le_trans", 15, 15); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__274() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__273; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__275() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__128; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__267; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__276() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("lt_trans", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__277() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__276; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__278() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__276; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__279() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("BitVec.lt_trans", 15, 15); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__280() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__279; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__281() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__128; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__276; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__282() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("le_total", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__283() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__282; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__284() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__282; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__285() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("term_∨_", 9, 7); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__286() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__285; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__287() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("∨", 3, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__288() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("BitVec.le_total", 15, 15); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__289() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__288; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__290() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__128; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__282; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__291() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("lt_asymm", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__292() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__291; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__293() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__291; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__294() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("BitVec.lt_asymm", 15, 15); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__295() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__294; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__296() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__128; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__291; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__297() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toBitVec_eq_of_eq", 17, 17); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__298() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__297; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__299() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__297; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__300() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("subst", 5, 5); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__301() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__300; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__302() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("▸", 3, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__303() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("eq_of_toBitVec_eq", 17, 17); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__304() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__303; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__305() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__303; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__306() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("cases", 5, 5); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__307() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__306; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__308() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("casesTarget", 11, 11); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__309() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__308; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__310() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(";", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__311() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("simpAll", 7, 7); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__312() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__311; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__313() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("simp_all", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__314() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("in", 2, 2); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__315() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__3; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__314; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__316() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("open", 4, 4); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__317() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__3; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__316; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__318() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("openOnly", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__319() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__3; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__318; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__320() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toBitVec_inj", 12, 12); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__321() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__320; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__322() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__320; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__323() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Iff.intro", 9, 9); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__324() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__323; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__325() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Iff", 3, 3); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__326() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("intro", 5, 5); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__327() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__325; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__326; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__328() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("eq_of_val_eq", 12, 12); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__329() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__328; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__330() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__328; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__331() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("a.val", 5, 5); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__332() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__331; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__333() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__49; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__159; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__334() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("b.val", 5, 5); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__335() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__334; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__336() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__52; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__159; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__337() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("rcases", 6, 6); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__338() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__337; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__339() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("with", 4, 4); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__340() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("rcasesPatLo", 11, 11); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__341() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__340; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__342() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("rcasesPatMed", 12, 12); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__343() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__342; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__344() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("rcasesPat", 9, 9); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__345() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("tuple", 5, 5); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__346() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__344; +x_5 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__345; +x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); +return x_6; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__347() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("ignore", 6, 6); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__348() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__344; +x_5 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__347; +x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); +return x_6; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__349() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__159; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__350() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__159; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__351() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("val_inj", 7, 7); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__352() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__351; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__353() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__351; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__354() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("congrArg", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__355() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__354; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__356() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__354; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__357() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("ne_of_toBitVec_ne", 17, 17); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__358() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__357; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__359() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__357; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__360() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("term_≠_", 9, 7); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__361() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__360; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__362() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("≠", 3, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__363() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("fun", 3, 3); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__364() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__363; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__365() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("basicFun", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__366() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__365; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__367() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("h'", 2, 2); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__368() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__367; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__369() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__367; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__370() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("absurd", 6, 6); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__371() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__370; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__372() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__370; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__373() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("ne_of_lt", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__374() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__373; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__375() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__373; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__376() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("apply", 5, 5); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__377() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__376; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__378() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("BitVec.ne_of_lt", 15, 15); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__379() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__378; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__380() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__128; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__373; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__381() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("simpa", 5, 5); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__382() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__381; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__383() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("simpaArgsRest", 13, 13); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__384() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__383; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__385() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("simpArgs", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__386() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__385; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__387() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("using", 5, 5); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__388() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toNat_zero", 10, 10); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__389() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__388; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__390() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__388; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__391() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Nat.zero_mod", 12, 12); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__392() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__391; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__393() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("zero_mod", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__394() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__117; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__393; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__395() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toNat_add", 9, 9); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__396() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__395; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__397() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__395; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__398() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("BitVec.toNat_add", 16, 16); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__399() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__398; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__400() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__128; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__395; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__401() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toNat_sub", 9, 9); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__402() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__401; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__403() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__401; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__404() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("BitVec.toNat_sub", 16, 16); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__405() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__404; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__406() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__128; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__401; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__407() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toNat_mul", 9, 9); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__408() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__407; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__409() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__407; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__410() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("BitVec.toNat_mul", 16, 16); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__411() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__410; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__412() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__128; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__407; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__413() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toNat_mod", 9, 9); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__414() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__413; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__415() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__413; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__416() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("BitVec.toNat_umod", 17, 17); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__417() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__416; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__418() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toNat_umod", 10, 10); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__419() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__128; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__418; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__420() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toNat_div", 9, 9); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__421() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__420; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__422() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__420; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__423() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("term_/_", 7, 7); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__424() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__423; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__425() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("/", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__426() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("BitVec.toNat_udiv", 17, 17); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__427() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__426; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__428() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toNat_udiv", 10, 10); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__429() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__128; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__428; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__430() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toNat_sub_of_le", 15, 15); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__431() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__430; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__432() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__430; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__433() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("BitVec.toNat_sub_of_le", 22, 22); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__434() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__433; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__435() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__128; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__430; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__436() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toNat_lt_size", 13, 13); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__437() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__436; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__438() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__436; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__439() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("a.toBitVec.isLt", 15, 15); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__440() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__439; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__441() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("isLt", 4, 4); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__442() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__49; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__60; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__441; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__443() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toNat_mod_lt", 12, 12); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__444() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__443; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__445() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__443; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__446() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("m", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__447() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__446; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__448() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__446; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__449() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("u", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__450() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__449; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__451() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__449; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__452() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("term_>_", 7, 7); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__453() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__452; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__454() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(">", 1, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__455() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__326; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__456() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("h1", 2, 2); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__457() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__456; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__458() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__456; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__459() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("tacticBy_cases_:_", 17, 17); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__460() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__459; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__461() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("by_cases", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__462() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("h2", 2, 2); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__463() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__462; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__464() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__462; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__465() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("cdot", 4, 4); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__466() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__465; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__467() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("cdotTk", 6, 6); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__468() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__467; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__469() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("patternIgnore", 13, 13); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__470() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__469; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__471() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("token", 5, 5); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__472() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("· ", 3, 2); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__473() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__471; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__472; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__474() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("·", 2, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__475() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Nat.mod_lt", 10, 10); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__476() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__475; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__477() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("mod_lt", 6, 6); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__478() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__117; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__477; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__479() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Nat.lt_of_lt_of_le", 18, 18); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__480() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__479; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__481() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("lt_of_lt_of_le", 14, 14); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__482() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__117; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__481; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__483() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("set_option", 10, 10); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__484() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__3; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__483; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__485() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("linter.deprecated", 17, 17); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__486() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__485; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__487() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("linter", 6, 6); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__488() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("deprecated", 10, 10); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__489() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__487; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__488; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__490() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("false", 5, 5); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__491() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__488; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__492() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("since", 5, 5); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__493() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("str", 3, 3); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__494() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__493; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__495() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("\"2024-09-24\"", 12, 12); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__496() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("modn_lt", 7, 7); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__497() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__496; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__498() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__496; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__499() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("only", 4, 4); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__500() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__465; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__501() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("gt_iff_lt", 9, 9); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__502() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__501; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__503() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__501; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__504() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("modn", 4, 4); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__505() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__504; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__506() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__504; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__507() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Fin.modn_val", 12, 12); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__508() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__507; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__509() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Fin", 3, 3); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__510() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("modn_val", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__511() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__509; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__510; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__512() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("BitVec.natCast_eq_ofNat", 23, 23); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__513() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__512; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__514() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("natCast_eq_ofNat", 16, 16); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__515() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__128; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__514; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__516() { _start: { lean_object* x_1; @@ -5064,16 +7483,16 @@ x_1 = lean_mk_string_unchecked("Nat.reducePow", 13, 13); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__479() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__517() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__478; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__516; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__480() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__518() { _start: { lean_object* x_1; @@ -5081,17 +7500,17 @@ x_1 = lean_mk_string_unchecked("reducePow", 9, 9); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__481() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__519() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__153; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__480; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__117; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__518; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__482() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__520() { _start: { lean_object* x_1; @@ -5099,16 +7518,16 @@ x_1 = lean_mk_string_unchecked("Nat.lt_of_le_of_lt", 18, 18); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__483() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__521() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__482; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__520; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__484() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__522() { _start: { lean_object* x_1; @@ -5116,17 +7535,17 @@ x_1 = lean_mk_string_unchecked("lt_of_le_of_lt", 14, 14); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__485() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__523() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__153; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__484; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__117; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__522; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__486() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__524() { _start: { lean_object* x_1; @@ -5134,16 +7553,16 @@ x_1 = lean_mk_string_unchecked("Nat.mod_le", 10, 10); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__487() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__525() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__486; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__524; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__488() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__526() { _start: { lean_object* x_1; @@ -5151,17 +7570,17 @@ x_1 = lean_mk_string_unchecked("mod_le", 6, 6); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__489() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__527() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__153; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__488; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__117; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__526; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__490() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__528() { _start: { lean_object* x_1; @@ -5169,16 +7588,16 @@ x_1 = lean_mk_string_unchecked("Fin.is_lt", 9, 9); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__491() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__529() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__490; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__528; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__492() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__530() { _start: { lean_object* x_1; @@ -5186,36 +7605,36 @@ x_1 = lean_mk_string_unchecked("is_lt", 5, 5); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__493() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__531() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__467; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__492; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__509; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__530; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__494() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__532() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__435; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__477; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__495() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__533() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__435; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__477; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__496() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__534() { _start: { lean_object* x_1; @@ -5223,16 +7642,16 @@ x_1 = lean_mk_string_unchecked("BitVec.umod_lt", 14, 14); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__497() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__535() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__496; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__534; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__498() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__536() { _start: { lean_object* x_1; @@ -5240,17 +7659,17 @@ x_1 = lean_mk_string_unchecked("umod_lt", 7, 7); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__499() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__537() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__253; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__498; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__128; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__536; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__500() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__538() { _start: { lean_object* x_1; @@ -5258,16 +7677,16 @@ x_1 = lean_mk_string_unchecked("toNat.inj", 9, 9); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__501() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__539() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__500; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__538; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__502() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__540() { _start: { lean_object* x_1; @@ -5275,17 +7694,267 @@ x_1 = lean_mk_string_unchecked("inj", 3, 3); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__503() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__541() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__176; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__502; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__15; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__540; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__504() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__542() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toNat_inj", 9, 9); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__543() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__542; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__544() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__542; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__545() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("le_antisymm_iff", 15, 15); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__546() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__545; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__547() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__545; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__548() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("term_∧_", 9, 7); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__549() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__548; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__550() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("∧", 3, 1); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__551() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toNat_inj.symm.trans", 20, 20); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__552() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__551; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__553() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("symm", 4, 4); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__554() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("trans", 5, 5); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__555() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__542; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__553; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__554; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__556() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("Nat.le_antisymm_iff", 19, 19); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__557() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__556; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__558() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__117; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__545; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__559() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("le_antisymm", 11, 11); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__560() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__559; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__561() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__559; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__562() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("h₁", 4, 2); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__563() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__562; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__564() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__562; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__565() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("h₂", 4, 2); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__566() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__565; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__567() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__565; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__568() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("fieldIdx", 8, 8); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__569() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__568; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__570() { _start: { lean_object* x_1; @@ -5293,26 +7962,80 @@ x_1 = lean_mk_string_unchecked("ofNat_one", 9, 9); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__505() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__571() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__504; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__570; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__506() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__572() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__504; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__570; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__507() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__573() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("ofNat_toNat", 11, 11); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__574() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__573; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__575() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__573; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__576() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("x.toNat_lt_size", 15, 15); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__577() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__576; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__578() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__13; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__436; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__579() { _start: { lean_object* x_1; @@ -5320,26 +8043,26 @@ x_1 = lean_mk_string_unchecked("val_ofNat", 9, 9); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__508() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__580() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__507; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__579; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__509() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__581() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__507; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__579; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__510() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__582() { _start: { lean_object* x_1; @@ -5347,19 +8070,19 @@ x_1 = lean_mk_string_unchecked("noindex", 7, 7); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__511() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__583() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__510; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18; +x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__582; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__512() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__584() { _start: { lean_object* x_1; @@ -5367,7 +8090,7 @@ x_1 = lean_mk_string_unchecked("no_index", 8, 8); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__513() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__585() { _start: { lean_object* x_1; @@ -5375,16 +8098,16 @@ x_1 = lean_mk_string_unchecked("OfNat.ofNat", 11, 11); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__514() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__586() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__513; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__585; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__515() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__587() { _start: { lean_object* x_1; @@ -5392,17 +8115,17 @@ x_1 = lean_mk_string_unchecked("OfNat", 5, 5); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__516() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__588() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__515; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__170; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__587; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__121; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__517() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__589() { _start: { lean_object* x_1; @@ -5410,45 +8133,45 @@ x_1 = lean_mk_string_unchecked("toBitVec_ofNat", 14, 14); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__518() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__590() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__517; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__589; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__519() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__591() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__517; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__589; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__520() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__592() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__92; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__60; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__521() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__593() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__92; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__60; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__522() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__594() { _start: { lean_object* x_1; @@ -5456,26 +8179,26 @@ x_1 = lean_mk_string_unchecked("BitVec.ofNat", 12, 12); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__523() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__595() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__522; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__594; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__524() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__596() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__253; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__170; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__128; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__121; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__525() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__597() { _start: { lean_object* x_1; @@ -5483,55 +8206,107 @@ x_1 = lean_mk_string_unchecked("mk_ofNat", 8, 8); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__526() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__598() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__525; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__597; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__527() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__599() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__525; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__597; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__528() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__600() { _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("end", 3, 3); +x_1 = lean_mk_string_unchecked("toNat_toUInt8", 13, 13); return x_1; } } -static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__529() { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__601() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3; -x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4; -x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__5; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__528; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__600; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } -LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__602() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__600; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__603() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("x.toUInt8.toNat", 15, 15); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__604() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__603; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__605() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toUInt8", 7, 7); +return x_1; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__606() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__13; +x_2 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__605; +x_3 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__15; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__607() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("8", 1, 1); +return x_1; +} +} +LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; -x_4 = l_commandDeclare__uint__theorems_____closed__2; +x_4 = l_commandDeclare__uint__theorems_______closed__2; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) { lean_object* x_6; lean_object* x_7; +lean_dec(x_2); lean_dec(x_1); x_6 = lean_box(1); x_7 = lean_alloc_ctor(1, 2, 0); @@ -5541,3553 +8316,4836 @@ return x_7; } else { -lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; lean_object* x_1335; lean_object* x_1336; lean_object* x_1337; lean_object* x_1338; lean_object* x_1339; lean_object* x_1340; lean_object* x_1341; lean_object* x_1342; lean_object* x_1343; lean_object* x_1344; lean_object* x_1345; lean_object* x_1346; lean_object* x_1347; lean_object* x_1348; lean_object* x_1349; lean_object* x_1350; lean_object* x_1351; lean_object* x_1352; lean_object* x_1353; lean_object* x_1354; lean_object* x_1355; lean_object* x_1356; lean_object* x_1357; lean_object* x_1358; lean_object* x_1359; lean_object* x_1360; lean_object* x_1361; lean_object* x_1362; lean_object* x_1363; lean_object* x_1364; lean_object* x_1365; lean_object* x_1366; lean_object* x_1367; lean_object* x_1368; lean_object* x_1369; lean_object* x_1370; lean_object* x_1371; lean_object* x_1372; lean_object* x_1373; lean_object* x_1374; lean_object* x_1375; lean_object* x_1376; lean_object* x_1377; lean_object* x_1378; lean_object* x_1379; lean_object* x_1380; lean_object* x_1381; lean_object* x_1382; lean_object* x_1383; lean_object* x_1384; lean_object* x_1385; lean_object* x_1386; lean_object* x_1387; lean_object* x_1388; lean_object* x_1389; lean_object* x_1390; lean_object* x_1391; lean_object* x_1392; lean_object* x_1393; lean_object* x_1394; lean_object* x_1395; lean_object* x_1396; lean_object* x_1397; lean_object* x_1398; lean_object* x_1399; lean_object* x_1400; lean_object* x_1401; lean_object* x_1402; lean_object* x_1403; lean_object* x_1404; lean_object* x_1405; lean_object* x_1406; lean_object* x_1407; lean_object* x_1408; lean_object* x_1409; lean_object* x_1410; lean_object* x_1411; lean_object* x_1412; lean_object* x_1413; lean_object* x_1414; lean_object* x_1415; lean_object* x_1416; lean_object* x_1417; lean_object* x_1418; lean_object* x_1419; lean_object* x_1420; lean_object* x_1421; lean_object* x_1422; lean_object* x_1423; lean_object* x_1424; lean_object* x_1425; lean_object* x_1426; lean_object* x_1427; lean_object* x_1428; lean_object* x_1429; lean_object* x_1430; lean_object* x_1431; lean_object* x_1432; lean_object* x_1433; lean_object* x_1434; lean_object* x_1435; lean_object* x_1436; lean_object* x_1437; lean_object* x_1438; lean_object* x_1439; lean_object* x_1440; lean_object* x_1441; lean_object* x_1442; lean_object* x_1443; lean_object* x_1444; lean_object* x_1445; lean_object* x_1446; lean_object* x_1447; lean_object* x_1448; lean_object* x_1449; lean_object* x_1450; lean_object* x_1451; lean_object* x_1452; lean_object* x_1453; lean_object* x_1454; lean_object* x_1455; lean_object* x_1456; lean_object* x_1457; lean_object* x_1458; lean_object* x_1459; lean_object* x_1460; lean_object* x_1461; lean_object* x_1462; lean_object* x_1463; lean_object* x_1464; lean_object* x_1465; lean_object* x_1466; lean_object* x_1467; lean_object* x_1468; lean_object* x_1469; lean_object* x_1470; lean_object* x_1471; lean_object* x_1472; lean_object* x_1473; lean_object* x_1474; lean_object* x_1475; lean_object* x_1476; lean_object* x_1477; lean_object* x_1478; lean_object* x_1479; lean_object* x_1480; lean_object* x_1481; lean_object* x_1482; lean_object* x_1483; lean_object* x_1484; lean_object* x_1485; lean_object* x_1486; lean_object* x_1487; lean_object* x_1488; lean_object* x_1489; lean_object* x_1490; lean_object* x_1491; lean_object* x_1492; lean_object* x_1493; lean_object* x_1494; lean_object* x_1495; lean_object* x_1496; lean_object* x_1497; lean_object* x_1498; lean_object* x_1499; lean_object* x_1500; lean_object* x_1501; lean_object* x_1502; lean_object* x_1503; lean_object* x_1504; lean_object* x_1505; lean_object* x_1506; lean_object* x_1507; lean_object* x_1508; lean_object* x_1509; lean_object* x_1510; lean_object* x_1511; lean_object* x_1512; lean_object* x_1513; lean_object* x_1514; lean_object* x_1515; lean_object* x_1516; lean_object* x_1517; lean_object* x_1518; lean_object* x_1519; lean_object* x_1520; lean_object* x_1521; lean_object* x_1522; lean_object* x_1523; lean_object* x_1524; lean_object* x_1525; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); +x_10 = lean_unsigned_to_nat(2u); +x_11 = l_Lean_Syntax_getArg(x_1, x_10); lean_dec(x_1); -x_10 = lean_ctor_get(x_2, 5); -x_11 = 0; -x_12 = l_Lean_SourceInfo_fromRef(x_10, x_11); -x_13 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__6; +x_12 = lean_ctor_get(x_2, 5); lean_inc(x_12); -x_14 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_14, 0, x_12); -lean_ctor_set(x_14, 1, x_13); -x_15 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__7; +x_13 = 0; +x_14 = l_Lean_SourceInfo_fromRef(x_12, x_13); +lean_dec(x_12); +x_15 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__3; +lean_inc(x_14); +x_16 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_16, 0, x_14); +lean_ctor_set(x_16, 1, x_15); +x_17 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__4; lean_inc(x_9); -lean_inc(x_12); -x_16 = l_Lean_Syntax_node2(x_12, x_15, x_14, x_9); -x_17 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__2; -x_18 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__12; -lean_inc(x_12); -x_19 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_19, 0, x_12); -lean_ctor_set(x_19, 1, x_17); -lean_ctor_set(x_19, 2, x_18); -x_20 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__11; -lean_inc_n(x_19, 6); -lean_inc(x_12); -x_21 = l_Lean_Syntax_node6(x_12, x_20, x_19, x_19, x_19, x_19, x_19, x_19); -x_22 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__17; -lean_inc(x_19); -lean_inc(x_12); -x_23 = l_Lean_Syntax_node1(x_12, x_22, x_19); -x_24 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__13; -lean_inc(x_12); +lean_inc(x_14); +x_18 = l_Lean_Syntax_node2(x_14, x_17, x_16, x_9); +x_19 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__2; +x_20 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__9; +lean_inc(x_14); +x_21 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_21, 0, x_14); +lean_ctor_set(x_21, 1, x_19); +lean_ctor_set(x_21, 2, x_20); +x_22 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__8; +lean_inc_n(x_21, 6); +lean_inc(x_14); +x_23 = l_Lean_Syntax_node6(x_14, x_22, x_21, x_21, x_21, x_21, x_21, x_21); +x_24 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__4; +lean_inc(x_14); x_25 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_25, 0, x_12); +lean_ctor_set(x_25, 0, x_14); lean_ctor_set(x_25, 1, x_24); -x_26 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__22; -lean_inc(x_12); -x_27 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_27, 0, x_12); -lean_ctor_set(x_27, 1, x_26); -x_28 = lean_box(0); -x_29 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__26; -x_30 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__27; -lean_inc(x_12); -x_31 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_31, 0, x_12); -lean_ctor_set(x_31, 1, x_29); -lean_ctor_set(x_31, 2, x_30); -lean_ctor_set(x_31, 3, x_28); +x_26 = lean_box(0); +x_27 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__14; +x_28 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__15; +lean_inc(x_14); +x_29 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_29, 0, x_14); +lean_ctor_set(x_29, 1, x_27); +lean_ctor_set(x_29, 2, x_28); +lean_ctor_set(x_29, 3, x_26); +x_30 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__12; +lean_inc(x_21); +lean_inc(x_14); +x_31 = l_Lean_Syntax_node2(x_14, x_30, x_29, x_21); +x_32 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__9; +lean_inc(x_14); +x_33 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_33, 0, x_14); +lean_ctor_set(x_33, 1, x_32); +x_34 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__8; +lean_inc(x_14); +x_35 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_35, 0, x_14); +lean_ctor_set(x_35, 1, x_34); +x_36 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__27; +lean_inc(x_14); +x_37 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_37, 0, x_14); +lean_ctor_set(x_37, 1, x_36); +x_38 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__26; +lean_inc(x_14); +x_39 = l_Lean_Syntax_node1(x_14, x_38, x_37); lean_inc(x_9); -lean_inc(x_12); -x_32 = l_Lean_Syntax_node1(x_12, x_17, x_9); -x_33 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__24; -lean_inc(x_32); -lean_inc(x_12); -x_34 = l_Lean_Syntax_node2(x_12, x_33, x_31, x_32); -x_35 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__21; -lean_inc(x_27); -lean_inc(x_12); -x_36 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_34); -x_37 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__19; -lean_inc(x_19); -lean_inc(x_12); -x_38 = l_Lean_Syntax_node2(x_12, x_37, x_19, x_36); -x_39 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__30; -lean_inc(x_12); -x_40 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_40, 0, x_12); -lean_ctor_set(x_40, 1, x_39); -x_41 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__40; -x_42 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__41; -lean_inc(x_12); -x_43 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_43, 0, x_12); -lean_ctor_set(x_43, 1, x_41); -lean_ctor_set(x_43, 2, x_42); -lean_ctor_set(x_43, 3, x_28); -x_44 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__42; -lean_inc(x_12); -x_45 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_45, 0, x_12); -lean_ctor_set(x_45, 1, x_44); -x_46 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__45; -lean_inc(x_12); -x_47 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_47, 0, x_12); -lean_ctor_set(x_47, 1, x_46); -x_48 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__44; -lean_inc(x_12); -x_49 = l_Lean_Syntax_node1(x_12, x_48, x_47); -x_50 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__38; -lean_inc(x_49); -lean_inc(x_45); -lean_inc_n(x_19, 2); -lean_inc(x_12); -x_51 = l_Lean_Syntax_node5(x_12, x_50, x_43, x_19, x_19, x_45, x_49); -x_52 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__36; -lean_inc(x_12); -x_53 = l_Lean_Syntax_node1(x_12, x_52, x_51); -x_54 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__34; -lean_inc(x_12); -x_55 = l_Lean_Syntax_node1(x_12, x_54, x_53); -lean_inc(x_12); -x_56 = l_Lean_Syntax_node1(x_12, x_17, x_55); -x_57 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__32; -lean_inc(x_12); -x_58 = l_Lean_Syntax_node1(x_12, x_57, x_56); -x_59 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__29; -lean_inc(x_19); -lean_inc(x_12); -x_60 = l_Lean_Syntax_node3(x_12, x_59, x_40, x_58, x_19); -x_61 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__14; -lean_inc_n(x_19, 2); -lean_inc(x_23); -lean_inc(x_12); -x_62 = l_Lean_Syntax_node6(x_12, x_61, x_23, x_25, x_19, x_19, x_38, x_60); -x_63 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__9; +lean_inc(x_14); +x_40 = l_Lean_Syntax_node1(x_14, x_19, x_9); +x_41 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__10; +lean_inc(x_14); +x_42 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_42, 0, x_14); +lean_ctor_set(x_42, 1, x_41); +x_43 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__24; +lean_inc(x_42); +lean_inc(x_40); +lean_inc(x_33); +lean_inc(x_39); +lean_inc(x_35); +lean_inc(x_14); +x_44 = l_Lean_Syntax_node5(x_14, x_43, x_35, x_39, x_33, x_40, x_42); +x_45 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__17; +lean_inc(x_14); +x_46 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_46, 0, x_14); +lean_ctor_set(x_46, 1, x_45); +x_47 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__30; +lean_inc(x_14); +x_48 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_48, 0, x_14); +lean_ctor_set(x_48, 1, x_47); +lean_inc(x_39); +lean_inc(x_14); +x_49 = l_Lean_Syntax_node1(x_14, x_19, x_39); +x_50 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__31; +lean_inc(x_14); +x_51 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_51, 0, x_14); +lean_ctor_set(x_51, 1, x_50); +x_52 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__29; +lean_inc(x_51); +lean_inc(x_48); +lean_inc(x_14); +x_53 = l_Lean_Syntax_node3(x_14, x_52, x_48, x_49, x_51); +x_54 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__22; +lean_inc(x_46); +lean_inc(x_44); +lean_inc(x_14); +x_55 = l_Lean_Syntax_node3(x_14, x_54, x_44, x_46, x_53); +x_56 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__20; +lean_inc(x_33); +lean_inc(x_14); +x_57 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_55); +x_58 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__17; +lean_inc(x_21); +lean_inc(x_14); +x_59 = l_Lean_Syntax_node2(x_14, x_58, x_21, x_57); +x_60 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__18; +lean_inc(x_14); +x_61 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_61, 0, x_14); +lean_ctor_set(x_61, 1, x_60); +x_62 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__35; +x_63 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__36; +lean_inc(x_14); +x_64 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_64, 0, x_14); +lean_ctor_set(x_64, 1, x_62); +lean_ctor_set(x_64, 2, x_63); +lean_ctor_set(x_64, 3, x_26); +x_65 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__39; +lean_inc_n(x_21, 2); +lean_inc(x_14); +x_66 = l_Lean_Syntax_node2(x_14, x_65, x_21, x_21); +x_67 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__33; lean_inc(x_21); -lean_inc(x_12); -x_64 = l_Lean_Syntax_node2(x_12, x_63, x_21, x_62); -x_65 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__46; -lean_inc(x_12); -x_66 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_66, 0, x_12); -lean_ctor_set(x_66, 1, x_65); -x_67 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__51; -x_68 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__52; -lean_inc(x_12); -x_69 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_69, 0, x_12); -lean_ctor_set(x_69, 1, x_67); -lean_ctor_set(x_69, 2, x_68); -lean_ctor_set(x_69, 3, x_28); -x_70 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__49; -lean_inc(x_19); -lean_inc(x_12); -x_71 = l_Lean_Syntax_node2(x_12, x_70, x_69, x_19); -x_72 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__57; -lean_inc(x_12); -x_73 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_73, 0, x_12); -lean_ctor_set(x_73, 1, x_72); -x_74 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__58; -lean_inc(x_12); -x_75 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_75, 0, x_12); -lean_ctor_set(x_75, 1, x_74); -x_76 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__56; -lean_inc(x_75); -lean_inc(x_32); -lean_inc(x_27); -lean_inc(x_49); -lean_inc(x_73); -lean_inc(x_12); -x_77 = l_Lean_Syntax_node5(x_12, x_76, x_73, x_49, x_27, x_32, x_75); -x_78 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__59; -lean_inc(x_12); -x_79 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_79, 0, x_12); -lean_ctor_set(x_79, 1, x_78); -x_80 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__62; -lean_inc(x_12); -x_81 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_81, 0, x_12); -lean_ctor_set(x_81, 1, x_80); -lean_inc(x_49); -lean_inc(x_12); -x_82 = l_Lean_Syntax_node1(x_12, x_17, x_49); -x_83 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__63; -lean_inc(x_12); -x_84 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_84, 0, x_12); -lean_ctor_set(x_84, 1, x_83); -x_85 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__61; -lean_inc(x_84); -lean_inc(x_81); -lean_inc(x_12); -x_86 = l_Lean_Syntax_node3(x_12, x_85, x_81, x_82, x_84); -x_87 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__54; -lean_inc(x_79); -lean_inc(x_77); -lean_inc(x_12); -x_88 = l_Lean_Syntax_node3(x_12, x_87, x_77, x_79, x_86); -lean_inc(x_27); -lean_inc(x_12); -x_89 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_88); -lean_inc(x_19); -lean_inc(x_12); -x_90 = l_Lean_Syntax_node2(x_12, x_37, x_19, x_89); -x_91 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__67; -x_92 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__68; -lean_inc(x_12); -x_93 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_93, 0, x_12); -lean_ctor_set(x_93, 1, x_91); -lean_ctor_set(x_93, 2, x_92); -lean_ctor_set(x_93, 3, x_28); -x_94 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__71; -lean_inc_n(x_19, 2); -lean_inc(x_12); -x_95 = l_Lean_Syntax_node2(x_12, x_94, x_19, x_19); -x_96 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__65; -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_93); -lean_inc(x_45); -lean_inc(x_12); -x_97 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_93, x_95, x_19); -x_98 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__47; -lean_inc(x_97); lean_inc(x_66); -lean_inc(x_12); -x_99 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_71, x_90, x_97); +lean_inc(x_64); +lean_inc(x_61); +lean_inc(x_14); +x_68 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_64, x_66, x_21); +x_69 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__10; +lean_inc(x_68); +lean_inc(x_25); +lean_inc(x_14); +x_70 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_31, x_59, x_68); +x_71 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__6; +lean_inc(x_23); +lean_inc(x_14); +x_72 = l_Lean_Syntax_node2(x_14, x_71, x_23, x_70); +x_73 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__41; +x_74 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__42; +lean_inc(x_14); +x_75 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_75, 0, x_14); +lean_ctor_set(x_75, 1, x_73); +lean_ctor_set(x_75, 2, x_74); +lean_ctor_set(x_75, 3, x_26); lean_inc(x_21); -lean_inc(x_12); -x_100 = l_Lean_Syntax_node2(x_12, x_63, x_21, x_99); -x_101 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__73; -x_102 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__74; -lean_inc(x_12); -x_103 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_103, 0, x_12); -lean_ctor_set(x_103, 1, x_101); -lean_ctor_set(x_103, 2, x_102); -lean_ctor_set(x_103, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_104 = l_Lean_Syntax_node2(x_12, x_70, x_103, x_19); -x_105 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__75; -lean_inc(x_12); -x_106 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_106, 0, x_12); -lean_ctor_set(x_106, 1, x_105); -lean_inc(x_12); -x_107 = l_Lean_Syntax_node1(x_12, x_48, x_106); -lean_inc(x_75); -lean_inc(x_32); -lean_inc(x_27); -lean_inc(x_107); -lean_inc(x_73); -lean_inc(x_12); -x_108 = l_Lean_Syntax_node5(x_12, x_76, x_73, x_107, x_27, x_32, x_75); -lean_inc(x_107); -lean_inc(x_12); -x_109 = l_Lean_Syntax_node1(x_12, x_17, x_107); -lean_inc(x_84); +lean_inc(x_14); +x_76 = l_Lean_Syntax_node2(x_14, x_30, x_75, x_21); +x_77 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__43; +lean_inc(x_14); +x_78 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_78, 0, x_14); +lean_ctor_set(x_78, 1, x_77); +lean_inc(x_14); +x_79 = l_Lean_Syntax_node1(x_14, x_38, x_78); +lean_inc(x_42); +lean_inc(x_33); +lean_inc(x_79); +lean_inc(x_35); +lean_inc(x_14); +x_80 = l_Lean_Syntax_node5(x_14, x_43, x_35, x_79, x_33, x_40, x_42); +lean_inc(x_79); +lean_inc(x_14); +x_81 = l_Lean_Syntax_node1(x_14, x_19, x_79); +lean_inc(x_51); +lean_inc(x_81); +lean_inc(x_48); +lean_inc(x_14); +x_82 = l_Lean_Syntax_node3(x_14, x_52, x_48, x_81, x_51); +lean_inc(x_46); +lean_inc(x_14); +x_83 = l_Lean_Syntax_node3(x_14, x_54, x_80, x_46, x_82); +lean_inc(x_33); +lean_inc(x_14); +x_84 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_83); +lean_inc(x_21); +lean_inc(x_14); +x_85 = l_Lean_Syntax_node2(x_14, x_58, x_21, x_84); +lean_inc(x_68); +lean_inc(x_25); +lean_inc(x_14); +x_86 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_76, x_85, x_68); +lean_inc(x_23); +lean_inc(x_14); +x_87 = l_Lean_Syntax_node2(x_14, x_71, x_23, x_86); +x_88 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__45; +x_89 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__46; +lean_inc(x_14); +x_90 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_90, 0, x_14); +lean_ctor_set(x_90, 1, x_88); +lean_ctor_set(x_90, 2, x_89); +lean_ctor_set(x_90, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_91 = l_Lean_Syntax_node2(x_14, x_30, x_90, x_21); +x_92 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__50; +x_93 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__51; +lean_inc(x_14); +x_94 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_94, 0, x_14); +lean_ctor_set(x_94, 1, x_92); +lean_ctor_set(x_94, 2, x_93); +lean_ctor_set(x_94, 3, x_26); +x_95 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__53; +x_96 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__54; +lean_inc(x_14); +x_97 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_97, 0, x_14); +lean_ctor_set(x_97, 1, x_95); +lean_ctor_set(x_97, 2, x_96); +lean_ctor_set(x_97, 3, x_26); +lean_inc(x_97); +lean_inc(x_94); +lean_inc(x_14); +x_98 = l_Lean_Syntax_node2(x_14, x_19, x_94, x_97); +lean_inc(x_9); +lean_inc(x_33); +lean_inc(x_14); +x_99 = l_Lean_Syntax_node2(x_14, x_19, x_33, x_9); +x_100 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__48; +lean_inc(x_42); +lean_inc(x_21); +lean_inc(x_99); +lean_inc(x_98); +lean_inc(x_35); +lean_inc(x_14); +x_101 = l_Lean_Syntax_node5(x_14, x_100, x_35, x_98, x_99, x_21, x_42); +lean_inc(x_14); +x_102 = l_Lean_Syntax_node1(x_14, x_19, x_101); +x_103 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__57; +lean_inc(x_14); +x_104 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_104, 0, x_14); +lean_ctor_set(x_104, 1, x_103); +x_105 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__56; +lean_inc(x_97); +lean_inc(x_104); +lean_inc(x_94); +lean_inc(x_14); +x_106 = l_Lean_Syntax_node3(x_14, x_105, x_94, x_104, x_97); +x_107 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__59; +x_108 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__61; +lean_inc(x_14); +x_109 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_109, 0, x_14); +lean_ctor_set(x_109, 1, x_107); +lean_ctor_set(x_109, 2, x_108); +lean_ctor_set(x_109, 3, x_26); +x_110 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__63; +x_111 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__64; +lean_inc(x_14); +x_112 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_112, 0, x_14); +lean_ctor_set(x_112, 1, x_110); +lean_ctor_set(x_112, 2, x_111); +lean_ctor_set(x_112, 3, x_26); +lean_inc(x_112); +lean_inc(x_104); lean_inc(x_109); -lean_inc(x_81); -lean_inc(x_12); -x_110 = l_Lean_Syntax_node3(x_12, x_85, x_81, x_109, x_84); -lean_inc(x_79); -lean_inc(x_12); -x_111 = l_Lean_Syntax_node3(x_12, x_87, x_108, x_79, x_110); -lean_inc(x_27); -lean_inc(x_12); -x_112 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_111); -lean_inc(x_19); -lean_inc(x_12); -x_113 = l_Lean_Syntax_node2(x_12, x_37, x_19, x_112); -lean_inc(x_97); -lean_inc(x_66); -lean_inc(x_12); -x_114 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_104, x_113, x_97); -lean_inc(x_21); -lean_inc(x_12); -x_115 = l_Lean_Syntax_node2(x_12, x_63, x_21, x_114); -x_116 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__77; -x_117 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__78; -lean_inc(x_12); -x_118 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_118, 0, x_12); -lean_ctor_set(x_118, 1, x_116); -lean_ctor_set(x_118, 2, x_117); -lean_ctor_set(x_118, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_119 = l_Lean_Syntax_node2(x_12, x_70, x_118, x_19); -x_120 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__82; -x_121 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__83; -lean_inc(x_12); -x_122 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_122, 0, x_12); -lean_ctor_set(x_122, 1, x_120); -lean_ctor_set(x_122, 2, x_121); -lean_ctor_set(x_122, 3, x_28); -x_123 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__85; -x_124 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__86; -lean_inc(x_12); -x_125 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_125, 0, x_12); -lean_ctor_set(x_125, 1, x_123); -lean_ctor_set(x_125, 2, x_124); -lean_ctor_set(x_125, 3, x_28); -lean_inc(x_125); -lean_inc(x_122); -lean_inc(x_12); -x_126 = l_Lean_Syntax_node2(x_12, x_17, x_122, x_125); -lean_inc(x_9); -lean_inc(x_27); -lean_inc(x_12); -x_127 = l_Lean_Syntax_node2(x_12, x_17, x_27, x_9); -x_128 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__80; -lean_inc(x_75); -lean_inc(x_19); -lean_inc(x_127); -lean_inc(x_126); -lean_inc(x_73); -lean_inc(x_12); -x_129 = l_Lean_Syntax_node5(x_12, x_128, x_73, x_126, x_127, x_19, x_75); -lean_inc(x_12); -x_130 = l_Lean_Syntax_node1(x_12, x_17, x_129); -x_131 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__89; -lean_inc(x_12); -x_132 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_132, 0, x_12); -lean_ctor_set(x_132, 1, x_131); -x_133 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__88; -lean_inc(x_125); -lean_inc(x_132); -lean_inc(x_122); -lean_inc(x_12); -x_134 = l_Lean_Syntax_node3(x_12, x_133, x_122, x_132, x_125); -x_135 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__91; -x_136 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__93; -lean_inc(x_12); -x_137 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_137, 0, x_12); -lean_ctor_set(x_137, 1, x_135); -lean_ctor_set(x_137, 2, x_136); -lean_ctor_set(x_137, 3, x_28); -x_138 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__95; -x_139 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__96; -lean_inc(x_12); -x_140 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_140, 0, x_12); -lean_ctor_set(x_140, 1, x_138); -lean_ctor_set(x_140, 2, x_139); -lean_ctor_set(x_140, 3, x_28); -lean_inc(x_140); -lean_inc(x_132); -lean_inc(x_137); -lean_inc(x_12); -x_141 = l_Lean_Syntax_node3(x_12, x_133, x_137, x_132, x_140); -lean_inc(x_12); -x_142 = l_Lean_Syntax_node1(x_12, x_17, x_141); -lean_inc(x_84); -lean_inc(x_81); -lean_inc(x_12); -x_143 = l_Lean_Syntax_node3(x_12, x_85, x_81, x_142, x_84); -lean_inc(x_79); -lean_inc(x_134); -lean_inc(x_12); -x_144 = l_Lean_Syntax_node3(x_12, x_87, x_134, x_79, x_143); -lean_inc(x_27); -lean_inc(x_12); -x_145 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_144); -lean_inc(x_130); -lean_inc(x_12); -x_146 = l_Lean_Syntax_node2(x_12, x_37, x_130, x_145); -lean_inc(x_97); -lean_inc(x_66); -lean_inc(x_12); -x_147 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_119, x_146, x_97); -lean_inc(x_21); -lean_inc(x_12); -x_148 = l_Lean_Syntax_node2(x_12, x_63, x_21, x_147); -x_149 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__98; -x_150 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__99; -lean_inc(x_12); -x_151 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_151, 0, x_12); -lean_ctor_set(x_151, 1, x_149); -lean_ctor_set(x_151, 2, x_150); -lean_ctor_set(x_151, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_152 = l_Lean_Syntax_node2(x_12, x_70, x_151, x_19); -x_153 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__102; -lean_inc(x_12); -x_154 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_154, 0, x_12); -lean_ctor_set(x_154, 1, x_153); -x_155 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__101; -lean_inc(x_125); -lean_inc(x_154); -lean_inc(x_122); -lean_inc(x_12); -x_156 = l_Lean_Syntax_node3(x_12, x_155, x_122, x_154, x_125); -lean_inc(x_140); -lean_inc(x_137); -lean_inc(x_12); -x_157 = l_Lean_Syntax_node3(x_12, x_155, x_137, x_154, x_140); -lean_inc(x_12); -x_158 = l_Lean_Syntax_node1(x_12, x_17, x_157); -lean_inc(x_84); -lean_inc(x_81); -lean_inc(x_12); -x_159 = l_Lean_Syntax_node3(x_12, x_85, x_81, x_158, x_84); -lean_inc(x_79); -lean_inc(x_12); -x_160 = l_Lean_Syntax_node3(x_12, x_87, x_156, x_79, x_159); -lean_inc(x_27); -lean_inc(x_12); -x_161 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_160); -lean_inc(x_130); -lean_inc(x_12); -x_162 = l_Lean_Syntax_node2(x_12, x_37, x_130, x_161); -lean_inc(x_97); -lean_inc(x_66); -lean_inc(x_12); -x_163 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_152, x_162, x_97); -lean_inc(x_21); -lean_inc(x_12); -x_164 = l_Lean_Syntax_node2(x_12, x_63, x_21, x_163); -x_165 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__104; -x_166 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__105; -lean_inc(x_12); -x_167 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_167, 0, x_12); -lean_ctor_set(x_167, 1, x_165); -lean_ctor_set(x_167, 2, x_166); -lean_ctor_set(x_167, 3, x_28); -lean_inc(x_19); -lean_inc(x_167); -lean_inc(x_12); -x_168 = l_Lean_Syntax_node2(x_12, x_70, x_167, x_19); -x_169 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__108; -lean_inc(x_12); -x_170 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_170, 0, x_12); -lean_ctor_set(x_170, 1, x_169); -x_171 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__107; -lean_inc(x_125); -lean_inc(x_170); -lean_inc(x_122); -lean_inc(x_12); -x_172 = l_Lean_Syntax_node3(x_12, x_171, x_122, x_170, x_125); -lean_inc(x_140); -lean_inc(x_170); -lean_inc(x_137); -lean_inc(x_12); -x_173 = l_Lean_Syntax_node3(x_12, x_171, x_137, x_170, x_140); -lean_inc(x_12); -x_174 = l_Lean_Syntax_node1(x_12, x_17, x_173); -lean_inc(x_84); -lean_inc(x_81); -lean_inc(x_12); -x_175 = l_Lean_Syntax_node3(x_12, x_85, x_81, x_174, x_84); -lean_inc(x_79); -lean_inc(x_172); -lean_inc(x_12); -x_176 = l_Lean_Syntax_node3(x_12, x_87, x_172, x_79, x_175); -lean_inc(x_27); -lean_inc(x_12); -x_177 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_176); -lean_inc(x_130); -lean_inc(x_12); -x_178 = l_Lean_Syntax_node2(x_12, x_37, x_130, x_177); -lean_inc(x_97); -lean_inc(x_66); -lean_inc(x_12); -x_179 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_168, x_178, x_97); -lean_inc(x_21); -lean_inc(x_12); -x_180 = l_Lean_Syntax_node2(x_12, x_63, x_21, x_179); -x_181 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__110; -x_182 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__111; -lean_inc(x_12); -x_183 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_183, 0, x_12); -lean_ctor_set(x_183, 1, x_181); -lean_ctor_set(x_183, 2, x_182); -lean_ctor_set(x_183, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_184 = l_Lean_Syntax_node2(x_12, x_70, x_183, x_19); -x_185 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__114; -lean_inc(x_12); -x_186 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_186, 0, x_12); -lean_ctor_set(x_186, 1, x_185); -x_187 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__113; -lean_inc(x_125); -lean_inc(x_186); -lean_inc(x_122); -lean_inc(x_12); -x_188 = l_Lean_Syntax_node3(x_12, x_187, x_122, x_186, x_125); -lean_inc(x_140); -lean_inc(x_137); -lean_inc(x_12); -x_189 = l_Lean_Syntax_node3(x_12, x_187, x_137, x_186, x_140); -lean_inc(x_12); -x_190 = l_Lean_Syntax_node1(x_12, x_17, x_189); -lean_inc(x_84); -lean_inc(x_81); -lean_inc(x_12); -x_191 = l_Lean_Syntax_node3(x_12, x_85, x_81, x_190, x_84); -lean_inc(x_79); -lean_inc(x_12); -x_192 = l_Lean_Syntax_node3(x_12, x_87, x_188, x_79, x_191); -lean_inc(x_27); -lean_inc(x_12); -x_193 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_192); -lean_inc(x_130); -lean_inc(x_12); -x_194 = l_Lean_Syntax_node2(x_12, x_37, x_130, x_193); -lean_inc(x_97); -lean_inc(x_66); -lean_inc(x_12); -x_195 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_184, x_194, x_97); -lean_inc(x_21); -lean_inc(x_12); -x_196 = l_Lean_Syntax_node2(x_12, x_63, x_21, x_195); -x_197 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__117; -lean_inc(x_12); -x_198 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_198, 0, x_12); -lean_ctor_set(x_198, 1, x_197); -x_199 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__121; -lean_inc(x_12); -x_200 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_200, 0, x_12); -lean_ctor_set(x_200, 1, x_199); -x_201 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__122; -lean_inc_n(x_19, 3); -lean_inc(x_200); -lean_inc(x_12); -x_202 = l_Lean_Syntax_node4(x_12, x_201, x_200, x_19, x_19, x_19); -x_203 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__119; +lean_inc(x_14); +x_113 = l_Lean_Syntax_node3(x_14, x_105, x_109, x_104, x_112); +lean_inc(x_14); +x_114 = l_Lean_Syntax_node1(x_14, x_19, x_113); +lean_inc(x_51); +lean_inc(x_48); +lean_inc(x_14); +x_115 = l_Lean_Syntax_node3(x_14, x_52, x_48, x_114, x_51); +lean_inc(x_46); +lean_inc(x_106); +lean_inc(x_14); +x_116 = l_Lean_Syntax_node3(x_14, x_54, x_106, x_46, x_115); +lean_inc(x_33); +lean_inc(x_14); +x_117 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_116); +lean_inc(x_102); +lean_inc(x_14); +x_118 = l_Lean_Syntax_node2(x_14, x_58, x_102, x_117); +lean_inc(x_68); +lean_inc(x_25); +lean_inc(x_14); +x_119 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_91, x_118, x_68); lean_inc(x_23); -lean_inc(x_12); -x_204 = l_Lean_Syntax_node2(x_12, x_203, x_23, x_202); -lean_inc(x_12); -x_205 = l_Lean_Syntax_node1(x_12, x_17, x_204); -x_206 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__123; -lean_inc(x_12); -x_207 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_207, 0, x_12); -lean_ctor_set(x_207, 1, x_206); -x_208 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__116; +lean_inc(x_14); +x_120 = l_Lean_Syntax_node2(x_14, x_71, x_23, x_119); +x_121 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__66; +x_122 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__67; +lean_inc(x_14); +x_123 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_123, 0, x_14); +lean_ctor_set(x_123, 1, x_121); +lean_ctor_set(x_123, 2, x_122); +lean_ctor_set(x_123, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_124 = l_Lean_Syntax_node2(x_14, x_30, x_123, x_21); +x_125 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__70; +lean_inc(x_14); +x_126 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_126, 0, x_14); +lean_ctor_set(x_126, 1, x_125); +x_127 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__69; +lean_inc(x_97); +lean_inc(x_126); +lean_inc(x_94); +lean_inc(x_14); +x_128 = l_Lean_Syntax_node3(x_14, x_127, x_94, x_126, x_97); +lean_inc(x_112); +lean_inc(x_126); +lean_inc(x_109); +lean_inc(x_14); +x_129 = l_Lean_Syntax_node3(x_14, x_127, x_109, x_126, x_112); +lean_inc(x_14); +x_130 = l_Lean_Syntax_node1(x_14, x_19, x_129); +lean_inc(x_51); +lean_inc(x_48); +lean_inc(x_14); +x_131 = l_Lean_Syntax_node3(x_14, x_52, x_48, x_130, x_51); +lean_inc(x_46); +lean_inc(x_128); +lean_inc(x_14); +x_132 = l_Lean_Syntax_node3(x_14, x_54, x_128, x_46, x_131); +lean_inc(x_33); +lean_inc(x_14); +x_133 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_132); +lean_inc(x_102); +lean_inc(x_14); +x_134 = l_Lean_Syntax_node2(x_14, x_58, x_102, x_133); +lean_inc(x_68); +lean_inc(x_25); +lean_inc(x_14); +x_135 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_124, x_134, x_68); +lean_inc(x_23); +lean_inc(x_14); +x_136 = l_Lean_Syntax_node2(x_14, x_71, x_23, x_135); +x_137 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__72; +x_138 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__73; +lean_inc(x_14); +x_139 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_139, 0, x_14); +lean_ctor_set(x_139, 1, x_137); +lean_ctor_set(x_139, 2, x_138); +lean_ctor_set(x_139, 3, x_26); +lean_inc(x_21); +lean_inc(x_139); +lean_inc(x_14); +x_140 = l_Lean_Syntax_node2(x_14, x_30, x_139, x_21); +x_141 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__8; +lean_inc(x_14); +x_142 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_142, 0, x_14); +lean_ctor_set(x_142, 1, x_141); +x_143 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__75; +lean_inc(x_97); +lean_inc(x_142); +lean_inc(x_94); +lean_inc(x_14); +x_144 = l_Lean_Syntax_node3(x_14, x_143, x_94, x_142, x_97); +lean_inc(x_112); +lean_inc(x_142); +lean_inc(x_109); +lean_inc(x_14); +x_145 = l_Lean_Syntax_node3(x_14, x_143, x_109, x_142, x_112); +lean_inc(x_14); +x_146 = l_Lean_Syntax_node1(x_14, x_19, x_145); +lean_inc(x_51); +lean_inc(x_48); +lean_inc(x_14); +x_147 = l_Lean_Syntax_node3(x_14, x_52, x_48, x_146, x_51); +lean_inc(x_46); +lean_inc(x_144); +lean_inc(x_14); +x_148 = l_Lean_Syntax_node3(x_14, x_54, x_144, x_46, x_147); +lean_inc(x_33); +lean_inc(x_14); +x_149 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_148); +lean_inc(x_102); +lean_inc(x_14); +x_150 = l_Lean_Syntax_node2(x_14, x_58, x_102, x_149); +lean_inc(x_68); +lean_inc(x_25); +lean_inc(x_14); +x_151 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_140, x_150, x_68); +lean_inc(x_23); +lean_inc(x_14); +x_152 = l_Lean_Syntax_node2(x_14, x_71, x_23, x_151); +x_153 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__77; +x_154 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__78; +lean_inc(x_14); +x_155 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_155, 0, x_14); +lean_ctor_set(x_155, 1, x_153); +lean_ctor_set(x_155, 2, x_154); +lean_ctor_set(x_155, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_156 = l_Lean_Syntax_node2(x_14, x_30, x_155, x_21); +x_157 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__81; +lean_inc(x_14); +x_158 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_158, 0, x_14); +lean_ctor_set(x_158, 1, x_157); +x_159 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__80; +lean_inc(x_97); +lean_inc(x_158); +lean_inc(x_94); +lean_inc(x_14); +x_160 = l_Lean_Syntax_node3(x_14, x_159, x_94, x_158, x_97); +lean_inc(x_112); +lean_inc(x_158); +lean_inc(x_109); +lean_inc(x_14); +x_161 = l_Lean_Syntax_node3(x_14, x_159, x_109, x_158, x_112); +lean_inc(x_14); +x_162 = l_Lean_Syntax_node1(x_14, x_19, x_161); +lean_inc(x_51); +lean_inc(x_48); +lean_inc(x_14); +x_163 = l_Lean_Syntax_node3(x_14, x_52, x_48, x_162, x_51); +lean_inc(x_46); +lean_inc(x_160); +lean_inc(x_14); +x_164 = l_Lean_Syntax_node3(x_14, x_54, x_160, x_46, x_163); +lean_inc(x_33); +lean_inc(x_14); +x_165 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_164); +lean_inc(x_102); +lean_inc(x_14); +x_166 = l_Lean_Syntax_node2(x_14, x_58, x_102, x_165); +lean_inc(x_68); +lean_inc(x_25); +lean_inc(x_14); +x_167 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_156, x_166, x_68); +lean_inc(x_23); +lean_inc(x_14); +x_168 = l_Lean_Syntax_node2(x_14, x_71, x_23, x_167); +x_169 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__1; +lean_inc(x_14); +x_170 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_170, 0, x_14); +lean_ctor_set(x_170, 1, x_169); +x_171 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__87; +lean_inc(x_21); +lean_inc(x_14); +x_172 = l_Lean_Syntax_node1(x_14, x_171, x_21); +x_173 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__2; +lean_inc(x_14); +x_174 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_174, 0, x_14); +lean_ctor_set(x_174, 1, x_173); +x_175 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__89; +lean_inc_n(x_21, 3); +lean_inc(x_174); +lean_inc(x_14); +x_176 = l_Lean_Syntax_node4(x_14, x_175, x_174, x_21, x_21, x_21); +x_177 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__85; +lean_inc(x_172); +lean_inc(x_14); +x_178 = l_Lean_Syntax_node2(x_14, x_177, x_172, x_176); +lean_inc(x_14); +x_179 = l_Lean_Syntax_node1(x_14, x_19, x_178); +x_180 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__3; +lean_inc(x_14); +x_181 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_181, 0, x_14); +lean_ctor_set(x_181, 1, x_180); +x_182 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__83; +lean_inc(x_181); +lean_inc(x_170); +lean_inc(x_14); +x_183 = l_Lean_Syntax_node3(x_14, x_182, x_170, x_179, x_181); +lean_inc(x_14); +x_184 = l_Lean_Syntax_node1(x_14, x_19, x_183); +lean_inc(x_184); +lean_inc_n(x_21, 5); +lean_inc(x_14); +x_185 = l_Lean_Syntax_node6(x_14, x_22, x_21, x_184, x_21, x_21, x_21, x_21); +x_186 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__91; +x_187 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__92; +lean_inc(x_14); +x_188 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_188, 0, x_14); +lean_ctor_set(x_188, 1, x_186); +lean_ctor_set(x_188, 2, x_187); +lean_ctor_set(x_188, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_189 = l_Lean_Syntax_node2(x_14, x_30, x_188, x_21); +x_190 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__100; +x_191 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__101; +lean_inc(x_14); +x_192 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_192, 0, x_14); +lean_ctor_set(x_192, 1, x_190); +lean_ctor_set(x_192, 2, x_191); +lean_ctor_set(x_192, 3, x_26); +lean_inc(x_94); +lean_inc(x_14); +x_193 = l_Lean_Syntax_node1(x_14, x_19, x_94); +x_194 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__98; +lean_inc(x_193); +lean_inc(x_192); +lean_inc(x_14); +x_195 = l_Lean_Syntax_node2(x_14, x_194, x_192, x_193); +x_196 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__96; +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_14); +x_197 = l_Lean_Syntax_node3(x_14, x_196, x_35, x_195, x_42); +x_198 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__102; +lean_inc(x_14); +x_199 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_199, 0, x_14); +lean_ctor_set(x_199, 1, x_198); +x_200 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__103; +x_201 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__104; +lean_inc(x_14); +x_202 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_202, 0, x_14); +lean_ctor_set(x_202, 1, x_200); +lean_ctor_set(x_202, 2, x_201); +lean_ctor_set(x_202, 3, x_26); +x_203 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__94; +lean_inc(x_202); +lean_inc(x_199); +lean_inc(x_14); +x_204 = l_Lean_Syntax_node3(x_14, x_203, x_197, x_199, x_202); +x_205 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__106; +x_206 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__107; +lean_inc(x_14); +x_207 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_207, 0, x_14); +lean_ctor_set(x_207, 1, x_205); +lean_ctor_set(x_207, 2, x_206); +lean_ctor_set(x_207, 3, x_26); lean_inc(x_207); -lean_inc(x_198); -lean_inc(x_12); -x_209 = l_Lean_Syntax_node3(x_12, x_208, x_198, x_205, x_207); -lean_inc(x_12); -x_210 = l_Lean_Syntax_node1(x_12, x_17, x_209); -lean_inc(x_210); -lean_inc_n(x_19, 5); -lean_inc(x_12); -x_211 = l_Lean_Syntax_node6(x_12, x_20, x_19, x_210, x_19, x_19, x_19, x_19); -x_212 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__125; -x_213 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__126; -lean_inc(x_12); -x_214 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_214, 0, x_12); -lean_ctor_set(x_214, 1, x_212); -lean_ctor_set(x_214, 2, x_213); -lean_ctor_set(x_214, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_215 = l_Lean_Syntax_node2(x_12, x_70, x_214, x_19); -x_216 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__129; -lean_inc(x_12); -x_217 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_217, 0, x_12); -lean_ctor_set(x_217, 1, x_216); -lean_inc(x_122); -lean_inc(x_12); -x_218 = l_Lean_Syntax_node1(x_12, x_17, x_122); -lean_inc(x_75); -lean_inc(x_19); -lean_inc(x_127); -lean_inc(x_218); -lean_inc(x_73); -lean_inc(x_12); -x_219 = l_Lean_Syntax_node5(x_12, x_128, x_73, x_218, x_127, x_19, x_75); -lean_inc(x_219); -lean_inc(x_12); -x_220 = l_Lean_Syntax_node1(x_12, x_17, x_219); -x_221 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__130; -lean_inc(x_12); -x_222 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_222, 0, x_12); -lean_ctor_set(x_222, 1, x_221); -x_223 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__132; -x_224 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__133; -lean_inc(x_12); +lean_inc(x_46); +lean_inc(x_14); +x_208 = l_Lean_Syntax_node3(x_14, x_54, x_204, x_46, x_207); +lean_inc(x_33); +lean_inc(x_14); +x_209 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_208); +lean_inc(x_21); +lean_inc(x_14); +x_210 = l_Lean_Syntax_node2(x_14, x_58, x_21, x_209); +lean_inc(x_68); +lean_inc(x_25); +lean_inc(x_14); +x_211 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_189, x_210, x_68); +lean_inc(x_185); +lean_inc(x_14); +x_212 = l_Lean_Syntax_node2(x_14, x_71, x_185, x_211); +x_213 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__109; +x_214 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__110; +lean_inc(x_14); +x_215 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_215, 0, x_14); +lean_ctor_set(x_215, 1, x_213); +lean_ctor_set(x_215, 2, x_214); +lean_ctor_set(x_215, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_216 = l_Lean_Syntax_node2(x_14, x_30, x_215, x_21); +x_217 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__113; +lean_inc(x_14); +x_218 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_218, 0, x_14); +lean_ctor_set(x_218, 1, x_217); +x_219 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__115; +x_220 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__116; +lean_inc(x_14); +x_221 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_221, 0, x_14); +lean_ctor_set(x_221, 1, x_219); +lean_ctor_set(x_221, 2, x_220); +lean_ctor_set(x_221, 3, x_26); +lean_inc(x_221); +lean_inc(x_14); +x_222 = l_Lean_Syntax_node1(x_14, x_19, x_221); +x_223 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__118; +x_224 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__119; +lean_inc(x_14); x_225 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_225, 0, x_12); +lean_ctor_set(x_225, 0, x_14); lean_ctor_set(x_225, 1, x_223); lean_ctor_set(x_225, 2, x_224); -lean_ctor_set(x_225, 3, x_28); -lean_inc(x_137); -lean_inc(x_12); -x_226 = l_Lean_Syntax_node1(x_12, x_17, x_137); -lean_inc(x_225); -lean_inc(x_12); -x_227 = l_Lean_Syntax_node2(x_12, x_33, x_225, x_226); -lean_inc(x_122); -lean_inc(x_79); -lean_inc(x_12); -x_228 = l_Lean_Syntax_node3(x_12, x_87, x_227, x_79, x_122); -x_229 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__128; +lean_ctor_set(x_225, 3, x_26); +lean_inc(x_33); +lean_inc(x_14); +x_226 = l_Lean_Syntax_node2(x_14, x_19, x_33, x_225); +x_227 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__120; +lean_inc(x_14); +x_228 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_228, 0, x_14); +lean_ctor_set(x_228, 1, x_227); +x_229 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__112; +lean_inc(x_228); +lean_inc(x_226); lean_inc(x_222); -lean_inc(x_19); -lean_inc(x_220); -lean_inc(x_217); -lean_inc(x_12); -x_230 = l_Lean_Syntax_node5(x_12, x_229, x_217, x_220, x_19, x_222, x_228); -lean_inc(x_27); -lean_inc(x_12); -x_231 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_230); -lean_inc(x_19); -lean_inc(x_12); -x_232 = l_Lean_Syntax_node2(x_12, x_37, x_19, x_231); -x_233 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__142; -lean_inc(x_12); -x_234 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_234, 0, x_12); -lean_ctor_set(x_234, 1, x_233); -x_235 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__145; -lean_inc(x_12); -x_236 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_236, 0, x_12); -lean_ctor_set(x_236, 1, x_235); -x_237 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__144; -lean_inc(x_236); -lean_inc(x_12); -x_238 = l_Lean_Syntax_node1(x_12, x_237, x_236); -lean_inc(x_222); -lean_inc_n(x_238, 2); -lean_inc(x_12); -x_239 = l_Lean_Syntax_node3(x_12, x_17, x_238, x_222, x_238); -lean_inc(x_84); -lean_inc(x_81); -lean_inc(x_12); -x_240 = l_Lean_Syntax_node3(x_12, x_85, x_81, x_239, x_84); -lean_inc(x_240); -lean_inc(x_12); -x_241 = l_Lean_Syntax_node1(x_12, x_17, x_240); -lean_inc(x_12); -x_242 = l_Lean_Syntax_node1(x_12, x_17, x_241); -x_243 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__146; -lean_inc(x_12); -x_244 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_244, 0, x_12); -lean_ctor_set(x_244, 1, x_243); -x_245 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__141; -lean_inc(x_93); -lean_inc(x_244); -lean_inc(x_234); -lean_inc(x_12); -x_246 = l_Lean_Syntax_node4(x_12, x_245, x_234, x_242, x_244, x_93); -lean_inc(x_12); -x_247 = l_Lean_Syntax_node1(x_12, x_17, x_246); -x_248 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__139; -lean_inc(x_12); -x_249 = l_Lean_Syntax_node1(x_12, x_248, x_247); -x_250 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__137; -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_12); -x_251 = l_Lean_Syntax_node3(x_12, x_250, x_249, x_95, x_19); -x_252 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__135; -lean_inc(x_12); -x_253 = l_Lean_Syntax_node1(x_12, x_252, x_251); -lean_inc(x_66); -lean_inc(x_12); -x_254 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_215, x_232, x_253); -lean_inc(x_211); -lean_inc(x_12); -x_255 = l_Lean_Syntax_node2(x_12, x_63, x_211, x_254); -x_256 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__148; -x_257 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__149; -lean_inc(x_12); -x_258 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_258, 0, x_12); -lean_ctor_set(x_258, 1, x_256); -lean_ctor_set(x_258, 2, x_257); -lean_ctor_set(x_258, 3, x_28); -lean_inc(x_19); -lean_inc(x_258); -lean_inc(x_12); -x_259 = l_Lean_Syntax_node2(x_12, x_70, x_258, x_19); -x_260 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__152; -lean_inc(x_12); -x_261 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_261, 0, x_12); -lean_ctor_set(x_261, 1, x_260); -x_262 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__154; -x_263 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__155; -lean_inc(x_12); -x_264 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_264, 0, x_12); -lean_ctor_set(x_264, 1, x_262); -lean_ctor_set(x_264, 2, x_263); -lean_ctor_set(x_264, 3, x_28); -lean_inc(x_27); -lean_inc(x_12); -x_265 = l_Lean_Syntax_node2(x_12, x_17, x_27, x_264); -x_266 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__156; -lean_inc(x_12); -x_267 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_267, 0, x_12); -lean_ctor_set(x_267, 1, x_266); -x_268 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__151; -lean_inc(x_267); -lean_inc(x_265); lean_inc(x_218); -lean_inc(x_261); -lean_inc(x_12); -x_269 = l_Lean_Syntax_node4(x_12, x_268, x_261, x_218, x_265, x_267); -lean_inc(x_12); -x_270 = l_Lean_Syntax_node1(x_12, x_17, x_269); -x_271 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__161; -lean_inc(x_12); -x_272 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_272, 0, x_12); -lean_ctor_set(x_272, 1, x_271); -x_273 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__163; -x_274 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__164; -lean_inc(x_12); -x_275 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_275, 0, x_12); -lean_ctor_set(x_275, 1, x_273); -lean_ctor_set(x_275, 2, x_274); -lean_ctor_set(x_275, 3, x_28); -x_276 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__160; -lean_inc(x_275); -lean_inc(x_272); -lean_inc(x_122); -lean_inc(x_12); -x_277 = l_Lean_Syntax_node3(x_12, x_276, x_122, x_272, x_275); -x_278 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__165; -lean_inc(x_12); -x_279 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_279, 0, x_12); -lean_ctor_set(x_279, 1, x_278); -x_280 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__171; -x_281 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__172; -lean_inc(x_12); -x_282 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_282, 0, x_12); -lean_ctor_set(x_282, 1, x_280); -lean_ctor_set(x_282, 2, x_281); -lean_ctor_set(x_282, 3, x_28); -lean_inc(x_282); -lean_inc(x_12); -x_283 = l_Lean_Syntax_node2(x_12, x_33, x_282, x_218); -x_284 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__169; -lean_inc(x_75); -lean_inc(x_73); -lean_inc(x_12); -x_285 = l_Lean_Syntax_node3(x_12, x_284, x_73, x_283, x_75); -x_286 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__173; -lean_inc(x_12); -x_287 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_287, 0, x_12); -lean_ctor_set(x_287, 1, x_286); -x_288 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__175; -x_289 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__177; -lean_inc(x_12); -x_290 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_290, 0, x_12); -lean_ctor_set(x_290, 1, x_288); -lean_ctor_set(x_290, 2, x_289); -lean_ctor_set(x_290, 3, x_28); -x_291 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__167; -lean_inc(x_287); -lean_inc(x_12); -x_292 = l_Lean_Syntax_node3(x_12, x_291, x_285, x_287, x_290); -lean_inc(x_122); -lean_inc(x_79); -lean_inc(x_12); -x_293 = l_Lean_Syntax_node3(x_12, x_87, x_292, x_79, x_122); -x_294 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__158; -lean_inc(x_279); -lean_inc(x_12); -x_295 = l_Lean_Syntax_node3(x_12, x_294, x_277, x_279, x_293); -lean_inc(x_27); -lean_inc(x_12); -x_296 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_295); -lean_inc(x_12); -x_297 = l_Lean_Syntax_node2(x_12, x_37, x_270, x_296); -x_298 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__179; -x_299 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__181; -lean_inc(x_12); -x_300 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_300, 0, x_12); -lean_ctor_set(x_300, 1, x_298); -lean_ctor_set(x_300, 2, x_299); -lean_ctor_set(x_300, 3, x_28); -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_300); -lean_inc(x_45); -lean_inc(x_12); -x_301 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_300, x_95, x_19); -lean_inc(x_66); -lean_inc(x_12); -x_302 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_259, x_297, x_301); -lean_inc(x_21); -lean_inc(x_12); -x_303 = l_Lean_Syntax_node2(x_12, x_63, x_21, x_302); -x_304 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__183; -x_305 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__184; -lean_inc(x_12); -x_306 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_306, 0, x_12); -lean_ctor_set(x_306, 1, x_304); -lean_ctor_set(x_306, 2, x_305); -lean_ctor_set(x_306, 3, x_28); -lean_inc(x_19); -lean_inc(x_306); -lean_inc(x_12); -x_307 = l_Lean_Syntax_node2(x_12, x_70, x_306, x_19); -x_308 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__186; -x_309 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__187; -lean_inc(x_12); -x_310 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_310, 0, x_12); -lean_ctor_set(x_310, 1, x_308); -lean_ctor_set(x_310, 2, x_309); -lean_ctor_set(x_310, 3, x_28); -lean_inc(x_310); -lean_inc(x_12); -x_311 = l_Lean_Syntax_node1(x_12, x_17, x_310); -lean_inc(x_267); -lean_inc(x_265); -lean_inc(x_311); -lean_inc(x_261); -lean_inc(x_12); -x_312 = l_Lean_Syntax_node4(x_12, x_268, x_261, x_311, x_265, x_267); -x_313 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__189; -x_314 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__190; -lean_inc(x_12); -x_315 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_315, 0, x_12); -lean_ctor_set(x_315, 1, x_313); -lean_ctor_set(x_315, 2, x_314); -lean_ctor_set(x_315, 3, x_28); -lean_inc(x_315); -lean_inc(x_12); -x_316 = l_Lean_Syntax_node1(x_12, x_17, x_315); -lean_inc(x_275); -lean_inc(x_272); -lean_inc(x_310); -lean_inc(x_12); -x_317 = l_Lean_Syntax_node3(x_12, x_276, x_310, x_272, x_275); -lean_inc(x_27); -lean_inc(x_12); -x_318 = l_Lean_Syntax_node2(x_12, x_17, x_27, x_317); -lean_inc(x_75); -lean_inc(x_19); -lean_inc(x_316); -lean_inc(x_73); -lean_inc(x_12); -x_319 = l_Lean_Syntax_node5(x_12, x_128, x_73, x_316, x_318, x_19, x_75); -lean_inc(x_12); -x_320 = l_Lean_Syntax_node2(x_12, x_17, x_312, x_319); -lean_inc(x_311); -lean_inc(x_282); -lean_inc(x_12); -x_321 = l_Lean_Syntax_node2(x_12, x_33, x_282, x_311); -lean_inc(x_75); -lean_inc(x_73); -lean_inc(x_12); -x_322 = l_Lean_Syntax_node3(x_12, x_284, x_73, x_321, x_75); -x_323 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__191; -x_324 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__192; -lean_inc(x_12); -x_325 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_325, 0, x_12); -lean_ctor_set(x_325, 1, x_323); -lean_ctor_set(x_325, 2, x_324); -lean_ctor_set(x_325, 3, x_28); -lean_inc(x_325); -lean_inc(x_287); -lean_inc(x_12); -x_326 = l_Lean_Syntax_node3(x_12, x_291, x_322, x_287, x_325); -lean_inc(x_310); -lean_inc(x_79); -lean_inc(x_12); -x_327 = l_Lean_Syntax_node3(x_12, x_87, x_326, x_79, x_310); -lean_inc(x_27); -lean_inc(x_12); -x_328 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_327); -lean_inc(x_12); -x_329 = l_Lean_Syntax_node2(x_12, x_37, x_320, x_328); -x_330 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__195; -lean_inc(x_12); -x_331 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_331, 0, x_12); -lean_ctor_set(x_331, 1, x_330); -x_332 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__203; -lean_inc(x_12); -x_333 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_333, 0, x_12); -lean_ctor_set(x_333, 1, x_332); -x_334 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__205; -lean_inc(x_19); -lean_inc(x_12); -x_335 = l_Lean_Syntax_node1(x_12, x_334, x_19); -x_336 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__208; -lean_inc(x_12); -x_337 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_337, 0, x_12); -lean_ctor_set(x_337, 1, x_336); -x_338 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__210; -lean_inc(x_325); -lean_inc(x_19); -lean_inc(x_12); -x_339 = l_Lean_Syntax_node2(x_12, x_338, x_19, x_325); -lean_inc(x_316); -lean_inc(x_12); -x_340 = l_Lean_Syntax_node2(x_12, x_33, x_258, x_316); -lean_inc(x_19); -lean_inc(x_12); -x_341 = l_Lean_Syntax_node2(x_12, x_338, x_19, x_340); +lean_inc(x_14); +x_230 = l_Lean_Syntax_node4(x_14, x_229, x_218, x_222, x_226, x_228); +lean_inc(x_230); +lean_inc(x_14); +x_231 = l_Lean_Syntax_node1(x_14, x_19, x_230); +x_232 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__122; +x_233 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__123; +lean_inc(x_14); +x_234 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_234, 0, x_14); +lean_ctor_set(x_234, 1, x_232); +lean_ctor_set(x_234, 2, x_233); +lean_ctor_set(x_234, 3, x_26); lean_inc(x_222); -lean_inc(x_12); -x_342 = l_Lean_Syntax_node3(x_12, x_17, x_339, x_222, x_341); -x_343 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__207; -lean_inc(x_207); -lean_inc(x_337); -lean_inc(x_12); -x_344 = l_Lean_Syntax_node3(x_12, x_343, x_337, x_342, x_207); -x_345 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__202; -lean_inc(x_19); -lean_inc(x_335); -lean_inc(x_333); -lean_inc(x_12); -x_346 = l_Lean_Syntax_node4(x_12, x_345, x_333, x_335, x_344, x_19); -lean_inc(x_12); -x_347 = l_Lean_Syntax_node1(x_12, x_17, x_346); -x_348 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__200; -lean_inc(x_12); -x_349 = l_Lean_Syntax_node1(x_12, x_348, x_347); -x_350 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__198; -lean_inc(x_12); -x_351 = l_Lean_Syntax_node1(x_12, x_350, x_349); -x_352 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__194; -lean_inc(x_331); -lean_inc(x_12); -x_353 = l_Lean_Syntax_node2(x_12, x_352, x_331, x_351); -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_45); -lean_inc(x_12); -x_354 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_353, x_95, x_19); -lean_inc(x_66); -lean_inc(x_12); -x_355 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_307, x_329, x_354); -lean_inc(x_21); -lean_inc(x_12); -x_356 = l_Lean_Syntax_node2(x_12, x_63, x_21, x_355); -x_357 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__212; -x_358 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__213; -lean_inc(x_12); -x_359 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_359, 0, x_12); -lean_ctor_set(x_359, 1, x_357); -lean_ctor_set(x_359, 2, x_358); -lean_ctor_set(x_359, 3, x_28); -lean_inc(x_19); -lean_inc(x_359); -lean_inc(x_12); -x_360 = l_Lean_Syntax_node2(x_12, x_70, x_359, x_19); -lean_inc(x_267); -lean_inc(x_127); -lean_inc(x_261); -lean_inc(x_12); -x_361 = l_Lean_Syntax_node4(x_12, x_268, x_261, x_126, x_127, x_267); -lean_inc(x_361); -lean_inc(x_12); -x_362 = l_Lean_Syntax_node1(x_12, x_17, x_361); -x_363 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__218; -lean_inc(x_12); -x_364 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_364, 0, x_12); -lean_ctor_set(x_364, 1, x_363); -x_365 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__217; -lean_inc(x_125); -lean_inc(x_364); -lean_inc(x_122); -lean_inc(x_12); -x_366 = l_Lean_Syntax_node3(x_12, x_365, x_122, x_364, x_125); -x_367 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__219; -lean_inc(x_12); -x_368 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_368, 0, x_12); -lean_ctor_set(x_368, 1, x_367); -lean_inc(x_140); -lean_inc(x_364); -lean_inc(x_137); -lean_inc(x_12); -x_369 = l_Lean_Syntax_node3(x_12, x_365, x_137, x_364, x_140); -x_370 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__215; -lean_inc(x_368); -lean_inc(x_366); -lean_inc(x_12); -x_371 = l_Lean_Syntax_node3(x_12, x_370, x_366, x_368, x_369); -lean_inc(x_27); -lean_inc(x_12); -x_372 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_371); -lean_inc(x_362); -lean_inc(x_12); -x_373 = l_Lean_Syntax_node2(x_12, x_37, x_362, x_372); -x_374 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__221; -lean_inc(x_93); -lean_inc(x_287); -lean_inc(x_12); -x_375 = l_Lean_Syntax_node2(x_12, x_374, x_287, x_93); -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_45); -lean_inc(x_12); -x_376 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_375, x_95, x_19); -lean_inc(x_376); -lean_inc(x_66); -lean_inc(x_12); -x_377 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_360, x_373, x_376); -lean_inc(x_21); -lean_inc(x_12); -x_378 = l_Lean_Syntax_node2(x_12, x_63, x_21, x_377); -x_379 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__223; -x_380 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__224; -lean_inc(x_12); -x_381 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_381, 0, x_12); -lean_ctor_set(x_381, 1, x_379); -lean_ctor_set(x_381, 2, x_380); -lean_ctor_set(x_381, 3, x_28); -lean_inc(x_19); -lean_inc(x_381); -lean_inc(x_12); -x_382 = l_Lean_Syntax_node2(x_12, x_70, x_381, x_19); -lean_inc(x_125); -lean_inc(x_272); -lean_inc(x_122); -lean_inc(x_12); -x_383 = l_Lean_Syntax_node3(x_12, x_276, x_122, x_272, x_125); -lean_inc(x_140); -lean_inc(x_272); -lean_inc(x_137); -lean_inc(x_12); -x_384 = l_Lean_Syntax_node3(x_12, x_276, x_137, x_272, x_140); -lean_inc(x_368); -lean_inc(x_383); -lean_inc(x_12); -x_385 = l_Lean_Syntax_node3(x_12, x_370, x_383, x_368, x_384); -lean_inc(x_27); -lean_inc(x_12); -x_386 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_385); -lean_inc(x_362); -lean_inc(x_12); -x_387 = l_Lean_Syntax_node2(x_12, x_37, x_362, x_386); -lean_inc(x_66); -lean_inc(x_12); -x_388 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_382, x_387, x_376); -lean_inc(x_12); -x_389 = l_Lean_Syntax_node2(x_12, x_63, x_21, x_388); -x_390 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__225; -lean_inc(x_12); -x_391 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_391, 0, x_12); -lean_ctor_set(x_391, 1, x_390); -x_392 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__226; -lean_inc(x_12); -x_393 = l_Lean_Syntax_node1(x_12, x_392, x_391); -lean_inc(x_12); -x_394 = l_Lean_Syntax_node1(x_12, x_17, x_393); -lean_inc(x_394); -lean_inc_n(x_19, 4); -lean_inc(x_12); -x_395 = l_Lean_Syntax_node6(x_12, x_20, x_19, x_210, x_394, x_19, x_19, x_19); -x_396 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__228; -x_397 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__229; -lean_inc(x_12); -x_398 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_398, 0, x_12); -lean_ctor_set(x_398, 1, x_396); -lean_ctor_set(x_398, 2, x_397); -lean_ctor_set(x_398, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_399 = l_Lean_Syntax_node2(x_12, x_70, x_398, x_19); -x_400 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__232; -lean_inc(x_12); -x_401 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_401, 0, x_12); -lean_ctor_set(x_401, 1, x_400); -x_402 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__231; -lean_inc(x_366); -lean_inc(x_401); -lean_inc(x_12); -x_403 = l_Lean_Syntax_node2(x_12, x_402, x_401, x_366); -lean_inc(x_122); -lean_inc(x_272); -lean_inc(x_125); -lean_inc(x_12); -x_404 = l_Lean_Syntax_node3(x_12, x_276, x_125, x_272, x_122); -lean_inc(x_404); -lean_inc(x_368); -lean_inc(x_12); -x_405 = l_Lean_Syntax_node3(x_12, x_370, x_403, x_368, x_404); -lean_inc(x_27); -lean_inc(x_12); -x_406 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_405); -lean_inc(x_362); -lean_inc(x_12); -x_407 = l_Lean_Syntax_node2(x_12, x_37, x_362, x_406); -x_408 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__235; -lean_inc_n(x_19, 2); -lean_inc(x_12); -x_409 = l_Lean_Syntax_node3(x_12, x_408, x_19, x_19, x_359); -lean_inc_n(x_19, 2); -lean_inc(x_12); -x_410 = l_Lean_Syntax_node3(x_12, x_408, x_19, x_19, x_381); -lean_inc(x_410); -lean_inc(x_222); -lean_inc(x_409); -lean_inc(x_12); -x_411 = l_Lean_Syntax_node3(x_12, x_17, x_409, x_222, x_410); -lean_inc(x_207); -lean_inc(x_337); -lean_inc(x_12); -x_412 = l_Lean_Syntax_node3(x_12, x_17, x_337, x_411, x_207); -x_413 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__233; -lean_inc_n(x_19, 3); -lean_inc(x_335); -lean_inc(x_200); -lean_inc(x_12); -x_414 = l_Lean_Syntax_node6(x_12, x_413, x_200, x_335, x_19, x_19, x_412, x_19); -lean_inc(x_12); -x_415 = l_Lean_Syntax_node1(x_12, x_17, x_414); -lean_inc(x_12); -x_416 = l_Lean_Syntax_node1(x_12, x_348, x_415); -lean_inc(x_12); -x_417 = l_Lean_Syntax_node1(x_12, x_350, x_416); -lean_inc(x_331); -lean_inc(x_12); -x_418 = l_Lean_Syntax_node2(x_12, x_352, x_331, x_417); -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_45); -lean_inc(x_12); -x_419 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_418, x_95, x_19); -lean_inc(x_419); -lean_inc(x_66); -lean_inc(x_12); -x_420 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_399, x_407, x_419); -lean_inc(x_395); -lean_inc(x_12); -x_421 = l_Lean_Syntax_node2(x_12, x_63, x_395, x_420); -x_422 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__237; -x_423 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__238; -lean_inc(x_12); -x_424 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_424, 0, x_12); -lean_ctor_set(x_424, 1, x_422); -lean_ctor_set(x_424, 2, x_423); -lean_ctor_set(x_424, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_425 = l_Lean_Syntax_node2(x_12, x_70, x_424, x_19); -lean_inc(x_383); -lean_inc(x_401); -lean_inc(x_12); -x_426 = l_Lean_Syntax_node2(x_12, x_402, x_401, x_383); -lean_inc(x_122); -lean_inc(x_364); -lean_inc(x_125); -lean_inc(x_12); -x_427 = l_Lean_Syntax_node3(x_12, x_365, x_125, x_364, x_122); -lean_inc(x_427); -lean_inc(x_12); -x_428 = l_Lean_Syntax_node3(x_12, x_370, x_426, x_368, x_427); -lean_inc(x_27); -lean_inc(x_12); -x_429 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_428); -lean_inc(x_362); -lean_inc(x_12); -x_430 = l_Lean_Syntax_node2(x_12, x_37, x_362, x_429); -lean_inc(x_66); -lean_inc(x_12); -x_431 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_425, x_430, x_419); -lean_inc(x_395); -lean_inc(x_12); -x_432 = l_Lean_Syntax_node2(x_12, x_63, x_395, x_431); -x_433 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__240; -x_434 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__241; -lean_inc(x_12); -x_435 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_435, 0, x_12); -lean_ctor_set(x_435, 1, x_433); -lean_ctor_set(x_435, 2, x_434); -lean_ctor_set(x_435, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_436 = l_Lean_Syntax_node2(x_12, x_70, x_435, x_19); -lean_inc(x_364); -lean_inc_n(x_122, 2); -lean_inc(x_12); -x_437 = l_Lean_Syntax_node3(x_12, x_365, x_122, x_364, x_122); -lean_inc(x_27); -lean_inc(x_12); -x_438 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_437); -lean_inc(x_220); -lean_inc(x_12); -x_439 = l_Lean_Syntax_node2(x_12, x_37, x_220, x_438); -lean_inc(x_12); -x_440 = l_Lean_Syntax_node1(x_12, x_17, x_409); -lean_inc(x_207); -lean_inc(x_337); -lean_inc(x_12); -x_441 = l_Lean_Syntax_node3(x_12, x_17, x_337, x_440, x_207); -lean_inc_n(x_19, 3); -lean_inc(x_335); -lean_inc(x_200); -lean_inc(x_12); -x_442 = l_Lean_Syntax_node6(x_12, x_413, x_200, x_335, x_19, x_19, x_441, x_19); -lean_inc(x_12); -x_443 = l_Lean_Syntax_node1(x_12, x_17, x_442); -lean_inc(x_12); -x_444 = l_Lean_Syntax_node1(x_12, x_348, x_443); -lean_inc(x_12); -x_445 = l_Lean_Syntax_node1(x_12, x_350, x_444); -lean_inc(x_331); -lean_inc(x_12); -x_446 = l_Lean_Syntax_node2(x_12, x_352, x_331, x_445); -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_45); -lean_inc(x_12); -x_447 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_446, x_95, x_19); -lean_inc(x_66); -lean_inc(x_12); -x_448 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_436, x_439, x_447); -lean_inc(x_395); -lean_inc(x_12); -x_449 = l_Lean_Syntax_node2(x_12, x_63, x_395, x_448); -x_450 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__243; -x_451 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__244; -lean_inc(x_12); -x_452 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_452, 0, x_12); -lean_ctor_set(x_452, 1, x_450); -lean_ctor_set(x_452, 2, x_451); -lean_ctor_set(x_452, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_453 = l_Lean_Syntax_node2(x_12, x_70, x_452, x_19); -lean_inc(x_272); -lean_inc_n(x_122, 2); -lean_inc(x_12); -x_454 = l_Lean_Syntax_node3(x_12, x_276, x_122, x_272, x_122); -lean_inc(x_401); -lean_inc(x_12); -x_455 = l_Lean_Syntax_node2(x_12, x_402, x_401, x_454); -lean_inc(x_27); -lean_inc(x_12); -x_456 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_455); -lean_inc(x_220); -lean_inc(x_12); -x_457 = l_Lean_Syntax_node2(x_12, x_37, x_220, x_456); -lean_inc_n(x_19, 4); -lean_inc(x_335); -lean_inc(x_200); -lean_inc(x_12); -x_458 = l_Lean_Syntax_node6(x_12, x_413, x_200, x_335, x_19, x_19, x_19, x_19); -lean_inc(x_12); -x_459 = l_Lean_Syntax_node1(x_12, x_17, x_458); -lean_inc(x_12); -x_460 = l_Lean_Syntax_node1(x_12, x_348, x_459); -lean_inc(x_12); -x_461 = l_Lean_Syntax_node1(x_12, x_350, x_460); -lean_inc(x_331); -lean_inc(x_12); -x_462 = l_Lean_Syntax_node2(x_12, x_352, x_331, x_461); -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_45); -lean_inc(x_12); -x_463 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_462, x_95, x_19); -lean_inc(x_66); -lean_inc(x_12); -x_464 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_453, x_457, x_463); -lean_inc(x_395); -lean_inc(x_12); -x_465 = l_Lean_Syntax_node2(x_12, x_63, x_395, x_464); -lean_inc(x_394); -lean_inc_n(x_19, 5); -lean_inc(x_12); -x_466 = l_Lean_Syntax_node6(x_12, x_20, x_19, x_19, x_394, x_19, x_19, x_19); -x_467 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__246; -x_468 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__247; -lean_inc(x_12); -x_469 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_469, 0, x_12); -lean_ctor_set(x_469, 1, x_467); -lean_ctor_set(x_469, 2, x_468); -lean_ctor_set(x_469, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_470 = l_Lean_Syntax_node2(x_12, x_70, x_469, x_19); -x_471 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__249; -x_472 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__250; -lean_inc(x_12); -x_473 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_473, 0, x_12); -lean_ctor_set(x_473, 1, x_471); -lean_ctor_set(x_473, 2, x_472); -lean_ctor_set(x_473, 3, x_28); -lean_inc(x_473); -lean_inc(x_125); -lean_inc(x_122); -lean_inc(x_12); -x_474 = l_Lean_Syntax_node3(x_12, x_17, x_122, x_125, x_473); -lean_inc(x_267); -lean_inc(x_127); -lean_inc(x_261); -lean_inc(x_12); -x_475 = l_Lean_Syntax_node4(x_12, x_268, x_261, x_474, x_127, x_267); -lean_inc(x_12); -x_476 = l_Lean_Syntax_node1(x_12, x_17, x_475); -lean_inc(x_473); -lean_inc(x_364); -lean_inc(x_125); -lean_inc(x_12); -x_477 = l_Lean_Syntax_node3(x_12, x_365, x_125, x_364, x_473); -lean_inc(x_473); -lean_inc(x_122); -lean_inc(x_12); -x_478 = l_Lean_Syntax_node3(x_12, x_365, x_122, x_364, x_473); -lean_inc(x_279); -lean_inc(x_12); -x_479 = l_Lean_Syntax_node3(x_12, x_294, x_477, x_279, x_478); -lean_inc(x_279); -lean_inc(x_366); -lean_inc(x_12); -x_480 = l_Lean_Syntax_node3(x_12, x_294, x_366, x_279, x_479); -lean_inc(x_27); -lean_inc(x_12); -x_481 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_480); -lean_inc(x_476); -lean_inc(x_12); -x_482 = l_Lean_Syntax_node2(x_12, x_37, x_476, x_481); -x_483 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__252; -x_484 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__254; -lean_inc(x_12); -x_485 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_485, 0, x_12); -lean_ctor_set(x_485, 1, x_483); -lean_ctor_set(x_485, 2, x_484); -lean_ctor_set(x_485, 3, x_28); -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_45); -lean_inc(x_12); -x_486 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_485, x_95, x_19); -lean_inc(x_66); -lean_inc(x_12); -x_487 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_470, x_482, x_486); -lean_inc(x_466); -lean_inc(x_12); -x_488 = l_Lean_Syntax_node2(x_12, x_63, x_466, x_487); -x_489 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__256; -x_490 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__257; -lean_inc(x_12); -x_491 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_491, 0, x_12); -lean_ctor_set(x_491, 1, x_489); -lean_ctor_set(x_491, 2, x_490); -lean_ctor_set(x_491, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_492 = l_Lean_Syntax_node2(x_12, x_70, x_491, x_19); -lean_inc(x_473); -lean_inc(x_272); -lean_inc(x_125); -lean_inc(x_12); -x_493 = l_Lean_Syntax_node3(x_12, x_276, x_125, x_272, x_473); -lean_inc(x_272); -lean_inc(x_122); -lean_inc(x_12); -x_494 = l_Lean_Syntax_node3(x_12, x_276, x_122, x_272, x_473); -lean_inc(x_279); -lean_inc(x_12); -x_495 = l_Lean_Syntax_node3(x_12, x_294, x_493, x_279, x_494); -lean_inc(x_279); -lean_inc(x_383); -lean_inc(x_12); -x_496 = l_Lean_Syntax_node3(x_12, x_294, x_383, x_279, x_495); -lean_inc(x_27); -lean_inc(x_12); -x_497 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_496); -lean_inc(x_12); -x_498 = l_Lean_Syntax_node2(x_12, x_37, x_476, x_497); -x_499 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__259; -x_500 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__260; -lean_inc(x_12); -x_501 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_501, 0, x_12); -lean_ctor_set(x_501, 1, x_499); -lean_ctor_set(x_501, 2, x_500); -lean_ctor_set(x_501, 3, x_28); -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_45); -lean_inc(x_12); -x_502 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_501, x_95, x_19); -lean_inc(x_66); -lean_inc(x_12); -x_503 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_492, x_498, x_502); -lean_inc(x_466); -lean_inc(x_12); -x_504 = l_Lean_Syntax_node2(x_12, x_63, x_466, x_503); -x_505 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__262; -x_506 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__263; -lean_inc(x_12); -x_507 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_507, 0, x_12); -lean_ctor_set(x_507, 1, x_505); -lean_ctor_set(x_507, 2, x_506); -lean_ctor_set(x_507, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_508 = l_Lean_Syntax_node2(x_12, x_70, x_507, x_19); -x_509 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__266; -lean_inc(x_12); -x_510 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_510, 0, x_12); -lean_ctor_set(x_510, 1, x_509); -x_511 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__265; -lean_inc(x_427); -lean_inc(x_12); -x_512 = l_Lean_Syntax_node3(x_12, x_511, x_366, x_510, x_427); -lean_inc(x_27); -lean_inc(x_12); -x_513 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_512); -lean_inc(x_130); -lean_inc(x_12); -x_514 = l_Lean_Syntax_node2(x_12, x_37, x_130, x_513); -x_515 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__268; -x_516 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__269; -lean_inc(x_12); -x_517 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_517, 0, x_12); -lean_ctor_set(x_517, 1, x_515); -lean_ctor_set(x_517, 2, x_516); -lean_ctor_set(x_517, 3, x_28); -x_518 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__272; -lean_inc(x_12); -x_519 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_519, 0, x_12); -lean_ctor_set(x_519, 1, x_518); -x_520 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__271; -lean_inc(x_12); -x_521 = l_Lean_Syntax_node1(x_12, x_520, x_519); -lean_inc(x_12); -x_522 = l_Lean_Syntax_node1(x_12, x_17, x_521); -lean_inc(x_522); -lean_inc(x_12); -x_523 = l_Lean_Syntax_node2(x_12, x_33, x_517, x_522); -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_45); -lean_inc(x_12); -x_524 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_523, x_95, x_19); -lean_inc(x_66); -lean_inc(x_12); -x_525 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_508, x_514, x_524); -lean_inc(x_466); -lean_inc(x_12); -x_526 = l_Lean_Syntax_node2(x_12, x_63, x_466, x_525); -x_527 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__274; -x_528 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__275; -lean_inc(x_12); -x_529 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_529, 0, x_12); -lean_ctor_set(x_529, 1, x_527); -lean_ctor_set(x_529, 2, x_528); -lean_ctor_set(x_529, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_530 = l_Lean_Syntax_node2(x_12, x_70, x_529, x_19); -lean_inc(x_12); -x_531 = l_Lean_Syntax_node2(x_12, x_402, x_401, x_404); -lean_inc(x_279); -lean_inc(x_383); -lean_inc(x_12); -x_532 = l_Lean_Syntax_node3(x_12, x_294, x_383, x_279, x_531); -lean_inc(x_27); -lean_inc(x_12); -x_533 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_532); -lean_inc(x_362); -lean_inc(x_12); -x_534 = l_Lean_Syntax_node2(x_12, x_37, x_362, x_533); -x_535 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__277; -x_536 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__278; -lean_inc(x_12); -x_537 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_537, 0, x_12); -lean_ctor_set(x_537, 1, x_535); -lean_ctor_set(x_537, 2, x_536); -lean_ctor_set(x_537, 3, x_28); -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_45); -lean_inc(x_12); -x_538 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_537, x_95, x_19); -lean_inc(x_66); -lean_inc(x_12); -x_539 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_530, x_534, x_538); -lean_inc(x_466); -lean_inc(x_12); -x_540 = l_Lean_Syntax_node2(x_12, x_63, x_466, x_539); -x_541 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__280; -x_542 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__281; -lean_inc(x_12); -x_543 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_543, 0, x_12); -lean_ctor_set(x_543, 1, x_541); -lean_ctor_set(x_543, 2, x_542); -lean_ctor_set(x_543, 3, x_28); -lean_inc(x_19); -lean_inc(x_543); -lean_inc(x_12); -x_544 = l_Lean_Syntax_node2(x_12, x_70, x_543, x_19); -lean_inc(x_125); -lean_inc(x_79); -lean_inc(x_122); -lean_inc(x_12); -x_545 = l_Lean_Syntax_node3(x_12, x_87, x_122, x_79, x_125); -lean_inc(x_545); -lean_inc(x_27); -lean_inc(x_12); -x_546 = l_Lean_Syntax_node2(x_12, x_17, x_27, x_545); -lean_inc(x_75); -lean_inc(x_19); -lean_inc(x_316); -lean_inc(x_73); -lean_inc(x_12); -x_547 = l_Lean_Syntax_node5(x_12, x_128, x_73, x_316, x_546, x_19, x_75); -lean_inc(x_361); -lean_inc(x_12); -x_548 = l_Lean_Syntax_node2(x_12, x_17, x_361, x_547); -lean_inc(x_140); -lean_inc(x_79); -lean_inc(x_137); -lean_inc(x_12); -x_549 = l_Lean_Syntax_node3(x_12, x_87, x_137, x_79, x_140); -lean_inc(x_549); -lean_inc(x_27); -lean_inc(x_12); -x_550 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_549); -lean_inc(x_12); -x_551 = l_Lean_Syntax_node2(x_12, x_37, x_548, x_550); -x_552 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__284; -lean_inc(x_12); -x_553 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_553, 0, x_12); -lean_ctor_set(x_553, 1, x_552); -lean_inc(x_93); -lean_inc(x_12); -x_554 = l_Lean_Syntax_node1(x_12, x_17, x_93); -x_555 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__283; -lean_inc(x_315); -lean_inc(x_12); -x_556 = l_Lean_Syntax_node3(x_12, x_555, x_315, x_553, x_554); -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_45); -lean_inc(x_12); -x_557 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_556, x_95, x_19); -lean_inc(x_66); -lean_inc(x_12); -x_558 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_544, x_551, x_557); -lean_inc(x_466); -lean_inc(x_12); -x_559 = l_Lean_Syntax_node2(x_12, x_63, x_466, x_558); -x_560 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__286; -x_561 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__287; -lean_inc(x_12); -x_562 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_562, 0, x_12); -lean_ctor_set(x_562, 1, x_560); -lean_ctor_set(x_562, 2, x_561); -lean_ctor_set(x_562, 3, x_28); -lean_inc(x_19); -lean_inc(x_562); -lean_inc(x_12); -x_563 = l_Lean_Syntax_node2(x_12, x_70, x_562, x_19); -lean_inc(x_27); -lean_inc(x_12); -x_564 = l_Lean_Syntax_node2(x_12, x_17, x_27, x_549); -lean_inc(x_75); -lean_inc(x_19); -lean_inc(x_316); -lean_inc(x_73); -lean_inc(x_12); -x_565 = l_Lean_Syntax_node5(x_12, x_128, x_73, x_316, x_564, x_19, x_75); -lean_inc(x_361); -lean_inc(x_12); -x_566 = l_Lean_Syntax_node2(x_12, x_17, x_361, x_565); -lean_inc(x_545); -lean_inc(x_27); -lean_inc(x_12); -x_567 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_545); -lean_inc(x_567); -lean_inc(x_12); -x_568 = l_Lean_Syntax_node2(x_12, x_37, x_566, x_567); -x_569 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__288; -lean_inc(x_12); -x_570 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_570, 0, x_12); -lean_ctor_set(x_570, 1, x_569); -x_571 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__291; -lean_inc(x_122); -lean_inc(x_19); -lean_inc(x_12); -x_572 = l_Lean_Syntax_node2(x_12, x_571, x_19, x_122); -lean_inc(x_12); -x_573 = l_Lean_Syntax_node1(x_12, x_17, x_572); -x_574 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__289; -lean_inc_n(x_19, 2); -lean_inc(x_573); -lean_inc(x_570); -lean_inc(x_12); -x_575 = l_Lean_Syntax_node4(x_12, x_574, x_570, x_573, x_19, x_19); -x_576 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__292; -lean_inc(x_12); -x_577 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_577, 0, x_12); -lean_ctor_set(x_577, 1, x_576); -lean_inc(x_125); -lean_inc(x_19); -lean_inc(x_12); -x_578 = l_Lean_Syntax_node2(x_12, x_571, x_19, x_125); -lean_inc(x_12); -x_579 = l_Lean_Syntax_node1(x_12, x_17, x_578); -lean_inc_n(x_19, 2); -lean_inc(x_579); -lean_inc(x_12); -x_580 = l_Lean_Syntax_node4(x_12, x_574, x_570, x_579, x_19, x_19); -x_581 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__295; -lean_inc(x_12); -x_582 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_582, 0, x_12); -lean_ctor_set(x_582, 1, x_581); -x_583 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__294; -lean_inc_n(x_19, 3); -lean_inc(x_335); -lean_inc(x_582); -lean_inc(x_12); -x_584 = l_Lean_Syntax_node5(x_12, x_583, x_582, x_335, x_19, x_19, x_19); -lean_inc_n(x_577, 2); -lean_inc(x_12); -x_585 = l_Lean_Syntax_node5(x_12, x_17, x_575, x_577, x_580, x_577, x_584); -lean_inc(x_12); -x_586 = l_Lean_Syntax_node1(x_12, x_348, x_585); -lean_inc(x_12); -x_587 = l_Lean_Syntax_node1(x_12, x_350, x_586); -lean_inc(x_331); -lean_inc(x_12); -x_588 = l_Lean_Syntax_node2(x_12, x_352, x_331, x_587); -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_45); -lean_inc(x_12); -x_589 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_588, x_95, x_19); -lean_inc(x_66); -lean_inc(x_12); -x_590 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_563, x_568, x_589); -lean_inc(x_466); -lean_inc(x_12); -x_591 = l_Lean_Syntax_node2(x_12, x_63, x_466, x_590); -x_592 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__298; -lean_inc(x_12); -x_593 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_593, 0, x_12); -lean_ctor_set(x_593, 1, x_592); -lean_inc(x_12); -x_594 = l_Lean_Syntax_node1(x_12, x_17, x_562); -x_595 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__301; -lean_inc(x_75); -lean_inc(x_73); -lean_inc(x_9); -lean_inc(x_12); -x_596 = l_Lean_Syntax_node4(x_12, x_595, x_9, x_73, x_594, x_75); -x_597 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__299; -lean_inc(x_593); -lean_inc(x_12); -x_598 = l_Lean_Syntax_node2(x_12, x_597, x_593, x_596); -x_599 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__296; -lean_inc(x_12); -x_600 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_600, 0, x_12); -lean_ctor_set(x_600, 1, x_599); -x_601 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__303; -x_602 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__304; -lean_inc(x_12); -x_603 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_603, 0, x_12); -lean_ctor_set(x_603, 1, x_601); -lean_ctor_set(x_603, 2, x_602); -lean_ctor_set(x_603, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_604 = l_Lean_Syntax_node2(x_12, x_70, x_603, x_19); -x_605 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__306; -x_606 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__308; -lean_inc(x_12); -x_607 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_607, 0, x_12); -lean_ctor_set(x_607, 1, x_605); -lean_ctor_set(x_607, 2, x_606); -lean_ctor_set(x_607, 3, x_28); -x_608 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__310; -x_609 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__311; -lean_inc(x_12); -x_610 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_610, 0, x_12); -lean_ctor_set(x_610, 1, x_608); -lean_ctor_set(x_610, 2, x_609); -lean_ctor_set(x_610, 3, x_28); -lean_inc(x_79); -lean_inc(x_12); -x_611 = l_Lean_Syntax_node3(x_12, x_87, x_607, x_79, x_610); -lean_inc(x_27); -lean_inc(x_12); -x_612 = l_Lean_Syntax_node2(x_12, x_17, x_27, x_611); -lean_inc(x_75); -lean_inc(x_19); -lean_inc(x_316); -lean_inc(x_73); -lean_inc(x_12); -x_613 = l_Lean_Syntax_node5(x_12, x_128, x_73, x_316, x_612, x_19, x_75); -lean_inc(x_361); -lean_inc(x_12); -x_614 = l_Lean_Syntax_node2(x_12, x_17, x_361, x_613); -lean_inc(x_12); -x_615 = l_Lean_Syntax_node2(x_12, x_37, x_614, x_567); -x_616 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__312; -lean_inc(x_12); -x_617 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_617, 0, x_12); -lean_ctor_set(x_617, 1, x_616); -x_618 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__314; -lean_inc(x_12); -x_619 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_619, 0, x_12); -lean_ctor_set(x_619, 1, x_618); -x_620 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__323; -lean_inc(x_12); -x_621 = l_Lean_Syntax_node1(x_12, x_620, x_236); -lean_inc(x_12); -x_622 = l_Lean_Syntax_node1(x_12, x_17, x_621); -x_623 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__318; -lean_inc(x_12); -x_624 = l_Lean_Syntax_node1(x_12, x_623, x_622); -x_625 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__316; -lean_inc(x_19); -lean_inc(x_12); -x_626 = l_Lean_Syntax_node2(x_12, x_625, x_624, x_19); -lean_inc(x_12); -x_627 = l_Lean_Syntax_node1(x_12, x_17, x_626); -x_628 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__321; -lean_inc(x_84); -lean_inc(x_81); -lean_inc(x_12); -x_629 = l_Lean_Syntax_node3(x_12, x_628, x_81, x_627, x_84); -lean_inc(x_12); -x_630 = l_Lean_Syntax_node1(x_12, x_17, x_629); -lean_inc(x_12); -x_631 = l_Lean_Syntax_node1(x_12, x_623, x_630); -lean_inc(x_19); -lean_inc(x_12); -x_632 = l_Lean_Syntax_node2(x_12, x_625, x_631, x_19); -lean_inc(x_12); -x_633 = l_Lean_Syntax_node1(x_12, x_17, x_632); -lean_inc(x_12); -x_634 = l_Lean_Syntax_node3(x_12, x_628, x_81, x_633, x_84); -lean_inc(x_12); -x_635 = l_Lean_Syntax_node1(x_12, x_17, x_634); -lean_inc(x_12); -x_636 = l_Lean_Syntax_node1(x_12, x_623, x_635); -lean_inc(x_19); -lean_inc(x_12); -x_637 = l_Lean_Syntax_node2(x_12, x_625, x_636, x_19); -lean_inc(x_12); -x_638 = l_Lean_Syntax_node2(x_12, x_17, x_619, x_637); -x_639 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__313; -lean_inc(x_638); -lean_inc(x_617); -lean_inc(x_12); -x_640 = l_Lean_Syntax_node3(x_12, x_639, x_617, x_573, x_638); -lean_inc(x_12); -x_641 = l_Lean_Syntax_node3(x_12, x_639, x_617, x_579, x_638); -x_642 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__324; -x_643 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__325; -lean_inc(x_12); -x_644 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_644, 0, x_12); -lean_ctor_set(x_644, 1, x_642); -lean_ctor_set(x_644, 2, x_643); -lean_ctor_set(x_644, 3, x_28); -lean_inc(x_644); -lean_inc_n(x_19, 2); -lean_inc(x_12); -x_645 = l_Lean_Syntax_node3(x_12, x_408, x_19, x_19, x_644); -lean_inc(x_12); -x_646 = l_Lean_Syntax_node1(x_12, x_17, x_645); -lean_inc(x_207); -lean_inc(x_337); -lean_inc(x_12); -x_647 = l_Lean_Syntax_node3(x_12, x_17, x_337, x_646, x_207); -lean_inc_n(x_19, 2); -lean_inc(x_335); -lean_inc(x_12); -x_648 = l_Lean_Syntax_node5(x_12, x_583, x_582, x_335, x_19, x_19, x_647); -lean_inc(x_577); -lean_inc(x_12); -x_649 = l_Lean_Syntax_node5(x_12, x_17, x_640, x_577, x_641, x_577, x_648); -lean_inc(x_12); -x_650 = l_Lean_Syntax_node1(x_12, x_348, x_649); -lean_inc(x_12); -x_651 = l_Lean_Syntax_node1(x_12, x_350, x_650); -lean_inc(x_331); -lean_inc(x_12); -x_652 = l_Lean_Syntax_node2(x_12, x_352, x_331, x_651); -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_45); -lean_inc(x_12); -x_653 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_652, x_95, x_19); -lean_inc(x_66); -lean_inc(x_12); -x_654 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_604, x_615, x_653); -lean_inc(x_466); -lean_inc(x_12); -x_655 = l_Lean_Syntax_node2(x_12, x_63, x_466, x_654); -x_656 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__297; -lean_inc(x_600); -lean_inc(x_12); -x_657 = l_Lean_Syntax_node3(x_12, x_656, x_598, x_600, x_655); -lean_inc(x_543); -lean_inc(x_12); -x_658 = l_Lean_Syntax_node1(x_12, x_17, x_543); -lean_inc(x_75); -lean_inc(x_73); -lean_inc(x_9); -lean_inc(x_12); -x_659 = l_Lean_Syntax_node4(x_12, x_595, x_9, x_73, x_658, x_75); -lean_inc(x_593); -lean_inc(x_12); -x_660 = l_Lean_Syntax_node2(x_12, x_597, x_593, x_659); -x_661 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__327; -x_662 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__328; -lean_inc(x_12); -x_663 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_663, 0, x_12); -lean_ctor_set(x_663, 1, x_661); -lean_ctor_set(x_663, 2, x_662); -lean_ctor_set(x_663, 3, x_28); -lean_inc(x_19); -lean_inc(x_663); -lean_inc(x_12); -x_664 = l_Lean_Syntax_node2(x_12, x_70, x_663, x_19); -x_665 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__331; -lean_inc(x_12); -x_666 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_666, 0, x_12); -lean_ctor_set(x_666, 1, x_665); -x_667 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__330; -lean_inc(x_666); -lean_inc(x_12); -x_668 = l_Lean_Syntax_node3(x_12, x_667, x_137, x_666, x_140); -lean_inc(x_27); -lean_inc(x_12); -x_669 = l_Lean_Syntax_node2(x_12, x_17, x_27, x_668); -lean_inc(x_75); -lean_inc(x_19); -lean_inc(x_316); -lean_inc(x_73); -lean_inc(x_12); -x_670 = l_Lean_Syntax_node5(x_12, x_128, x_73, x_316, x_669, x_19, x_75); -lean_inc(x_361); -lean_inc(x_12); -x_671 = l_Lean_Syntax_node2(x_12, x_17, x_361, x_670); -lean_inc(x_125); -lean_inc(x_122); -lean_inc(x_12); -x_672 = l_Lean_Syntax_node3(x_12, x_667, x_122, x_666, x_125); -lean_inc(x_27); -lean_inc(x_12); -x_673 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_672); -lean_inc(x_673); -lean_inc(x_12); -x_674 = l_Lean_Syntax_node2(x_12, x_37, x_671, x_673); -x_675 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__332; -lean_inc(x_12); -x_676 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_676, 0, x_12); -lean_ctor_set(x_676, 1, x_675); -x_677 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__337; -x_678 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__338; -lean_inc(x_12); -x_679 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_679, 0, x_12); -lean_ctor_set(x_679, 1, x_677); -lean_ctor_set(x_679, 2, x_678); -lean_ctor_set(x_679, 3, x_28); -lean_inc(x_12); -x_680 = l_Lean_Syntax_node1(x_12, x_17, x_679); -x_681 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__340; -x_682 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__341; -lean_inc(x_12); -x_683 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_683, 0, x_12); -lean_ctor_set(x_683, 1, x_681); -lean_ctor_set(x_683, 2, x_682); -lean_ctor_set(x_683, 3, x_28); -lean_inc(x_680); -lean_inc(x_12); -x_684 = l_Lean_Syntax_node2(x_12, x_33, x_543, x_680); -lean_inc(x_75); -lean_inc(x_73); -lean_inc(x_12); -x_685 = l_Lean_Syntax_node3(x_12, x_284, x_73, x_684, x_75); -lean_inc(x_315); -lean_inc(x_12); -x_686 = l_Lean_Syntax_node2(x_12, x_17, x_685, x_315); -lean_inc(x_12); -x_687 = l_Lean_Syntax_node2(x_12, x_33, x_683, x_686); -x_688 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__335; +lean_inc(x_234); +lean_inc(x_14); +x_235 = l_Lean_Syntax_node2(x_14, x_194, x_234, x_222); +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_14); +x_236 = l_Lean_Syntax_node3(x_14, x_196, x_35, x_235, x_42); +lean_inc(x_202); +lean_inc(x_199); +lean_inc(x_14); +x_237 = l_Lean_Syntax_node3(x_14, x_203, x_236, x_199, x_202); +x_238 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__9; +lean_inc(x_14); +x_239 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_239, 0, x_14); +lean_ctor_set(x_239, 1, x_238); +lean_inc(x_239); +lean_inc(x_14); +x_240 = l_Lean_Syntax_node1(x_14, x_38, x_239); +x_241 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__10; +lean_inc(x_14); +x_242 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_242, 0, x_14); +lean_ctor_set(x_242, 1, x_241); +x_243 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__125; +lean_inc(x_11); +lean_inc(x_242); +lean_inc(x_240); +lean_inc(x_14); +x_244 = l_Lean_Syntax_node3(x_14, x_243, x_240, x_242, x_11); lean_inc(x_244); -lean_inc(x_19); -lean_inc(x_12); -x_689 = l_Lean_Syntax_node4(x_12, x_688, x_680, x_19, x_244, x_687); -x_690 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__333; -lean_inc(x_12); -x_691 = l_Lean_Syntax_node2(x_12, x_690, x_676, x_689); -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_45); -lean_inc(x_12); -x_692 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_691, x_95, x_19); +lean_inc(x_142); +lean_inc(x_221); +lean_inc(x_14); +x_245 = l_Lean_Syntax_node3(x_14, x_143, x_221, x_142, x_244); +lean_inc(x_46); +lean_inc(x_237); +lean_inc(x_14); +x_246 = l_Lean_Syntax_node3(x_14, x_54, x_237, x_46, x_245); +lean_inc(x_33); +lean_inc(x_14); +x_247 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_246); +lean_inc(x_14); +x_248 = l_Lean_Syntax_node2(x_14, x_58, x_231, x_247); +x_249 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__127; +x_250 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__129; +lean_inc(x_14); +x_251 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_251, 0, x_14); +lean_ctor_set(x_251, 1, x_249); +lean_ctor_set(x_251, 2, x_250); +lean_ctor_set(x_251, 3, x_26); +x_252 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__132; +lean_inc(x_14); +x_253 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_253, 0, x_14); +lean_ctor_set(x_253, 1, x_252); +x_254 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__131; +lean_inc(x_14); +x_255 = l_Lean_Syntax_node1(x_14, x_254, x_253); +lean_inc(x_14); +x_256 = l_Lean_Syntax_node1(x_14, x_19, x_255); +lean_inc(x_256); +lean_inc(x_251); +lean_inc(x_14); +x_257 = l_Lean_Syntax_node2(x_14, x_194, x_251, x_256); +lean_inc(x_21); lean_inc(x_66); -lean_inc(x_12); -x_693 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_664, x_674, x_692); -lean_inc(x_466); -lean_inc(x_12); -x_694 = l_Lean_Syntax_node2(x_12, x_63, x_466, x_693); -lean_inc(x_600); -lean_inc(x_12); -x_695 = l_Lean_Syntax_node3(x_12, x_656, x_660, x_600, x_694); -lean_inc(x_663); -lean_inc(x_12); -x_696 = l_Lean_Syntax_node1(x_12, x_17, x_663); -lean_inc(x_75); -lean_inc(x_73); -lean_inc(x_9); -lean_inc(x_12); -x_697 = l_Lean_Syntax_node4(x_12, x_595, x_9, x_73, x_696, x_75); -lean_inc(x_593); -lean_inc(x_12); -x_698 = l_Lean_Syntax_node2(x_12, x_597, x_593, x_697); -x_699 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__343; -x_700 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__344; -lean_inc(x_12); -x_701 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_701, 0, x_12); -lean_ctor_set(x_701, 1, x_699); -lean_ctor_set(x_701, 2, x_700); -lean_ctor_set(x_701, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_702 = l_Lean_Syntax_node2(x_12, x_70, x_701, x_19); -lean_inc(x_27); -lean_inc(x_12); -x_703 = l_Lean_Syntax_node2(x_12, x_17, x_27, x_383); -lean_inc(x_75); -lean_inc(x_19); -lean_inc(x_73); -lean_inc(x_12); -x_704 = l_Lean_Syntax_node5(x_12, x_128, x_73, x_316, x_703, x_19, x_75); -lean_inc(x_12); -x_705 = l_Lean_Syntax_node2(x_12, x_17, x_361, x_704); -lean_inc(x_12); -x_706 = l_Lean_Syntax_node2(x_12, x_37, x_705, x_673); -x_707 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__345; -lean_inc(x_12); -x_708 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_708, 0, x_12); -lean_ctor_set(x_708, 1, x_707); -x_709 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__346; -lean_inc(x_708); -lean_inc(x_12); -x_710 = l_Lean_Syntax_node2(x_12, x_709, x_708, x_663); -x_711 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__348; -x_712 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__349; -lean_inc(x_12); -x_713 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_713, 0, x_12); -lean_ctor_set(x_713, 1, x_711); -lean_ctor_set(x_713, 2, x_712); -lean_ctor_set(x_713, 3, x_28); -lean_inc(x_708); -lean_inc(x_12); -x_714 = l_Lean_Syntax_node2(x_12, x_709, x_708, x_713); -x_715 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__350; -lean_inc(x_12); -x_716 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_716, 0, x_12); -lean_ctor_set(x_716, 1, x_715); -lean_inc(x_410); -lean_inc(x_12); -x_717 = l_Lean_Syntax_node1(x_12, x_17, x_410); -x_718 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__355; -lean_inc(x_207); -lean_inc(x_337); -lean_inc(x_12); -x_719 = l_Lean_Syntax_node3(x_12, x_718, x_337, x_717, x_207); -lean_inc(x_12); -x_720 = l_Lean_Syntax_node1(x_12, x_17, x_719); -x_721 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__356; -lean_inc(x_12); -x_722 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_722, 0, x_12); -lean_ctor_set(x_722, 1, x_721); -lean_inc(x_722); -lean_inc(x_12); -x_723 = l_Lean_Syntax_node2(x_12, x_17, x_722, x_315); -x_724 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__353; -lean_inc_n(x_19, 2); +lean_inc(x_61); +lean_inc(x_14); +x_258 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_257, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_259 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_216, x_248, x_258); +lean_inc(x_185); +lean_inc(x_14); +x_260 = l_Lean_Syntax_node2(x_14, x_71, x_185, x_259); +x_261 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__134; +x_262 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__135; +lean_inc(x_14); +x_263 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_263, 0, x_14); +lean_ctor_set(x_263, 1, x_261); +lean_ctor_set(x_263, 2, x_262); +lean_ctor_set(x_263, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_264 = l_Lean_Syntax_node2(x_14, x_30, x_263, x_21); +x_265 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__137; +x_266 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__138; +lean_inc(x_14); +x_267 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_267, 0, x_14); +lean_ctor_set(x_267, 1, x_265); +lean_ctor_set(x_267, 2, x_266); +lean_ctor_set(x_267, 3, x_26); +lean_inc(x_267); +lean_inc(x_14); +x_268 = l_Lean_Syntax_node1(x_14, x_19, x_267); +x_269 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__141; +lean_inc(x_14); +x_270 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_270, 0, x_14); +lean_ctor_set(x_270, 1, x_269); +x_271 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__143; +x_272 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__144; +lean_inc(x_14); +x_273 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_273, 0, x_14); +lean_ctor_set(x_273, 1, x_271); +lean_ctor_set(x_273, 2, x_272); +lean_ctor_set(x_273, 3, x_26); +x_274 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__140; +lean_inc(x_273); +lean_inc(x_270); +lean_inc(x_221); +lean_inc(x_14); +x_275 = l_Lean_Syntax_node3(x_14, x_274, x_221, x_270, x_273); +lean_inc(x_33); +lean_inc(x_14); +x_276 = l_Lean_Syntax_node2(x_14, x_19, x_33, x_275); +lean_inc(x_228); +lean_inc(x_276); +lean_inc(x_268); +lean_inc(x_218); +lean_inc(x_14); +x_277 = l_Lean_Syntax_node4(x_14, x_229, x_218, x_268, x_276, x_228); +lean_inc(x_230); +lean_inc(x_14); +x_278 = l_Lean_Syntax_node2(x_14, x_19, x_230, x_277); +x_279 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__146; +x_280 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__147; +lean_inc(x_14); +x_281 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_281, 0, x_14); +lean_ctor_set(x_281, 1, x_279); +lean_ctor_set(x_281, 2, x_280); +lean_ctor_set(x_281, 3, x_26); +lean_inc(x_267); +lean_inc(x_221); +lean_inc(x_14); +x_282 = l_Lean_Syntax_node2(x_14, x_19, x_221, x_267); +lean_inc(x_14); +x_283 = l_Lean_Syntax_node2(x_14, x_194, x_281, x_282); +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_14); +x_284 = l_Lean_Syntax_node3(x_14, x_196, x_35, x_283, x_42); +lean_inc(x_202); +lean_inc(x_199); +lean_inc(x_14); +x_285 = l_Lean_Syntax_node3(x_14, x_203, x_284, x_199, x_202); +lean_inc(x_221); +lean_inc(x_46); +lean_inc(x_14); +x_286 = l_Lean_Syntax_node3(x_14, x_54, x_285, x_46, x_221); +lean_inc(x_33); +lean_inc(x_14); +x_287 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_286); +lean_inc(x_14); +x_288 = l_Lean_Syntax_node2(x_14, x_58, x_278, x_287); +x_289 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__149; +x_290 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__151; +lean_inc(x_14); +x_291 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_291, 0, x_14); +lean_ctor_set(x_291, 1, x_289); +lean_ctor_set(x_291, 2, x_290); +lean_ctor_set(x_291, 3, x_26); +lean_inc(x_256); +lean_inc(x_14); +x_292 = l_Lean_Syntax_node2(x_14, x_194, x_291, x_256); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_293 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_292, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_294 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_264, x_288, x_293); +lean_inc(x_185); +lean_inc(x_14); +x_295 = l_Lean_Syntax_node2(x_14, x_71, x_185, x_294); +x_296 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__153; +x_297 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__154; +lean_inc(x_14); +x_298 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_298, 0, x_14); +lean_ctor_set(x_298, 1, x_296); +lean_ctor_set(x_298, 2, x_297); +lean_ctor_set(x_298, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_299 = l_Lean_Syntax_node2(x_14, x_30, x_298, x_21); +x_300 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__155; +x_301 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__156; +lean_inc(x_14); +x_302 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_302, 0, x_14); +lean_ctor_set(x_302, 1, x_300); +lean_ctor_set(x_302, 2, x_301); +lean_ctor_set(x_302, 3, x_26); +lean_inc(x_302); +lean_inc(x_14); +x_303 = l_Lean_Syntax_node1(x_14, x_19, x_302); +lean_inc(x_42); +lean_inc(x_21); +lean_inc(x_99); +lean_inc(x_303); +lean_inc(x_35); +lean_inc(x_14); +x_304 = l_Lean_Syntax_node5(x_14, x_100, x_35, x_303, x_99, x_21, x_42); +lean_inc(x_14); +x_305 = l_Lean_Syntax_node1(x_14, x_19, x_304); +x_306 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__158; +x_307 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__160; +lean_inc(x_14); +x_308 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_308, 0, x_14); +lean_ctor_set(x_308, 1, x_306); +lean_ctor_set(x_308, 2, x_307); +lean_ctor_set(x_308, 3, x_26); +x_309 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__162; +x_310 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__163; +lean_inc(x_14); +x_311 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_311, 0, x_14); +lean_ctor_set(x_311, 1, x_309); +lean_ctor_set(x_311, 2, x_310); +lean_ctor_set(x_311, 3, x_26); +lean_inc(x_311); +lean_inc(x_46); +lean_inc(x_14); +x_312 = l_Lean_Syntax_node3(x_14, x_54, x_308, x_46, x_311); +lean_inc(x_33); +lean_inc(x_14); +x_313 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_312); +lean_inc(x_305); +lean_inc(x_14); +x_314 = l_Lean_Syntax_node2(x_14, x_58, x_305, x_313); +lean_inc(x_68); +lean_inc(x_25); +lean_inc(x_14); +x_315 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_299, x_314, x_68); +lean_inc(x_185); +lean_inc(x_14); +x_316 = l_Lean_Syntax_node2(x_14, x_71, x_185, x_315); +x_317 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__165; +x_318 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__166; +lean_inc(x_14); +x_319 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_319, 0, x_14); +lean_ctor_set(x_319, 1, x_317); +lean_ctor_set(x_319, 2, x_318); +lean_ctor_set(x_319, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_320 = l_Lean_Syntax_node2(x_14, x_30, x_319, x_21); +x_321 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__168; +x_322 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__169; +lean_inc(x_14); +x_323 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_323, 0, x_14); +lean_ctor_set(x_323, 1, x_321); +lean_ctor_set(x_323, 2, x_322); +lean_ctor_set(x_323, 3, x_26); +lean_inc(x_311); +lean_inc(x_46); +lean_inc(x_14); +x_324 = l_Lean_Syntax_node3(x_14, x_54, x_323, x_46, x_311); +lean_inc(x_33); +lean_inc(x_14); +x_325 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_324); +lean_inc(x_305); +lean_inc(x_14); +x_326 = l_Lean_Syntax_node2(x_14, x_58, x_305, x_325); +lean_inc(x_68); +lean_inc(x_25); +lean_inc(x_14); +x_327 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_320, x_326, x_68); +lean_inc(x_23); +lean_inc(x_14); +x_328 = l_Lean_Syntax_node2(x_14, x_71, x_23, x_327); +x_329 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__171; +x_330 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__172; +lean_inc(x_14); +x_331 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_331, 0, x_14); +lean_ctor_set(x_331, 1, x_329); +lean_ctor_set(x_331, 2, x_330); +lean_ctor_set(x_331, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_332 = l_Lean_Syntax_node2(x_14, x_30, x_331, x_21); +x_333 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__175; +lean_inc(x_14); +x_334 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_334, 0, x_14); +lean_ctor_set(x_334, 1, x_333); +lean_inc(x_42); +lean_inc(x_21); +lean_inc(x_99); +lean_inc(x_193); +lean_inc(x_35); +lean_inc(x_14); +x_335 = l_Lean_Syntax_node5(x_14, x_100, x_35, x_193, x_99, x_21, x_42); lean_inc(x_335); -lean_inc(x_12); -x_725 = l_Lean_Syntax_node5(x_12, x_724, x_335, x_19, x_19, x_720, x_723); -x_726 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__351; -lean_inc_n(x_19, 2); -lean_inc(x_716); -lean_inc(x_12); -x_727 = l_Lean_Syntax_node4(x_12, x_726, x_716, x_19, x_19, x_725); -lean_inc_n(x_19, 2); -lean_inc(x_12); -x_728 = l_Lean_Syntax_node5(x_12, x_17, x_710, x_19, x_714, x_19, x_727); -lean_inc(x_12); -x_729 = l_Lean_Syntax_node1(x_12, x_348, x_728); -lean_inc(x_12); -x_730 = l_Lean_Syntax_node1(x_12, x_350, x_729); -lean_inc(x_331); -lean_inc(x_12); -x_731 = l_Lean_Syntax_node2(x_12, x_352, x_331, x_730); -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_45); -lean_inc(x_12); -x_732 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_731, x_95, x_19); +lean_inc(x_14); +x_336 = l_Lean_Syntax_node1(x_14, x_19, x_335); +x_337 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__176; +lean_inc(x_14); +x_338 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_338, 0, x_14); +lean_ctor_set(x_338, 1, x_337); +lean_inc(x_109); +lean_inc(x_14); +x_339 = l_Lean_Syntax_node1(x_14, x_19, x_109); +lean_inc(x_192); +lean_inc(x_14); +x_340 = l_Lean_Syntax_node2(x_14, x_194, x_192, x_339); +lean_inc(x_94); +lean_inc(x_46); +lean_inc(x_14); +x_341 = l_Lean_Syntax_node3(x_14, x_54, x_340, x_46, x_94); +x_342 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__174; +lean_inc(x_338); +lean_inc(x_21); +lean_inc(x_336); +lean_inc(x_334); +lean_inc(x_14); +x_343 = l_Lean_Syntax_node5(x_14, x_342, x_334, x_336, x_21, x_338, x_341); +lean_inc(x_33); +lean_inc(x_14); +x_344 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_343); +lean_inc(x_21); +lean_inc(x_14); +x_345 = l_Lean_Syntax_node2(x_14, x_58, x_21, x_344); +x_346 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__185; +lean_inc(x_14); +x_347 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_347, 0, x_14); +lean_ctor_set(x_347, 1, x_346); +x_348 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__188; +lean_inc(x_14); +x_349 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_349, 0, x_14); +lean_ctor_set(x_349, 1, x_348); +x_350 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__187; +lean_inc(x_349); +lean_inc(x_14); +x_351 = l_Lean_Syntax_node1(x_14, x_350, x_349); +lean_inc(x_338); +lean_inc_n(x_351, 2); +lean_inc(x_14); +x_352 = l_Lean_Syntax_node3(x_14, x_19, x_351, x_338, x_351); +lean_inc(x_51); +lean_inc(x_48); +lean_inc(x_14); +x_353 = l_Lean_Syntax_node3(x_14, x_52, x_48, x_352, x_51); +lean_inc(x_353); +lean_inc(x_14); +x_354 = l_Lean_Syntax_node1(x_14, x_19, x_353); +lean_inc(x_14); +x_355 = l_Lean_Syntax_node1(x_14, x_19, x_354); +x_356 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__189; +lean_inc(x_14); +x_357 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_357, 0, x_14); +lean_ctor_set(x_357, 1, x_356); +x_358 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__184; +lean_inc(x_64); +lean_inc(x_357); +lean_inc(x_347); +lean_inc(x_14); +x_359 = l_Lean_Syntax_node4(x_14, x_358, x_347, x_355, x_357, x_64); +lean_inc(x_14); +x_360 = l_Lean_Syntax_node1(x_14, x_19, x_359); +x_361 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__182; +lean_inc(x_14); +x_362 = l_Lean_Syntax_node1(x_14, x_361, x_360); +x_363 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__180; +lean_inc(x_21); lean_inc(x_66); -lean_inc(x_12); -x_733 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_702, x_706, x_732); -lean_inc(x_466); -lean_inc(x_12); -x_734 = l_Lean_Syntax_node2(x_12, x_63, x_466, x_733); -lean_inc(x_600); -lean_inc(x_12); -x_735 = l_Lean_Syntax_node3(x_12, x_656, x_698, x_600, x_734); -x_736 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__358; -x_737 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__359; -lean_inc(x_12); -x_738 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_738, 0, x_12); -lean_ctor_set(x_738, 1, x_736); -lean_ctor_set(x_738, 2, x_737); -lean_ctor_set(x_738, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_739 = l_Lean_Syntax_node2(x_12, x_70, x_738, x_19); -lean_inc(x_325); -lean_inc(x_287); -lean_inc(x_12); -x_740 = l_Lean_Syntax_node3(x_12, x_291, x_77, x_287, x_325); -lean_inc(x_49); -lean_inc(x_79); -lean_inc(x_12); -x_741 = l_Lean_Syntax_node3(x_12, x_87, x_740, x_79, x_49); -lean_inc(x_27); -lean_inc(x_12); -x_742 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_741); -lean_inc(x_19); -lean_inc(x_12); -x_743 = l_Lean_Syntax_node2(x_12, x_37, x_19, x_742); -x_744 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__361; -x_745 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__363; -lean_inc(x_12); -x_746 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_746, 0, x_12); -lean_ctor_set(x_746, 1, x_744); -lean_ctor_set(x_746, 2, x_745); -lean_ctor_set(x_746, 3, x_28); -lean_inc(x_238); -lean_inc(x_12); -x_747 = l_Lean_Syntax_node1(x_12, x_17, x_238); -lean_inc(x_12); -x_748 = l_Lean_Syntax_node2(x_12, x_33, x_746, x_747); -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_45); -lean_inc(x_12); -x_749 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_748, x_95, x_19); +lean_inc(x_14); +x_364 = l_Lean_Syntax_node3(x_14, x_363, x_362, x_66, x_21); +x_365 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__178; +lean_inc(x_14); +x_366 = l_Lean_Syntax_node1(x_14, x_365, x_364); +lean_inc(x_25); +lean_inc(x_14); +x_367 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_332, x_345, x_366); +lean_inc(x_185); +lean_inc(x_14); +x_368 = l_Lean_Syntax_node2(x_14, x_71, x_185, x_367); +x_369 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__191; +x_370 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__192; +lean_inc(x_14); +x_371 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_371, 0, x_14); +lean_ctor_set(x_371, 1, x_369); +lean_ctor_set(x_371, 2, x_370); +lean_ctor_set(x_371, 3, x_26); +lean_inc(x_21); +lean_inc(x_371); +lean_inc(x_14); +x_372 = l_Lean_Syntax_node2(x_14, x_30, x_371, x_21); +lean_inc(x_228); +lean_inc(x_226); +lean_inc(x_193); +lean_inc(x_218); +lean_inc(x_14); +x_373 = l_Lean_Syntax_node4(x_14, x_229, x_218, x_193, x_226, x_228); +lean_inc(x_14); +x_374 = l_Lean_Syntax_node1(x_14, x_19, x_373); +lean_inc(x_273); +lean_inc(x_270); +lean_inc(x_94); +lean_inc(x_14); +x_375 = l_Lean_Syntax_node3(x_14, x_274, x_94, x_270, x_273); +x_376 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__195; +lean_inc(x_14); +x_377 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_377, 0, x_14); +lean_ctor_set(x_377, 1, x_376); +lean_inc(x_234); +lean_inc(x_14); +x_378 = l_Lean_Syntax_node2(x_14, x_194, x_234, x_193); +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_14); +x_379 = l_Lean_Syntax_node3(x_14, x_196, x_35, x_378, x_42); +x_380 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__197; +x_381 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__198; +lean_inc(x_14); +x_382 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_382, 0, x_14); +lean_ctor_set(x_382, 1, x_380); +lean_ctor_set(x_382, 2, x_381); +lean_ctor_set(x_382, 3, x_26); +lean_inc(x_199); +lean_inc(x_14); +x_383 = l_Lean_Syntax_node3(x_14, x_203, x_379, x_199, x_382); +lean_inc(x_94); +lean_inc(x_46); +lean_inc(x_14); +x_384 = l_Lean_Syntax_node3(x_14, x_54, x_383, x_46, x_94); +x_385 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__194; +lean_inc(x_377); +lean_inc(x_14); +x_386 = l_Lean_Syntax_node3(x_14, x_385, x_375, x_377, x_384); +lean_inc(x_33); +lean_inc(x_14); +x_387 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_386); +lean_inc(x_14); +x_388 = l_Lean_Syntax_node2(x_14, x_58, x_374, x_387); +x_389 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__200; +x_390 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__202; +lean_inc(x_14); +x_391 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_391, 0, x_14); +lean_ctor_set(x_391, 1, x_389); +lean_ctor_set(x_391, 2, x_390); +lean_ctor_set(x_391, 3, x_26); +lean_inc(x_21); lean_inc(x_66); -lean_inc(x_12); -x_750 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_739, x_743, x_749); -lean_inc(x_395); -lean_inc(x_12); -x_751 = l_Lean_Syntax_node2(x_12, x_63, x_395, x_750); -x_752 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__365; -x_753 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__366; -lean_inc(x_12); -x_754 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_754, 0, x_12); -lean_ctor_set(x_754, 1, x_752); -lean_ctor_set(x_754, 2, x_753); -lean_ctor_set(x_754, 3, x_28); -lean_inc(x_19); -lean_inc(x_754); -lean_inc(x_12); -x_755 = l_Lean_Syntax_node2(x_12, x_70, x_754, x_19); -lean_inc(x_75); -lean_inc(x_172); -lean_inc(x_73); -lean_inc(x_12); -x_756 = l_Lean_Syntax_node3(x_12, x_284, x_73, x_172, x_75); -lean_inc(x_325); -lean_inc(x_287); -lean_inc(x_12); -x_757 = l_Lean_Syntax_node3(x_12, x_291, x_756, x_287, x_325); -x_758 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__368; -x_759 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__369; -lean_inc(x_12); -x_760 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_760, 0, x_12); -lean_ctor_set(x_760, 1, x_758); -lean_ctor_set(x_760, 2, x_759); -lean_ctor_set(x_760, 3, x_28); -x_761 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__371; -x_762 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__372; -lean_inc(x_12); -x_763 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_763, 0, x_12); -lean_ctor_set(x_763, 1, x_761); -lean_ctor_set(x_763, 2, x_762); -lean_ctor_set(x_763, 3, x_28); -lean_inc(x_763); -lean_inc(x_170); -lean_inc(x_760); -lean_inc(x_12); -x_764 = l_Lean_Syntax_node3(x_12, x_171, x_760, x_170, x_763); -lean_inc(x_79); -lean_inc(x_12); -x_765 = l_Lean_Syntax_node3(x_12, x_87, x_757, x_79, x_764); -lean_inc(x_27); -lean_inc(x_12); -x_766 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_765); -lean_inc(x_130); -lean_inc(x_12); -x_767 = l_Lean_Syntax_node2(x_12, x_37, x_130, x_766); -x_768 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__374; -x_769 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__376; -lean_inc(x_12); -x_770 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_770, 0, x_12); -lean_ctor_set(x_770, 1, x_768); -lean_ctor_set(x_770, 2, x_769); -lean_ctor_set(x_770, 3, x_28); -lean_inc(x_522); -lean_inc(x_12); -x_771 = l_Lean_Syntax_node2(x_12, x_33, x_770, x_522); -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_45); -lean_inc(x_12); -x_772 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_771, x_95, x_19); +lean_inc(x_391); +lean_inc(x_61); +lean_inc(x_14); +x_392 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_391, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_393 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_372, x_388, x_392); +lean_inc(x_23); +lean_inc(x_14); +x_394 = l_Lean_Syntax_node2(x_14, x_71, x_23, x_393); +x_395 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__204; +x_396 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__205; +lean_inc(x_14); +x_397 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_397, 0, x_14); +lean_ctor_set(x_397, 1, x_395); +lean_ctor_set(x_397, 2, x_396); +lean_ctor_set(x_397, 3, x_26); +lean_inc(x_21); +lean_inc(x_397); +lean_inc(x_14); +x_398 = l_Lean_Syntax_node2(x_14, x_30, x_397, x_21); +lean_inc(x_42); +lean_inc(x_21); +lean_inc(x_268); +lean_inc(x_35); +lean_inc(x_14); +x_399 = l_Lean_Syntax_node5(x_14, x_100, x_35, x_268, x_276, x_21, x_42); +lean_inc(x_14); +x_400 = l_Lean_Syntax_node2(x_14, x_19, x_230, x_399); +lean_inc(x_221); +lean_inc(x_46); +lean_inc(x_14); +x_401 = l_Lean_Syntax_node3(x_14, x_54, x_237, x_46, x_221); +lean_inc(x_33); +lean_inc(x_14); +x_402 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_401); +lean_inc(x_14); +x_403 = l_Lean_Syntax_node2(x_14, x_58, x_400, x_402); +x_404 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__208; +lean_inc(x_14); +x_405 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_405, 0, x_14); +lean_ctor_set(x_405, 1, x_404); +x_406 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__216; +lean_inc(x_14); +x_407 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_407, 0, x_14); +lean_ctor_set(x_407, 1, x_406); +x_408 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__218; +lean_inc(x_21); +lean_inc(x_14); +x_409 = l_Lean_Syntax_node1(x_14, x_408, x_21); +x_410 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__221; +lean_inc(x_14); +x_411 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_411, 0, x_14); +lean_ctor_set(x_411, 1, x_410); +x_412 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__223; +lean_inc(x_202); +lean_inc(x_21); +lean_inc(x_14); +x_413 = l_Lean_Syntax_node2(x_14, x_412, x_21, x_202); +lean_inc(x_268); +lean_inc(x_14); +x_414 = l_Lean_Syntax_node2(x_14, x_194, x_371, x_268); +lean_inc(x_21); +lean_inc(x_14); +x_415 = l_Lean_Syntax_node2(x_14, x_412, x_21, x_414); +lean_inc(x_338); +lean_inc(x_14); +x_416 = l_Lean_Syntax_node3(x_14, x_19, x_413, x_338, x_415); +x_417 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__220; +lean_inc(x_181); +lean_inc(x_411); +lean_inc(x_14); +x_418 = l_Lean_Syntax_node3(x_14, x_417, x_411, x_416, x_181); +x_419 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__215; +lean_inc(x_21); +lean_inc(x_409); +lean_inc(x_407); +lean_inc(x_14); +x_420 = l_Lean_Syntax_node4(x_14, x_419, x_407, x_409, x_418, x_21); +lean_inc(x_14); +x_421 = l_Lean_Syntax_node1(x_14, x_19, x_420); +x_422 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__213; +lean_inc(x_14); +x_423 = l_Lean_Syntax_node1(x_14, x_422, x_421); +x_424 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__211; +lean_inc(x_14); +x_425 = l_Lean_Syntax_node1(x_14, x_424, x_423); +x_426 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__207; +lean_inc(x_405); +lean_inc(x_14); +x_427 = l_Lean_Syntax_node2(x_14, x_426, x_405, x_425); +lean_inc(x_21); lean_inc(x_66); -lean_inc(x_12); -x_773 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_755, x_767, x_772); -lean_inc(x_395); -lean_inc(x_12); -x_774 = l_Lean_Syntax_node2(x_12, x_63, x_395, x_773); -x_775 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__378; -x_776 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__379; -lean_inc(x_12); -x_777 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_777, 0, x_12); -lean_ctor_set(x_777, 1, x_775); -lean_ctor_set(x_777, 2, x_776); -lean_ctor_set(x_777, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_778 = l_Lean_Syntax_node2(x_12, x_70, x_777, x_19); -x_779 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__382; -lean_inc(x_12); -x_780 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_780, 0, x_12); -lean_ctor_set(x_780, 1, x_779); -x_781 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__381; -lean_inc(x_125); +lean_inc(x_61); +lean_inc(x_14); +x_428 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_427, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_429 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_398, x_403, x_428); +lean_inc(x_23); +lean_inc(x_14); +x_430 = l_Lean_Syntax_node2(x_14, x_71, x_23, x_429); +x_431 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__225; +x_432 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__226; +lean_inc(x_14); +x_433 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_433, 0, x_14); +lean_ctor_set(x_433, 1, x_431); +lean_ctor_set(x_433, 2, x_432); +lean_ctor_set(x_433, 3, x_26); +lean_inc(x_21); +lean_inc(x_433); +lean_inc(x_14); +x_434 = l_Lean_Syntax_node2(x_14, x_30, x_433, x_21); +lean_inc(x_228); +lean_inc(x_99); +lean_inc(x_218); +lean_inc(x_14); +x_435 = l_Lean_Syntax_node4(x_14, x_229, x_218, x_98, x_99, x_228); +lean_inc(x_435); +lean_inc(x_14); +x_436 = l_Lean_Syntax_node1(x_14, x_19, x_435); +x_437 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__231; +lean_inc(x_14); +x_438 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_438, 0, x_14); +lean_ctor_set(x_438, 1, x_437); +x_439 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__230; +lean_inc(x_97); +lean_inc(x_438); +lean_inc(x_94); +lean_inc(x_14); +x_440 = l_Lean_Syntax_node3(x_14, x_439, x_94, x_438, x_97); +x_441 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__232; +lean_inc(x_14); +x_442 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_442, 0, x_14); +lean_ctor_set(x_442, 1, x_441); +lean_inc(x_112); +lean_inc(x_438); +lean_inc(x_109); +lean_inc(x_14); +x_443 = l_Lean_Syntax_node3(x_14, x_439, x_109, x_438, x_112); +x_444 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__228; +lean_inc(x_442); +lean_inc(x_440); +lean_inc(x_14); +x_445 = l_Lean_Syntax_node3(x_14, x_444, x_440, x_442, x_443); +lean_inc(x_33); +lean_inc(x_14); +x_446 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_445); +lean_inc(x_436); +lean_inc(x_14); +x_447 = l_Lean_Syntax_node2(x_14, x_58, x_436, x_446); +x_448 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__234; +lean_inc(x_64); +lean_inc(x_199); +lean_inc(x_14); +x_449 = l_Lean_Syntax_node2(x_14, x_448, x_199, x_64); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_450 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_449, x_66, x_21); +lean_inc(x_450); +lean_inc(x_25); +lean_inc(x_14); +x_451 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_434, x_447, x_450); +lean_inc(x_23); +lean_inc(x_14); +x_452 = l_Lean_Syntax_node2(x_14, x_71, x_23, x_451); +x_453 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__236; +x_454 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__237; +lean_inc(x_14); +x_455 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_455, 0, x_14); +lean_ctor_set(x_455, 1, x_453); +lean_ctor_set(x_455, 2, x_454); +lean_ctor_set(x_455, 3, x_26); +lean_inc(x_21); +lean_inc(x_455); +lean_inc(x_14); +x_456 = l_Lean_Syntax_node2(x_14, x_30, x_455, x_21); +lean_inc(x_97); +lean_inc(x_270); +lean_inc(x_94); +lean_inc(x_14); +x_457 = l_Lean_Syntax_node3(x_14, x_274, x_94, x_270, x_97); +lean_inc(x_112); +lean_inc(x_270); +lean_inc(x_109); +lean_inc(x_14); +x_458 = l_Lean_Syntax_node3(x_14, x_274, x_109, x_270, x_112); +lean_inc(x_442); +lean_inc(x_457); +lean_inc(x_14); +x_459 = l_Lean_Syntax_node3(x_14, x_444, x_457, x_442, x_458); +lean_inc(x_33); +lean_inc(x_14); +x_460 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_459); +lean_inc(x_436); +lean_inc(x_14); +x_461 = l_Lean_Syntax_node2(x_14, x_58, x_436, x_460); +lean_inc(x_450); +lean_inc(x_25); +lean_inc(x_14); +x_462 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_456, x_461, x_450); +lean_inc(x_23); +lean_inc(x_14); +x_463 = l_Lean_Syntax_node2(x_14, x_71, x_23, x_462); +x_464 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__239; +x_465 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__240; +lean_inc(x_14); +x_466 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_466, 0, x_14); +lean_ctor_set(x_466, 1, x_464); +lean_ctor_set(x_466, 2, x_465); +lean_ctor_set(x_466, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_467 = l_Lean_Syntax_node2(x_14, x_30, x_466, x_21); +x_468 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__242; +x_469 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__243; +lean_inc(x_14); +x_470 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_470, 0, x_14); +lean_ctor_set(x_470, 1, x_468); +lean_ctor_set(x_470, 2, x_469); +lean_ctor_set(x_470, 3, x_26); +lean_inc(x_470); +lean_inc(x_438); +lean_inc(x_207); +lean_inc(x_14); +x_471 = l_Lean_Syntax_node3(x_14, x_439, x_207, x_438, x_470); +lean_inc(x_442); +lean_inc(x_440); +lean_inc(x_14); +x_472 = l_Lean_Syntax_node3(x_14, x_444, x_440, x_442, x_471); +lean_inc(x_33); +lean_inc(x_14); +x_473 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_472); +lean_inc(x_436); +lean_inc(x_14); +x_474 = l_Lean_Syntax_node2(x_14, x_58, x_436, x_473); +lean_inc(x_450); +lean_inc(x_25); +lean_inc(x_14); +x_475 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_467, x_474, x_450); +lean_inc(x_23); +lean_inc(x_14); +x_476 = l_Lean_Syntax_node2(x_14, x_71, x_23, x_475); +x_477 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__245; +x_478 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__246; +lean_inc(x_14); +x_479 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_479, 0, x_14); +lean_ctor_set(x_479, 1, x_477); +lean_ctor_set(x_479, 2, x_478); +lean_ctor_set(x_479, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_480 = l_Lean_Syntax_node2(x_14, x_30, x_479, x_21); +lean_inc(x_470); +lean_inc(x_270); +lean_inc(x_207); +lean_inc(x_14); +x_481 = l_Lean_Syntax_node3(x_14, x_274, x_207, x_270, x_470); +lean_inc(x_442); +lean_inc(x_457); +lean_inc(x_14); +x_482 = l_Lean_Syntax_node3(x_14, x_444, x_457, x_442, x_481); +lean_inc(x_33); +lean_inc(x_14); +x_483 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_482); +lean_inc(x_436); +lean_inc(x_14); +x_484 = l_Lean_Syntax_node2(x_14, x_58, x_436, x_483); +lean_inc(x_25); +lean_inc(x_14); +x_485 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_480, x_484, x_450); +lean_inc(x_14); +x_486 = l_Lean_Syntax_node2(x_14, x_71, x_23, x_485); +x_487 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__247; +lean_inc(x_14); +x_488 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_488, 0, x_14); +lean_ctor_set(x_488, 1, x_487); +x_489 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__248; +lean_inc(x_14); +x_490 = l_Lean_Syntax_node1(x_14, x_489, x_488); +lean_inc(x_14); +x_491 = l_Lean_Syntax_node1(x_14, x_19, x_490); +lean_inc(x_491); +lean_inc_n(x_21, 4); +lean_inc(x_14); +x_492 = l_Lean_Syntax_node6(x_14, x_22, x_21, x_184, x_491, x_21, x_21, x_21); +x_493 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__250; +x_494 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__251; +lean_inc(x_14); +x_495 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_495, 0, x_14); +lean_ctor_set(x_495, 1, x_493); +lean_ctor_set(x_495, 2, x_494); +lean_ctor_set(x_495, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_496 = l_Lean_Syntax_node2(x_14, x_30, x_495, x_21); +x_497 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__254; +lean_inc(x_14); +x_498 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_498, 0, x_14); +lean_ctor_set(x_498, 1, x_497); +x_499 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__253; +lean_inc(x_440); +lean_inc(x_498); +lean_inc(x_14); +x_500 = l_Lean_Syntax_node2(x_14, x_499, x_498, x_440); +lean_inc(x_94); +lean_inc(x_270); +lean_inc(x_97); +lean_inc(x_14); +x_501 = l_Lean_Syntax_node3(x_14, x_274, x_97, x_270, x_94); +lean_inc(x_501); +lean_inc(x_442); +lean_inc(x_14); +x_502 = l_Lean_Syntax_node3(x_14, x_444, x_500, x_442, x_501); +lean_inc(x_33); +lean_inc(x_14); +x_503 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_502); +lean_inc(x_436); +lean_inc(x_14); +x_504 = l_Lean_Syntax_node2(x_14, x_58, x_436, x_503); +x_505 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__257; +lean_inc_n(x_21, 2); +lean_inc(x_14); +x_506 = l_Lean_Syntax_node3(x_14, x_505, x_21, x_21, x_433); +lean_inc_n(x_21, 2); +lean_inc(x_14); +x_507 = l_Lean_Syntax_node3(x_14, x_505, x_21, x_21, x_455); +lean_inc(x_507); +lean_inc(x_338); +lean_inc(x_506); +lean_inc(x_14); +x_508 = l_Lean_Syntax_node3(x_14, x_19, x_506, x_338, x_507); +lean_inc(x_181); +lean_inc(x_411); +lean_inc(x_14); +x_509 = l_Lean_Syntax_node3(x_14, x_19, x_411, x_508, x_181); +x_510 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__255; +lean_inc_n(x_21, 3); +lean_inc(x_409); +lean_inc(x_174); +lean_inc(x_14); +x_511 = l_Lean_Syntax_node6(x_14, x_510, x_174, x_409, x_21, x_21, x_509, x_21); +lean_inc(x_14); +x_512 = l_Lean_Syntax_node1(x_14, x_19, x_511); +lean_inc(x_14); +x_513 = l_Lean_Syntax_node1(x_14, x_422, x_512); +lean_inc(x_14); +x_514 = l_Lean_Syntax_node1(x_14, x_424, x_513); +lean_inc(x_405); +lean_inc(x_14); +x_515 = l_Lean_Syntax_node2(x_14, x_426, x_405, x_514); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_516 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_515, x_66, x_21); +lean_inc(x_516); +lean_inc(x_25); +lean_inc(x_14); +x_517 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_496, x_504, x_516); +lean_inc(x_492); +lean_inc(x_14); +x_518 = l_Lean_Syntax_node2(x_14, x_71, x_492, x_517); +x_519 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__259; +x_520 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__260; +lean_inc(x_14); +x_521 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_521, 0, x_14); +lean_ctor_set(x_521, 1, x_519); +lean_ctor_set(x_521, 2, x_520); +lean_ctor_set(x_521, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_522 = l_Lean_Syntax_node2(x_14, x_30, x_521, x_21); +lean_inc(x_457); +lean_inc(x_498); +lean_inc(x_14); +x_523 = l_Lean_Syntax_node2(x_14, x_499, x_498, x_457); +lean_inc(x_94); +lean_inc(x_438); +lean_inc(x_97); +lean_inc(x_14); +x_524 = l_Lean_Syntax_node3(x_14, x_439, x_97, x_438, x_94); +lean_inc(x_524); +lean_inc(x_442); +lean_inc(x_14); +x_525 = l_Lean_Syntax_node3(x_14, x_444, x_523, x_442, x_524); +lean_inc(x_33); +lean_inc(x_14); +x_526 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_525); +lean_inc(x_436); +lean_inc(x_14); +x_527 = l_Lean_Syntax_node2(x_14, x_58, x_436, x_526); +lean_inc(x_25); +lean_inc(x_14); +x_528 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_522, x_527, x_516); +lean_inc(x_492); +lean_inc(x_14); +x_529 = l_Lean_Syntax_node2(x_14, x_71, x_492, x_528); +x_530 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__262; +x_531 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__263; +lean_inc(x_14); +x_532 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_532, 0, x_14); +lean_ctor_set(x_532, 1, x_530); +lean_ctor_set(x_532, 2, x_531); +lean_ctor_set(x_532, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_533 = l_Lean_Syntax_node2(x_14, x_30, x_532, x_21); +lean_inc(x_438); +lean_inc_n(x_94, 2); +lean_inc(x_14); +x_534 = l_Lean_Syntax_node3(x_14, x_439, x_94, x_438, x_94); +lean_inc(x_33); +lean_inc(x_14); +x_535 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_534); +lean_inc(x_336); +lean_inc(x_14); +x_536 = l_Lean_Syntax_node2(x_14, x_58, x_336, x_535); +lean_inc(x_14); +x_537 = l_Lean_Syntax_node1(x_14, x_19, x_506); +lean_inc(x_181); +lean_inc(x_411); +lean_inc(x_14); +x_538 = l_Lean_Syntax_node3(x_14, x_19, x_411, x_537, x_181); +lean_inc_n(x_21, 3); +lean_inc(x_409); +lean_inc(x_174); +lean_inc(x_14); +x_539 = l_Lean_Syntax_node6(x_14, x_510, x_174, x_409, x_21, x_21, x_538, x_21); +lean_inc(x_14); +x_540 = l_Lean_Syntax_node1(x_14, x_19, x_539); +lean_inc(x_14); +x_541 = l_Lean_Syntax_node1(x_14, x_422, x_540); +lean_inc(x_14); +x_542 = l_Lean_Syntax_node1(x_14, x_424, x_541); +lean_inc(x_405); +lean_inc(x_14); +x_543 = l_Lean_Syntax_node2(x_14, x_426, x_405, x_542); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_544 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_543, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_545 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_533, x_536, x_544); +lean_inc(x_492); +lean_inc(x_14); +x_546 = l_Lean_Syntax_node2(x_14, x_71, x_492, x_545); +x_547 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__265; +x_548 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__266; +lean_inc(x_14); +x_549 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_549, 0, x_14); +lean_ctor_set(x_549, 1, x_547); +lean_ctor_set(x_549, 2, x_548); +lean_ctor_set(x_549, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_550 = l_Lean_Syntax_node2(x_14, x_30, x_549, x_21); +lean_inc(x_270); +lean_inc_n(x_94, 2); +lean_inc(x_14); +x_551 = l_Lean_Syntax_node3(x_14, x_274, x_94, x_270, x_94); +lean_inc(x_498); +lean_inc(x_14); +x_552 = l_Lean_Syntax_node2(x_14, x_499, x_498, x_551); +lean_inc(x_33); +lean_inc(x_14); +x_553 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_552); +lean_inc(x_336); +lean_inc(x_14); +x_554 = l_Lean_Syntax_node2(x_14, x_58, x_336, x_553); +lean_inc_n(x_21, 4); +lean_inc(x_409); +lean_inc(x_174); +lean_inc(x_14); +x_555 = l_Lean_Syntax_node6(x_14, x_510, x_174, x_409, x_21, x_21, x_21, x_21); +lean_inc(x_14); +x_556 = l_Lean_Syntax_node1(x_14, x_19, x_555); +lean_inc(x_14); +x_557 = l_Lean_Syntax_node1(x_14, x_422, x_556); +lean_inc(x_14); +x_558 = l_Lean_Syntax_node1(x_14, x_424, x_557); +lean_inc(x_405); +lean_inc(x_14); +x_559 = l_Lean_Syntax_node2(x_14, x_426, x_405, x_558); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_560 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_559, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_561 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_550, x_554, x_560); +lean_inc(x_492); +lean_inc(x_14); +x_562 = l_Lean_Syntax_node2(x_14, x_71, x_492, x_561); +lean_inc(x_491); +lean_inc_n(x_21, 5); +lean_inc(x_14); +x_563 = l_Lean_Syntax_node6(x_14, x_22, x_21, x_21, x_491, x_21, x_21, x_21); +x_564 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__268; +x_565 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__269; +lean_inc(x_14); +x_566 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_566, 0, x_14); +lean_ctor_set(x_566, 1, x_564); +lean_ctor_set(x_566, 2, x_565); +lean_ctor_set(x_566, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_567 = l_Lean_Syntax_node2(x_14, x_30, x_566, x_21); +x_568 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__271; +x_569 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__272; +lean_inc(x_14); +x_570 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_570, 0, x_14); +lean_ctor_set(x_570, 1, x_568); +lean_ctor_set(x_570, 2, x_569); +lean_ctor_set(x_570, 3, x_26); +lean_inc(x_570); +lean_inc(x_97); +lean_inc(x_94); +lean_inc(x_14); +x_571 = l_Lean_Syntax_node3(x_14, x_19, x_94, x_97, x_570); +lean_inc(x_228); +lean_inc(x_99); +lean_inc(x_218); +lean_inc(x_14); +x_572 = l_Lean_Syntax_node4(x_14, x_229, x_218, x_571, x_99, x_228); +lean_inc(x_14); +x_573 = l_Lean_Syntax_node1(x_14, x_19, x_572); +lean_inc(x_570); +lean_inc(x_438); +lean_inc(x_97); +lean_inc(x_14); +x_574 = l_Lean_Syntax_node3(x_14, x_439, x_97, x_438, x_570); +lean_inc(x_570); +lean_inc(x_94); +lean_inc(x_14); +x_575 = l_Lean_Syntax_node3(x_14, x_439, x_94, x_438, x_570); +lean_inc(x_377); +lean_inc(x_14); +x_576 = l_Lean_Syntax_node3(x_14, x_385, x_574, x_377, x_575); +lean_inc(x_377); +lean_inc(x_440); +lean_inc(x_14); +x_577 = l_Lean_Syntax_node3(x_14, x_385, x_440, x_377, x_576); +lean_inc(x_33); +lean_inc(x_14); +x_578 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_577); +lean_inc(x_573); +lean_inc(x_14); +x_579 = l_Lean_Syntax_node2(x_14, x_58, x_573, x_578); +x_580 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__274; +x_581 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__275; +lean_inc(x_14); +x_582 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_582, 0, x_14); +lean_ctor_set(x_582, 1, x_580); +lean_ctor_set(x_582, 2, x_581); +lean_ctor_set(x_582, 3, x_26); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_583 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_582, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_584 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_567, x_579, x_583); +lean_inc(x_563); +lean_inc(x_14); +x_585 = l_Lean_Syntax_node2(x_14, x_71, x_563, x_584); +x_586 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__277; +x_587 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__278; +lean_inc(x_14); +x_588 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_588, 0, x_14); +lean_ctor_set(x_588, 1, x_586); +lean_ctor_set(x_588, 2, x_587); +lean_ctor_set(x_588, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_589 = l_Lean_Syntax_node2(x_14, x_30, x_588, x_21); +lean_inc(x_570); +lean_inc(x_270); +lean_inc(x_97); +lean_inc(x_14); +x_590 = l_Lean_Syntax_node3(x_14, x_274, x_97, x_270, x_570); +lean_inc(x_270); +lean_inc(x_94); +lean_inc(x_14); +x_591 = l_Lean_Syntax_node3(x_14, x_274, x_94, x_270, x_570); +lean_inc(x_377); +lean_inc(x_14); +x_592 = l_Lean_Syntax_node3(x_14, x_385, x_590, x_377, x_591); +lean_inc(x_377); +lean_inc(x_457); +lean_inc(x_14); +x_593 = l_Lean_Syntax_node3(x_14, x_385, x_457, x_377, x_592); +lean_inc(x_33); +lean_inc(x_14); +x_594 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_593); +lean_inc(x_14); +x_595 = l_Lean_Syntax_node2(x_14, x_58, x_573, x_594); +x_596 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__280; +x_597 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__281; +lean_inc(x_14); +x_598 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_598, 0, x_14); +lean_ctor_set(x_598, 1, x_596); +lean_ctor_set(x_598, 2, x_597); +lean_ctor_set(x_598, 3, x_26); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_599 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_598, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_600 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_589, x_595, x_599); +lean_inc(x_563); +lean_inc(x_14); +x_601 = l_Lean_Syntax_node2(x_14, x_71, x_563, x_600); +x_602 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__283; +x_603 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__284; +lean_inc(x_14); +x_604 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_604, 0, x_14); +lean_ctor_set(x_604, 1, x_602); +lean_ctor_set(x_604, 2, x_603); +lean_ctor_set(x_604, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_605 = l_Lean_Syntax_node2(x_14, x_30, x_604, x_21); +x_606 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__287; +lean_inc(x_14); +x_607 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_607, 0, x_14); +lean_ctor_set(x_607, 1, x_606); +x_608 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__286; +lean_inc(x_524); +lean_inc(x_440); +lean_inc(x_14); +x_609 = l_Lean_Syntax_node3(x_14, x_608, x_440, x_607, x_524); +lean_inc(x_33); +lean_inc(x_14); +x_610 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_609); +lean_inc(x_102); +lean_inc(x_14); +x_611 = l_Lean_Syntax_node2(x_14, x_58, x_102, x_610); +x_612 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__289; +x_613 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__290; +lean_inc(x_14); +x_614 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_614, 0, x_14); +lean_ctor_set(x_614, 1, x_612); +lean_ctor_set(x_614, 2, x_613); +lean_ctor_set(x_614, 3, x_26); +lean_inc(x_256); +lean_inc(x_14); +x_615 = l_Lean_Syntax_node2(x_14, x_194, x_614, x_256); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_616 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_615, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_617 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_605, x_611, x_616); +lean_inc(x_563); +lean_inc(x_14); +x_618 = l_Lean_Syntax_node2(x_14, x_71, x_563, x_617); +x_619 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__292; +x_620 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__293; +lean_inc(x_14); +x_621 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_621, 0, x_14); +lean_ctor_set(x_621, 1, x_619); +lean_ctor_set(x_621, 2, x_620); +lean_ctor_set(x_621, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_622 = l_Lean_Syntax_node2(x_14, x_30, x_621, x_21); +lean_inc(x_14); +x_623 = l_Lean_Syntax_node2(x_14, x_499, x_498, x_501); +lean_inc(x_377); +lean_inc(x_457); +lean_inc(x_14); +x_624 = l_Lean_Syntax_node3(x_14, x_385, x_457, x_377, x_623); +lean_inc(x_33); +lean_inc(x_14); +x_625 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_624); +lean_inc(x_436); +lean_inc(x_14); +x_626 = l_Lean_Syntax_node2(x_14, x_58, x_436, x_625); +x_627 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__295; +x_628 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__296; +lean_inc(x_14); +x_629 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_629, 0, x_14); +lean_ctor_set(x_629, 1, x_627); +lean_ctor_set(x_629, 2, x_628); +lean_ctor_set(x_629, 3, x_26); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_630 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_629, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_631 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_622, x_626, x_630); +lean_inc(x_563); +lean_inc(x_14); +x_632 = l_Lean_Syntax_node2(x_14, x_71, x_563, x_631); +x_633 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__298; +x_634 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__299; +lean_inc(x_14); +x_635 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_635, 0, x_14); +lean_ctor_set(x_635, 1, x_633); +lean_ctor_set(x_635, 2, x_634); +lean_ctor_set(x_635, 3, x_26); +lean_inc(x_21); +lean_inc(x_635); +lean_inc(x_14); +x_636 = l_Lean_Syntax_node2(x_14, x_30, x_635, x_21); +lean_inc(x_97); +lean_inc(x_46); +lean_inc(x_94); +lean_inc(x_14); +x_637 = l_Lean_Syntax_node3(x_14, x_54, x_94, x_46, x_97); +lean_inc(x_637); +lean_inc(x_33); +lean_inc(x_14); +x_638 = l_Lean_Syntax_node2(x_14, x_19, x_33, x_637); +lean_inc(x_42); +lean_inc(x_21); +lean_inc(x_268); +lean_inc(x_35); +lean_inc(x_14); +x_639 = l_Lean_Syntax_node5(x_14, x_100, x_35, x_268, x_638, x_21, x_42); +lean_inc(x_435); +lean_inc(x_14); +x_640 = l_Lean_Syntax_node2(x_14, x_19, x_435, x_639); +lean_inc(x_112); +lean_inc(x_46); +lean_inc(x_109); +lean_inc(x_14); +x_641 = l_Lean_Syntax_node3(x_14, x_54, x_109, x_46, x_112); +lean_inc(x_641); +lean_inc(x_33); +lean_inc(x_14); +x_642 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_641); +lean_inc(x_14); +x_643 = l_Lean_Syntax_node2(x_14, x_58, x_640, x_642); +x_644 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__302; +lean_inc(x_14); +x_645 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_645, 0, x_14); +lean_ctor_set(x_645, 1, x_644); +lean_inc(x_64); +lean_inc(x_14); +x_646 = l_Lean_Syntax_node1(x_14, x_19, x_64); +x_647 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__301; +lean_inc(x_267); +lean_inc(x_14); +x_648 = l_Lean_Syntax_node3(x_14, x_647, x_267, x_645, x_646); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_649 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_648, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_650 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_636, x_643, x_649); +lean_inc(x_563); +lean_inc(x_14); +x_651 = l_Lean_Syntax_node2(x_14, x_71, x_563, x_650); +x_652 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__304; +x_653 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__305; +lean_inc(x_14); +x_654 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_654, 0, x_14); +lean_ctor_set(x_654, 1, x_652); +lean_ctor_set(x_654, 2, x_653); +lean_ctor_set(x_654, 3, x_26); +lean_inc(x_21); +lean_inc(x_654); +lean_inc(x_14); +x_655 = l_Lean_Syntax_node2(x_14, x_30, x_654, x_21); +lean_inc(x_641); +lean_inc(x_33); +lean_inc(x_14); +x_656 = l_Lean_Syntax_node2(x_14, x_19, x_33, x_641); +lean_inc(x_42); +lean_inc(x_21); +lean_inc(x_268); +lean_inc(x_35); +lean_inc(x_14); +x_657 = l_Lean_Syntax_node5(x_14, x_100, x_35, x_268, x_656, x_21, x_42); +lean_inc(x_435); +lean_inc(x_14); +x_658 = l_Lean_Syntax_node2(x_14, x_19, x_435, x_657); +lean_inc(x_637); +lean_inc(x_33); +lean_inc(x_14); +x_659 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_637); +lean_inc(x_659); +lean_inc(x_14); +x_660 = l_Lean_Syntax_node2(x_14, x_58, x_658, x_659); +x_661 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__306; +lean_inc(x_14); +x_662 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_662, 0, x_14); +lean_ctor_set(x_662, 1, x_661); +x_663 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__309; +lean_inc(x_94); +lean_inc(x_21); +lean_inc(x_14); +x_664 = l_Lean_Syntax_node2(x_14, x_663, x_21, x_94); +lean_inc(x_14); +x_665 = l_Lean_Syntax_node1(x_14, x_19, x_664); +x_666 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__307; +lean_inc_n(x_21, 2); +lean_inc(x_665); +lean_inc(x_662); +lean_inc(x_14); +x_667 = l_Lean_Syntax_node4(x_14, x_666, x_662, x_665, x_21, x_21); +x_668 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__310; +lean_inc(x_14); +x_669 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_669, 0, x_14); +lean_ctor_set(x_669, 1, x_668); +lean_inc(x_97); +lean_inc(x_21); +lean_inc(x_14); +x_670 = l_Lean_Syntax_node2(x_14, x_663, x_21, x_97); +lean_inc(x_14); +x_671 = l_Lean_Syntax_node1(x_14, x_19, x_670); +lean_inc_n(x_21, 2); +lean_inc(x_671); +lean_inc(x_14); +x_672 = l_Lean_Syntax_node4(x_14, x_666, x_662, x_671, x_21, x_21); +x_673 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__313; +lean_inc(x_14); +x_674 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_674, 0, x_14); +lean_ctor_set(x_674, 1, x_673); +x_675 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__312; +lean_inc_n(x_21, 3); +lean_inc(x_409); +lean_inc(x_674); +lean_inc(x_14); +x_676 = l_Lean_Syntax_node5(x_14, x_675, x_674, x_409, x_21, x_21, x_21); +lean_inc_n(x_669, 2); +lean_inc(x_14); +x_677 = l_Lean_Syntax_node5(x_14, x_19, x_667, x_669, x_672, x_669, x_676); +lean_inc(x_14); +x_678 = l_Lean_Syntax_node1(x_14, x_422, x_677); +lean_inc(x_14); +x_679 = l_Lean_Syntax_node1(x_14, x_424, x_678); +lean_inc(x_405); +lean_inc(x_14); +x_680 = l_Lean_Syntax_node2(x_14, x_426, x_405, x_679); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_681 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_680, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_682 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_655, x_660, x_681); +lean_inc(x_563); +lean_inc(x_14); +x_683 = l_Lean_Syntax_node2(x_14, x_71, x_563, x_682); +x_684 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__316; +lean_inc(x_14); +x_685 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_685, 0, x_14); +lean_ctor_set(x_685, 1, x_684); +lean_inc(x_635); +lean_inc(x_654); +lean_inc(x_14); +x_686 = l_Lean_Syntax_node2(x_14, x_19, x_654, x_635); +x_687 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__319; +lean_inc(x_42); +lean_inc(x_686); +lean_inc(x_35); +lean_inc(x_9); +lean_inc(x_14); +x_688 = l_Lean_Syntax_node4(x_14, x_687, x_9, x_35, x_686, x_42); +x_689 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__317; +lean_inc(x_685); +lean_inc(x_14); +x_690 = l_Lean_Syntax_node2(x_14, x_689, x_685, x_688); +x_691 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__314; +lean_inc(x_14); +x_692 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_692, 0, x_14); +lean_ctor_set(x_692, 1, x_691); +x_693 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__321; +x_694 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__322; +lean_inc(x_14); +x_695 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_695, 0, x_14); +lean_ctor_set(x_695, 1, x_693); +lean_ctor_set(x_695, 2, x_694); +lean_ctor_set(x_695, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_696 = l_Lean_Syntax_node2(x_14, x_30, x_695, x_21); +lean_inc(x_637); +lean_inc(x_442); +lean_inc(x_14); +x_697 = l_Lean_Syntax_node3(x_14, x_444, x_641, x_442, x_637); +lean_inc(x_33); +lean_inc(x_14); +x_698 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_697); +lean_inc(x_436); +lean_inc(x_14); +x_699 = l_Lean_Syntax_node2(x_14, x_58, x_436, x_698); +x_700 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__324; +x_701 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__327; +lean_inc(x_14); +x_702 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_702, 0, x_14); +lean_ctor_set(x_702, 1, x_700); +lean_ctor_set(x_702, 2, x_701); +lean_ctor_set(x_702, 3, x_26); +lean_inc(x_702); +lean_inc(x_14); +x_703 = l_Lean_Syntax_node2(x_14, x_194, x_702, x_686); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_704 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_703, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_705 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_696, x_699, x_704); +lean_inc(x_563); +lean_inc(x_14); +x_706 = l_Lean_Syntax_node2(x_14, x_71, x_563, x_705); +x_707 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__315; +lean_inc(x_692); +lean_inc(x_14); +x_708 = l_Lean_Syntax_node3(x_14, x_707, x_690, x_692, x_706); +lean_inc(x_14); +x_709 = l_Lean_Syntax_node1(x_14, x_19, x_654); +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_9); +lean_inc(x_14); +x_710 = l_Lean_Syntax_node4(x_14, x_687, x_9, x_35, x_709, x_42); +lean_inc(x_685); +lean_inc(x_14); +x_711 = l_Lean_Syntax_node2(x_14, x_689, x_685, x_710); +x_712 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__329; +x_713 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__330; +lean_inc(x_14); +x_714 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_714, 0, x_14); +lean_ctor_set(x_714, 1, x_712); +lean_ctor_set(x_714, 2, x_713); +lean_ctor_set(x_714, 3, x_26); +lean_inc(x_21); +lean_inc(x_714); +lean_inc(x_14); +x_715 = l_Lean_Syntax_node2(x_14, x_30, x_714, x_21); +x_716 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__332; +x_717 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__333; +lean_inc(x_14); +x_718 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_718, 0, x_14); +lean_ctor_set(x_718, 1, x_716); +lean_ctor_set(x_718, 2, x_717); +lean_ctor_set(x_718, 3, x_26); +x_719 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__335; +x_720 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__336; +lean_inc(x_14); +x_721 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_721, 0, x_14); +lean_ctor_set(x_721, 1, x_719); +lean_ctor_set(x_721, 2, x_720); +lean_ctor_set(x_721, 3, x_26); +lean_inc(x_46); +lean_inc(x_14); +x_722 = l_Lean_Syntax_node3(x_14, x_54, x_718, x_46, x_721); +lean_inc(x_722); +lean_inc(x_33); +lean_inc(x_14); +x_723 = l_Lean_Syntax_node2(x_14, x_19, x_33, x_722); +lean_inc(x_42); +lean_inc(x_21); +lean_inc(x_268); +lean_inc(x_35); +lean_inc(x_14); +x_724 = l_Lean_Syntax_node5(x_14, x_100, x_35, x_268, x_723, x_21, x_42); +lean_inc(x_435); +lean_inc(x_14); +x_725 = l_Lean_Syntax_node2(x_14, x_19, x_435, x_724); +lean_inc(x_659); +lean_inc(x_14); +x_726 = l_Lean_Syntax_node2(x_14, x_58, x_725, x_659); +x_727 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__337; +lean_inc(x_14); +x_728 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_728, 0, x_14); +lean_ctor_set(x_728, 1, x_727); +x_729 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__339; +lean_inc(x_14); +x_730 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_730, 0, x_14); +lean_ctor_set(x_730, 1, x_729); +x_731 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__348; +lean_inc(x_14); +x_732 = l_Lean_Syntax_node1(x_14, x_731, x_349); +lean_inc(x_14); +x_733 = l_Lean_Syntax_node1(x_14, x_19, x_732); +x_734 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__343; +lean_inc(x_14); +x_735 = l_Lean_Syntax_node1(x_14, x_734, x_733); +x_736 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__341; +lean_inc(x_21); +lean_inc(x_14); +x_737 = l_Lean_Syntax_node2(x_14, x_736, x_735, x_21); +lean_inc(x_14); +x_738 = l_Lean_Syntax_node1(x_14, x_19, x_737); +x_739 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__346; +lean_inc(x_51); +lean_inc(x_48); +lean_inc(x_14); +x_740 = l_Lean_Syntax_node3(x_14, x_739, x_48, x_738, x_51); +lean_inc(x_14); +x_741 = l_Lean_Syntax_node1(x_14, x_19, x_740); +lean_inc(x_14); +x_742 = l_Lean_Syntax_node1(x_14, x_734, x_741); +lean_inc(x_21); +lean_inc(x_14); +x_743 = l_Lean_Syntax_node2(x_14, x_736, x_742, x_21); +lean_inc(x_14); +x_744 = l_Lean_Syntax_node1(x_14, x_19, x_743); +lean_inc(x_51); +lean_inc(x_48); +lean_inc(x_14); +x_745 = l_Lean_Syntax_node3(x_14, x_739, x_48, x_744, x_51); +lean_inc(x_14); +x_746 = l_Lean_Syntax_node1(x_14, x_19, x_745); +lean_inc(x_14); +x_747 = l_Lean_Syntax_node1(x_14, x_734, x_746); +lean_inc(x_21); +lean_inc(x_14); +x_748 = l_Lean_Syntax_node2(x_14, x_736, x_747, x_21); +lean_inc(x_14); +x_749 = l_Lean_Syntax_node2(x_14, x_19, x_730, x_748); +x_750 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__338; +lean_inc(x_749); +lean_inc(x_728); +lean_inc(x_14); +x_751 = l_Lean_Syntax_node3(x_14, x_750, x_728, x_665, x_749); +lean_inc(x_14); +x_752 = l_Lean_Syntax_node3(x_14, x_750, x_728, x_671, x_749); +x_753 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__349; +x_754 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__350; +lean_inc(x_14); +x_755 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_755, 0, x_14); +lean_ctor_set(x_755, 1, x_753); +lean_ctor_set(x_755, 2, x_754); +lean_ctor_set(x_755, 3, x_26); +lean_inc(x_755); +lean_inc_n(x_21, 2); +lean_inc(x_14); +x_756 = l_Lean_Syntax_node3(x_14, x_505, x_21, x_21, x_755); +lean_inc(x_14); +x_757 = l_Lean_Syntax_node1(x_14, x_19, x_756); +lean_inc(x_181); +lean_inc(x_411); +lean_inc(x_14); +x_758 = l_Lean_Syntax_node3(x_14, x_19, x_411, x_757, x_181); +lean_inc_n(x_21, 2); +lean_inc(x_409); +lean_inc(x_14); +x_759 = l_Lean_Syntax_node5(x_14, x_675, x_674, x_409, x_21, x_21, x_758); +lean_inc(x_669); +lean_inc(x_14); +x_760 = l_Lean_Syntax_node5(x_14, x_19, x_751, x_669, x_752, x_669, x_759); +lean_inc(x_14); +x_761 = l_Lean_Syntax_node1(x_14, x_422, x_760); +lean_inc(x_14); +x_762 = l_Lean_Syntax_node1(x_14, x_424, x_761); +lean_inc(x_405); +lean_inc(x_14); +x_763 = l_Lean_Syntax_node2(x_14, x_426, x_405, x_762); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_764 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_763, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_765 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_715, x_726, x_764); +lean_inc(x_563); +lean_inc(x_14); +x_766 = l_Lean_Syntax_node2(x_14, x_71, x_563, x_765); +lean_inc(x_692); +lean_inc(x_14); +x_767 = l_Lean_Syntax_node3(x_14, x_707, x_711, x_692, x_766); +lean_inc(x_714); +lean_inc(x_14); +x_768 = l_Lean_Syntax_node1(x_14, x_19, x_714); +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_9); +lean_inc(x_14); +x_769 = l_Lean_Syntax_node4(x_14, x_687, x_9, x_35, x_768, x_42); +lean_inc(x_685); +lean_inc(x_14); +x_770 = l_Lean_Syntax_node2(x_14, x_689, x_685, x_769); +x_771 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__352; +x_772 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__353; +lean_inc(x_14); +x_773 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_773, 0, x_14); +lean_ctor_set(x_773, 1, x_771); +lean_ctor_set(x_773, 2, x_772); +lean_ctor_set(x_773, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_774 = l_Lean_Syntax_node2(x_14, x_30, x_773, x_21); +lean_inc(x_637); +lean_inc(x_442); +lean_inc(x_14); +x_775 = l_Lean_Syntax_node3(x_14, x_444, x_722, x_442, x_637); +lean_inc(x_33); +lean_inc(x_14); +x_776 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_775); +lean_inc(x_436); +lean_inc(x_14); +x_777 = l_Lean_Syntax_node2(x_14, x_58, x_436, x_776); +x_778 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__355; +x_779 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__356; +lean_inc(x_14); +x_780 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_780, 0, x_14); +lean_ctor_set(x_780, 1, x_778); +lean_ctor_set(x_780, 2, x_779); +lean_ctor_set(x_780, 3, x_26); +lean_inc(x_755); +lean_inc(x_14); +x_781 = l_Lean_Syntax_node1(x_14, x_19, x_755); lean_inc(x_780); -lean_inc(x_12); -x_782 = l_Lean_Syntax_node3(x_12, x_781, x_122, x_780, x_125); -lean_inc(x_75); -lean_inc(x_73); -lean_inc(x_12); -x_783 = l_Lean_Syntax_node3(x_12, x_284, x_73, x_782, x_75); -lean_inc(x_325); -lean_inc(x_287); -lean_inc(x_12); -x_784 = l_Lean_Syntax_node3(x_12, x_291, x_783, x_287, x_325); -lean_inc(x_763); -lean_inc(x_760); -lean_inc(x_12); -x_785 = l_Lean_Syntax_node3(x_12, x_781, x_760, x_780, x_763); -lean_inc(x_79); -lean_inc(x_12); -x_786 = l_Lean_Syntax_node3(x_12, x_87, x_784, x_79, x_785); -lean_inc(x_27); -lean_inc(x_12); -x_787 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_786); -lean_inc(x_130); -lean_inc(x_12); -x_788 = l_Lean_Syntax_node2(x_12, x_37, x_130, x_787); -x_789 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__384; -x_790 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__386; -lean_inc(x_12); -x_791 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_791, 0, x_12); -lean_ctor_set(x_791, 1, x_789); -lean_ctor_set(x_791, 2, x_790); -lean_ctor_set(x_791, 3, x_28); -lean_inc(x_12); -x_792 = l_Lean_Syntax_node2(x_12, x_33, x_791, x_522); -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_45); -lean_inc(x_12); -x_793 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_792, x_95, x_19); +lean_inc(x_14); +x_782 = l_Lean_Syntax_node2(x_14, x_194, x_780, x_781); +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_14); +x_783 = l_Lean_Syntax_node3(x_14, x_196, x_35, x_782, x_42); +lean_inc(x_14); +x_784 = l_Lean_Syntax_node2(x_14, x_19, x_714, x_783); +lean_inc(x_702); +lean_inc(x_14); +x_785 = l_Lean_Syntax_node2(x_14, x_194, x_702, x_784); +lean_inc(x_21); lean_inc(x_66); -lean_inc(x_12); -x_794 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_778, x_788, x_793); -lean_inc(x_395); -lean_inc(x_12); -x_795 = l_Lean_Syntax_node2(x_12, x_63, x_395, x_794); -x_796 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__388; -x_797 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__389; -lean_inc(x_12); -x_798 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_798, 0, x_12); -lean_ctor_set(x_798, 1, x_796); -lean_ctor_set(x_798, 2, x_797); -lean_ctor_set(x_798, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_799 = l_Lean_Syntax_node2(x_12, x_70, x_798, x_19); -lean_inc(x_75); -lean_inc(x_73); -lean_inc(x_12); -x_800 = l_Lean_Syntax_node3(x_12, x_284, x_73, x_134, x_75); -lean_inc(x_325); -lean_inc(x_12); -x_801 = l_Lean_Syntax_node3(x_12, x_291, x_800, x_287, x_325); -lean_inc(x_763); -lean_inc(x_760); -lean_inc(x_12); -x_802 = l_Lean_Syntax_node3(x_12, x_133, x_760, x_132, x_763); -lean_inc(x_79); -lean_inc(x_12); -x_803 = l_Lean_Syntax_node3(x_12, x_87, x_801, x_79, x_802); -lean_inc(x_279); -lean_inc(x_12); -x_804 = l_Lean_Syntax_node3(x_12, x_294, x_427, x_279, x_803); -lean_inc(x_27); -lean_inc(x_12); -x_805 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_804); -lean_inc(x_12); -x_806 = l_Lean_Syntax_node2(x_12, x_37, x_130, x_805); -x_807 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__391; -x_808 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__392; -lean_inc(x_12); -x_809 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_809, 0, x_12); -lean_ctor_set(x_809, 1, x_807); -lean_ctor_set(x_809, 2, x_808); -lean_ctor_set(x_809, 3, x_28); -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_45); -lean_inc(x_12); -x_810 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_809, x_95, x_19); -lean_inc(x_66); -lean_inc(x_12); -x_811 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_799, x_806, x_810); -lean_inc(x_395); -lean_inc(x_12); -x_812 = l_Lean_Syntax_node2(x_12, x_63, x_395, x_811); -x_813 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__394; -x_814 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__395; -lean_inc(x_12); +lean_inc(x_61); +lean_inc(x_14); +x_786 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_785, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_787 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_774, x_777, x_786); +lean_inc(x_563); +lean_inc(x_14); +x_788 = l_Lean_Syntax_node2(x_14, x_71, x_563, x_787); +lean_inc(x_692); +lean_inc(x_14); +x_789 = l_Lean_Syntax_node3(x_14, x_707, x_770, x_692, x_788); +lean_inc(x_635); +lean_inc(x_14); +x_790 = l_Lean_Syntax_node1(x_14, x_19, x_635); +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_9); +lean_inc(x_14); +x_791 = l_Lean_Syntax_node4(x_14, x_687, x_9, x_35, x_790, x_42); +lean_inc(x_685); +lean_inc(x_14); +x_792 = l_Lean_Syntax_node2(x_14, x_689, x_685, x_791); +x_793 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__358; +x_794 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__359; +lean_inc(x_14); +x_795 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_795, 0, x_14); +lean_ctor_set(x_795, 1, x_793); +lean_ctor_set(x_795, 2, x_794); +lean_ctor_set(x_795, 3, x_26); +lean_inc(x_21); +lean_inc(x_795); +lean_inc(x_14); +x_796 = l_Lean_Syntax_node2(x_14, x_30, x_795, x_21); +x_797 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__362; +lean_inc(x_14); +x_798 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_798, 0, x_14); +lean_ctor_set(x_798, 1, x_797); +x_799 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__361; +lean_inc(x_798); +lean_inc(x_14); +x_800 = l_Lean_Syntax_node3(x_14, x_799, x_109, x_798, x_112); +lean_inc(x_33); +lean_inc(x_14); +x_801 = l_Lean_Syntax_node2(x_14, x_19, x_33, x_800); +lean_inc(x_42); +lean_inc(x_21); +lean_inc(x_268); +lean_inc(x_35); +lean_inc(x_14); +x_802 = l_Lean_Syntax_node5(x_14, x_100, x_35, x_268, x_801, x_21, x_42); +lean_inc(x_435); +lean_inc(x_14); +x_803 = l_Lean_Syntax_node2(x_14, x_19, x_435, x_802); +lean_inc(x_97); +lean_inc(x_94); +lean_inc(x_14); +x_804 = l_Lean_Syntax_node3(x_14, x_799, x_94, x_798, x_97); +lean_inc(x_33); +lean_inc(x_14); +x_805 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_804); +lean_inc(x_805); +lean_inc(x_14); +x_806 = l_Lean_Syntax_node2(x_14, x_58, x_803, x_805); +x_807 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__363; +lean_inc(x_14); +x_808 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_808, 0, x_14); +lean_ctor_set(x_808, 1, x_807); +x_809 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__368; +x_810 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__369; +lean_inc(x_14); +x_811 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_811, 0, x_14); +lean_ctor_set(x_811, 1, x_809); +lean_ctor_set(x_811, 2, x_810); +lean_ctor_set(x_811, 3, x_26); +lean_inc(x_14); +x_812 = l_Lean_Syntax_node1(x_14, x_19, x_811); +x_813 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__371; +x_814 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__372; +lean_inc(x_14); x_815 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_815, 0, x_12); +lean_ctor_set(x_815, 0, x_14); lean_ctor_set(x_815, 1, x_813); lean_ctor_set(x_815, 2, x_814); -lean_ctor_set(x_815, 3, x_28); -lean_inc(x_19); -lean_inc(x_815); -lean_inc(x_12); -x_816 = l_Lean_Syntax_node2(x_12, x_70, x_815, x_19); -lean_inc(x_275); -lean_inc(x_272); -lean_inc(x_760); -lean_inc(x_12); -x_817 = l_Lean_Syntax_node3(x_12, x_276, x_760, x_272, x_275); -lean_inc(x_27); -lean_inc(x_12); -x_818 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_817); -lean_inc(x_12); -x_819 = l_Lean_Syntax_node2(x_12, x_37, x_220, x_818); -x_820 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__397; -x_821 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__399; -lean_inc(x_12); -x_822 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_822, 0, x_12); -lean_ctor_set(x_822, 1, x_820); -lean_ctor_set(x_822, 2, x_821); -lean_ctor_set(x_822, 3, x_28); -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_45); -lean_inc(x_12); -x_823 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_822, x_95, x_19); -lean_inc(x_66); -lean_inc(x_12); -x_824 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_816, x_819, x_823); -lean_inc(x_466); -lean_inc(x_12); -x_825 = l_Lean_Syntax_node2(x_12, x_63, x_466, x_824); -lean_inc(x_815); -lean_inc(x_754); -lean_inc(x_12); -x_826 = l_Lean_Syntax_node2(x_12, x_17, x_754, x_815); -lean_inc(x_75); -lean_inc(x_73); -lean_inc(x_9); -lean_inc(x_12); -x_827 = l_Lean_Syntax_node4(x_12, x_595, x_9, x_73, x_826, x_75); -lean_inc(x_593); -lean_inc(x_12); -x_828 = l_Lean_Syntax_node2(x_12, x_597, x_593, x_827); -x_829 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__401; -x_830 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__402; -lean_inc(x_12); -x_831 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_831, 0, x_12); -lean_ctor_set(x_831, 1, x_829); -lean_ctor_set(x_831, 2, x_830); -lean_ctor_set(x_831, 3, x_28); -lean_inc(x_19); -lean_inc(x_831); -lean_inc(x_12); -x_832 = l_Lean_Syntax_node2(x_12, x_70, x_831, x_19); -x_833 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__404; -x_834 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__405; -lean_inc(x_12); -x_835 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_835, 0, x_12); -lean_ctor_set(x_835, 1, x_833); -lean_ctor_set(x_835, 2, x_834); -lean_ctor_set(x_835, 3, x_28); -lean_inc(x_835); -lean_inc(x_12); -x_836 = l_Lean_Syntax_node1(x_12, x_17, x_835); +lean_ctor_set(x_815, 3, x_26); +lean_inc(x_812); +lean_inc(x_14); +x_816 = l_Lean_Syntax_node2(x_14, x_194, x_635, x_812); +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_14); +x_817 = l_Lean_Syntax_node3(x_14, x_196, x_35, x_816, x_42); lean_inc(x_267); -lean_inc(x_265); -lean_inc(x_836); -lean_inc(x_261); -lean_inc(x_12); -x_837 = l_Lean_Syntax_node4(x_12, x_268, x_261, x_836, x_265, x_267); -lean_inc(x_12); -x_838 = l_Lean_Syntax_node1(x_12, x_17, x_837); -x_839 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__407; -x_840 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__408; -lean_inc(x_12); -x_841 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_841, 0, x_12); -lean_ctor_set(x_841, 1, x_839); -lean_ctor_set(x_841, 2, x_840); -lean_ctor_set(x_841, 3, x_28); -lean_inc(x_841); -lean_inc(x_12); -x_842 = l_Lean_Syntax_node1(x_12, x_17, x_841); -lean_inc(x_75); -lean_inc(x_19); -lean_inc(x_127); -lean_inc(x_842); -lean_inc(x_73); -lean_inc(x_12); -x_843 = l_Lean_Syntax_node5(x_12, x_128, x_73, x_842, x_127, x_19, x_75); -lean_inc(x_12); -x_844 = l_Lean_Syntax_node1(x_12, x_17, x_843); -x_845 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__411; -lean_inc(x_12); -x_846 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_846, 0, x_12); -lean_ctor_set(x_846, 1, x_845); -x_847 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__410; -lean_inc(x_49); -lean_inc(x_835); -lean_inc(x_12); -x_848 = l_Lean_Syntax_node3(x_12, x_847, x_835, x_846, x_49); -lean_inc(x_282); -lean_inc(x_12); -x_849 = l_Lean_Syntax_node2(x_12, x_33, x_282, x_836); -lean_inc(x_170); -lean_inc(x_841); -lean_inc(x_12); -x_850 = l_Lean_Syntax_node3(x_12, x_171, x_841, x_170, x_849); -lean_inc(x_75); -lean_inc(x_73); -lean_inc(x_12); -x_851 = l_Lean_Syntax_node3(x_12, x_284, x_73, x_850, x_75); -lean_inc(x_12); -x_852 = l_Lean_Syntax_node1(x_12, x_17, x_851); -lean_inc(x_325); -lean_inc(x_12); -x_853 = l_Lean_Syntax_node2(x_12, x_33, x_325, x_852); -lean_inc(x_835); -lean_inc(x_272); -lean_inc(x_12); -x_854 = l_Lean_Syntax_node3(x_12, x_276, x_853, x_272, x_835); -lean_inc(x_279); -lean_inc(x_848); -lean_inc(x_12); -x_855 = l_Lean_Syntax_node3(x_12, x_294, x_848, x_279, x_854); -lean_inc(x_222); -lean_inc(x_19); -lean_inc(x_844); -lean_inc(x_217); -lean_inc(x_12); -x_856 = l_Lean_Syntax_node5(x_12, x_229, x_217, x_844, x_19, x_222, x_855); -lean_inc(x_27); -lean_inc(x_12); -x_857 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_856); -lean_inc(x_838); -lean_inc(x_12); -x_858 = l_Lean_Syntax_node2(x_12, x_37, x_838, x_857); -x_859 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__412; -lean_inc(x_12); -x_860 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_860, 0, x_12); -lean_ctor_set(x_860, 1, x_859); -x_861 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__415; -x_862 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__416; -lean_inc(x_12); -x_863 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_863, 0, x_12); -lean_ctor_set(x_863, 1, x_861); -lean_ctor_set(x_863, 2, x_862); -lean_ctor_set(x_863, 3, x_28); -lean_inc(x_863); -lean_inc(x_841); -lean_inc(x_12); -x_864 = l_Lean_Syntax_node2(x_12, x_17, x_841, x_863); -x_865 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__413; -lean_inc(x_860); -lean_inc(x_12); -x_866 = l_Lean_Syntax_node2(x_12, x_865, x_860, x_864); -x_867 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__419; -lean_inc(x_12); -x_868 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_868, 0, x_12); -lean_ctor_set(x_868, 1, x_867); -x_869 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__421; -x_870 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__422; -lean_inc(x_12); -x_871 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_871, 0, x_12); -lean_ctor_set(x_871, 1, x_869); -lean_ctor_set(x_871, 2, x_870); -lean_ctor_set(x_871, 3, x_28); -lean_inc(x_27); -lean_inc(x_871); -lean_inc(x_12); -x_872 = l_Lean_Syntax_node2(x_12, x_17, x_871, x_27); -lean_inc(x_272); -lean_inc(x_835); -lean_inc(x_12); -x_873 = l_Lean_Syntax_node3(x_12, x_276, x_835, x_272, x_275); -x_874 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__418; -lean_inc(x_12); -x_875 = l_Lean_Syntax_node3(x_12, x_874, x_868, x_872, x_873); -x_876 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__432; -lean_inc(x_12); -x_877 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_877, 0, x_12); -lean_ctor_set(x_877, 1, x_876); -x_878 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__431; -lean_inc(x_877); -lean_inc(x_12); -x_879 = l_Lean_Syntax_node1(x_12, x_878, x_877); -x_880 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__428; -lean_inc(x_12); -x_881 = l_Lean_Syntax_node1(x_12, x_880, x_879); -x_882 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__426; -lean_inc(x_12); -x_883 = l_Lean_Syntax_node1(x_12, x_882, x_881); -lean_inc(x_19); -lean_inc(x_12); -x_884 = l_Lean_Syntax_node2(x_12, x_338, x_19, x_754); -lean_inc(x_871); -lean_inc(x_12); -x_885 = l_Lean_Syntax_node1(x_12, x_17, x_871); -lean_inc(x_12); -x_886 = l_Lean_Syntax_node2(x_12, x_33, x_306, x_885); -lean_inc(x_19); -lean_inc(x_12); -x_887 = l_Lean_Syntax_node2(x_12, x_338, x_19, x_886); -lean_inc(x_222); -lean_inc(x_12); -x_888 = l_Lean_Syntax_node3(x_12, x_17, x_884, x_222, x_887); -lean_inc(x_207); -lean_inc(x_337); -lean_inc(x_12); -x_889 = l_Lean_Syntax_node3(x_12, x_343, x_337, x_888, x_207); -lean_inc(x_19); -lean_inc(x_335); -lean_inc(x_333); -lean_inc(x_12); -x_890 = l_Lean_Syntax_node4(x_12, x_345, x_333, x_335, x_889, x_19); -x_891 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__434; -x_892 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__436; -lean_inc(x_12); -x_893 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_893, 0, x_12); -lean_ctor_set(x_893, 1, x_891); -lean_ctor_set(x_893, 2, x_892); -lean_ctor_set(x_893, 3, x_28); -lean_inc(x_238); -lean_inc(x_12); -x_894 = l_Lean_Syntax_node2(x_12, x_17, x_238, x_863); -lean_inc(x_893); -lean_inc(x_12); -x_895 = l_Lean_Syntax_node2(x_12, x_33, x_893, x_894); -lean_inc(x_708); -lean_inc(x_12); -x_896 = l_Lean_Syntax_node2(x_12, x_709, x_708, x_895); -lean_inc(x_19); -lean_inc(x_12); -x_897 = l_Lean_Syntax_node3(x_12, x_17, x_890, x_19, x_896); -lean_inc(x_12); -x_898 = l_Lean_Syntax_node1(x_12, x_348, x_897); -lean_inc(x_12); -x_899 = l_Lean_Syntax_node1(x_12, x_350, x_898); -x_900 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__424; -lean_inc(x_883); -lean_inc(x_12); -x_901 = l_Lean_Syntax_node2(x_12, x_900, x_883, x_899); -x_902 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__438; -x_903 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__440; -lean_inc(x_12); -x_904 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_904, 0, x_12); -lean_ctor_set(x_904, 1, x_902); -lean_ctor_set(x_904, 2, x_903); -lean_ctor_set(x_904, 3, x_28); -lean_inc(x_708); -lean_inc(x_12); -x_905 = l_Lean_Syntax_node2(x_12, x_709, x_708, x_904); -lean_inc(x_708); -lean_inc(x_12); -x_906 = l_Lean_Syntax_node2(x_12, x_709, x_708, x_815); -lean_inc(x_12); -x_907 = l_Lean_Syntax_node1(x_12, x_17, x_906); -lean_inc(x_12); -x_908 = l_Lean_Syntax_node1(x_12, x_348, x_907); -lean_inc(x_12); -x_909 = l_Lean_Syntax_node1(x_12, x_350, x_908); -lean_inc(x_883); -lean_inc(x_12); -x_910 = l_Lean_Syntax_node2(x_12, x_900, x_883, x_909); -lean_inc(x_12); -x_911 = l_Lean_Syntax_node2(x_12, x_17, x_722, x_871); -lean_inc_n(x_19, 3); -lean_inc(x_335); -lean_inc(x_12); -x_912 = l_Lean_Syntax_node5(x_12, x_724, x_335, x_19, x_19, x_19, x_911); -lean_inc_n(x_19, 2); -lean_inc(x_12); -x_913 = l_Lean_Syntax_node4(x_12, x_726, x_716, x_19, x_19, x_912); -lean_inc(x_12); -x_914 = l_Lean_Syntax_node1(x_12, x_17, x_913); -lean_inc(x_12); -x_915 = l_Lean_Syntax_node1(x_12, x_348, x_914); -lean_inc(x_12); -x_916 = l_Lean_Syntax_node1(x_12, x_350, x_915); -lean_inc(x_883); -lean_inc(x_12); -x_917 = l_Lean_Syntax_node2(x_12, x_900, x_883, x_916); -lean_inc_n(x_19, 2); -lean_inc(x_12); -x_918 = l_Lean_Syntax_node5(x_12, x_17, x_905, x_19, x_910, x_19, x_917); -lean_inc(x_12); -x_919 = l_Lean_Syntax_node1(x_12, x_348, x_918); -lean_inc(x_12); -x_920 = l_Lean_Syntax_node1(x_12, x_350, x_919); -lean_inc(x_883); -lean_inc(x_12); -x_921 = l_Lean_Syntax_node2(x_12, x_900, x_883, x_920); -lean_inc_n(x_19, 3); -lean_inc(x_12); -x_922 = l_Lean_Syntax_node7(x_12, x_17, x_866, x_19, x_875, x_19, x_901, x_19, x_921); -lean_inc(x_12); -x_923 = l_Lean_Syntax_node1(x_12, x_348, x_922); -lean_inc(x_12); -x_924 = l_Lean_Syntax_node1(x_12, x_350, x_923); -lean_inc(x_331); -lean_inc(x_12); -x_925 = l_Lean_Syntax_node2(x_12, x_352, x_331, x_924); -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_45); -lean_inc(x_12); -x_926 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_925, x_95, x_19); +lean_inc(x_14); +x_818 = l_Lean_Syntax_node2(x_14, x_19, x_817, x_267); +lean_inc(x_14); +x_819 = l_Lean_Syntax_node2(x_14, x_194, x_815, x_818); +x_820 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__366; +lean_inc(x_357); +lean_inc(x_21); +lean_inc(x_14); +x_821 = l_Lean_Syntax_node4(x_14, x_820, x_812, x_21, x_357, x_819); +x_822 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__364; +lean_inc(x_14); +x_823 = l_Lean_Syntax_node2(x_14, x_822, x_808, x_821); +lean_inc(x_21); lean_inc(x_66); -lean_inc(x_12); -x_927 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_832, x_858, x_926); -lean_inc(x_466); -lean_inc(x_12); -x_928 = l_Lean_Syntax_node2(x_12, x_63, x_466, x_927); -lean_inc(x_600); -lean_inc(x_12); -x_929 = l_Lean_Syntax_node3(x_12, x_656, x_828, x_600, x_928); -lean_inc(x_12); -x_930 = l_Lean_Syntax_node1(x_12, x_17, x_831); -lean_inc(x_75); -lean_inc(x_930); -lean_inc(x_73); -lean_inc(x_12); -x_931 = l_Lean_Syntax_node4(x_12, x_595, x_9, x_73, x_930, x_75); -lean_inc(x_12); -x_932 = l_Lean_Syntax_node2(x_12, x_597, x_593, x_931); -x_933 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__441; -lean_inc(x_12); -x_934 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_934, 0, x_12); -lean_ctor_set(x_934, 1, x_933); -x_935 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__444; -x_936 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__447; -lean_inc(x_12); -x_937 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_937, 0, x_12); -lean_ctor_set(x_937, 1, x_935); -lean_ctor_set(x_937, 2, x_936); -lean_ctor_set(x_937, 3, x_28); -x_938 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__448; -lean_inc(x_12); -x_939 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_939, 0, x_12); -lean_ctor_set(x_939, 1, x_938); -x_940 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__442; -lean_inc(x_19); -lean_inc(x_12); -x_941 = l_Lean_Syntax_node4(x_12, x_940, x_934, x_937, x_19, x_939); -x_942 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__446; -lean_inc(x_12); -x_943 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_943, 0, x_12); -lean_ctor_set(x_943, 1, x_942); -x_944 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__450; -lean_inc(x_12); -x_945 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_945, 0, x_12); -lean_ctor_set(x_945, 1, x_944); -x_946 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__453; -lean_inc(x_12); -x_947 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_947, 0, x_12); -lean_ctor_set(x_947, 1, x_946); -x_948 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__452; -lean_inc(x_12); -x_949 = l_Lean_Syntax_node1(x_12, x_948, x_947); -lean_inc(x_75); -lean_inc(x_45); -lean_inc(x_73); -lean_inc(x_12); -x_950 = l_Lean_Syntax_node5(x_12, x_17, x_73, x_945, x_45, x_949, x_75); -x_951 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__449; -lean_inc(x_19); -lean_inc(x_12); -x_952 = l_Lean_Syntax_node4(x_12, x_951, x_943, x_930, x_19, x_950); -lean_inc(x_12); -x_953 = l_Lean_Syntax_node2(x_12, x_203, x_23, x_952); -lean_inc(x_12); -x_954 = l_Lean_Syntax_node1(x_12, x_17, x_953); +lean_inc(x_61); +lean_inc(x_14); +x_824 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_823, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_825 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_796, x_806, x_824); +lean_inc(x_563); +lean_inc(x_14); +x_826 = l_Lean_Syntax_node2(x_14, x_71, x_563, x_825); +lean_inc(x_692); +lean_inc(x_14); +x_827 = l_Lean_Syntax_node3(x_14, x_707, x_792, x_692, x_826); +lean_inc(x_795); +lean_inc(x_14); +x_828 = l_Lean_Syntax_node1(x_14, x_19, x_795); +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_9); +lean_inc(x_14); +x_829 = l_Lean_Syntax_node4(x_14, x_687, x_9, x_35, x_828, x_42); +lean_inc(x_685); +lean_inc(x_14); +x_830 = l_Lean_Syntax_node2(x_14, x_689, x_685, x_829); +x_831 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__374; +x_832 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__375; +lean_inc(x_14); +x_833 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_833, 0, x_14); +lean_ctor_set(x_833, 1, x_831); +lean_ctor_set(x_833, 2, x_832); +lean_ctor_set(x_833, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_834 = l_Lean_Syntax_node2(x_14, x_30, x_833, x_21); +lean_inc(x_33); +lean_inc(x_14); +x_835 = l_Lean_Syntax_node2(x_14, x_19, x_33, x_457); +lean_inc(x_42); +lean_inc(x_21); +lean_inc(x_35); +lean_inc(x_14); +x_836 = l_Lean_Syntax_node5(x_14, x_100, x_35, x_268, x_835, x_21, x_42); +lean_inc(x_435); +lean_inc(x_14); +x_837 = l_Lean_Syntax_node2(x_14, x_19, x_435, x_836); +lean_inc(x_14); +x_838 = l_Lean_Syntax_node2(x_14, x_58, x_837, x_805); +x_839 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__376; +lean_inc(x_14); +x_840 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_840, 0, x_14); +lean_ctor_set(x_840, 1, x_839); +x_841 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__377; +lean_inc(x_840); +lean_inc(x_14); +x_842 = l_Lean_Syntax_node2(x_14, x_841, x_840, x_795); +x_843 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__379; +x_844 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__380; +lean_inc(x_14); +x_845 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_845, 0, x_14); +lean_ctor_set(x_845, 1, x_843); +lean_ctor_set(x_845, 2, x_844); +lean_ctor_set(x_845, 3, x_26); +lean_inc(x_840); +lean_inc(x_14); +x_846 = l_Lean_Syntax_node2(x_14, x_841, x_840, x_845); +x_847 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__381; +lean_inc(x_14); +x_848 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_848, 0, x_14); +lean_ctor_set(x_848, 1, x_847); +lean_inc(x_507); +lean_inc(x_14); +x_849 = l_Lean_Syntax_node1(x_14, x_19, x_507); +x_850 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__386; +lean_inc(x_181); +lean_inc(x_411); +lean_inc(x_14); +x_851 = l_Lean_Syntax_node3(x_14, x_850, x_411, x_849, x_181); +lean_inc(x_14); +x_852 = l_Lean_Syntax_node1(x_14, x_19, x_851); +x_853 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__387; +lean_inc(x_14); +x_854 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_854, 0, x_14); +lean_ctor_set(x_854, 1, x_853); +lean_inc(x_854); +lean_inc(x_14); +x_855 = l_Lean_Syntax_node2(x_14, x_19, x_854, x_267); +x_856 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__384; +lean_inc_n(x_21, 2); +lean_inc(x_409); +lean_inc(x_14); +x_857 = l_Lean_Syntax_node5(x_14, x_856, x_409, x_21, x_21, x_852, x_855); +x_858 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__382; +lean_inc_n(x_21, 2); +lean_inc(x_848); +lean_inc(x_14); +x_859 = l_Lean_Syntax_node4(x_14, x_858, x_848, x_21, x_21, x_857); +lean_inc_n(x_21, 2); +lean_inc(x_14); +x_860 = l_Lean_Syntax_node5(x_14, x_19, x_842, x_21, x_846, x_21, x_859); +lean_inc(x_14); +x_861 = l_Lean_Syntax_node1(x_14, x_422, x_860); +lean_inc(x_14); +x_862 = l_Lean_Syntax_node1(x_14, x_424, x_861); +lean_inc(x_405); +lean_inc(x_14); +x_863 = l_Lean_Syntax_node2(x_14, x_426, x_405, x_862); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_864 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_863, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_865 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_834, x_838, x_864); +lean_inc(x_563); +lean_inc(x_14); +x_866 = l_Lean_Syntax_node2(x_14, x_71, x_563, x_865); +lean_inc(x_692); +lean_inc(x_14); +x_867 = l_Lean_Syntax_node3(x_14, x_707, x_830, x_692, x_866); +x_868 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__389; +x_869 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__390; +lean_inc(x_14); +x_870 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_870, 0, x_14); +lean_ctor_set(x_870, 1, x_868); +lean_ctor_set(x_870, 2, x_869); +lean_ctor_set(x_870, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_871 = l_Lean_Syntax_node2(x_14, x_30, x_870, x_21); +lean_inc(x_202); +lean_inc(x_199); +lean_inc(x_14); +x_872 = l_Lean_Syntax_node3(x_14, x_203, x_44, x_199, x_202); +lean_inc(x_39); +lean_inc(x_46); +lean_inc(x_14); +x_873 = l_Lean_Syntax_node3(x_14, x_54, x_872, x_46, x_39); +lean_inc(x_33); +lean_inc(x_14); +x_874 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_873); +lean_inc(x_21); +lean_inc(x_14); +x_875 = l_Lean_Syntax_node2(x_14, x_58, x_21, x_874); +x_876 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__392; +x_877 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__394; +lean_inc(x_14); +x_878 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_878, 0, x_14); +lean_ctor_set(x_878, 1, x_876); +lean_ctor_set(x_878, 2, x_877); +lean_ctor_set(x_878, 3, x_26); +lean_inc(x_351); +lean_inc(x_14); +x_879 = l_Lean_Syntax_node1(x_14, x_19, x_351); +lean_inc(x_14); +x_880 = l_Lean_Syntax_node2(x_14, x_194, x_878, x_879); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_881 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_880, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_882 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_871, x_875, x_881); +lean_inc(x_492); +lean_inc(x_14); +x_883 = l_Lean_Syntax_node2(x_14, x_71, x_492, x_882); +x_884 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__396; +x_885 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__397; +lean_inc(x_14); +x_886 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_886, 0, x_14); +lean_ctor_set(x_886, 1, x_884); +lean_ctor_set(x_886, 2, x_885); +lean_ctor_set(x_886, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_887 = l_Lean_Syntax_node2(x_14, x_30, x_886, x_21); +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_14); +x_888 = l_Lean_Syntax_node3(x_14, x_196, x_35, x_160, x_42); +lean_inc(x_202); +lean_inc(x_199); +lean_inc(x_14); +x_889 = l_Lean_Syntax_node3(x_14, x_203, x_888, x_199, x_202); +lean_inc(x_470); +lean_inc(x_158); lean_inc(x_207); -lean_inc(x_12); -x_955 = l_Lean_Syntax_node3(x_12, x_208, x_198, x_954, x_207); -lean_inc(x_12); -x_956 = l_Lean_Syntax_node1(x_12, x_17, x_955); -lean_inc_n(x_19, 4); -lean_inc(x_12); -x_957 = l_Lean_Syntax_node6(x_12, x_20, x_19, x_956, x_394, x_19, x_19, x_19); -x_958 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__455; -x_959 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__456; -lean_inc(x_12); +lean_inc(x_14); +x_890 = l_Lean_Syntax_node3(x_14, x_159, x_207, x_158, x_470); +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_14); +x_891 = l_Lean_Syntax_node3(x_14, x_196, x_35, x_890, x_42); +lean_inc(x_244); +lean_inc(x_142); +lean_inc(x_14); +x_892 = l_Lean_Syntax_node3(x_14, x_143, x_891, x_142, x_244); +lean_inc(x_46); +lean_inc(x_14); +x_893 = l_Lean_Syntax_node3(x_14, x_54, x_889, x_46, x_892); +lean_inc(x_33); +lean_inc(x_14); +x_894 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_893); +lean_inc(x_102); +lean_inc(x_14); +x_895 = l_Lean_Syntax_node2(x_14, x_58, x_102, x_894); +x_896 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__399; +x_897 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__400; +lean_inc(x_14); +x_898 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_898, 0, x_14); +lean_ctor_set(x_898, 1, x_896); +lean_ctor_set(x_898, 2, x_897); +lean_ctor_set(x_898, 3, x_26); +lean_inc(x_256); +lean_inc(x_14); +x_899 = l_Lean_Syntax_node2(x_14, x_194, x_898, x_256); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_900 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_899, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_901 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_887, x_895, x_900); +lean_inc(x_492); +lean_inc(x_14); +x_902 = l_Lean_Syntax_node2(x_14, x_71, x_492, x_901); +x_903 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__402; +x_904 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__403; +lean_inc(x_14); +x_905 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_905, 0, x_14); +lean_ctor_set(x_905, 1, x_903); +lean_ctor_set(x_905, 2, x_904); +lean_ctor_set(x_905, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_906 = l_Lean_Syntax_node2(x_14, x_30, x_905, x_21); +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_14); +x_907 = l_Lean_Syntax_node3(x_14, x_196, x_35, x_106, x_42); +lean_inc(x_202); +lean_inc(x_199); +lean_inc(x_14); +x_908 = l_Lean_Syntax_node3(x_14, x_203, x_907, x_199, x_202); +lean_inc(x_470); +lean_inc(x_104); +lean_inc(x_244); +lean_inc(x_14); +x_909 = l_Lean_Syntax_node3(x_14, x_105, x_244, x_104, x_470); +lean_inc(x_207); +lean_inc(x_14); +x_910 = l_Lean_Syntax_node3(x_14, x_159, x_909, x_158, x_207); +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_14); +x_911 = l_Lean_Syntax_node3(x_14, x_196, x_35, x_910, x_42); +lean_inc(x_244); +lean_inc(x_142); +lean_inc(x_14); +x_912 = l_Lean_Syntax_node3(x_14, x_143, x_911, x_142, x_244); +lean_inc(x_46); +lean_inc(x_908); +lean_inc(x_14); +x_913 = l_Lean_Syntax_node3(x_14, x_54, x_908, x_46, x_912); +lean_inc(x_33); +lean_inc(x_14); +x_914 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_913); +lean_inc(x_102); +lean_inc(x_14); +x_915 = l_Lean_Syntax_node2(x_14, x_58, x_102, x_914); +x_916 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__405; +x_917 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__406; +lean_inc(x_14); +x_918 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_918, 0, x_14); +lean_ctor_set(x_918, 1, x_916); +lean_ctor_set(x_918, 2, x_917); +lean_ctor_set(x_918, 3, x_26); +lean_inc(x_256); +lean_inc(x_14); +x_919 = l_Lean_Syntax_node2(x_14, x_194, x_918, x_256); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_920 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_919, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_921 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_906, x_915, x_920); +lean_inc(x_563); +lean_inc(x_14); +x_922 = l_Lean_Syntax_node2(x_14, x_71, x_563, x_921); +x_923 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__408; +x_924 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__409; +lean_inc(x_14); +x_925 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_925, 0, x_14); +lean_ctor_set(x_925, 1, x_923); +lean_ctor_set(x_925, 2, x_924); +lean_ctor_set(x_925, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_926 = l_Lean_Syntax_node2(x_14, x_30, x_925, x_21); +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_14); +x_927 = l_Lean_Syntax_node3(x_14, x_196, x_35, x_128, x_42); +lean_inc(x_202); +lean_inc(x_199); +lean_inc(x_14); +x_928 = l_Lean_Syntax_node3(x_14, x_203, x_927, x_199, x_202); +lean_inc(x_470); +lean_inc(x_207); +lean_inc(x_14); +x_929 = l_Lean_Syntax_node3(x_14, x_127, x_207, x_126, x_470); +lean_inc(x_142); +lean_inc(x_14); +x_930 = l_Lean_Syntax_node3(x_14, x_143, x_929, x_142, x_244); +lean_inc(x_46); +lean_inc(x_14); +x_931 = l_Lean_Syntax_node3(x_14, x_54, x_928, x_46, x_930); +lean_inc(x_33); +lean_inc(x_14); +x_932 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_931); +lean_inc(x_102); +lean_inc(x_14); +x_933 = l_Lean_Syntax_node2(x_14, x_58, x_102, x_932); +x_934 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__411; +x_935 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__412; +lean_inc(x_14); +x_936 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_936, 0, x_14); +lean_ctor_set(x_936, 1, x_934); +lean_ctor_set(x_936, 2, x_935); +lean_ctor_set(x_936, 3, x_26); +lean_inc(x_256); +lean_inc(x_14); +x_937 = l_Lean_Syntax_node2(x_14, x_194, x_936, x_256); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_938 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_937, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_939 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_926, x_933, x_938); +lean_inc(x_492); +lean_inc(x_14); +x_940 = l_Lean_Syntax_node2(x_14, x_71, x_492, x_939); +x_941 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__414; +x_942 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__415; +lean_inc(x_14); +x_943 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_943, 0, x_14); +lean_ctor_set(x_943, 1, x_941); +lean_ctor_set(x_943, 2, x_942); +lean_ctor_set(x_943, 3, x_26); +lean_inc(x_21); +lean_inc(x_943); +lean_inc(x_14); +x_944 = l_Lean_Syntax_node2(x_14, x_30, x_943, x_21); +lean_inc(x_42); +lean_inc(x_144); +lean_inc(x_35); +lean_inc(x_14); +x_945 = l_Lean_Syntax_node3(x_14, x_196, x_35, x_144, x_42); +lean_inc(x_202); +lean_inc(x_199); +lean_inc(x_14); +x_946 = l_Lean_Syntax_node3(x_14, x_203, x_945, x_199, x_202); +lean_inc(x_470); +lean_inc(x_142); +lean_inc(x_207); +lean_inc(x_14); +x_947 = l_Lean_Syntax_node3(x_14, x_143, x_207, x_142, x_470); +lean_inc(x_46); +lean_inc(x_14); +x_948 = l_Lean_Syntax_node3(x_14, x_54, x_946, x_46, x_947); +lean_inc(x_33); +lean_inc(x_14); +x_949 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_948); +lean_inc(x_102); +lean_inc(x_14); +x_950 = l_Lean_Syntax_node2(x_14, x_58, x_102, x_949); +x_951 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__417; +x_952 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__419; +lean_inc(x_14); +x_953 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_953, 0, x_14); +lean_ctor_set(x_953, 1, x_951); +lean_ctor_set(x_953, 2, x_952); +lean_ctor_set(x_953, 3, x_26); +lean_inc(x_256); +lean_inc(x_14); +x_954 = l_Lean_Syntax_node2(x_14, x_194, x_953, x_256); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_955 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_954, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_956 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_944, x_950, x_955); +lean_inc(x_492); +lean_inc(x_14); +x_957 = l_Lean_Syntax_node2(x_14, x_71, x_492, x_956); +x_958 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__421; +x_959 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__422; +lean_inc(x_14); x_960 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_960, 0, x_12); +lean_ctor_set(x_960, 0, x_14); lean_ctor_set(x_960, 1, x_958); lean_ctor_set(x_960, 2, x_959); -lean_ctor_set(x_960, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_961 = l_Lean_Syntax_node2(x_12, x_70, x_960, x_19); -lean_inc(x_835); -lean_inc(x_170); -lean_inc(x_12); -x_962 = l_Lean_Syntax_node3(x_12, x_171, x_841, x_170, x_835); -lean_inc(x_75); -lean_inc(x_73); -lean_inc(x_12); -x_963 = l_Lean_Syntax_node3(x_12, x_284, x_73, x_962, x_75); -lean_inc(x_12); -x_964 = l_Lean_Syntax_node1(x_12, x_17, x_963); -lean_inc(x_325); -lean_inc(x_12); -x_965 = l_Lean_Syntax_node2(x_12, x_33, x_325, x_964); -lean_inc(x_272); -lean_inc(x_12); -x_966 = l_Lean_Syntax_node3(x_12, x_276, x_965, x_272, x_835); -lean_inc(x_279); -lean_inc(x_12); -x_967 = l_Lean_Syntax_node3(x_12, x_294, x_848, x_279, x_966); -lean_inc(x_222); -lean_inc(x_19); -lean_inc(x_217); -lean_inc(x_12); -x_968 = l_Lean_Syntax_node5(x_12, x_229, x_217, x_844, x_19, x_222, x_967); -lean_inc(x_27); -lean_inc(x_12); -x_969 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_968); -lean_inc(x_12); -x_970 = l_Lean_Syntax_node2(x_12, x_37, x_838, x_969); -lean_inc(x_12); -x_971 = l_Lean_Syntax_node2(x_12, x_865, x_860, x_842); -x_972 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__457; -lean_inc(x_12); -x_973 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_973, 0, x_12); -lean_ctor_set(x_973, 1, x_972); -lean_inc(x_12); -x_974 = l_Lean_Syntax_node1(x_12, x_17, x_973); -x_975 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__458; -lean_inc(x_12); -x_976 = l_Lean_Syntax_node1(x_12, x_975, x_877); -lean_inc(x_976); -lean_inc(x_12); -x_977 = l_Lean_Syntax_node3(x_12, x_171, x_976, x_170, x_976); -lean_inc(x_75); -lean_inc(x_73); -lean_inc(x_12); -x_978 = l_Lean_Syntax_node3(x_12, x_284, x_73, x_977, x_75); -lean_inc_n(x_19, 2); -lean_inc(x_12); -x_979 = l_Lean_Syntax_node3(x_12, x_408, x_19, x_19, x_978); -lean_inc(x_12); -x_980 = l_Lean_Syntax_node1(x_12, x_17, x_979); +lean_ctor_set(x_960, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_961 = l_Lean_Syntax_node2(x_14, x_30, x_960, x_21); +x_962 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__425; +lean_inc(x_14); +x_963 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_963, 0, x_14); +lean_ctor_set(x_963, 1, x_962); +x_964 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__424; +lean_inc(x_97); +lean_inc(x_963); +lean_inc(x_14); +x_965 = l_Lean_Syntax_node3(x_14, x_964, x_94, x_963, x_97); +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_14); +x_966 = l_Lean_Syntax_node3(x_14, x_196, x_35, x_965, x_42); +lean_inc(x_202); +lean_inc(x_199); +lean_inc(x_14); +x_967 = l_Lean_Syntax_node3(x_14, x_203, x_966, x_199, x_202); +lean_inc(x_470); lean_inc(x_207); -lean_inc(x_337); -lean_inc(x_12); -x_981 = l_Lean_Syntax_node3(x_12, x_17, x_337, x_980, x_207); -lean_inc(x_974); -lean_inc_n(x_19, 2); -lean_inc(x_335); -lean_inc(x_200); -lean_inc(x_12); -x_982 = l_Lean_Syntax_node6(x_12, x_413, x_200, x_335, x_19, x_974, x_981, x_19); -x_983 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__460; -x_984 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__461; -lean_inc(x_12); -x_985 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_985, 0, x_12); -lean_ctor_set(x_985, 1, x_983); -lean_ctor_set(x_985, 2, x_984); -lean_ctor_set(x_985, 3, x_28); -lean_inc_n(x_19, 2); -lean_inc(x_12); -x_986 = l_Lean_Syntax_node3(x_12, x_408, x_19, x_19, x_985); -lean_inc_n(x_19, 2); -lean_inc(x_12); -x_987 = l_Lean_Syntax_node3(x_12, x_408, x_19, x_19, x_325); -x_988 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__463; -x_989 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__464; -lean_inc(x_12); +lean_inc(x_14); +x_968 = l_Lean_Syntax_node3(x_14, x_964, x_207, x_963, x_470); +lean_inc(x_46); +lean_inc(x_14); +x_969 = l_Lean_Syntax_node3(x_14, x_54, x_967, x_46, x_968); +lean_inc(x_33); +lean_inc(x_14); +x_970 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_969); +lean_inc(x_102); +lean_inc(x_14); +x_971 = l_Lean_Syntax_node2(x_14, x_58, x_102, x_970); +x_972 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__427; +x_973 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__429; +lean_inc(x_14); +x_974 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_974, 0, x_14); +lean_ctor_set(x_974, 1, x_972); +lean_ctor_set(x_974, 2, x_973); +lean_ctor_set(x_974, 3, x_26); +lean_inc(x_14); +x_975 = l_Lean_Syntax_node2(x_14, x_194, x_974, x_256); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_976 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_975, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_977 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_961, x_971, x_976); +lean_inc(x_492); +lean_inc(x_14); +x_978 = l_Lean_Syntax_node2(x_14, x_71, x_492, x_977); +x_979 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__431; +x_980 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__432; +lean_inc(x_14); +x_981 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_981, 0, x_14); +lean_ctor_set(x_981, 1, x_979); +lean_ctor_set(x_981, 2, x_980); +lean_ctor_set(x_981, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_982 = l_Lean_Syntax_node2(x_14, x_30, x_981, x_21); +lean_inc(x_470); +lean_inc(x_207); +lean_inc(x_14); +x_983 = l_Lean_Syntax_node3(x_14, x_105, x_207, x_104, x_470); +lean_inc(x_46); +lean_inc(x_14); +x_984 = l_Lean_Syntax_node3(x_14, x_54, x_908, x_46, x_983); +lean_inc(x_377); +lean_inc(x_524); +lean_inc(x_14); +x_985 = l_Lean_Syntax_node3(x_14, x_385, x_524, x_377, x_984); +lean_inc(x_33); +lean_inc(x_14); +x_986 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_985); +lean_inc(x_14); +x_987 = l_Lean_Syntax_node2(x_14, x_58, x_102, x_986); +x_988 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__434; +x_989 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__435; +lean_inc(x_14); x_990 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_990, 0, x_12); +lean_ctor_set(x_990, 0, x_14); lean_ctor_set(x_990, 1, x_988); lean_ctor_set(x_990, 2, x_989); -lean_ctor_set(x_990, 3, x_28); -lean_inc_n(x_19, 2); -lean_inc(x_12); -x_991 = l_Lean_Syntax_node3(x_12, x_408, x_19, x_19, x_990); -x_992 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__466; -x_993 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__469; -lean_inc(x_12); -x_994 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_994, 0, x_12); -lean_ctor_set(x_994, 1, x_992); -lean_ctor_set(x_994, 2, x_993); -lean_ctor_set(x_994, 3, x_28); -lean_inc_n(x_19, 2); -lean_inc(x_12); -x_995 = l_Lean_Syntax_node3(x_12, x_408, x_19, x_19, x_994); -x_996 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__471; -x_997 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__473; -lean_inc(x_12); -x_998 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_998, 0, x_12); -lean_ctor_set(x_998, 1, x_996); -lean_ctor_set(x_998, 2, x_997); -lean_ctor_set(x_998, 3, x_28); -lean_inc_n(x_19, 2); -lean_inc(x_12); -x_999 = l_Lean_Syntax_node3(x_12, x_408, x_19, x_19, x_998); -x_1000 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__475; -x_1001 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__477; -lean_inc(x_12); -x_1002 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1002, 0, x_12); -lean_ctor_set(x_1002, 1, x_1000); -lean_ctor_set(x_1002, 2, x_1001); -lean_ctor_set(x_1002, 3, x_28); -lean_inc_n(x_19, 2); -lean_inc(x_12); -x_1003 = l_Lean_Syntax_node3(x_12, x_408, x_19, x_19, x_1002); -x_1004 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__479; -x_1005 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__481; -lean_inc(x_12); -x_1006 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1006, 0, x_12); -lean_ctor_set(x_1006, 1, x_1004); -lean_ctor_set(x_1006, 2, x_1005); -lean_ctor_set(x_1006, 3, x_28); -lean_inc_n(x_19, 2); -lean_inc(x_12); -x_1007 = l_Lean_Syntax_node3(x_12, x_408, x_19, x_19, x_1006); -x_1008 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1008, 0, x_1007); -lean_ctor_set(x_1008, 1, x_28); -lean_inc(x_222); -x_1009 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1009, 0, x_222); -lean_ctor_set(x_1009, 1, x_1008); -x_1010 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1010, 0, x_1003); -lean_ctor_set(x_1010, 1, x_1009); -lean_inc(x_222); -x_1011 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1011, 0, x_222); -lean_ctor_set(x_1011, 1, x_1010); -x_1012 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1012, 0, x_999); -lean_ctor_set(x_1012, 1, x_1011); -lean_inc(x_222); -x_1013 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1013, 0, x_222); -lean_ctor_set(x_1013, 1, x_1012); -x_1014 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1014, 0, x_995); -lean_ctor_set(x_1014, 1, x_1013); -lean_inc(x_222); -x_1015 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1015, 0, x_222); -lean_ctor_set(x_1015, 1, x_1014); -x_1016 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1016, 0, x_991); -lean_ctor_set(x_1016, 1, x_1015); -lean_inc(x_222); -x_1017 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1017, 0, x_222); -lean_ctor_set(x_1017, 1, x_1016); -x_1018 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1018, 0, x_987); -lean_ctor_set(x_1018, 1, x_1017); -lean_inc(x_222); -x_1019 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1019, 0, x_222); -lean_ctor_set(x_1019, 1, x_1018); -x_1020 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1020, 0, x_986); -lean_ctor_set(x_1020, 1, x_1019); -x_1021 = lean_array_mk(x_1020); -lean_inc(x_12); -x_1022 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1022, 0, x_12); -lean_ctor_set(x_1022, 1, x_17); +lean_ctor_set(x_990, 3, x_26); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_991 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_990, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_992 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_982, x_987, x_991); +lean_inc(x_492); +lean_inc(x_14); +x_993 = l_Lean_Syntax_node2(x_14, x_71, x_492, x_992); +x_994 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__437; +x_995 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__438; +lean_inc(x_14); +x_996 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_996, 0, x_14); +lean_ctor_set(x_996, 1, x_994); +lean_ctor_set(x_996, 2, x_995); +lean_ctor_set(x_996, 3, x_26); +lean_inc(x_21); +lean_inc(x_996); +lean_inc(x_14); +x_997 = l_Lean_Syntax_node2(x_14, x_30, x_996, x_21); +lean_inc(x_273); +lean_inc(x_270); +lean_inc(x_207); +lean_inc(x_14); +x_998 = l_Lean_Syntax_node3(x_14, x_274, x_207, x_270, x_273); +lean_inc(x_33); +lean_inc(x_14); +x_999 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_998); +lean_inc(x_14); +x_1000 = l_Lean_Syntax_node2(x_14, x_58, x_336, x_999); +x_1001 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__440; +x_1002 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__442; +lean_inc(x_14); +x_1003 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1003, 0, x_14); +lean_ctor_set(x_1003, 1, x_1001); +lean_ctor_set(x_1003, 2, x_1002); +lean_ctor_set(x_1003, 3, x_26); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_1004 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_1003, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_1005 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_997, x_1000, x_1004); +lean_inc(x_563); +lean_inc(x_14); +x_1006 = l_Lean_Syntax_node2(x_14, x_71, x_563, x_1005); +lean_inc(x_996); +lean_inc(x_943); +lean_inc(x_14); +x_1007 = l_Lean_Syntax_node2(x_14, x_19, x_943, x_996); +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_9); +lean_inc(x_14); +x_1008 = l_Lean_Syntax_node4(x_14, x_687, x_9, x_35, x_1007, x_42); +lean_inc(x_685); +lean_inc(x_14); +x_1009 = l_Lean_Syntax_node2(x_14, x_689, x_685, x_1008); +x_1010 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__444; +x_1011 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__445; +lean_inc(x_14); +x_1012 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1012, 0, x_14); +lean_ctor_set(x_1012, 1, x_1010); +lean_ctor_set(x_1012, 2, x_1011); +lean_ctor_set(x_1012, 3, x_26); +lean_inc(x_21); +lean_inc(x_1012); +lean_inc(x_14); +x_1013 = l_Lean_Syntax_node2(x_14, x_30, x_1012, x_21); +x_1014 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__447; +x_1015 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__448; +lean_inc(x_14); +x_1016 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1016, 0, x_14); +lean_ctor_set(x_1016, 1, x_1014); +lean_ctor_set(x_1016, 2, x_1015); +lean_ctor_set(x_1016, 3, x_26); +lean_inc(x_1016); +lean_inc(x_14); +x_1017 = l_Lean_Syntax_node1(x_14, x_19, x_1016); +lean_inc(x_228); +lean_inc(x_226); +lean_inc(x_1017); +lean_inc(x_218); +lean_inc(x_14); +x_1018 = l_Lean_Syntax_node4(x_14, x_229, x_218, x_1017, x_226, x_228); +lean_inc(x_14); +x_1019 = l_Lean_Syntax_node1(x_14, x_19, x_1018); +x_1020 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__450; +x_1021 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__451; +lean_inc(x_14); +x_1022 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1022, 0, x_14); +lean_ctor_set(x_1022, 1, x_1020); lean_ctor_set(x_1022, 2, x_1021); -lean_inc(x_207); -lean_inc(x_337); -lean_inc(x_12); -x_1023 = l_Lean_Syntax_node3(x_12, x_17, x_337, x_1022, x_207); -lean_inc(x_974); -lean_inc_n(x_19, 2); -lean_inc(x_335); -lean_inc(x_200); -lean_inc(x_12); -x_1024 = l_Lean_Syntax_node6(x_12, x_413, x_200, x_335, x_19, x_974, x_1023, x_19); -lean_inc(x_19); -lean_inc(x_12); -x_1025 = l_Lean_Syntax_node2(x_12, x_338, x_19, x_300); -lean_inc(x_12); -x_1026 = l_Lean_Syntax_node1(x_12, x_17, x_1025); -lean_inc(x_207); -lean_inc(x_337); -lean_inc(x_12); -x_1027 = l_Lean_Syntax_node3(x_12, x_343, x_337, x_1026, x_207); -lean_inc(x_19); -lean_inc(x_335); -lean_inc(x_12); -x_1028 = l_Lean_Syntax_node4(x_12, x_345, x_333, x_335, x_1027, x_19); -lean_inc(x_708); -lean_inc(x_12); -x_1029 = l_Lean_Syntax_node2(x_12, x_709, x_708, x_893); -lean_inc(x_12); -x_1030 = l_Lean_Syntax_node1(x_12, x_17, x_1029); -lean_inc(x_12); -x_1031 = l_Lean_Syntax_node1(x_12, x_348, x_1030); -lean_inc(x_12); -x_1032 = l_Lean_Syntax_node1(x_12, x_350, x_1031); -lean_inc(x_883); -lean_inc(x_12); -x_1033 = l_Lean_Syntax_node2(x_12, x_900, x_883, x_1032); -x_1034 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__483; -x_1035 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__485; -lean_inc(x_12); -x_1036 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1036, 0, x_12); -lean_ctor_set(x_1036, 1, x_1034); -lean_ctor_set(x_1036, 2, x_1035); -lean_ctor_set(x_1036, 3, x_28); -lean_inc(x_708); -lean_inc(x_12); -x_1037 = l_Lean_Syntax_node2(x_12, x_709, x_708, x_1036); -x_1038 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__487; -x_1039 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__489; -lean_inc(x_12); -x_1040 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1040, 0, x_12); -lean_ctor_set(x_1040, 1, x_1038); -lean_ctor_set(x_1040, 2, x_1039); -lean_ctor_set(x_1040, 3, x_28); -lean_inc(x_708); -lean_inc(x_12); -x_1041 = l_Lean_Syntax_node2(x_12, x_709, x_708, x_1040); -lean_inc(x_12); -x_1042 = l_Lean_Syntax_node1(x_12, x_17, x_1041); -lean_inc(x_12); -x_1043 = l_Lean_Syntax_node1(x_12, x_348, x_1042); -lean_inc(x_12); -x_1044 = l_Lean_Syntax_node1(x_12, x_350, x_1043); -lean_inc(x_883); -lean_inc(x_12); -x_1045 = l_Lean_Syntax_node2(x_12, x_900, x_883, x_1044); -x_1046 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__491; -x_1047 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__493; -lean_inc(x_12); -x_1048 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1048, 0, x_12); -lean_ctor_set(x_1048, 1, x_1046); -lean_ctor_set(x_1048, 2, x_1047); -lean_ctor_set(x_1048, 3, x_28); -lean_inc(x_708); -lean_inc(x_12); -x_1049 = l_Lean_Syntax_node2(x_12, x_709, x_708, x_1048); -lean_inc(x_12); -x_1050 = l_Lean_Syntax_node1(x_12, x_17, x_1049); -lean_inc(x_12); -x_1051 = l_Lean_Syntax_node1(x_12, x_348, x_1050); -lean_inc(x_12); -x_1052 = l_Lean_Syntax_node1(x_12, x_350, x_1051); -lean_inc(x_883); -lean_inc(x_12); -x_1053 = l_Lean_Syntax_node2(x_12, x_900, x_883, x_1052); -lean_inc_n(x_19, 2); -lean_inc(x_12); -x_1054 = l_Lean_Syntax_node5(x_12, x_17, x_1037, x_19, x_1045, x_19, x_1053); -lean_inc(x_12); -x_1055 = l_Lean_Syntax_node1(x_12, x_348, x_1054); -lean_inc(x_12); -x_1056 = l_Lean_Syntax_node1(x_12, x_350, x_1055); -lean_inc(x_12); -x_1057 = l_Lean_Syntax_node2(x_12, x_900, x_883, x_1056); -x_1058 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1058, 0, x_1057); -lean_ctor_set(x_1058, 1, x_28); -lean_inc(x_19); -x_1059 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1059, 0, x_19); -lean_ctor_set(x_1059, 1, x_1058); -x_1060 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1060, 0, x_1033); -lean_ctor_set(x_1060, 1, x_1059); -lean_inc(x_19); -x_1061 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1061, 0, x_19); -lean_ctor_set(x_1061, 1, x_1060); -x_1062 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1062, 0, x_1028); -lean_ctor_set(x_1062, 1, x_1061); -lean_inc(x_19); -x_1063 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1063, 0, x_19); -lean_ctor_set(x_1063, 1, x_1062); -x_1064 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1064, 0, x_1024); -lean_ctor_set(x_1064, 1, x_1063); -lean_inc(x_19); -x_1065 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1065, 0, x_19); -lean_ctor_set(x_1065, 1, x_1064); -x_1066 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1066, 0, x_982); -lean_ctor_set(x_1066, 1, x_1065); -lean_inc(x_19); -x_1067 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1067, 0, x_19); -lean_ctor_set(x_1067, 1, x_1066); -x_1068 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1068, 0, x_971); -lean_ctor_set(x_1068, 1, x_1067); -x_1069 = lean_array_mk(x_1068); -lean_inc(x_12); -x_1070 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1070, 0, x_12); -lean_ctor_set(x_1070, 1, x_17); -lean_ctor_set(x_1070, 2, x_1069); -lean_inc(x_12); -x_1071 = l_Lean_Syntax_node1(x_12, x_348, x_1070); -lean_inc(x_12); -x_1072 = l_Lean_Syntax_node1(x_12, x_350, x_1071); -lean_inc(x_331); -lean_inc(x_12); -x_1073 = l_Lean_Syntax_node2(x_12, x_352, x_331, x_1072); -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_45); -lean_inc(x_12); -x_1074 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_1073, x_95, x_19); +lean_ctor_set(x_1022, 3, x_26); +lean_inc(x_1022); +lean_inc(x_14); +x_1023 = l_Lean_Syntax_node1(x_14, x_19, x_1022); +lean_inc(x_42); +lean_inc(x_21); +lean_inc(x_99); +lean_inc(x_1023); +lean_inc(x_35); +lean_inc(x_14); +x_1024 = l_Lean_Syntax_node5(x_14, x_100, x_35, x_1023, x_99, x_21, x_42); +lean_inc(x_14); +x_1025 = l_Lean_Syntax_node1(x_14, x_19, x_1024); +x_1026 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__454; +lean_inc(x_14); +x_1027 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1027, 0, x_14); +lean_ctor_set(x_1027, 1, x_1026); +x_1028 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__453; +lean_inc(x_39); +lean_inc(x_1016); +lean_inc(x_14); +x_1029 = l_Lean_Syntax_node3(x_14, x_1028, x_1016, x_1027, x_39); +lean_inc(x_234); +lean_inc(x_14); +x_1030 = l_Lean_Syntax_node2(x_14, x_194, x_234, x_1017); +lean_inc(x_142); +lean_inc(x_1022); +lean_inc(x_14); +x_1031 = l_Lean_Syntax_node3(x_14, x_143, x_1022, x_142, x_1030); +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_14); +x_1032 = l_Lean_Syntax_node3(x_14, x_196, x_35, x_1031, x_42); +lean_inc(x_14); +x_1033 = l_Lean_Syntax_node1(x_14, x_19, x_1032); +lean_inc(x_202); +lean_inc(x_14); +x_1034 = l_Lean_Syntax_node2(x_14, x_194, x_202, x_1033); +lean_inc(x_1016); +lean_inc(x_270); +lean_inc(x_14); +x_1035 = l_Lean_Syntax_node3(x_14, x_274, x_1034, x_270, x_1016); +lean_inc(x_377); +lean_inc(x_1029); +lean_inc(x_14); +x_1036 = l_Lean_Syntax_node3(x_14, x_385, x_1029, x_377, x_1035); +lean_inc(x_338); +lean_inc(x_21); +lean_inc(x_1025); +lean_inc(x_334); +lean_inc(x_14); +x_1037 = l_Lean_Syntax_node5(x_14, x_342, x_334, x_1025, x_21, x_338, x_1036); +lean_inc(x_33); +lean_inc(x_14); +x_1038 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_1037); +lean_inc(x_1019); +lean_inc(x_14); +x_1039 = l_Lean_Syntax_node2(x_14, x_58, x_1019, x_1038); +x_1040 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__326; +lean_inc(x_14); +x_1041 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1041, 0, x_14); +lean_ctor_set(x_1041, 1, x_1040); +x_1042 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__457; +x_1043 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__458; +lean_inc(x_14); +x_1044 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1044, 0, x_14); +lean_ctor_set(x_1044, 1, x_1042); +lean_ctor_set(x_1044, 2, x_1043); +lean_ctor_set(x_1044, 3, x_26); +lean_inc(x_1044); +lean_inc(x_1022); +lean_inc(x_14); +x_1045 = l_Lean_Syntax_node2(x_14, x_19, x_1022, x_1044); +x_1046 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__455; +lean_inc(x_1041); +lean_inc(x_14); +x_1047 = l_Lean_Syntax_node2(x_14, x_1046, x_1041, x_1045); +x_1048 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__461; +lean_inc(x_14); +x_1049 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1049, 0, x_14); +lean_ctor_set(x_1049, 1, x_1048); +x_1050 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__463; +x_1051 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__464; +lean_inc(x_14); +x_1052 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1052, 0, x_14); +lean_ctor_set(x_1052, 1, x_1050); +lean_ctor_set(x_1052, 2, x_1051); +lean_ctor_set(x_1052, 3, x_26); +lean_inc(x_33); +lean_inc(x_1052); +lean_inc(x_14); +x_1053 = l_Lean_Syntax_node2(x_14, x_19, x_1052, x_33); +lean_inc(x_270); +lean_inc(x_1016); +lean_inc(x_14); +x_1054 = l_Lean_Syntax_node3(x_14, x_274, x_1016, x_270, x_273); +x_1055 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__460; +lean_inc(x_14); +x_1056 = l_Lean_Syntax_node3(x_14, x_1055, x_1049, x_1053, x_1054); +x_1057 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__474; +lean_inc(x_14); +x_1058 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1058, 0, x_14); +lean_ctor_set(x_1058, 1, x_1057); +x_1059 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__473; +lean_inc(x_1058); +lean_inc(x_14); +x_1060 = l_Lean_Syntax_node1(x_14, x_1059, x_1058); +x_1061 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__470; +lean_inc(x_14); +x_1062 = l_Lean_Syntax_node1(x_14, x_1061, x_1060); +x_1063 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__468; +lean_inc(x_14); +x_1064 = l_Lean_Syntax_node1(x_14, x_1063, x_1062); +lean_inc(x_21); +lean_inc(x_14); +x_1065 = l_Lean_Syntax_node2(x_14, x_412, x_21, x_943); +lean_inc(x_1052); +lean_inc(x_14); +x_1066 = l_Lean_Syntax_node1(x_14, x_19, x_1052); +lean_inc(x_14); +x_1067 = l_Lean_Syntax_node2(x_14, x_194, x_397, x_1066); +lean_inc(x_21); +lean_inc(x_14); +x_1068 = l_Lean_Syntax_node2(x_14, x_412, x_21, x_1067); +lean_inc(x_338); +lean_inc(x_14); +x_1069 = l_Lean_Syntax_node3(x_14, x_19, x_1065, x_338, x_1068); +lean_inc(x_181); +lean_inc(x_411); +lean_inc(x_14); +x_1070 = l_Lean_Syntax_node3(x_14, x_417, x_411, x_1069, x_181); +lean_inc(x_21); +lean_inc(x_409); +lean_inc(x_407); +lean_inc(x_14); +x_1071 = l_Lean_Syntax_node4(x_14, x_419, x_407, x_409, x_1070, x_21); +x_1072 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__476; +x_1073 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__478; +lean_inc(x_14); +x_1074 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1074, 0, x_14); +lean_ctor_set(x_1074, 1, x_1072); +lean_ctor_set(x_1074, 2, x_1073); +lean_ctor_set(x_1074, 3, x_26); +lean_inc(x_351); +lean_inc(x_14); +x_1075 = l_Lean_Syntax_node2(x_14, x_19, x_351, x_1044); +lean_inc(x_1074); +lean_inc(x_14); +x_1076 = l_Lean_Syntax_node2(x_14, x_194, x_1074, x_1075); +lean_inc(x_840); +lean_inc(x_14); +x_1077 = l_Lean_Syntax_node2(x_14, x_841, x_840, x_1076); +lean_inc(x_21); +lean_inc(x_14); +x_1078 = l_Lean_Syntax_node3(x_14, x_19, x_1071, x_21, x_1077); +lean_inc(x_14); +x_1079 = l_Lean_Syntax_node1(x_14, x_422, x_1078); +lean_inc(x_14); +x_1080 = l_Lean_Syntax_node1(x_14, x_424, x_1079); +x_1081 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__466; +lean_inc(x_1064); +lean_inc(x_14); +x_1082 = l_Lean_Syntax_node2(x_14, x_1081, x_1064, x_1080); +x_1083 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__480; +x_1084 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__482; +lean_inc(x_14); +x_1085 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1085, 0, x_14); +lean_ctor_set(x_1085, 1, x_1083); +lean_ctor_set(x_1085, 2, x_1084); +lean_ctor_set(x_1085, 3, x_26); +lean_inc(x_840); +lean_inc(x_14); +x_1086 = l_Lean_Syntax_node2(x_14, x_841, x_840, x_1085); +lean_inc(x_840); +lean_inc(x_14); +x_1087 = l_Lean_Syntax_node2(x_14, x_841, x_840, x_996); +lean_inc(x_14); +x_1088 = l_Lean_Syntax_node1(x_14, x_19, x_1087); +lean_inc(x_14); +x_1089 = l_Lean_Syntax_node1(x_14, x_422, x_1088); +lean_inc(x_14); +x_1090 = l_Lean_Syntax_node1(x_14, x_424, x_1089); +lean_inc(x_1064); +lean_inc(x_14); +x_1091 = l_Lean_Syntax_node2(x_14, x_1081, x_1064, x_1090); +lean_inc(x_14); +x_1092 = l_Lean_Syntax_node2(x_14, x_19, x_854, x_1052); +lean_inc_n(x_21, 3); +lean_inc(x_409); +lean_inc(x_14); +x_1093 = l_Lean_Syntax_node5(x_14, x_856, x_409, x_21, x_21, x_21, x_1092); +lean_inc_n(x_21, 2); +lean_inc(x_14); +x_1094 = l_Lean_Syntax_node4(x_14, x_858, x_848, x_21, x_21, x_1093); +lean_inc(x_14); +x_1095 = l_Lean_Syntax_node1(x_14, x_19, x_1094); +lean_inc(x_14); +x_1096 = l_Lean_Syntax_node1(x_14, x_422, x_1095); +lean_inc(x_14); +x_1097 = l_Lean_Syntax_node1(x_14, x_424, x_1096); +lean_inc(x_1064); +lean_inc(x_14); +x_1098 = l_Lean_Syntax_node2(x_14, x_1081, x_1064, x_1097); +lean_inc_n(x_21, 2); +lean_inc(x_14); +x_1099 = l_Lean_Syntax_node5(x_14, x_19, x_1086, x_21, x_1091, x_21, x_1098); +lean_inc(x_14); +x_1100 = l_Lean_Syntax_node1(x_14, x_422, x_1099); +lean_inc(x_14); +x_1101 = l_Lean_Syntax_node1(x_14, x_424, x_1100); +lean_inc(x_1064); +lean_inc(x_14); +x_1102 = l_Lean_Syntax_node2(x_14, x_1081, x_1064, x_1101); +lean_inc_n(x_21, 3); +lean_inc(x_14); +x_1103 = l_Lean_Syntax_node7(x_14, x_19, x_1047, x_21, x_1056, x_21, x_1082, x_21, x_1102); +lean_inc(x_14); +x_1104 = l_Lean_Syntax_node1(x_14, x_422, x_1103); +lean_inc(x_14); +x_1105 = l_Lean_Syntax_node1(x_14, x_424, x_1104); +lean_inc(x_405); +lean_inc(x_14); +x_1106 = l_Lean_Syntax_node2(x_14, x_426, x_405, x_1105); +lean_inc(x_21); lean_inc(x_66); -lean_inc(x_12); -x_1075 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_961, x_970, x_1074); -lean_inc(x_12); -x_1076 = l_Lean_Syntax_node2(x_12, x_63, x_957, x_1075); -lean_inc(x_600); -lean_inc(x_12); -x_1077 = l_Lean_Syntax_node3(x_12, x_656, x_941, x_600, x_1076); -lean_inc(x_12); -x_1078 = l_Lean_Syntax_node3(x_12, x_656, x_932, x_600, x_1077); -x_1079 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__494; -x_1080 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__495; -lean_inc(x_12); -x_1081 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1081, 0, x_12); -lean_ctor_set(x_1081, 1, x_1079); -lean_ctor_set(x_1081, 2, x_1080); -lean_ctor_set(x_1081, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_1082 = l_Lean_Syntax_node2(x_12, x_70, x_1081, x_19); -lean_inc(x_125); -lean_inc(x_12); -x_1083 = l_Lean_Syntax_node1(x_12, x_17, x_125); -lean_inc(x_12); -x_1084 = l_Lean_Syntax_node4(x_12, x_268, x_261, x_1083, x_127, x_267); -lean_inc(x_12); -x_1085 = l_Lean_Syntax_node2(x_12, x_17, x_219, x_1084); -lean_inc(x_125); -lean_inc(x_272); -lean_inc(x_12); -x_1086 = l_Lean_Syntax_node3(x_12, x_276, x_49, x_272, x_125); -lean_inc(x_12); -x_1087 = l_Lean_Syntax_node3(x_12, x_276, x_172, x_272, x_125); -lean_inc(x_279); -lean_inc(x_12); -x_1088 = l_Lean_Syntax_node3(x_12, x_294, x_1086, x_279, x_1087); -lean_inc(x_27); -lean_inc(x_12); -x_1089 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_1088); -lean_inc(x_12); -x_1090 = l_Lean_Syntax_node2(x_12, x_37, x_1085, x_1089); -lean_inc_n(x_19, 2); -lean_inc(x_12); -x_1091 = l_Lean_Syntax_node3(x_12, x_408, x_19, x_19, x_167); -lean_inc(x_222); -lean_inc(x_12); -x_1092 = l_Lean_Syntax_node3(x_12, x_17, x_410, x_222, x_1091); -lean_inc(x_12); -x_1093 = l_Lean_Syntax_node3(x_12, x_17, x_337, x_1092, x_207); -lean_inc_n(x_19, 2); -lean_inc(x_12); -x_1094 = l_Lean_Syntax_node6(x_12, x_413, x_200, x_335, x_19, x_974, x_1093, x_19); -x_1095 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__497; -x_1096 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__499; -lean_inc(x_12); -x_1097 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1097, 0, x_12); -lean_ctor_set(x_1097, 1, x_1095); -lean_ctor_set(x_1097, 2, x_1096); -lean_ctor_set(x_1097, 3, x_28); -lean_inc(x_12); -x_1098 = l_Lean_Syntax_node2(x_12, x_709, x_708, x_1097); -lean_inc(x_19); -lean_inc(x_12); -x_1099 = l_Lean_Syntax_node3(x_12, x_17, x_1094, x_19, x_1098); -lean_inc(x_12); -x_1100 = l_Lean_Syntax_node1(x_12, x_348, x_1099); -lean_inc(x_12); -x_1101 = l_Lean_Syntax_node1(x_12, x_350, x_1100); -lean_inc(x_12); -x_1102 = l_Lean_Syntax_node2(x_12, x_352, x_331, x_1101); -lean_inc(x_19); -lean_inc(x_95); -lean_inc(x_12); -x_1103 = l_Lean_Syntax_node4(x_12, x_96, x_45, x_1102, x_95, x_19); -lean_inc(x_66); -lean_inc(x_12); -x_1104 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_1082, x_1090, x_1103); -lean_inc(x_466); -lean_inc(x_12); -x_1105 = l_Lean_Syntax_node2(x_12, x_63, x_466, x_1104); -x_1106 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__501; -x_1107 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__503; -lean_inc(x_12); -x_1108 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1108, 0, x_12); -lean_ctor_set(x_1108, 1, x_1106); -lean_ctor_set(x_1108, 2, x_1107); -lean_ctor_set(x_1108, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_1109 = l_Lean_Syntax_node2(x_12, x_70, x_1108, x_19); -lean_inc(x_79); -lean_inc(x_12); -x_1110 = l_Lean_Syntax_node3(x_12, x_87, x_760, x_79, x_763); -lean_inc(x_12); -x_1111 = l_Lean_Syntax_node3(x_12, x_294, x_1110, x_279, x_545); -lean_inc(x_222); -lean_inc(x_19); -lean_inc(x_12); -x_1112 = l_Lean_Syntax_node5(x_12, x_229, x_217, x_362, x_19, x_222, x_1111); -lean_inc(x_27); -lean_inc(x_12); -x_1113 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_1112); -lean_inc(x_19); -lean_inc(x_12); -x_1114 = l_Lean_Syntax_node2(x_12, x_37, x_19, x_1113); -lean_inc(x_93); -lean_inc(x_222); -lean_inc(x_240); -lean_inc(x_12); -x_1115 = l_Lean_Syntax_node5(x_12, x_17, x_240, x_222, x_240, x_222, x_93); -lean_inc(x_12); -x_1116 = l_Lean_Syntax_node1(x_12, x_17, x_1115); -lean_inc(x_12); -x_1117 = l_Lean_Syntax_node4(x_12, x_245, x_234, x_1116, x_244, x_93); -lean_inc(x_12); -x_1118 = l_Lean_Syntax_node1(x_12, x_17, x_1117); -lean_inc(x_12); -x_1119 = l_Lean_Syntax_node1(x_12, x_248, x_1118); -lean_inc(x_19); -lean_inc(x_12); -x_1120 = l_Lean_Syntax_node3(x_12, x_250, x_1119, x_95, x_19); -lean_inc(x_12); -x_1121 = l_Lean_Syntax_node1(x_12, x_252, x_1120); -lean_inc(x_66); -lean_inc(x_12); -x_1122 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_1109, x_1114, x_1121); -lean_inc(x_12); -x_1123 = l_Lean_Syntax_node2(x_12, x_63, x_466, x_1122); -x_1124 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__505; -x_1125 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__506; -lean_inc(x_12); -x_1126 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1126, 0, x_12); -lean_ctor_set(x_1126, 1, x_1124); -lean_ctor_set(x_1126, 2, x_1125); -lean_ctor_set(x_1126, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_1127 = l_Lean_Syntax_node2(x_12, x_70, x_1126, x_19); -lean_inc(x_12); -x_1128 = l_Lean_Syntax_node2(x_12, x_33, x_282, x_109); -lean_inc(x_79); -lean_inc(x_12); -x_1129 = l_Lean_Syntax_node3(x_12, x_87, x_1128, x_79, x_107); -lean_inc(x_27); -lean_inc(x_12); -x_1130 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_1129); -lean_inc(x_19); -lean_inc(x_12); -x_1131 = l_Lean_Syntax_node2(x_12, x_37, x_19, x_1130); -lean_inc(x_97); -lean_inc(x_66); -lean_inc(x_12); -x_1132 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_1127, x_1131, x_97); -lean_inc(x_12); -x_1133 = l_Lean_Syntax_node2(x_12, x_63, x_395, x_1132); -x_1134 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__508; -x_1135 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__509; -lean_inc(x_12); -x_1136 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1136, 0, x_12); -lean_ctor_set(x_1136, 1, x_1134); -lean_ctor_set(x_1136, 2, x_1135); -lean_ctor_set(x_1136, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_1137 = l_Lean_Syntax_node2(x_12, x_70, x_1136, x_19); -lean_inc(x_75); -lean_inc(x_19); -lean_inc(x_311); -lean_inc(x_73); -lean_inc(x_12); -x_1138 = l_Lean_Syntax_node5(x_12, x_128, x_73, x_311, x_265, x_19, x_75); -lean_inc(x_12); -x_1139 = l_Lean_Syntax_node1(x_12, x_17, x_1138); -x_1140 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__512; -lean_inc(x_12); -x_1141 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1141, 0, x_12); -lean_ctor_set(x_1141, 1, x_1140); -x_1142 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__514; -x_1143 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__516; -lean_inc(x_12); -x_1144 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1144, 0, x_12); -lean_ctor_set(x_1144, 1, x_1142); -lean_ctor_set(x_1144, 2, x_1143); -lean_ctor_set(x_1144, 3, x_28); -lean_inc(x_12); -x_1145 = l_Lean_Syntax_node2(x_12, x_33, x_1144, x_311); -lean_inc(x_75); -lean_inc(x_1145); -lean_inc(x_73); -lean_inc(x_12); -x_1146 = l_Lean_Syntax_node3(x_12, x_284, x_73, x_1145, x_75); -x_1147 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__511; -lean_inc(x_12); -x_1148 = l_Lean_Syntax_node2(x_12, x_1147, x_1141, x_1146); -lean_inc(x_75); -lean_inc(x_73); -lean_inc(x_12); -x_1149 = l_Lean_Syntax_node3(x_12, x_284, x_73, x_1148, x_75); -lean_inc(x_12); -x_1150 = l_Lean_Syntax_node1(x_12, x_17, x_1149); -lean_inc(x_1150); -lean_inc(x_12); -x_1151 = l_Lean_Syntax_node2(x_12, x_33, x_644, x_1150); -lean_inc(x_1145); -lean_inc(x_79); -lean_inc(x_12); -x_1152 = l_Lean_Syntax_node3(x_12, x_87, x_1151, x_79, x_1145); -lean_inc(x_27); -lean_inc(x_12); -x_1153 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_1152); -lean_inc(x_1139); -lean_inc(x_12); -x_1154 = l_Lean_Syntax_node2(x_12, x_37, x_1139, x_1153); -lean_inc(x_97); -lean_inc(x_66); -lean_inc(x_12); -x_1155 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_1137, x_1154, x_97); -lean_inc(x_211); -lean_inc(x_12); -x_1156 = l_Lean_Syntax_node2(x_12, x_63, x_211, x_1155); -x_1157 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__518; -x_1158 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__519; -lean_inc(x_12); -x_1159 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1159, 0, x_12); -lean_ctor_set(x_1159, 1, x_1157); -lean_ctor_set(x_1159, 2, x_1158); -lean_ctor_set(x_1159, 3, x_28); -lean_inc(x_19); -lean_inc(x_12); -x_1160 = l_Lean_Syntax_node2(x_12, x_70, x_1159, x_19); -x_1161 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__520; -x_1162 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__521; -lean_inc(x_12); -x_1163 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1163, 0, x_12); -lean_ctor_set(x_1163, 1, x_1161); -lean_ctor_set(x_1163, 2, x_1162); -lean_ctor_set(x_1163, 3, x_28); -lean_inc(x_12); -x_1164 = l_Lean_Syntax_node2(x_12, x_33, x_1163, x_1150); -x_1165 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__523; -x_1166 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__524; -lean_inc(x_12); -x_1167 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1167, 0, x_12); -lean_ctor_set(x_1167, 1, x_1165); -lean_ctor_set(x_1167, 2, x_1166); -lean_ctor_set(x_1167, 3, x_28); -lean_inc(x_12); -x_1168 = l_Lean_Syntax_node2(x_12, x_17, x_238, x_310); -lean_inc(x_12); -x_1169 = l_Lean_Syntax_node2(x_12, x_33, x_1167, x_1168); -lean_inc(x_1169); -lean_inc(x_79); -lean_inc(x_12); -x_1170 = l_Lean_Syntax_node3(x_12, x_87, x_1164, x_79, x_1169); -lean_inc(x_27); -lean_inc(x_12); -x_1171 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_1170); -lean_inc(x_1139); -lean_inc(x_12); -x_1172 = l_Lean_Syntax_node2(x_12, x_37, x_1139, x_1171); -lean_inc(x_97); -lean_inc(x_66); -lean_inc(x_12); -x_1173 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_1160, x_1172, x_97); -lean_inc(x_211); -lean_inc(x_12); -x_1174 = l_Lean_Syntax_node2(x_12, x_63, x_211, x_1173); -x_1175 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__526; -x_1176 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__527; -lean_inc(x_12); -x_1177 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1177, 0, x_12); -lean_ctor_set(x_1177, 1, x_1175); -lean_ctor_set(x_1177, 2, x_1176); -lean_ctor_set(x_1177, 3, x_28); -lean_inc(x_12); -x_1178 = l_Lean_Syntax_node2(x_12, x_70, x_1177, x_19); -lean_inc(x_12); -x_1179 = l_Lean_Syntax_node3(x_12, x_284, x_73, x_1169, x_75); -lean_inc(x_12); -x_1180 = l_Lean_Syntax_node1(x_12, x_17, x_1179); -lean_inc(x_12); -x_1181 = l_Lean_Syntax_node2(x_12, x_33, x_225, x_1180); -lean_inc(x_12); -x_1182 = l_Lean_Syntax_node3(x_12, x_87, x_1181, x_79, x_1145); -lean_inc(x_12); -x_1183 = l_Lean_Syntax_node2(x_12, x_35, x_27, x_1182); -lean_inc(x_12); -x_1184 = l_Lean_Syntax_node2(x_12, x_37, x_1139, x_1183); -lean_inc(x_12); -x_1185 = l_Lean_Syntax_node4(x_12, x_98, x_66, x_1178, x_1184, x_97); -lean_inc(x_12); -x_1186 = l_Lean_Syntax_node2(x_12, x_63, x_211, x_1185); -x_1187 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__528; -lean_inc(x_12); -x_1188 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1188, 0, x_12); +lean_inc(x_61); +lean_inc(x_14); +x_1107 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_1106, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_1108 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_1013, x_1039, x_1107); +lean_inc(x_563); +lean_inc(x_14); +x_1109 = l_Lean_Syntax_node2(x_14, x_71, x_563, x_1108); +lean_inc(x_692); +lean_inc(x_14); +x_1110 = l_Lean_Syntax_node3(x_14, x_707, x_1009, x_692, x_1109); +lean_inc(x_14); +x_1111 = l_Lean_Syntax_node1(x_14, x_19, x_1012); +lean_inc(x_42); +lean_inc(x_1111); +lean_inc(x_35); +lean_inc(x_9); +lean_inc(x_14); +x_1112 = l_Lean_Syntax_node4(x_14, x_687, x_9, x_35, x_1111, x_42); +lean_inc(x_685); +lean_inc(x_14); +x_1113 = l_Lean_Syntax_node2(x_14, x_689, x_685, x_1112); +x_1114 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__483; +lean_inc(x_14); +x_1115 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1115, 0, x_14); +lean_ctor_set(x_1115, 1, x_1114); +x_1116 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__486; +x_1117 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__489; +lean_inc(x_14); +x_1118 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1118, 0, x_14); +lean_ctor_set(x_1118, 1, x_1116); +lean_ctor_set(x_1118, 2, x_1117); +lean_ctor_set(x_1118, 3, x_26); +x_1119 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__490; +lean_inc(x_14); +x_1120 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1120, 0, x_14); +lean_ctor_set(x_1120, 1, x_1119); +x_1121 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__484; +lean_inc(x_21); +lean_inc(x_14); +x_1122 = l_Lean_Syntax_node4(x_14, x_1121, x_1115, x_1118, x_21, x_1120); +x_1123 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__488; +lean_inc(x_14); +x_1124 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1124, 0, x_14); +lean_ctor_set(x_1124, 1, x_1123); +x_1125 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__492; +lean_inc(x_14); +x_1126 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1126, 0, x_14); +lean_ctor_set(x_1126, 1, x_1125); +x_1127 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__495; +lean_inc(x_14); +x_1128 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1128, 0, x_14); +lean_ctor_set(x_1128, 1, x_1127); +x_1129 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__494; +lean_inc(x_14); +x_1130 = l_Lean_Syntax_node1(x_14, x_1129, x_1128); +lean_inc(x_42); +lean_inc(x_61); +lean_inc(x_35); +lean_inc(x_14); +x_1131 = l_Lean_Syntax_node5(x_14, x_19, x_35, x_1126, x_61, x_1130, x_42); +x_1132 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__491; +lean_inc(x_21); +lean_inc(x_14); +x_1133 = l_Lean_Syntax_node4(x_14, x_1132, x_1124, x_1111, x_21, x_1131); +lean_inc(x_14); +x_1134 = l_Lean_Syntax_node2(x_14, x_177, x_172, x_1133); +lean_inc(x_14); +x_1135 = l_Lean_Syntax_node1(x_14, x_19, x_1134); +lean_inc(x_181); +lean_inc(x_14); +x_1136 = l_Lean_Syntax_node3(x_14, x_182, x_170, x_1135, x_181); +lean_inc(x_14); +x_1137 = l_Lean_Syntax_node1(x_14, x_19, x_1136); +lean_inc_n(x_21, 4); +lean_inc(x_14); +x_1138 = l_Lean_Syntax_node6(x_14, x_22, x_21, x_1137, x_491, x_21, x_21, x_21); +x_1139 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__497; +x_1140 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__498; +lean_inc(x_14); +x_1141 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1141, 0, x_14); +lean_ctor_set(x_1141, 1, x_1139); +lean_ctor_set(x_1141, 2, x_1140); +lean_ctor_set(x_1141, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_1142 = l_Lean_Syntax_node2(x_14, x_30, x_1141, x_21); +lean_inc(x_1016); +lean_inc(x_142); +lean_inc(x_14); +x_1143 = l_Lean_Syntax_node3(x_14, x_143, x_1022, x_142, x_1016); +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_14); +x_1144 = l_Lean_Syntax_node3(x_14, x_196, x_35, x_1143, x_42); +lean_inc(x_14); +x_1145 = l_Lean_Syntax_node1(x_14, x_19, x_1144); +lean_inc(x_202); +lean_inc(x_14); +x_1146 = l_Lean_Syntax_node2(x_14, x_194, x_202, x_1145); +lean_inc(x_270); +lean_inc(x_14); +x_1147 = l_Lean_Syntax_node3(x_14, x_274, x_1146, x_270, x_1016); +lean_inc(x_377); +lean_inc(x_14); +x_1148 = l_Lean_Syntax_node3(x_14, x_385, x_1029, x_377, x_1147); +lean_inc(x_338); +lean_inc(x_21); +lean_inc(x_334); +lean_inc(x_14); +x_1149 = l_Lean_Syntax_node5(x_14, x_342, x_334, x_1025, x_21, x_338, x_1148); +lean_inc(x_33); +lean_inc(x_14); +x_1150 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_1149); +lean_inc(x_14); +x_1151 = l_Lean_Syntax_node2(x_14, x_58, x_1019, x_1150); +lean_inc(x_14); +x_1152 = l_Lean_Syntax_node2(x_14, x_1046, x_1041, x_1023); +x_1153 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__499; +lean_inc(x_14); +x_1154 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1154, 0, x_14); +lean_ctor_set(x_1154, 1, x_1153); +lean_inc(x_14); +x_1155 = l_Lean_Syntax_node1(x_14, x_19, x_1154); +x_1156 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__500; +lean_inc(x_14); +x_1157 = l_Lean_Syntax_node1(x_14, x_1156, x_1058); +lean_inc(x_142); +lean_inc(x_1157); +lean_inc(x_14); +x_1158 = l_Lean_Syntax_node3(x_14, x_143, x_1157, x_142, x_1157); +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_14); +x_1159 = l_Lean_Syntax_node3(x_14, x_196, x_35, x_1158, x_42); +lean_inc_n(x_21, 2); +lean_inc(x_14); +x_1160 = l_Lean_Syntax_node3(x_14, x_505, x_21, x_21, x_1159); +lean_inc(x_14); +x_1161 = l_Lean_Syntax_node1(x_14, x_19, x_1160); +lean_inc(x_181); +lean_inc(x_411); +lean_inc(x_14); +x_1162 = l_Lean_Syntax_node3(x_14, x_19, x_411, x_1161, x_181); +lean_inc(x_1155); +lean_inc_n(x_21, 2); +lean_inc(x_409); +lean_inc(x_174); +lean_inc(x_14); +x_1163 = l_Lean_Syntax_node6(x_14, x_510, x_174, x_409, x_21, x_1155, x_1162, x_21); +x_1164 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__502; +x_1165 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__503; +lean_inc(x_14); +x_1166 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1166, 0, x_14); +lean_ctor_set(x_1166, 1, x_1164); +lean_ctor_set(x_1166, 2, x_1165); +lean_ctor_set(x_1166, 3, x_26); +lean_inc_n(x_21, 2); +lean_inc(x_14); +x_1167 = l_Lean_Syntax_node3(x_14, x_505, x_21, x_21, x_1166); +lean_inc(x_202); +lean_inc_n(x_21, 2); +lean_inc(x_14); +x_1168 = l_Lean_Syntax_node3(x_14, x_505, x_21, x_21, x_202); +x_1169 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__505; +x_1170 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__506; +lean_inc(x_14); +x_1171 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1171, 0, x_14); +lean_ctor_set(x_1171, 1, x_1169); +lean_ctor_set(x_1171, 2, x_1170); +lean_ctor_set(x_1171, 3, x_26); +lean_inc_n(x_21, 2); +lean_inc(x_14); +x_1172 = l_Lean_Syntax_node3(x_14, x_505, x_21, x_21, x_1171); +x_1173 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__508; +x_1174 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__511; +lean_inc(x_14); +x_1175 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1175, 0, x_14); +lean_ctor_set(x_1175, 1, x_1173); +lean_ctor_set(x_1175, 2, x_1174); +lean_ctor_set(x_1175, 3, x_26); +lean_inc_n(x_21, 2); +lean_inc(x_14); +x_1176 = l_Lean_Syntax_node3(x_14, x_505, x_21, x_21, x_1175); +x_1177 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__513; +x_1178 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__515; +lean_inc(x_14); +x_1179 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1179, 0, x_14); +lean_ctor_set(x_1179, 1, x_1177); +lean_ctor_set(x_1179, 2, x_1178); +lean_ctor_set(x_1179, 3, x_26); +lean_inc_n(x_21, 2); +lean_inc(x_14); +x_1180 = l_Lean_Syntax_node3(x_14, x_505, x_21, x_21, x_1179); +lean_inc_n(x_21, 2); +lean_inc(x_14); +x_1181 = l_Lean_Syntax_node3(x_14, x_505, x_21, x_21, x_251); +x_1182 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__517; +x_1183 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__519; +lean_inc(x_14); +x_1184 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1184, 0, x_14); +lean_ctor_set(x_1184, 1, x_1182); +lean_ctor_set(x_1184, 2, x_1183); +lean_ctor_set(x_1184, 3, x_26); +lean_inc_n(x_21, 2); +lean_inc(x_14); +x_1185 = l_Lean_Syntax_node3(x_14, x_505, x_21, x_21, x_1184); +x_1186 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1186, 0, x_1185); +lean_ctor_set(x_1186, 1, x_26); +lean_inc(x_338); +x_1187 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1187, 0, x_338); +lean_ctor_set(x_1187, 1, x_1186); +x_1188 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1188, 0, x_1181); lean_ctor_set(x_1188, 1, x_1187); -x_1189 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__529; -lean_inc(x_12); -x_1190 = l_Lean_Syntax_node2(x_12, x_1189, x_1188, x_32); +lean_inc(x_338); +x_1189 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1189, 0, x_338); +lean_ctor_set(x_1189, 1, x_1188); +x_1190 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1190, 0, x_1180); +lean_ctor_set(x_1190, 1, x_1189); +lean_inc(x_338); x_1191 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1191, 0, x_1190); -lean_ctor_set(x_1191, 1, x_28); +lean_ctor_set(x_1191, 0, x_338); +lean_ctor_set(x_1191, 1, x_1190); x_1192 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1192, 0, x_1186); +lean_ctor_set(x_1192, 0, x_1176); lean_ctor_set(x_1192, 1, x_1191); +lean_inc(x_338); x_1193 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1193, 0, x_1174); +lean_ctor_set(x_1193, 0, x_338); lean_ctor_set(x_1193, 1, x_1192); x_1194 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1194, 0, x_1156); +lean_ctor_set(x_1194, 0, x_1172); lean_ctor_set(x_1194, 1, x_1193); +lean_inc(x_338); x_1195 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1195, 0, x_1133); +lean_ctor_set(x_1195, 0, x_338); lean_ctor_set(x_1195, 1, x_1194); x_1196 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1196, 0, x_1123); +lean_ctor_set(x_1196, 0, x_1168); lean_ctor_set(x_1196, 1, x_1195); +lean_inc(x_338); x_1197 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1197, 0, x_1105); +lean_ctor_set(x_1197, 0, x_338); lean_ctor_set(x_1197, 1, x_1196); x_1198 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1198, 0, x_1078); +lean_ctor_set(x_1198, 0, x_1167); lean_ctor_set(x_1198, 1, x_1197); -x_1199 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1199, 0, x_929); -lean_ctor_set(x_1199, 1, x_1198); -x_1200 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1200, 0, x_825); -lean_ctor_set(x_1200, 1, x_1199); -x_1201 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1201, 0, x_812); -lean_ctor_set(x_1201, 1, x_1200); -x_1202 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1202, 0, x_795); -lean_ctor_set(x_1202, 1, x_1201); -x_1203 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1203, 0, x_774); -lean_ctor_set(x_1203, 1, x_1202); -x_1204 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1204, 0, x_751); -lean_ctor_set(x_1204, 1, x_1203); -x_1205 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1205, 0, x_735); -lean_ctor_set(x_1205, 1, x_1204); -x_1206 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1206, 0, x_695); -lean_ctor_set(x_1206, 1, x_1205); -x_1207 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1207, 0, x_657); -lean_ctor_set(x_1207, 1, x_1206); -x_1208 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1208, 0, x_591); -lean_ctor_set(x_1208, 1, x_1207); -x_1209 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1209, 0, x_559); -lean_ctor_set(x_1209, 1, x_1208); -x_1210 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1210, 0, x_540); -lean_ctor_set(x_1210, 1, x_1209); -x_1211 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1211, 0, x_526); -lean_ctor_set(x_1211, 1, x_1210); -x_1212 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1212, 0, x_504); -lean_ctor_set(x_1212, 1, x_1211); -x_1213 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1213, 0, x_488); -lean_ctor_set(x_1213, 1, x_1212); -x_1214 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1214, 0, x_465); -lean_ctor_set(x_1214, 1, x_1213); -x_1215 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1215, 0, x_449); -lean_ctor_set(x_1215, 1, x_1214); -x_1216 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1216, 0, x_432); -lean_ctor_set(x_1216, 1, x_1215); -x_1217 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1217, 0, x_421); -lean_ctor_set(x_1217, 1, x_1216); -x_1218 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1218, 0, x_389); -lean_ctor_set(x_1218, 1, x_1217); -x_1219 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1219, 0, x_378); -lean_ctor_set(x_1219, 1, x_1218); -x_1220 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1220, 0, x_356); -lean_ctor_set(x_1220, 1, x_1219); -x_1221 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1221, 0, x_303); -lean_ctor_set(x_1221, 1, x_1220); -x_1222 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1222, 0, x_255); -lean_ctor_set(x_1222, 1, x_1221); -x_1223 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1223, 0, x_196); -lean_ctor_set(x_1223, 1, x_1222); -x_1224 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1224, 0, x_180); -lean_ctor_set(x_1224, 1, x_1223); -x_1225 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1225, 0, x_164); -lean_ctor_set(x_1225, 1, x_1224); -x_1226 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1226, 0, x_148); -lean_ctor_set(x_1226, 1, x_1225); -x_1227 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1227, 0, x_115); -lean_ctor_set(x_1227, 1, x_1226); -x_1228 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1228, 0, x_100); -lean_ctor_set(x_1228, 1, x_1227); -x_1229 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1229, 0, x_64); -lean_ctor_set(x_1229, 1, x_1228); -x_1230 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1230, 0, x_16); -lean_ctor_set(x_1230, 1, x_1229); -x_1231 = lean_array_mk(x_1230); -x_1232 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1232, 0, x_12); -lean_ctor_set(x_1232, 1, x_17); -lean_ctor_set(x_1232, 2, x_1231); -x_1233 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1233, 0, x_1232); -lean_ctor_set(x_1233, 1, x_3); -return x_1233; -} -} -} -LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: +x_1199 = lean_array_mk(x_1198); +lean_inc(x_14); +x_1200 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_1200, 0, x_14); +lean_ctor_set(x_1200, 1, x_19); +lean_ctor_set(x_1200, 2, x_1199); +lean_inc(x_181); +lean_inc(x_411); +lean_inc(x_14); +x_1201 = l_Lean_Syntax_node3(x_14, x_19, x_411, x_1200, x_181); +lean_inc(x_1155); +lean_inc_n(x_21, 2); +lean_inc(x_409); +lean_inc(x_174); +lean_inc(x_14); +x_1202 = l_Lean_Syntax_node6(x_14, x_510, x_174, x_409, x_21, x_1155, x_1201, x_21); +lean_inc(x_391); +lean_inc(x_21); +lean_inc(x_14); +x_1203 = l_Lean_Syntax_node2(x_14, x_412, x_21, x_391); +lean_inc(x_14); +x_1204 = l_Lean_Syntax_node1(x_14, x_19, x_1203); +lean_inc(x_181); +lean_inc(x_411); +lean_inc(x_14); +x_1205 = l_Lean_Syntax_node3(x_14, x_417, x_411, x_1204, x_181); +lean_inc(x_21); +lean_inc(x_409); +lean_inc(x_14); +x_1206 = l_Lean_Syntax_node4(x_14, x_419, x_407, x_409, x_1205, x_21); +lean_inc(x_840); +lean_inc(x_14); +x_1207 = l_Lean_Syntax_node2(x_14, x_841, x_840, x_1074); +lean_inc(x_14); +x_1208 = l_Lean_Syntax_node1(x_14, x_19, x_1207); +lean_inc(x_14); +x_1209 = l_Lean_Syntax_node1(x_14, x_422, x_1208); +lean_inc(x_14); +x_1210 = l_Lean_Syntax_node1(x_14, x_424, x_1209); +lean_inc(x_1064); +lean_inc(x_14); +x_1211 = l_Lean_Syntax_node2(x_14, x_1081, x_1064, x_1210); +x_1212 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__521; +x_1213 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__523; +lean_inc(x_14); +x_1214 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1214, 0, x_14); +lean_ctor_set(x_1214, 1, x_1212); +lean_ctor_set(x_1214, 2, x_1213); +lean_ctor_set(x_1214, 3, x_26); +lean_inc(x_840); +lean_inc(x_14); +x_1215 = l_Lean_Syntax_node2(x_14, x_841, x_840, x_1214); +x_1216 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__525; +x_1217 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__527; +lean_inc(x_14); +x_1218 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1218, 0, x_14); +lean_ctor_set(x_1218, 1, x_1216); +lean_ctor_set(x_1218, 2, x_1217); +lean_ctor_set(x_1218, 3, x_26); +lean_inc(x_840); +lean_inc(x_14); +x_1219 = l_Lean_Syntax_node2(x_14, x_841, x_840, x_1218); +lean_inc(x_14); +x_1220 = l_Lean_Syntax_node1(x_14, x_19, x_1219); +lean_inc(x_14); +x_1221 = l_Lean_Syntax_node1(x_14, x_422, x_1220); +lean_inc(x_14); +x_1222 = l_Lean_Syntax_node1(x_14, x_424, x_1221); +lean_inc(x_1064); +lean_inc(x_14); +x_1223 = l_Lean_Syntax_node2(x_14, x_1081, x_1064, x_1222); +x_1224 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__529; +x_1225 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__531; +lean_inc(x_14); +x_1226 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1226, 0, x_14); +lean_ctor_set(x_1226, 1, x_1224); +lean_ctor_set(x_1226, 2, x_1225); +lean_ctor_set(x_1226, 3, x_26); +lean_inc(x_840); +lean_inc(x_14); +x_1227 = l_Lean_Syntax_node2(x_14, x_841, x_840, x_1226); +lean_inc(x_14); +x_1228 = l_Lean_Syntax_node1(x_14, x_19, x_1227); +lean_inc(x_14); +x_1229 = l_Lean_Syntax_node1(x_14, x_422, x_1228); +lean_inc(x_14); +x_1230 = l_Lean_Syntax_node1(x_14, x_424, x_1229); +lean_inc(x_1064); +lean_inc(x_14); +x_1231 = l_Lean_Syntax_node2(x_14, x_1081, x_1064, x_1230); +lean_inc_n(x_21, 2); +lean_inc(x_14); +x_1232 = l_Lean_Syntax_node5(x_14, x_19, x_1215, x_21, x_1223, x_21, x_1231); +lean_inc(x_14); +x_1233 = l_Lean_Syntax_node1(x_14, x_422, x_1232); +lean_inc(x_14); +x_1234 = l_Lean_Syntax_node1(x_14, x_424, x_1233); +lean_inc(x_14); +x_1235 = l_Lean_Syntax_node2(x_14, x_1081, x_1064, x_1234); +x_1236 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1236, 0, x_1235); +lean_ctor_set(x_1236, 1, x_26); +lean_inc(x_21); +x_1237 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1237, 0, x_21); +lean_ctor_set(x_1237, 1, x_1236); +x_1238 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1238, 0, x_1211); +lean_ctor_set(x_1238, 1, x_1237); +lean_inc(x_21); +x_1239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1239, 0, x_21); +lean_ctor_set(x_1239, 1, x_1238); +x_1240 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1240, 0, x_1206); +lean_ctor_set(x_1240, 1, x_1239); +lean_inc(x_21); +x_1241 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1241, 0, x_21); +lean_ctor_set(x_1241, 1, x_1240); +x_1242 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1242, 0, x_1202); +lean_ctor_set(x_1242, 1, x_1241); +lean_inc(x_21); +x_1243 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1243, 0, x_21); +lean_ctor_set(x_1243, 1, x_1242); +x_1244 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1244, 0, x_1163); +lean_ctor_set(x_1244, 1, x_1243); +lean_inc(x_21); +x_1245 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1245, 0, x_21); +lean_ctor_set(x_1245, 1, x_1244); +x_1246 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1246, 0, x_1152); +lean_ctor_set(x_1246, 1, x_1245); +x_1247 = lean_array_mk(x_1246); +lean_inc(x_14); +x_1248 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_1248, 0, x_14); +lean_ctor_set(x_1248, 1, x_19); +lean_ctor_set(x_1248, 2, x_1247); +lean_inc(x_14); +x_1249 = l_Lean_Syntax_node1(x_14, x_422, x_1248); +lean_inc(x_14); +x_1250 = l_Lean_Syntax_node1(x_14, x_424, x_1249); +lean_inc(x_405); +lean_inc(x_14); +x_1251 = l_Lean_Syntax_node2(x_14, x_426, x_405, x_1250); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_1252 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_1251, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_1253 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_1142, x_1151, x_1252); +lean_inc(x_14); +x_1254 = l_Lean_Syntax_node2(x_14, x_71, x_1138, x_1253); +lean_inc(x_692); +lean_inc(x_14); +x_1255 = l_Lean_Syntax_node3(x_14, x_707, x_1122, x_692, x_1254); +lean_inc(x_692); +lean_inc(x_14); +x_1256 = l_Lean_Syntax_node3(x_14, x_707, x_1113, x_692, x_1255); +x_1257 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__532; +x_1258 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__533; +lean_inc(x_14); +x_1259 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1259, 0, x_14); +lean_ctor_set(x_1259, 1, x_1257); +lean_ctor_set(x_1259, 2, x_1258); +lean_ctor_set(x_1259, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_1260 = l_Lean_Syntax_node2(x_14, x_30, x_1259, x_21); +lean_inc(x_97); +lean_inc(x_14); +x_1261 = l_Lean_Syntax_node1(x_14, x_19, x_97); +lean_inc(x_228); +lean_inc(x_99); +lean_inc(x_218); +lean_inc(x_14); +x_1262 = l_Lean_Syntax_node4(x_14, x_229, x_218, x_1261, x_99, x_228); +lean_inc(x_14); +x_1263 = l_Lean_Syntax_node2(x_14, x_19, x_335, x_1262); +lean_inc(x_97); +lean_inc(x_270); +lean_inc(x_14); +x_1264 = l_Lean_Syntax_node3(x_14, x_274, x_39, x_270, x_97); +lean_inc(x_14); +x_1265 = l_Lean_Syntax_node3(x_14, x_274, x_144, x_270, x_97); +lean_inc(x_377); +lean_inc(x_14); +x_1266 = l_Lean_Syntax_node3(x_14, x_385, x_1264, x_377, x_1265); +lean_inc(x_33); +lean_inc(x_14); +x_1267 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_1266); +lean_inc(x_14); +x_1268 = l_Lean_Syntax_node2(x_14, x_58, x_1263, x_1267); +lean_inc_n(x_21, 2); +lean_inc(x_14); +x_1269 = l_Lean_Syntax_node3(x_14, x_505, x_21, x_21, x_139); +lean_inc(x_338); +lean_inc(x_14); +x_1270 = l_Lean_Syntax_node3(x_14, x_19, x_507, x_338, x_1269); +lean_inc(x_181); +lean_inc(x_411); +lean_inc(x_14); +x_1271 = l_Lean_Syntax_node3(x_14, x_19, x_411, x_1270, x_181); +lean_inc_n(x_21, 2); +lean_inc(x_409); +lean_inc(x_174); +lean_inc(x_14); +x_1272 = l_Lean_Syntax_node6(x_14, x_510, x_174, x_409, x_21, x_1155, x_1271, x_21); +x_1273 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__535; +x_1274 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__537; +lean_inc(x_14); +x_1275 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1275, 0, x_14); +lean_ctor_set(x_1275, 1, x_1273); +lean_ctor_set(x_1275, 2, x_1274); +lean_ctor_set(x_1275, 3, x_26); +lean_inc(x_840); +lean_inc(x_14); +x_1276 = l_Lean_Syntax_node2(x_14, x_841, x_840, x_1275); +lean_inc(x_21); +lean_inc(x_14); +x_1277 = l_Lean_Syntax_node3(x_14, x_19, x_1272, x_21, x_1276); +lean_inc(x_14); +x_1278 = l_Lean_Syntax_node1(x_14, x_422, x_1277); +lean_inc(x_14); +x_1279 = l_Lean_Syntax_node1(x_14, x_424, x_1278); +lean_inc(x_405); +lean_inc(x_14); +x_1280 = l_Lean_Syntax_node2(x_14, x_426, x_405, x_1279); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_1281 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_1280, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_1282 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_1260, x_1268, x_1281); +lean_inc(x_563); +lean_inc(x_14); +x_1283 = l_Lean_Syntax_node2(x_14, x_71, x_563, x_1282); +x_1284 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__539; +x_1285 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__541; +lean_inc(x_14); +x_1286 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1286, 0, x_14); +lean_ctor_set(x_1286, 1, x_1284); +lean_ctor_set(x_1286, 2, x_1285); +lean_ctor_set(x_1286, 3, x_26); +lean_inc(x_21); +lean_inc(x_1286); +lean_inc(x_14); +x_1287 = l_Lean_Syntax_node2(x_14, x_30, x_1286, x_21); +lean_inc(x_46); +lean_inc(x_14); +x_1288 = l_Lean_Syntax_node3(x_14, x_54, x_207, x_46, x_470); +lean_inc(x_637); +lean_inc(x_1288); +lean_inc(x_14); +x_1289 = l_Lean_Syntax_node3(x_14, x_385, x_1288, x_377, x_637); +lean_inc(x_338); +lean_inc(x_21); +lean_inc(x_436); +lean_inc(x_334); +lean_inc(x_14); +x_1290 = l_Lean_Syntax_node5(x_14, x_342, x_334, x_436, x_21, x_338, x_1289); +lean_inc(x_33); +lean_inc(x_14); +x_1291 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_1290); +lean_inc(x_21); +lean_inc(x_14); +x_1292 = l_Lean_Syntax_node2(x_14, x_58, x_21, x_1291); +lean_inc(x_64); +lean_inc_n(x_338, 2); +lean_inc(x_353); +lean_inc(x_14); +x_1293 = l_Lean_Syntax_node5(x_14, x_19, x_353, x_338, x_353, x_338, x_64); +lean_inc(x_14); +x_1294 = l_Lean_Syntax_node1(x_14, x_19, x_1293); +lean_inc(x_14); +x_1295 = l_Lean_Syntax_node4(x_14, x_358, x_347, x_1294, x_357, x_64); +lean_inc(x_14); +x_1296 = l_Lean_Syntax_node1(x_14, x_19, x_1295); +lean_inc(x_14); +x_1297 = l_Lean_Syntax_node1(x_14, x_361, x_1296); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_14); +x_1298 = l_Lean_Syntax_node3(x_14, x_363, x_1297, x_66, x_21); +lean_inc(x_14); +x_1299 = l_Lean_Syntax_node1(x_14, x_365, x_1298); +lean_inc(x_25); +lean_inc(x_14); +x_1300 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_1287, x_1292, x_1299); +lean_inc(x_563); +lean_inc(x_14); +x_1301 = l_Lean_Syntax_node2(x_14, x_71, x_563, x_1300); +x_1302 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__543; +x_1303 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__544; +lean_inc(x_14); +x_1304 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1304, 0, x_14); +lean_ctor_set(x_1304, 1, x_1302); +lean_ctor_set(x_1304, 2, x_1303); +lean_ctor_set(x_1304, 3, x_26); +lean_inc(x_21); +lean_inc(x_1304); +lean_inc(x_14); +x_1305 = l_Lean_Syntax_node2(x_14, x_30, x_1304, x_21); +lean_inc(x_637); +lean_inc(x_442); +lean_inc(x_14); +x_1306 = l_Lean_Syntax_node3(x_14, x_444, x_1288, x_442, x_637); +lean_inc(x_338); +lean_inc(x_21); +lean_inc(x_436); +lean_inc(x_14); +x_1307 = l_Lean_Syntax_node5(x_14, x_342, x_334, x_436, x_21, x_338, x_1306); +lean_inc(x_33); +lean_inc(x_14); +x_1308 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_1307); +lean_inc(x_21); +lean_inc(x_14); +x_1309 = l_Lean_Syntax_node2(x_14, x_58, x_21, x_1308); +lean_inc(x_14); +x_1310 = l_Lean_Syntax_node1(x_14, x_19, x_202); +lean_inc(x_14); +x_1311 = l_Lean_Syntax_node2(x_14, x_194, x_780, x_1310); +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_14); +x_1312 = l_Lean_Syntax_node3(x_14, x_196, x_35, x_1311, x_42); +lean_inc(x_1286); +lean_inc(x_14); +x_1313 = l_Lean_Syntax_node2(x_14, x_19, x_1286, x_1312); +lean_inc(x_14); +x_1314 = l_Lean_Syntax_node2(x_14, x_194, x_702, x_1313); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_1315 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_1314, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_1316 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_1305, x_1309, x_1315); +lean_inc(x_563); +lean_inc(x_14); +x_1317 = l_Lean_Syntax_node2(x_14, x_71, x_563, x_1316); +lean_inc(x_14); +x_1318 = l_Lean_Syntax_node1(x_14, x_19, x_1304); +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_9); +lean_inc(x_14); +x_1319 = l_Lean_Syntax_node4(x_14, x_687, x_9, x_35, x_1318, x_42); +lean_inc(x_685); +lean_inc(x_14); +x_1320 = l_Lean_Syntax_node2(x_14, x_689, x_685, x_1319); +x_1321 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__546; +x_1322 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__547; +lean_inc(x_14); +x_1323 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1323, 0, x_14); +lean_ctor_set(x_1323, 1, x_1321); +lean_ctor_set(x_1323, 2, x_1322); +lean_ctor_set(x_1323, 3, x_26); +lean_inc(x_21); +lean_inc(x_1323); +lean_inc(x_14); +x_1324 = l_Lean_Syntax_node2(x_14, x_30, x_1323, x_21); +x_1325 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__550; +lean_inc(x_14); +x_1326 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1326, 0, x_14); +lean_ctor_set(x_1326, 1, x_1325); +x_1327 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__549; +lean_inc(x_524); +lean_inc(x_440); +lean_inc(x_14); +x_1328 = l_Lean_Syntax_node3(x_14, x_1327, x_440, x_1326, x_524); +lean_inc(x_14); +x_1329 = l_Lean_Syntax_node3(x_14, x_444, x_637, x_442, x_1328); +lean_inc(x_33); +lean_inc(x_14); +x_1330 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_1329); +lean_inc(x_14); +x_1331 = l_Lean_Syntax_node2(x_14, x_58, x_436, x_1330); +x_1332 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__552; +x_1333 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__555; +lean_inc(x_14); +x_1334 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1334, 0, x_14); +lean_ctor_set(x_1334, 1, x_1332); +lean_ctor_set(x_1334, 2, x_1333); +lean_ctor_set(x_1334, 3, x_26); +x_1335 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__557; +x_1336 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__558; +lean_inc(x_14); +x_1337 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1337, 0, x_14); +lean_ctor_set(x_1337, 1, x_1335); +lean_ctor_set(x_1337, 2, x_1336); +lean_ctor_set(x_1337, 3, x_26); +lean_inc(x_14); +x_1338 = l_Lean_Syntax_node1(x_14, x_19, x_1337); +lean_inc(x_14); +x_1339 = l_Lean_Syntax_node2(x_14, x_194, x_1334, x_1338); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_1340 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_1339, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_1341 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_1324, x_1331, x_1340); +lean_inc(x_563); +lean_inc(x_14); +x_1342 = l_Lean_Syntax_node2(x_14, x_71, x_563, x_1341); +lean_inc(x_692); +lean_inc(x_14); +x_1343 = l_Lean_Syntax_node3(x_14, x_707, x_1320, x_692, x_1342); +lean_inc(x_1323); +lean_inc(x_14); +x_1344 = l_Lean_Syntax_node1(x_14, x_19, x_1323); +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_9); +lean_inc(x_14); +x_1345 = l_Lean_Syntax_node4(x_14, x_687, x_9, x_35, x_1344, x_42); +lean_inc(x_14); +x_1346 = l_Lean_Syntax_node2(x_14, x_689, x_685, x_1345); +x_1347 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__560; +x_1348 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__561; +lean_inc(x_14); +x_1349 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1349, 0, x_14); +lean_ctor_set(x_1349, 1, x_1347); +lean_ctor_set(x_1349, 2, x_1348); +lean_ctor_set(x_1349, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_1350 = l_Lean_Syntax_node2(x_14, x_30, x_1349, x_21); +x_1351 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__563; +x_1352 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__564; +lean_inc(x_14); +x_1353 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1353, 0, x_14); +lean_ctor_set(x_1353, 1, x_1351); +lean_ctor_set(x_1353, 2, x_1352); +lean_ctor_set(x_1353, 3, x_26); +lean_inc(x_1353); +lean_inc(x_14); +x_1354 = l_Lean_Syntax_node1(x_14, x_19, x_1353); +lean_inc(x_33); +lean_inc(x_14); +x_1355 = l_Lean_Syntax_node2(x_14, x_19, x_33, x_440); +lean_inc(x_42); +lean_inc(x_21); +lean_inc(x_35); +lean_inc(x_14); +x_1356 = l_Lean_Syntax_node5(x_14, x_100, x_35, x_1354, x_1355, x_21, x_42); +x_1357 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__566; +x_1358 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__567; +lean_inc(x_14); +x_1359 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1359, 0, x_14); +lean_ctor_set(x_1359, 1, x_1357); +lean_ctor_set(x_1359, 2, x_1358); +lean_ctor_set(x_1359, 3, x_26); +lean_inc(x_1359); +lean_inc(x_14); +x_1360 = l_Lean_Syntax_node1(x_14, x_19, x_1359); +lean_inc(x_33); +lean_inc(x_14); +x_1361 = l_Lean_Syntax_node2(x_14, x_19, x_33, x_524); +lean_inc(x_42); +lean_inc(x_21); +lean_inc(x_35); +lean_inc(x_14); +x_1362 = l_Lean_Syntax_node5(x_14, x_100, x_35, x_1360, x_1361, x_21, x_42); +lean_inc(x_14); +x_1363 = l_Lean_Syntax_node3(x_14, x_19, x_435, x_1356, x_1362); +lean_inc(x_14); +x_1364 = l_Lean_Syntax_node2(x_14, x_58, x_1363, x_659); +x_1365 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__569; +lean_inc(x_14); +x_1366 = l_Lean_Syntax_node1(x_14, x_1365, x_239); +lean_inc(x_14); +x_1367 = l_Lean_Syntax_node3(x_14, x_203, x_1323, x_199, x_1366); +lean_inc(x_14); +x_1368 = l_Lean_Syntax_node3(x_14, x_19, x_1353, x_338, x_1359); +lean_inc(x_14); +x_1369 = l_Lean_Syntax_node3(x_14, x_52, x_48, x_1368, x_51); +lean_inc(x_14); +x_1370 = l_Lean_Syntax_node1(x_14, x_19, x_1369); +lean_inc(x_14); +x_1371 = l_Lean_Syntax_node2(x_14, x_194, x_1367, x_1370); +lean_inc(x_21); +lean_inc(x_66); +lean_inc(x_61); +lean_inc(x_14); +x_1372 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_1371, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_1373 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_1350, x_1364, x_1372); +lean_inc(x_14); +x_1374 = l_Lean_Syntax_node2(x_14, x_71, x_563, x_1373); +lean_inc(x_14); +x_1375 = l_Lean_Syntax_node3(x_14, x_707, x_1346, x_692, x_1374); +x_1376 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__571; +x_1377 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__572; +lean_inc(x_14); +x_1378 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1378, 0, x_14); +lean_ctor_set(x_1378, 1, x_1376); +lean_ctor_set(x_1378, 2, x_1377); +lean_ctor_set(x_1378, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_1379 = l_Lean_Syntax_node2(x_14, x_30, x_1378, x_21); +lean_inc(x_234); +lean_inc(x_14); +x_1380 = l_Lean_Syntax_node2(x_14, x_194, x_234, x_81); +lean_inc(x_46); +lean_inc(x_14); +x_1381 = l_Lean_Syntax_node3(x_14, x_54, x_1380, x_46, x_79); +lean_inc(x_33); +lean_inc(x_14); +x_1382 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_1381); +lean_inc(x_21); +lean_inc(x_14); +x_1383 = l_Lean_Syntax_node2(x_14, x_58, x_21, x_1382); +lean_inc(x_68); +lean_inc(x_25); +lean_inc(x_14); +x_1384 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_1379, x_1383, x_68); +lean_inc(x_492); +lean_inc(x_14); +x_1385 = l_Lean_Syntax_node2(x_14, x_71, x_492, x_1384); +x_1386 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__574; +x_1387 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__575; +lean_inc(x_14); +x_1388 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1388, 0, x_14); +lean_ctor_set(x_1388, 1, x_1386); +lean_ctor_set(x_1388, 2, x_1387); +lean_ctor_set(x_1388, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_1389 = l_Lean_Syntax_node2(x_14, x_30, x_1388, x_21); +lean_inc(x_14); +x_1390 = l_Lean_Syntax_node4(x_14, x_229, x_218, x_303, x_99, x_228); +lean_inc(x_14); +x_1391 = l_Lean_Syntax_node1(x_14, x_19, x_1390); +lean_inc(x_311); +lean_inc(x_14); +x_1392 = l_Lean_Syntax_node1(x_14, x_19, x_311); +lean_inc(x_14); +x_1393 = l_Lean_Syntax_node2(x_14, x_194, x_234, x_1392); +lean_inc(x_46); +lean_inc(x_14); +x_1394 = l_Lean_Syntax_node3(x_14, x_54, x_1393, x_46, x_302); +lean_inc(x_33); +lean_inc(x_14); +x_1395 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_1394); +lean_inc(x_14); +x_1396 = l_Lean_Syntax_node2(x_14, x_58, x_1391, x_1395); +lean_inc(x_14); +x_1397 = l_Lean_Syntax_node2(x_14, x_841, x_840, x_1286); +x_1398 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__577; +x_1399 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__578; +lean_inc(x_14); +x_1400 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1400, 0, x_14); +lean_ctor_set(x_1400, 1, x_1398); +lean_ctor_set(x_1400, 2, x_1399); +lean_ctor_set(x_1400, 3, x_26); +lean_inc(x_14); +x_1401 = l_Lean_Syntax_node1(x_14, x_19, x_1400); +lean_inc(x_14); +x_1402 = l_Lean_Syntax_node2(x_14, x_194, x_391, x_1401); +lean_inc_n(x_21, 2); +lean_inc(x_14); +x_1403 = l_Lean_Syntax_node3(x_14, x_505, x_21, x_21, x_1402); +lean_inc(x_14); +x_1404 = l_Lean_Syntax_node1(x_14, x_19, x_1403); +lean_inc(x_14); +x_1405 = l_Lean_Syntax_node3(x_14, x_19, x_411, x_1404, x_181); +lean_inc_n(x_21, 3); +lean_inc(x_14); +x_1406 = l_Lean_Syntax_node6(x_14, x_510, x_174, x_409, x_21, x_21, x_1405, x_21); +lean_inc(x_21); +lean_inc(x_14); +x_1407 = l_Lean_Syntax_node3(x_14, x_19, x_1397, x_21, x_1406); +lean_inc(x_14); +x_1408 = l_Lean_Syntax_node1(x_14, x_422, x_1407); +lean_inc(x_14); +x_1409 = l_Lean_Syntax_node1(x_14, x_424, x_1408); +lean_inc(x_14); +x_1410 = l_Lean_Syntax_node2(x_14, x_426, x_405, x_1409); +lean_inc(x_21); +lean_inc(x_14); +x_1411 = l_Lean_Syntax_node4(x_14, x_67, x_61, x_1410, x_66, x_21); +lean_inc(x_25); +lean_inc(x_14); +x_1412 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_1389, x_1396, x_1411); +lean_inc(x_14); +x_1413 = l_Lean_Syntax_node2(x_14, x_71, x_492, x_1412); +x_1414 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__580; +x_1415 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__581; +lean_inc(x_14); +x_1416 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1416, 0, x_14); +lean_ctor_set(x_1416, 1, x_1414); +lean_ctor_set(x_1416, 2, x_1415); +lean_ctor_set(x_1416, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_1417 = l_Lean_Syntax_node2(x_14, x_30, x_1416, x_21); +lean_inc(x_42); +lean_inc(x_21); +lean_inc(x_222); +lean_inc(x_35); +lean_inc(x_14); +x_1418 = l_Lean_Syntax_node5(x_14, x_100, x_35, x_222, x_226, x_21, x_42); +lean_inc(x_14); +x_1419 = l_Lean_Syntax_node1(x_14, x_19, x_1418); +x_1420 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__584; +lean_inc(x_14); +x_1421 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1421, 0, x_14); +lean_ctor_set(x_1421, 1, x_1420); +x_1422 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__586; +x_1423 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__588; +lean_inc(x_14); +x_1424 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1424, 0, x_14); +lean_ctor_set(x_1424, 1, x_1422); +lean_ctor_set(x_1424, 2, x_1423); +lean_ctor_set(x_1424, 3, x_26); +lean_inc(x_14); +x_1425 = l_Lean_Syntax_node2(x_14, x_194, x_1424, x_222); +lean_inc(x_42); +lean_inc(x_1425); +lean_inc(x_35); +lean_inc(x_14); +x_1426 = l_Lean_Syntax_node3(x_14, x_196, x_35, x_1425, x_42); +x_1427 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__583; +lean_inc(x_14); +x_1428 = l_Lean_Syntax_node2(x_14, x_1427, x_1421, x_1426); +lean_inc(x_42); +lean_inc(x_35); +lean_inc(x_14); +x_1429 = l_Lean_Syntax_node3(x_14, x_196, x_35, x_1428, x_42); +lean_inc(x_14); +x_1430 = l_Lean_Syntax_node1(x_14, x_19, x_1429); +lean_inc(x_1430); +lean_inc(x_14); +x_1431 = l_Lean_Syntax_node2(x_14, x_194, x_755, x_1430); +lean_inc(x_1425); +lean_inc(x_46); +lean_inc(x_14); +x_1432 = l_Lean_Syntax_node3(x_14, x_54, x_1431, x_46, x_1425); +lean_inc(x_33); +lean_inc(x_14); +x_1433 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_1432); +lean_inc(x_1419); +lean_inc(x_14); +x_1434 = l_Lean_Syntax_node2(x_14, x_58, x_1419, x_1433); +lean_inc(x_68); +lean_inc(x_25); +lean_inc(x_14); +x_1435 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_1417, x_1434, x_68); +lean_inc(x_185); +lean_inc(x_14); +x_1436 = l_Lean_Syntax_node2(x_14, x_71, x_185, x_1435); +x_1437 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__590; +x_1438 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__591; +lean_inc(x_14); +x_1439 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1439, 0, x_14); +lean_ctor_set(x_1439, 1, x_1437); +lean_ctor_set(x_1439, 2, x_1438); +lean_ctor_set(x_1439, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_1440 = l_Lean_Syntax_node2(x_14, x_30, x_1439, x_21); +x_1441 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__592; +x_1442 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__593; +lean_inc(x_14); +x_1443 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1443, 0, x_14); +lean_ctor_set(x_1443, 1, x_1441); +lean_ctor_set(x_1443, 2, x_1442); +lean_ctor_set(x_1443, 3, x_26); +lean_inc(x_14); +x_1444 = l_Lean_Syntax_node2(x_14, x_194, x_1443, x_1430); +x_1445 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__595; +x_1446 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__596; +lean_inc(x_14); +x_1447 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1447, 0, x_14); +lean_ctor_set(x_1447, 1, x_1445); +lean_ctor_set(x_1447, 2, x_1446); +lean_ctor_set(x_1447, 3, x_26); +lean_inc(x_14); +x_1448 = l_Lean_Syntax_node2(x_14, x_19, x_351, x_221); +lean_inc(x_14); +x_1449 = l_Lean_Syntax_node2(x_14, x_194, x_1447, x_1448); +lean_inc(x_1449); +lean_inc(x_46); +lean_inc(x_14); +x_1450 = l_Lean_Syntax_node3(x_14, x_54, x_1444, x_46, x_1449); +lean_inc(x_33); +lean_inc(x_14); +x_1451 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_1450); +lean_inc(x_1419); +lean_inc(x_14); +x_1452 = l_Lean_Syntax_node2(x_14, x_58, x_1419, x_1451); +lean_inc(x_68); +lean_inc(x_25); +lean_inc(x_14); +x_1453 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_1440, x_1452, x_68); +lean_inc(x_185); +lean_inc(x_14); +x_1454 = l_Lean_Syntax_node2(x_14, x_71, x_185, x_1453); +x_1455 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__598; +x_1456 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__599; +lean_inc(x_14); +x_1457 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1457, 0, x_14); +lean_ctor_set(x_1457, 1, x_1455); +lean_ctor_set(x_1457, 2, x_1456); +lean_ctor_set(x_1457, 3, x_26); +lean_inc(x_21); +lean_inc(x_14); +x_1458 = l_Lean_Syntax_node2(x_14, x_30, x_1457, x_21); +lean_inc(x_14); +x_1459 = l_Lean_Syntax_node3(x_14, x_196, x_35, x_1449, x_42); +lean_inc(x_14); +x_1460 = l_Lean_Syntax_node1(x_14, x_19, x_1459); +lean_inc(x_14); +x_1461 = l_Lean_Syntax_node2(x_14, x_194, x_192, x_1460); +lean_inc(x_46); +lean_inc(x_14); +x_1462 = l_Lean_Syntax_node3(x_14, x_54, x_1461, x_46, x_1425); +lean_inc(x_33); +lean_inc(x_14); +x_1463 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_1462); +lean_inc(x_14); +x_1464 = l_Lean_Syntax_node2(x_14, x_58, x_1419, x_1463); +lean_inc(x_68); +lean_inc(x_25); +lean_inc(x_14); +x_1465 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_1458, x_1464, x_68); +lean_inc(x_185); +lean_inc(x_14); +x_1466 = l_Lean_Syntax_node2(x_14, x_71, x_185, x_1465); +x_1467 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1467, 0, x_1466); +lean_ctor_set(x_1467, 1, x_26); +x_1468 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1468, 0, x_1454); +lean_ctor_set(x_1468, 1, x_1467); +x_1469 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1469, 0, x_1436); +lean_ctor_set(x_1469, 1, x_1468); +x_1470 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1470, 0, x_1413); +lean_ctor_set(x_1470, 1, x_1469); +x_1471 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1471, 0, x_1385); +lean_ctor_set(x_1471, 1, x_1470); +x_1472 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1472, 0, x_1375); +lean_ctor_set(x_1472, 1, x_1471); +x_1473 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1473, 0, x_1343); +lean_ctor_set(x_1473, 1, x_1472); +x_1474 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1474, 0, x_1317); +lean_ctor_set(x_1474, 1, x_1473); +x_1475 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1475, 0, x_1301); +lean_ctor_set(x_1475, 1, x_1474); +x_1476 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1476, 0, x_1283); +lean_ctor_set(x_1476, 1, x_1475); +x_1477 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1477, 0, x_1256); +lean_ctor_set(x_1477, 1, x_1476); +x_1478 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1478, 0, x_1110); +lean_ctor_set(x_1478, 1, x_1477); +x_1479 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1479, 0, x_1006); +lean_ctor_set(x_1479, 1, x_1478); +x_1480 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1480, 0, x_993); +lean_ctor_set(x_1480, 1, x_1479); +x_1481 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1481, 0, x_978); +lean_ctor_set(x_1481, 1, x_1480); +x_1482 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1482, 0, x_957); +lean_ctor_set(x_1482, 1, x_1481); +x_1483 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1483, 0, x_940); +lean_ctor_set(x_1483, 1, x_1482); +x_1484 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1484, 0, x_922); +lean_ctor_set(x_1484, 1, x_1483); +x_1485 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1485, 0, x_902); +lean_ctor_set(x_1485, 1, x_1484); +x_1486 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1486, 0, x_883); +lean_ctor_set(x_1486, 1, x_1485); +x_1487 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1487, 0, x_867); +lean_ctor_set(x_1487, 1, x_1486); +x_1488 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1488, 0, x_827); +lean_ctor_set(x_1488, 1, x_1487); +x_1489 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1489, 0, x_789); +lean_ctor_set(x_1489, 1, x_1488); +x_1490 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1490, 0, x_767); +lean_ctor_set(x_1490, 1, x_1489); +x_1491 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1491, 0, x_708); +lean_ctor_set(x_1491, 1, x_1490); +x_1492 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1492, 0, x_683); +lean_ctor_set(x_1492, 1, x_1491); +x_1493 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1493, 0, x_651); +lean_ctor_set(x_1493, 1, x_1492); +x_1494 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1494, 0, x_632); +lean_ctor_set(x_1494, 1, x_1493); +x_1495 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1495, 0, x_618); +lean_ctor_set(x_1495, 1, x_1494); +x_1496 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1496, 0, x_601); +lean_ctor_set(x_1496, 1, x_1495); +x_1497 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1497, 0, x_585); +lean_ctor_set(x_1497, 1, x_1496); +x_1498 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1498, 0, x_562); +lean_ctor_set(x_1498, 1, x_1497); +x_1499 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1499, 0, x_546); +lean_ctor_set(x_1499, 1, x_1498); +x_1500 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1500, 0, x_529); +lean_ctor_set(x_1500, 1, x_1499); +x_1501 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1501, 0, x_518); +lean_ctor_set(x_1501, 1, x_1500); +x_1502 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1502, 0, x_486); +lean_ctor_set(x_1502, 1, x_1501); +x_1503 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1503, 0, x_476); +lean_ctor_set(x_1503, 1, x_1502); +x_1504 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1504, 0, x_463); +lean_ctor_set(x_1504, 1, x_1503); +x_1505 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1505, 0, x_452); +lean_ctor_set(x_1505, 1, x_1504); +x_1506 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1506, 0, x_430); +lean_ctor_set(x_1506, 1, x_1505); +x_1507 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1507, 0, x_394); +lean_ctor_set(x_1507, 1, x_1506); +x_1508 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1508, 0, x_368); +lean_ctor_set(x_1508, 1, x_1507); +x_1509 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1509, 0, x_328); +lean_ctor_set(x_1509, 1, x_1508); +x_1510 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1510, 0, x_316); +lean_ctor_set(x_1510, 1, x_1509); +x_1511 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1511, 0, x_295); +lean_ctor_set(x_1511, 1, x_1510); +x_1512 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1512, 0, x_260); +lean_ctor_set(x_1512, 1, x_1511); +x_1513 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1513, 0, x_212); +lean_ctor_set(x_1513, 1, x_1512); +x_1514 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1514, 0, x_168); +lean_ctor_set(x_1514, 1, x_1513); +x_1515 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1515, 0, x_152); +lean_ctor_set(x_1515, 1, x_1514); +x_1516 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1516, 0, x_136); +lean_ctor_set(x_1516, 1, x_1515); +x_1517 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1517, 0, x_120); +lean_ctor_set(x_1517, 1, x_1516); +x_1518 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1518, 0, x_87); +lean_ctor_set(x_1518, 1, x_1517); +x_1519 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1519, 0, x_72); +lean_ctor_set(x_1519, 1, x_1518); +x_1520 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1520, 0, x_18); +lean_ctor_set(x_1520, 1, x_1519); +x_1521 = lean_array_mk(x_1520); +lean_inc(x_14); +x_1522 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_1522, 0, x_14); +lean_ctor_set(x_1522, 1, x_19); +lean_ctor_set(x_1522, 2, x_1521); +x_1523 = l_Lean_Syntax_getArgs(x_1522); +lean_dec(x_1522); +lean_inc(x_9); +x_1524 = lean_alloc_closure((void*)(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___boxed), 6, 2); +lean_closure_set(x_1524, 0, x_19); +lean_closure_set(x_1524, 1, x_9); +x_1525 = l_Lean_Syntax_isNatLit_x3f(x_11); +lean_dec(x_11); +if (lean_obj_tag(x_1525) == 0) { -lean_object* x_4; -x_4 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1(x_1, x_2, x_3); +lean_object* x_1526; lean_object* x_1527; uint8_t x_1528; +lean_dec(x_1524); +lean_dec(x_311); +lean_dec(x_305); +lean_dec(x_242); +lean_dec(x_240); +lean_dec(x_185); +lean_dec(x_142); +lean_dec(x_68); +lean_dec(x_46); +lean_dec(x_33); +lean_dec(x_25); +lean_dec(x_21); +lean_dec(x_14); +x_1526 = lean_box(0); +x_1527 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1(x_19, x_9, x_1523, x_1526, x_2, x_3); lean_dec(x_2); -return x_4; +x_1528 = !lean_is_exclusive(x_1527); +if (x_1528 == 0) +{ +return x_1527; +} +else +{ +lean_object* x_1529; lean_object* x_1530; lean_object* x_1531; +x_1529 = lean_ctor_get(x_1527, 0); +x_1530 = lean_ctor_get(x_1527, 1); +lean_inc(x_1530); +lean_inc(x_1529); +lean_dec(x_1527); +x_1531 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1531, 0, x_1529); +lean_ctor_set(x_1531, 1, x_1530); +return x_1531; } } -static uint8_t _init_l_UInt8_instInhabited() { +else +{ +lean_object* x_1532; lean_object* x_1533; uint8_t x_1534; +x_1532 = lean_ctor_get(x_1525, 0); +lean_inc(x_1532); +lean_dec(x_1525); +x_1533 = lean_unsigned_to_nat(8u); +x_1534 = lean_nat_dec_lt(x_1533, x_1532); +if (x_1534 == 0) +{ +lean_object* x_1535; lean_object* x_1536; +lean_dec(x_311); +lean_dec(x_305); +lean_dec(x_242); +lean_dec(x_240); +lean_dec(x_185); +lean_dec(x_142); +lean_dec(x_68); +lean_dec(x_46); +lean_dec(x_33); +lean_dec(x_25); +lean_dec(x_21); +lean_dec(x_14); +x_1535 = lean_box(0); +x_1536 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5(x_1532, x_1524, x_19, x_20, x_171, x_175, x_177, x_182, x_22, x_26, x_30, x_300, x_301, x_9, x_100, x_309, x_310, x_54, x_56, x_58, x_62, x_63, x_65, x_67, x_69, x_71, x_38, x_243, x_143, x_1523, x_1535, x_2, x_3); +lean_dec(x_1532); +if (lean_obj_tag(x_1536) == 0) +{ +uint8_t x_1537; +x_1537 = !lean_is_exclusive(x_1536); +if (x_1537 == 0) +{ +return x_1536; +} +else +{ +lean_object* x_1538; lean_object* x_1539; lean_object* x_1540; +x_1538 = lean_ctor_get(x_1536, 0); +x_1539 = lean_ctor_get(x_1536, 1); +lean_inc(x_1539); +lean_inc(x_1538); +lean_dec(x_1536); +x_1540 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1540, 0, x_1538); +lean_ctor_set(x_1540, 1, x_1539); +return x_1540; +} +} +else +{ +uint8_t x_1541; +x_1541 = !lean_is_exclusive(x_1536); +if (x_1541 == 0) +{ +return x_1536; +} +else +{ +lean_object* x_1542; lean_object* x_1543; lean_object* x_1544; +x_1542 = lean_ctor_get(x_1536, 0); +x_1543 = lean_ctor_get(x_1536, 1); +lean_inc(x_1543); +lean_inc(x_1542); +lean_dec(x_1536); +x_1544 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1544, 0, x_1542); +lean_ctor_set(x_1544, 1, x_1543); +return x_1544; +} +} +} +else +{ +lean_object* x_1545; lean_object* x_1546; lean_object* x_1547; lean_object* x_1548; lean_object* x_1549; lean_object* x_1550; lean_object* x_1551; lean_object* x_1552; lean_object* x_1553; lean_object* x_1554; lean_object* x_1555; lean_object* x_1556; lean_object* x_1557; lean_object* x_1558; lean_object* x_1559; lean_object* x_1560; lean_object* x_1561; lean_object* x_1562; lean_object* x_1563; lean_object* x_1564; +x_1545 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__601; +x_1546 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__602; +lean_inc(x_14); +x_1547 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1547, 0, x_14); +lean_ctor_set(x_1547, 1, x_1545); +lean_ctor_set(x_1547, 2, x_1546); +lean_ctor_set(x_1547, 3, x_26); +lean_inc(x_14); +x_1548 = l_Lean_Syntax_node2(x_14, x_30, x_1547, x_21); +x_1549 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__604; +x_1550 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__606; +lean_inc(x_14); +x_1551 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1551, 0, x_14); +lean_ctor_set(x_1551, 1, x_1549); +lean_ctor_set(x_1551, 2, x_1550); +lean_ctor_set(x_1551, 3, x_26); +x_1552 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__607; +lean_inc(x_14); +x_1553 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1553, 0, x_14); +lean_ctor_set(x_1553, 1, x_1552); +lean_inc(x_14); +x_1554 = l_Lean_Syntax_node1(x_14, x_38, x_1553); +lean_inc(x_14); +x_1555 = l_Lean_Syntax_node3(x_14, x_243, x_240, x_242, x_1554); +lean_inc(x_14); +x_1556 = l_Lean_Syntax_node3(x_14, x_143, x_311, x_142, x_1555); +lean_inc(x_14); +x_1557 = l_Lean_Syntax_node3(x_14, x_54, x_1551, x_46, x_1556); +lean_inc(x_14); +x_1558 = l_Lean_Syntax_node2(x_14, x_56, x_33, x_1557); +lean_inc(x_14); +x_1559 = l_Lean_Syntax_node2(x_14, x_58, x_305, x_1558); +lean_inc(x_14); +x_1560 = l_Lean_Syntax_node4(x_14, x_69, x_25, x_1548, x_1559, x_68); +x_1561 = l_Lean_Syntax_node2(x_14, x_71, x_185, x_1560); +x_1562 = lean_array_push(x_1523, x_1561); +x_1563 = lean_box(0); +x_1564 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5(x_1532, x_1524, x_19, x_20, x_171, x_175, x_177, x_182, x_22, x_26, x_30, x_300, x_301, x_9, x_100, x_309, x_310, x_54, x_56, x_58, x_62, x_63, x_65, x_67, x_69, x_71, x_38, x_243, x_143, x_1562, x_1563, x_2, x_3); +lean_dec(x_1532); +if (lean_obj_tag(x_1564) == 0) +{ +uint8_t x_1565; +x_1565 = !lean_is_exclusive(x_1564); +if (x_1565 == 0) +{ +return x_1564; +} +else +{ +lean_object* x_1566; lean_object* x_1567; lean_object* x_1568; +x_1566 = lean_ctor_get(x_1564, 0); +x_1567 = lean_ctor_get(x_1564, 1); +lean_inc(x_1567); +lean_inc(x_1566); +lean_dec(x_1564); +x_1568 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1568, 0, x_1566); +lean_ctor_set(x_1568, 1, x_1567); +return x_1568; +} +} +else +{ +uint8_t x_1569; +x_1569 = !lean_is_exclusive(x_1564); +if (x_1569 == 0) +{ +return x_1564; +} +else +{ +lean_object* x_1570; lean_object* x_1571; lean_object* x_1572; +x_1570 = lean_ctor_get(x_1564, 0); +x_1571 = lean_ctor_get(x_1564, 1); +lean_inc(x_1571); +lean_inc(x_1570); +lean_dec(x_1564); +x_1572 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1572, 0, x_1570); +lean_ctor_set(x_1572, 1, x_1571); +return x_1572; +} +} +} +} +} +} +} +LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { -uint8_t x_1; -x_1 = 0; -return x_1; +lean_object* x_7; +x_7 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_7; } } -static uint16_t _init_l_UInt16_instInhabited() { +LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +lean_object* x_21 = _args[20]; +lean_object* x_22 = _args[21]; +lean_object* x_23 = _args[22]; +lean_object* x_24 = _args[23]; +lean_object* x_25 = _args[24]; +lean_object* x_26 = _args[25]; +lean_object* x_27 = _args[26]; +lean_object* x_28 = _args[27]; +lean_object* x_29 = _args[28]; +lean_object* x_30 = _args[29]; _start: { -uint16_t x_1; -x_1 = 0; -return x_1; +lean_object* x_31; +x_31 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28, x_29, x_30); +lean_dec(x_28); +lean_dec(x_1); +return x_31; } } -static uint32_t _init_l_UInt32_instInhabited() { +LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +lean_object* x_21 = _args[20]; +lean_object* x_22 = _args[21]; +lean_object* x_23 = _args[22]; +lean_object* x_24 = _args[23]; +lean_object* x_25 = _args[24]; +lean_object* x_26 = _args[25]; +lean_object* x_27 = _args[26]; +lean_object* x_28 = _args[27]; +lean_object* x_29 = _args[28]; +lean_object* x_30 = _args[29]; +lean_object* x_31 = _args[30]; +lean_object* x_32 = _args[31]; +lean_object* x_33 = _args[32]; _start: { -uint32_t x_1; -x_1 = 0; -return x_1; +lean_object* x_34; +x_34 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28, x_29, x_30, x_31, x_32, x_33); +lean_dec(x_31); +lean_dec(x_1); +return x_34; } } -static uint64_t _init_l_UInt64_instInhabited() { +LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +lean_object* x_21 = _args[20]; +lean_object* x_22 = _args[21]; +lean_object* x_23 = _args[22]; +lean_object* x_24 = _args[23]; +lean_object* x_25 = _args[24]; +lean_object* x_26 = _args[25]; +lean_object* x_27 = _args[26]; +lean_object* x_28 = _args[27]; +lean_object* x_29 = _args[28]; +lean_object* x_30 = _args[29]; +lean_object* x_31 = _args[30]; +lean_object* x_32 = _args[31]; +lean_object* x_33 = _args[32]; _start: { -uint64_t x_1; -x_1 = 0; -return x_1; +lean_object* x_34; +x_34 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28, x_29, x_30, x_31, x_32, x_33); +lean_dec(x_31); +lean_dec(x_1); +return x_34; } } -static size_t _init_l_USize_instInhabited() { +LEAN_EXPORT lean_object* l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +lean_object* x_21 = _args[20]; +lean_object* x_22 = _args[21]; +lean_object* x_23 = _args[22]; +lean_object* x_24 = _args[23]; +lean_object* x_25 = _args[24]; +lean_object* x_26 = _args[25]; +lean_object* x_27 = _args[26]; +lean_object* x_28 = _args[27]; +lean_object* x_29 = _args[28]; +lean_object* x_30 = _args[29]; +lean_object* x_31 = _args[30]; +lean_object* x_32 = _args[31]; +lean_object* x_33 = _args[32]; _start: { -size_t x_1; -x_1 = 0; -return x_1; +lean_object* x_34; +x_34 = l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21, x_22, x_23, x_24, x_25, x_26, x_27, x_28, x_29, x_30, x_31, x_32, x_33); +lean_dec(x_31); +lean_dec(x_1); +return x_34; } } lean_object* initialize_Init_Data_UInt_Basic(uint8_t builtin, lean_object*); @@ -9111,1093 +13169,1362 @@ lean_dec_ref(res); res = initialize_Init_Data_BitVec_Bitblast(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_commandDeclare__uint__theorems_____closed__1 = _init_l_commandDeclare__uint__theorems_____closed__1(); -lean_mark_persistent(l_commandDeclare__uint__theorems_____closed__1); -l_commandDeclare__uint__theorems_____closed__2 = _init_l_commandDeclare__uint__theorems_____closed__2(); -lean_mark_persistent(l_commandDeclare__uint__theorems_____closed__2); -l_commandDeclare__uint__theorems_____closed__3 = _init_l_commandDeclare__uint__theorems_____closed__3(); -lean_mark_persistent(l_commandDeclare__uint__theorems_____closed__3); -l_commandDeclare__uint__theorems_____closed__4 = _init_l_commandDeclare__uint__theorems_____closed__4(); -lean_mark_persistent(l_commandDeclare__uint__theorems_____closed__4); -l_commandDeclare__uint__theorems_____closed__5 = _init_l_commandDeclare__uint__theorems_____closed__5(); -lean_mark_persistent(l_commandDeclare__uint__theorems_____closed__5); -l_commandDeclare__uint__theorems_____closed__6 = _init_l_commandDeclare__uint__theorems_____closed__6(); -lean_mark_persistent(l_commandDeclare__uint__theorems_____closed__6); -l_commandDeclare__uint__theorems_____closed__7 = _init_l_commandDeclare__uint__theorems_____closed__7(); -lean_mark_persistent(l_commandDeclare__uint__theorems_____closed__7); -l_commandDeclare__uint__theorems_____closed__8 = _init_l_commandDeclare__uint__theorems_____closed__8(); -lean_mark_persistent(l_commandDeclare__uint__theorems_____closed__8); -l_commandDeclare__uint__theorems_____closed__9 = _init_l_commandDeclare__uint__theorems_____closed__9(); -lean_mark_persistent(l_commandDeclare__uint__theorems_____closed__9); -l_commandDeclare__uint__theorems_____closed__10 = _init_l_commandDeclare__uint__theorems_____closed__10(); -lean_mark_persistent(l_commandDeclare__uint__theorems_____closed__10); -l_commandDeclare__uint__theorems_____closed__11 = _init_l_commandDeclare__uint__theorems_____closed__11(); -lean_mark_persistent(l_commandDeclare__uint__theorems_____closed__11); -l_commandDeclare__uint__theorems__ = _init_l_commandDeclare__uint__theorems__(); -lean_mark_persistent(l_commandDeclare__uint__theorems__); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__1 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__1(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__1); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__2 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__2(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__2); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__3); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__4); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__5 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__5(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__5); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__6 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__6(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__6); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__7 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__7(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__7); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__8 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__8(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__8); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__9 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__9(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__9); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__10 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__10(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__10); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__11 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__11(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__11); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__12 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__12(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__12); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__13 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__13(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__13); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__14 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__14(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__14); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__15); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__16 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__16(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__16); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__17 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__17(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__17); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__18 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__18(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__18); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__19 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__19(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__19); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__20 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__20(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__20); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__21 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__21(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__21); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__22 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__22(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__22); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__23 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__23(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__23); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__24 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__24(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__24); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__25 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__25(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__25); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__26 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__26(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__26); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__27 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__27(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__27); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__28 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__28(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__28); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__29 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__29(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__29); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__30 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__30(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__30); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__31 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__31(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__31); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__32 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__32(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__32); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__33 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__33(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__33); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__34 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__34(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__34); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__35 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__35(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__35); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__36 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__36(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__36); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__37 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__37(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__37); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__38 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__38(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__38); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__39 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__39(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__39); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__40 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__40(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__40); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__41 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__41(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__41); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__42 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__42(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__42); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__43 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__43(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__43); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__44 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__44(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__44); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__45 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__45(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__45); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__46 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__46(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__46); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__47 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__47(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__47); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__48 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__48(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__48); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__49 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__49(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__49); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__50 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__50(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__50); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__51 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__51(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__51); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__52 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__52(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__52); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__53 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__53(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__53); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__54 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__54(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__54); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__55 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__55(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__55); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__56 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__56(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__56); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__57 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__57(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__57); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__58 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__58(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__58); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__59 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__59(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__59); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__60 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__60(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__60); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__61 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__61(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__61); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__62 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__62(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__62); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__63 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__63(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__63); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__64 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__64(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__64); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__65 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__65(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__65); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__66 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__66(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__66); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__67 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__67(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__67); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__68 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__68(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__68); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__69 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__69(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__69); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__70 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__70(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__70); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__71 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__71(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__71); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__72 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__72(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__72); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__73 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__73(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__73); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__74 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__74(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__74); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__75 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__75(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__75); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__76 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__76(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__76); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__77 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__77(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__77); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__78 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__78(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__78); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__79 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__79(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__79); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__80 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__80(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__80); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__81 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__81(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__81); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__82 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__82(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__82); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__83 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__83(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__83); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__84 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__84(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__84); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__85 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__85(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__85); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__86 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__86(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__86); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__87 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__87(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__87); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__88 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__88(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__88); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__89 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__89(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__89); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__90 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__90(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__90); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__91 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__91(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__91); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__92 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__92(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__92); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__93 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__93(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__93); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__94 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__94(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__94); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__95 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__95(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__95); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__96 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__96(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__96); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__97 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__97(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__97); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__98 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__98(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__98); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__99 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__99(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__99); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__100 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__100(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__100); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__101 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__101(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__101); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__102 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__102(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__102); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__103 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__103(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__103); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__104 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__104(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__104); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__105 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__105(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__105); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__106 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__106(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__106); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__107 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__107(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__107); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__108 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__108(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__108); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__109 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__109(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__109); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__110 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__110(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__110); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__111 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__111(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__111); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__112 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__112(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__112); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__113 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__113(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__113); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__114 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__114(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__114); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__115 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__115(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__115); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__116 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__116(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__116); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__117 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__117(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__117); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__118 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__118(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__118); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__119 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__119(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__119); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__120 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__120(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__120); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__121 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__121(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__121); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__122 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__122(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__122); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__123 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__123(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__123); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__124 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__124(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__124); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__125 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__125(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__125); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__126 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__126(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__126); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__127 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__127(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__127); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__128 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__128(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__128); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__129 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__129(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__129); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__130 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__130(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__130); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__131 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__131(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__131); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__132 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__132(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__132); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__133 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__133(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__133); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__134 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__134(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__134); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__135 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__135(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__135); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__136 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__136(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__136); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__137 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__137(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__137); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__138 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__138(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__138); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__139 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__139(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__139); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__140 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__140(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__140); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__141 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__141(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__141); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__142 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__142(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__142); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__143 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__143(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__143); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__144 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__144(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__144); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__145 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__145(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__145); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__146 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__146(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__146); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__147 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__147(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__147); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__148 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__148(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__148); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__149 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__149(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__149); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__150 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__150(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__150); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__151 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__151(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__151); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__152 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__152(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__152); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__153 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__153(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__153); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__154 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__154(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__154); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__155 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__155(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__155); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__156 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__156(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__156); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__157 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__157(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__157); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__158 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__158(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__158); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__159 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__159(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__159); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__160 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__160(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__160); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__161 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__161(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__161); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__162 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__162(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__162); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__163 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__163(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__163); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__164 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__164(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__164); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__165 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__165(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__165); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__166 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__166(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__166); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__167 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__167(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__167); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__168 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__168(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__168); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__169 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__169(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__169); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__170 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__170(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__170); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__171 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__171(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__171); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__172 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__172(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__172); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__173 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__173(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__173); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__174 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__174(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__174); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__175 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__175(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__175); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__176 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__176(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__176); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__177 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__177(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__177); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__178 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__178(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__178); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__179 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__179(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__179); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__180 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__180(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__180); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__181 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__181(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__181); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__182 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__182(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__182); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__183 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__183(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__183); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__184 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__184(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__184); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__185 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__185(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__185); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__186 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__186(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__186); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__187 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__187(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__187); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__188 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__188(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__188); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__189 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__189(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__189); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__190 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__190(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__190); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__191 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__191(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__191); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__192 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__192(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__192); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__193 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__193(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__193); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__194 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__194(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__194); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__195 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__195(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__195); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__196); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__197 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__197(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__197); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__198 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__198(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__198); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__199 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__199(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__199); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__200 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__200(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__200); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__201 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__201(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__201); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__202 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__202(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__202); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__203 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__203(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__203); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__204 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__204(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__204); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__205 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__205(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__205); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__206 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__206(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__206); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__207 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__207(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__207); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__208 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__208(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__208); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__209 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__209(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__209); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__210 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__210(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__210); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__211 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__211(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__211); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__212 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__212(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__212); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__213 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__213(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__213); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__214 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__214(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__214); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__215 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__215(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__215); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__216 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__216(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__216); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__217 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__217(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__217); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__218 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__218(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__218); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__219 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__219(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__219); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__220 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__220(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__220); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__221 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__221(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__221); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__222 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__222(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__222); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__223 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__223(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__223); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__224 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__224(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__224); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__225 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__225(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__225); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__226 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__226(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__226); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__227 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__227(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__227); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__228 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__228(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__228); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__229 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__229(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__229); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__230 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__230(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__230); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__231 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__231(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__231); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__232 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__232(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__232); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__233 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__233(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__233); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__234 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__234(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__234); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__235 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__235(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__235); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__236 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__236(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__236); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__237 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__237(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__237); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__238 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__238(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__238); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__239 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__239(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__239); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__240 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__240(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__240); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__241 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__241(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__241); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__242 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__242(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__242); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__243 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__243(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__243); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__244 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__244(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__244); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__245 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__245(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__245); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__246 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__246(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__246); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__247 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__247(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__247); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__248 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__248(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__248); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__249 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__249(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__249); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__250 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__250(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__250); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__251 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__251(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__251); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__252 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__252(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__252); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__253 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__253(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__253); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__254 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__254(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__254); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__255 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__255(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__255); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__256 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__256(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__256); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__257 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__257(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__257); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__258 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__258(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__258); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__259 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__259(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__259); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__260 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__260(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__260); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__261 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__261(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__261); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__262 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__262(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__262); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__263 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__263(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__263); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__264 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__264(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__264); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__265 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__265(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__265); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__266 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__266(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__266); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__267 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__267(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__267); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__268 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__268(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__268); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__269 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__269(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__269); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__270 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__270(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__270); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__271 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__271(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__271); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__272 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__272(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__272); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__273 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__273(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__273); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__274 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__274(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__274); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__275 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__275(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__275); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__276 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__276(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__276); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__277 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__277(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__277); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__278 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__278(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__278); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__279 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__279(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__279); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__280 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__280(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__280); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__281 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__281(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__281); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__282 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__282(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__282); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__283 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__283(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__283); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__284 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__284(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__284); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__285 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__285(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__285); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__286 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__286(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__286); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__287 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__287(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__287); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__288 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__288(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__288); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__289 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__289(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__289); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__290 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__290(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__290); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__291 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__291(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__291); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__292 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__292(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__292); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__293 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__293(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__293); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__294 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__294(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__294); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__295 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__295(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__295); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__296 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__296(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__296); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__297 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__297(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__297); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__298 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__298(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__298); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__299 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__299(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__299); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__300 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__300(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__300); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__301 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__301(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__301); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__302 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__302(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__302); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__303 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__303(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__303); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__304 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__304(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__304); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__305 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__305(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__305); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__306 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__306(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__306); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__307 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__307(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__307); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__308 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__308(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__308); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__309 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__309(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__309); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__310 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__310(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__310); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__311 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__311(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__311); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__312 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__312(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__312); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__313 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__313(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__313); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__314 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__314(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__314); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__315 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__315(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__315); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__316 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__316(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__316); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__317 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__317(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__317); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__318 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__318(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__318); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__319 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__319(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__319); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__320 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__320(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__320); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__321 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__321(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__321); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__322 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__322(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__322); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__323 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__323(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__323); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__324 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__324(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__324); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__325 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__325(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__325); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__326 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__326(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__326); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__327 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__327(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__327); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__328 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__328(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__328); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__329 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__329(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__329); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__330 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__330(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__330); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__331 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__331(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__331); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__332 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__332(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__332); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__333 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__333(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__333); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__334 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__334(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__334); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__335 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__335(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__335); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__336 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__336(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__336); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__337 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__337(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__337); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__338 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__338(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__338); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__339 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__339(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__339); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__340 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__340(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__340); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__341 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__341(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__341); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__342 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__342(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__342); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__343 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__343(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__343); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__344 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__344(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__344); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__345 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__345(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__345); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__346 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__346(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__346); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__347 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__347(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__347); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__348 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__348(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__348); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__349 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__349(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__349); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__350 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__350(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__350); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__351 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__351(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__351); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__352 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__352(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__352); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__353 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__353(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__353); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__354 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__354(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__354); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__355 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__355(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__355); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__356 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__356(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__356); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__357 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__357(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__357); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__358 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__358(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__358); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__359 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__359(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__359); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__360 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__360(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__360); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__361 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__361(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__361); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__362 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__362(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__362); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__363 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__363(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__363); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__364 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__364(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__364); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__365 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__365(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__365); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__366 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__366(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__366); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__367 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__367(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__367); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__368 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__368(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__368); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__369 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__369(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__369); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__370 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__370(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__370); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__371 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__371(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__371); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__372 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__372(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__372); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__373 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__373(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__373); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__374 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__374(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__374); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__375 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__375(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__375); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__376 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__376(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__376); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__377 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__377(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__377); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__378 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__378(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__378); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__379 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__379(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__379); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__380 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__380(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__380); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__381 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__381(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__381); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__382 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__382(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__382); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__383 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__383(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__383); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__384 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__384(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__384); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__385 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__385(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__385); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__386 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__386(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__386); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__387 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__387(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__387); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__388 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__388(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__388); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__389 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__389(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__389); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__390 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__390(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__390); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__391 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__391(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__391); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__392 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__392(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__392); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__393 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__393(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__393); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__394 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__394(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__394); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__395 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__395(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__395); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__396 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__396(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__396); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__397 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__397(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__397); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__398 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__398(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__398); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__399 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__399(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__399); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__400 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__400(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__400); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__401 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__401(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__401); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__402 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__402(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__402); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__403 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__403(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__403); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__404 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__404(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__404); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__405 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__405(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__405); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__406 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__406(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__406); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__407 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__407(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__407); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__408 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__408(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__408); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__409 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__409(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__409); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__410 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__410(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__410); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__411 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__411(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__411); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__412 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__412(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__412); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__413 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__413(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__413); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__414 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__414(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__414); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__415 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__415(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__415); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__416 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__416(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__416); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__417 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__417(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__417); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__418 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__418(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__418); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__419 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__419(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__419); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__420 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__420(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__420); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__421 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__421(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__421); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__422 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__422(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__422); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__423 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__423(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__423); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__424 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__424(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__424); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__425 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__425(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__425); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__426 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__426(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__426); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__427 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__427(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__427); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__428 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__428(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__428); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__429 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__429(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__429); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__430 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__430(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__430); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__431 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__431(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__431); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__432 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__432(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__432); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__433 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__433(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__433); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__434 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__434(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__434); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__435 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__435(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__435); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__436 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__436(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__436); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__437 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__437(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__437); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__438 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__438(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__438); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__439 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__439(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__439); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__440 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__440(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__440); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__441 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__441(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__441); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__442 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__442(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__442); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__443 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__443(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__443); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__444 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__444(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__444); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__445 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__445(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__445); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__446 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__446(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__446); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__447 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__447(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__447); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__448 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__448(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__448); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__449 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__449(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__449); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__450 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__450(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__450); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__451 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__451(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__451); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__452 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__452(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__452); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__453 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__453(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__453); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__454 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__454(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__454); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__455 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__455(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__455); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__456 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__456(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__456); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__457 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__457(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__457); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__458 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__458(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__458); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__459 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__459(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__459); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__460 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__460(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__460); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__461 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__461(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__461); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__462 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__462(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__462); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__463 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__463(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__463); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__464 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__464(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__464); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__465 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__465(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__465); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__466 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__466(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__466); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__467 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__467(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__467); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__468 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__468(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__468); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__469 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__469(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__469); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__470 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__470(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__470); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__471 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__471(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__471); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__472 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__472(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__472); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__473 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__473(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__473); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__474 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__474(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__474); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__475 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__475(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__475); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__476 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__476(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__476); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__477 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__477(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__477); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__478 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__478(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__478); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__479 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__479(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__479); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__480 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__480(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__480); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__481 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__481(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__481); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__482 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__482(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__482); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__483 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__483(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__483); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__484 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__484(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__484); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__485 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__485(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__485); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__486 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__486(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__486); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__487 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__487(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__487); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__488 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__488(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__488); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__489 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__489(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__489); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__490 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__490(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__490); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__491 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__491(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__491); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__492 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__492(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__492); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__493 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__493(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__493); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__494 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__494(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__494); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__495 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__495(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__495); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__496 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__496(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__496); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__497 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__497(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__497); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__498 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__498(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__498); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__499 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__499(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__499); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__500 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__500(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__500); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__501 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__501(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__501); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__502 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__502(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__502); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__503 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__503(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__503); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__504 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__504(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__504); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__505 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__505(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__505); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__506 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__506(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__506); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__507 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__507(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__507); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__508 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__508(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__508); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__509 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__509(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__509); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__510 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__510(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__510); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__511 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__511(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__511); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__512 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__512(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__512); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__513 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__513(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__513); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__514 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__514(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__514); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__515 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__515(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__515); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__516 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__516(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__516); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__517 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__517(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__517); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__518 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__518(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__518); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__519 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__519(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__519); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__520 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__520(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__520); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__521 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__521(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__521); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__522 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__522(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__522); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__523 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__523(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__523); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__524 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__524(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__524); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__525 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__525(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__525); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__526 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__526(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__526); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__527 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__527(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__527); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__528 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__528(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__528); -l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__529 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__529(); -lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems____1___closed__529); -l_UInt8_instInhabited = _init_l_UInt8_instInhabited(); -l_UInt16_instInhabited = _init_l_UInt16_instInhabited(); -l_UInt32_instInhabited = _init_l_UInt32_instInhabited(); -l_UInt64_instInhabited = _init_l_UInt64_instInhabited(); -l_USize_instInhabited = _init_l_USize_instInhabited(); +l_commandDeclare__uint__theorems_______closed__1 = _init_l_commandDeclare__uint__theorems_______closed__1(); +lean_mark_persistent(l_commandDeclare__uint__theorems_______closed__1); +l_commandDeclare__uint__theorems_______closed__2 = _init_l_commandDeclare__uint__theorems_______closed__2(); +lean_mark_persistent(l_commandDeclare__uint__theorems_______closed__2); +l_commandDeclare__uint__theorems_______closed__3 = _init_l_commandDeclare__uint__theorems_______closed__3(); +lean_mark_persistent(l_commandDeclare__uint__theorems_______closed__3); +l_commandDeclare__uint__theorems_______closed__4 = _init_l_commandDeclare__uint__theorems_______closed__4(); +lean_mark_persistent(l_commandDeclare__uint__theorems_______closed__4); +l_commandDeclare__uint__theorems_______closed__5 = _init_l_commandDeclare__uint__theorems_______closed__5(); +lean_mark_persistent(l_commandDeclare__uint__theorems_______closed__5); +l_commandDeclare__uint__theorems_______closed__6 = _init_l_commandDeclare__uint__theorems_______closed__6(); +lean_mark_persistent(l_commandDeclare__uint__theorems_______closed__6); +l_commandDeclare__uint__theorems_______closed__7 = _init_l_commandDeclare__uint__theorems_______closed__7(); +lean_mark_persistent(l_commandDeclare__uint__theorems_______closed__7); +l_commandDeclare__uint__theorems_______closed__8 = _init_l_commandDeclare__uint__theorems_______closed__8(); +lean_mark_persistent(l_commandDeclare__uint__theorems_______closed__8); +l_commandDeclare__uint__theorems_______closed__9 = _init_l_commandDeclare__uint__theorems_______closed__9(); +lean_mark_persistent(l_commandDeclare__uint__theorems_______closed__9); +l_commandDeclare__uint__theorems_______closed__10 = _init_l_commandDeclare__uint__theorems_______closed__10(); +lean_mark_persistent(l_commandDeclare__uint__theorems_______closed__10); +l_commandDeclare__uint__theorems_______closed__11 = _init_l_commandDeclare__uint__theorems_______closed__11(); +lean_mark_persistent(l_commandDeclare__uint__theorems_______closed__11); +l_commandDeclare__uint__theorems_______closed__12 = _init_l_commandDeclare__uint__theorems_______closed__12(); +lean_mark_persistent(l_commandDeclare__uint__theorems_______closed__12); +l_commandDeclare__uint__theorems_______closed__13 = _init_l_commandDeclare__uint__theorems_______closed__13(); +lean_mark_persistent(l_commandDeclare__uint__theorems_______closed__13); +l_commandDeclare__uint__theorems_______closed__14 = _init_l_commandDeclare__uint__theorems_______closed__14(); +lean_mark_persistent(l_commandDeclare__uint__theorems_______closed__14); +l_commandDeclare__uint__theorems_______closed__15 = _init_l_commandDeclare__uint__theorems_______closed__15(); +lean_mark_persistent(l_commandDeclare__uint__theorems_______closed__15); +l_commandDeclare__uint__theorems____ = _init_l_commandDeclare__uint__theorems____(); +lean_mark_persistent(l_commandDeclare__uint__theorems____); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__1); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__2); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__3 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__3(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__3); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__4 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__4(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__4); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__5 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__5(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__1___closed__5); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__1 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__1(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__1); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__2 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__2(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__2); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__3 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__3(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__3); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__4 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__4(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__4); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__5 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__5(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__5); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__6 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__6(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__6); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__7 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__7(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__7); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__8 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__8(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__8); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__9 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__9(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__9); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__10 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__10(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__10); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__11 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__11(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__11); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__12 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__12(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__12); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__13 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__13(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__13); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__14 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__14(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__14); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__15 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__15(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__15); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__16 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__16(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__16); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__17 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__17(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__17); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__18 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__18(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__2___closed__18); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__1 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__1(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__1); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__2 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__2(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__2); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__3 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__3(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__3); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__4 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__4(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__4); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__5 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__5(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__5); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__6 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__6(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__6); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__7 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__7(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__7); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__8 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__8(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__8); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__9 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__9(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__9); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__10 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__10(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__10); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__11 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__11(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__11); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__12 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__12(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__12); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__13 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__13(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__13); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__14 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__14(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__14); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__15 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__15(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__15); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__16 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__16(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__3___closed__16); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__1 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__1(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__1); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__2 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__2(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__2); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__3 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__3(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__3); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__4 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__4(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__4); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__5 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__5(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__5); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__6 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__6(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__6); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__7 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__7(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__7); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__8 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__8(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__4___closed__8); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__1 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__1(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__1); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__2 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__2(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__2); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__3 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__3(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__3); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__4 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__4(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__4); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__5 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__5(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__5); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__6 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__6(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__6); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__7 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__7(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__7); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__8 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__8(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___lambda__5___closed__8); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__1 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__1(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__1); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__2 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__2(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__2); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__3 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__3(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__3); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__4 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__4(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__4); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__5 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__5(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__5); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__6 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__6(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__6); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__7 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__7(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__7); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__8 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__8(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__8); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__9 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__9(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__9); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__10 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__10(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__10); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__11 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__11(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__11); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__12 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__12(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__12); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__13 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__13(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__13); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__14 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__14(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__14); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__15 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__15(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__15); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__16 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__16(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__16); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__17 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__17(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__17); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__18); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__19 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__19(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__19); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__20 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__20(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__20); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__21 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__21(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__21); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__22 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__22(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__22); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__23 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__23(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__23); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__24 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__24(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__24); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__25 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__25(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__25); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__26 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__26(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__26); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__27 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__27(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__27); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__28 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__28(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__28); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__29 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__29(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__29); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__30 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__30(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__30); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__31 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__31(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__31); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__32 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__32(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__32); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__33 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__33(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__33); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__34 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__34(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__34); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__35 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__35(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__35); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__36 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__36(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__36); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__37 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__37(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__37); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__38 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__38(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__38); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__39 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__39(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__39); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__40 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__40(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__40); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__41 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__41(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__41); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__42 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__42(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__42); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__43 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__43(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__43); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__44 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__44(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__44); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__45 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__45(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__45); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__46 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__46(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__46); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__47 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__47(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__47); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__48 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__48(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__48); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__49 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__49(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__49); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__50 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__50(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__50); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__51 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__51(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__51); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__52 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__52(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__52); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__53 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__53(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__53); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__54 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__54(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__54); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__55 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__55(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__55); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__56 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__56(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__56); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__57 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__57(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__57); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__58 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__58(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__58); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__59 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__59(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__59); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__60 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__60(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__60); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__61 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__61(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__61); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__62 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__62(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__62); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__63 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__63(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__63); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__64 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__64(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__64); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__65 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__65(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__65); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__66 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__66(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__66); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__67 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__67(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__67); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__68 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__68(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__68); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__69 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__69(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__69); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__70 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__70(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__70); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__71 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__71(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__71); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__72 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__72(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__72); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__73 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__73(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__73); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__74 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__74(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__74); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__75 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__75(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__75); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__76 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__76(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__76); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__77 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__77(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__77); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__78 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__78(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__78); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__79 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__79(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__79); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__80 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__80(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__80); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__81 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__81(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__81); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__82 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__82(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__82); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__83 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__83(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__83); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__84 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__84(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__84); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__85 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__85(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__85); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__86 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__86(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__86); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__87 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__87(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__87); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__88 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__88(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__88); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__89 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__89(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__89); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__90 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__90(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__90); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__91 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__91(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__91); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__92 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__92(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__92); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__93 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__93(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__93); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__94 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__94(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__94); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__95 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__95(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__95); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__96 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__96(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__96); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__97 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__97(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__97); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__98 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__98(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__98); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__99 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__99(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__99); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__100 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__100(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__100); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__101 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__101(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__101); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__102 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__102(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__102); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__103 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__103(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__103); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__104 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__104(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__104); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__105 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__105(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__105); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__106 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__106(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__106); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__107 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__107(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__107); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__108 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__108(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__108); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__109 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__109(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__109); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__110 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__110(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__110); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__111 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__111(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__111); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__112 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__112(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__112); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__113 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__113(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__113); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__114 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__114(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__114); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__115 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__115(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__115); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__116 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__116(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__116); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__117 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__117(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__117); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__118 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__118(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__118); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__119 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__119(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__119); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__120 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__120(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__120); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__121 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__121(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__121); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__122 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__122(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__122); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__123 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__123(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__123); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__124 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__124(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__124); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__125 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__125(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__125); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__126 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__126(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__126); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__127 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__127(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__127); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__128 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__128(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__128); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__129 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__129(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__129); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__130 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__130(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__130); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__131 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__131(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__131); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__132 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__132(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__132); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__133 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__133(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__133); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__134 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__134(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__134); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__135 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__135(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__135); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__136 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__136(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__136); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__137 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__137(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__137); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__138 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__138(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__138); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__139 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__139(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__139); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__140 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__140(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__140); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__141 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__141(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__141); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__142 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__142(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__142); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__143 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__143(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__143); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__144 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__144(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__144); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__145 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__145(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__145); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__146 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__146(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__146); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__147 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__147(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__147); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__148 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__148(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__148); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__149 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__149(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__149); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__150 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__150(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__150); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__151 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__151(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__151); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__152 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__152(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__152); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__153 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__153(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__153); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__154 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__154(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__154); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__155 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__155(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__155); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__156 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__156(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__156); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__157 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__157(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__157); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__158 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__158(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__158); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__159 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__159(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__159); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__160 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__160(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__160); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__161 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__161(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__161); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__162 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__162(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__162); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__163 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__163(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__163); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__164 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__164(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__164); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__165 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__165(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__165); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__166 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__166(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__166); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__167 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__167(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__167); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__168 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__168(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__168); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__169 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__169(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__169); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__170 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__170(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__170); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__171 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__171(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__171); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__172 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__172(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__172); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__173 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__173(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__173); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__174 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__174(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__174); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__175 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__175(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__175); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__176 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__176(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__176); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__177 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__177(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__177); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__178 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__178(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__178); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__179 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__179(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__179); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__180 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__180(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__180); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__181 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__181(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__181); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__182 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__182(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__182); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__183 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__183(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__183); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__184 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__184(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__184); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__185 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__185(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__185); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__186 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__186(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__186); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__187 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__187(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__187); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__188 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__188(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__188); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__189 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__189(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__189); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__190 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__190(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__190); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__191 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__191(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__191); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__192 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__192(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__192); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__193 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__193(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__193); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__194 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__194(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__194); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__195 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__195(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__195); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__196 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__196(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__196); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__197 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__197(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__197); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__198 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__198(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__198); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__199 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__199(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__199); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__200 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__200(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__200); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__201 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__201(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__201); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__202 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__202(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__202); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__203 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__203(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__203); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__204 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__204(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__204); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__205 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__205(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__205); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__206 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__206(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__206); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__207 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__207(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__207); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__208 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__208(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__208); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__209); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__210 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__210(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__210); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__211 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__211(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__211); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__212 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__212(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__212); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__213 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__213(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__213); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__214 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__214(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__214); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__215 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__215(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__215); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__216 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__216(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__216); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__217 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__217(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__217); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__218 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__218(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__218); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__219 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__219(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__219); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__220 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__220(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__220); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__221 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__221(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__221); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__222 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__222(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__222); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__223 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__223(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__223); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__224 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__224(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__224); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__225 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__225(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__225); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__226 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__226(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__226); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__227 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__227(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__227); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__228 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__228(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__228); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__229 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__229(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__229); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__230 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__230(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__230); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__231 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__231(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__231); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__232 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__232(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__232); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__233 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__233(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__233); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__234 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__234(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__234); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__235 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__235(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__235); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__236 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__236(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__236); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__237 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__237(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__237); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__238 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__238(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__238); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__239 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__239(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__239); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__240 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__240(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__240); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__241 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__241(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__241); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__242 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__242(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__242); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__243 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__243(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__243); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__244 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__244(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__244); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__245 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__245(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__245); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__246 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__246(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__246); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__247 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__247(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__247); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__248 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__248(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__248); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__249 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__249(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__249); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__250 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__250(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__250); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__251 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__251(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__251); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__252 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__252(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__252); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__253 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__253(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__253); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__254 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__254(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__254); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__255 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__255(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__255); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__256 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__256(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__256); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__257 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__257(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__257); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__258 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__258(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__258); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__259 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__259(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__259); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__260 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__260(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__260); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__261 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__261(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__261); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__262 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__262(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__262); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__263 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__263(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__263); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__264 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__264(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__264); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__265 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__265(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__265); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__266 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__266(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__266); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__267 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__267(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__267); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__268 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__268(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__268); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__269 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__269(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__269); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__270 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__270(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__270); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__271 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__271(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__271); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__272 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__272(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__272); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__273 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__273(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__273); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__274 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__274(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__274); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__275 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__275(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__275); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__276 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__276(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__276); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__277 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__277(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__277); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__278 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__278(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__278); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__279 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__279(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__279); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__280 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__280(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__280); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__281 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__281(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__281); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__282 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__282(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__282); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__283 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__283(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__283); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__284 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__284(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__284); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__285 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__285(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__285); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__286 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__286(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__286); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__287 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__287(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__287); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__288 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__288(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__288); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__289 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__289(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__289); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__290 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__290(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__290); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__291 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__291(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__291); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__292 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__292(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__292); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__293 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__293(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__293); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__294 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__294(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__294); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__295 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__295(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__295); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__296 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__296(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__296); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__297 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__297(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__297); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__298 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__298(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__298); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__299 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__299(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__299); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__300 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__300(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__300); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__301 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__301(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__301); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__302 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__302(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__302); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__303 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__303(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__303); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__304 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__304(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__304); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__305 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__305(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__305); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__306 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__306(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__306); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__307 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__307(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__307); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__308 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__308(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__308); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__309 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__309(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__309); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__310 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__310(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__310); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__311 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__311(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__311); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__312 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__312(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__312); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__313 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__313(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__313); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__314 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__314(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__314); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__315 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__315(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__315); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__316 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__316(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__316); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__317 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__317(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__317); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__318 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__318(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__318); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__319 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__319(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__319); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__320 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__320(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__320); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__321 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__321(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__321); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__322 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__322(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__322); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__323 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__323(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__323); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__324 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__324(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__324); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__325 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__325(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__325); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__326 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__326(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__326); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__327 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__327(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__327); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__328 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__328(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__328); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__329 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__329(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__329); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__330 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__330(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__330); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__331 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__331(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__331); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__332 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__332(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__332); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__333 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__333(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__333); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__334 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__334(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__334); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__335 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__335(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__335); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__336 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__336(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__336); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__337 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__337(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__337); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__338 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__338(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__338); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__339 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__339(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__339); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__340 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__340(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__340); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__341 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__341(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__341); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__342 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__342(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__342); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__343 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__343(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__343); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__344 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__344(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__344); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__345 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__345(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__345); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__346 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__346(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__346); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__347 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__347(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__347); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__348 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__348(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__348); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__349 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__349(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__349); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__350 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__350(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__350); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__351 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__351(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__351); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__352 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__352(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__352); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__353 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__353(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__353); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__354 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__354(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__354); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__355 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__355(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__355); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__356 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__356(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__356); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__357 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__357(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__357); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__358 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__358(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__358); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__359 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__359(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__359); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__360 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__360(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__360); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__361 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__361(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__361); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__362 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__362(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__362); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__363 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__363(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__363); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__364 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__364(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__364); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__365 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__365(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__365); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__366 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__366(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__366); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__367 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__367(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__367); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__368 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__368(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__368); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__369 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__369(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__369); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__370 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__370(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__370); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__371 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__371(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__371); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__372 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__372(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__372); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__373 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__373(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__373); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__374 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__374(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__374); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__375 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__375(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__375); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__376 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__376(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__376); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__377 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__377(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__377); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__378 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__378(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__378); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__379 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__379(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__379); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__380 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__380(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__380); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__381 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__381(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__381); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__382 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__382(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__382); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__383 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__383(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__383); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__384 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__384(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__384); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__385 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__385(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__385); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__386 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__386(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__386); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__387 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__387(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__387); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__388 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__388(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__388); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__389 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__389(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__389); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__390 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__390(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__390); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__391 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__391(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__391); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__392 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__392(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__392); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__393 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__393(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__393); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__394 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__394(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__394); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__395 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__395(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__395); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__396 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__396(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__396); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__397 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__397(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__397); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__398 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__398(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__398); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__399 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__399(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__399); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__400 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__400(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__400); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__401 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__401(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__401); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__402 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__402(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__402); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__403 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__403(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__403); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__404 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__404(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__404); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__405 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__405(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__405); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__406 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__406(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__406); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__407 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__407(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__407); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__408 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__408(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__408); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__409 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__409(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__409); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__410 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__410(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__410); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__411 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__411(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__411); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__412 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__412(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__412); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__413 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__413(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__413); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__414 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__414(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__414); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__415 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__415(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__415); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__416 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__416(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__416); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__417 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__417(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__417); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__418 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__418(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__418); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__419 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__419(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__419); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__420 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__420(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__420); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__421 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__421(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__421); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__422 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__422(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__422); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__423 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__423(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__423); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__424 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__424(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__424); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__425 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__425(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__425); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__426 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__426(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__426); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__427 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__427(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__427); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__428 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__428(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__428); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__429 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__429(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__429); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__430 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__430(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__430); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__431 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__431(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__431); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__432 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__432(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__432); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__433 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__433(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__433); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__434 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__434(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__434); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__435 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__435(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__435); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__436 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__436(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__436); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__437 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__437(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__437); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__438 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__438(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__438); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__439 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__439(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__439); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__440 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__440(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__440); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__441 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__441(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__441); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__442 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__442(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__442); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__443 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__443(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__443); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__444 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__444(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__444); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__445 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__445(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__445); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__446 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__446(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__446); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__447 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__447(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__447); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__448 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__448(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__448); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__449 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__449(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__449); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__450 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__450(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__450); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__451 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__451(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__451); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__452 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__452(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__452); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__453 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__453(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__453); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__454 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__454(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__454); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__455 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__455(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__455); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__456 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__456(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__456); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__457 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__457(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__457); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__458 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__458(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__458); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__459 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__459(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__459); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__460 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__460(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__460); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__461 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__461(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__461); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__462 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__462(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__462); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__463 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__463(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__463); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__464 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__464(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__464); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__465 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__465(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__465); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__466 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__466(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__466); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__467 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__467(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__467); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__468 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__468(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__468); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__469 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__469(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__469); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__470 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__470(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__470); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__471 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__471(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__471); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__472 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__472(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__472); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__473 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__473(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__473); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__474 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__474(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__474); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__475 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__475(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__475); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__476 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__476(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__476); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__477 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__477(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__477); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__478 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__478(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__478); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__479 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__479(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__479); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__480 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__480(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__480); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__481 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__481(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__481); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__482 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__482(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__482); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__483 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__483(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__483); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__484 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__484(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__484); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__485 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__485(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__485); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__486 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__486(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__486); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__487 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__487(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__487); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__488 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__488(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__488); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__489 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__489(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__489); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__490 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__490(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__490); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__491 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__491(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__491); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__492 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__492(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__492); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__493 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__493(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__493); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__494 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__494(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__494); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__495 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__495(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__495); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__496 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__496(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__496); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__497 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__497(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__497); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__498 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__498(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__498); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__499 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__499(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__499); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__500 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__500(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__500); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__501 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__501(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__501); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__502 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__502(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__502); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__503 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__503(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__503); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__504 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__504(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__504); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__505 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__505(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__505); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__506 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__506(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__506); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__507 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__507(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__507); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__508 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__508(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__508); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__509 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__509(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__509); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__510 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__510(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__510); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__511 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__511(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__511); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__512 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__512(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__512); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__513 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__513(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__513); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__514 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__514(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__514); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__515 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__515(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__515); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__516 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__516(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__516); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__517 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__517(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__517); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__518 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__518(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__518); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__519 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__519(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__519); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__520 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__520(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__520); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__521 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__521(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__521); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__522 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__522(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__522); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__523 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__523(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__523); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__524 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__524(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__524); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__525 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__525(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__525); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__526 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__526(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__526); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__527 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__527(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__527); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__528 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__528(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__528); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__529 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__529(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__529); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__530 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__530(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__530); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__531 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__531(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__531); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__532 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__532(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__532); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__533 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__533(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__533); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__534 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__534(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__534); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__535 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__535(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__535); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__536 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__536(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__536); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__537 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__537(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__537); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__538 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__538(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__538); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__539 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__539(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__539); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__540 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__540(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__540); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__541 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__541(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__541); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__542 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__542(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__542); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__543 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__543(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__543); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__544 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__544(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__544); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__545 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__545(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__545); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__546 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__546(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__546); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__547 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__547(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__547); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__548 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__548(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__548); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__549 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__549(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__549); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__550 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__550(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__550); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__551 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__551(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__551); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__552 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__552(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__552); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__553 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__553(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__553); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__554 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__554(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__554); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__555 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__555(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__555); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__556 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__556(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__556); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__557 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__557(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__557); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__558 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__558(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__558); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__559 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__559(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__559); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__560 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__560(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__560); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__561 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__561(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__561); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__562 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__562(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__562); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__563 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__563(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__563); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__564 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__564(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__564); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__565 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__565(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__565); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__566 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__566(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__566); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__567 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__567(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__567); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__568 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__568(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__568); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__569 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__569(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__569); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__570 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__570(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__570); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__571 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__571(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__571); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__572 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__572(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__572); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__573 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__573(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__573); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__574 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__574(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__574); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__575 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__575(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__575); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__576 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__576(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__576); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__577 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__577(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__577); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__578 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__578(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__578); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__579 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__579(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__579); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__580 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__580(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__580); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__581 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__581(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__581); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__582 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__582(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__582); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__583 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__583(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__583); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__584 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__584(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__584); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__585 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__585(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__585); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__586 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__586(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__586); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__587 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__587(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__587); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__588 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__588(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__588); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__589 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__589(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__589); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__590 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__590(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__590); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__591 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__591(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__591); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__592 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__592(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__592); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__593 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__593(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__593); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__594 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__594(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__594); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__595 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__595(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__595); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__596 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__596(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__596); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__597 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__597(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__597); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__598 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__598(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__598); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__599 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__599(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__599); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__600 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__600(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__600); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__601 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__601(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__601); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__602 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__602(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__602); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__603 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__603(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__603); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__604 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__604(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__604); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__605 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__605(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__605); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__606 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__606(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__606); +l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__607 = _init_l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__607(); +lean_mark_persistent(l___aux__Init__Data__UInt__Lemmas______macroRules__commandDeclare__uint__theorems______1___closed__607); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/System/IO.c b/stage0/stdlib/Init/System/IO.c index feef4bb9ee..10196c791c 100644 --- a/stage0/stdlib/Init/System/IO.c +++ b/stage0/stdlib/Init/System/IO.c @@ -75,6 +75,7 @@ static lean_object* l___private_Init_System_IO_0__IO_FS_reprDirEntry____x40_Init LEAN_EXPORT lean_object* l_IO_println(lean_object*); lean_object* lean_io_prim_handle_read(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_readFile___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Runtime_markPersistent___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_System_IO_0__IO_reprTaskState____x40_Init_System_IO___hyg_1242____closed__17; lean_object* lean_io_check_canceled(lean_object*); static lean_object* l___private_Init_System_IO_0__IO_reprTaskState____x40_Init_System_IO___hyg_1242____closed__16; @@ -343,6 +344,7 @@ LEAN_EXPORT uint8_t l___private_Init_System_IO_0__IO_ordTaskState____x40_Init_Sy lean_object* lean_st_mk_ref(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_ofBuffer___lambda__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_mk___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Runtime_markMultiThreaded___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Handle_isTty___boxed(lean_object*, lean_object*); static lean_object* l___auto____x40_Init_System_IO___hyg_1713____closed__38; LEAN_EXPORT lean_object* l_IO_print(lean_object*); @@ -384,6 +386,7 @@ lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); static lean_object* l___auto____x40_Init_System_IO___hyg_1713____closed__30; static lean_object* l___private_Init_System_IO_0__IO_FS_reprMetadata____x40_Init_System_IO___hyg_3089____closed__4; LEAN_EXPORT lean_object* l_IO_instMaxTaskState___boxed(lean_object*, lean_object*); +lean_object* lean_runtime_mark_multi_threaded(lean_object*, lean_object*); lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___rarg___lambda__4(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_withIsolatedStreams___rarg___lambda__1(lean_object*, lean_object*, lean_object*); @@ -681,6 +684,7 @@ static lean_object* l___private_Init_System_IO_0__IO_reprTaskState____x40_Init_S LEAN_EXPORT lean_object* l_IO_sleep___lambda__1___boxed(lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instMonadLiftBaseIOEIO(lean_object*, lean_object*); +lean_object* lean_runtime_mark_persistent(lean_object*, lean_object*); static lean_object* l___private_Init_System_IO_0__IO_FS_reprFileType____x40_Init_System_IO___hyg_2649____closed__7; lean_object* lean_io_get_random_bytes(size_t, lean_object*); lean_object* lean_io_process_get_pid(lean_object*); @@ -5821,12 +5825,12 @@ return x_1; static lean_object* _init_l_IO_FS_instInhabitedSystemTime___closed__1() { _start: { -uint32_t x_1; lean_object* x_2; lean_object* x_3; -x_1 = 0; -x_2 = l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2835____closed__6; +lean_object* x_1; uint32_t x_2; lean_object* x_3; +x_1 = l___private_Init_System_IO_0__IO_FS_reprSystemTime____x40_Init_System_IO___hyg_2835____closed__6; +x_2 = l_IO_FS_instInhabitedStream___lambda__1___closed__1; x_3 = lean_alloc_ctor(0, 1, 4); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set_uint32(x_3, sizeof(void*)*1, x_1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint32(x_3, sizeof(void*)*1, x_2); return x_3; } } @@ -11588,6 +11592,22 @@ return x_89; } } } +LEAN_EXPORT lean_object* l_Runtime_markMultiThreaded___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = lean_runtime_mark_multi_threaded(x_2, x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Runtime_markPersistent___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = lean_runtime_mark_persistent(x_2, x_3); +return x_4; +} +} lean_object* initialize_Init_System_IOError(uint8_t builtin, lean_object*); lean_object* initialize_Init_System_FilePath(uint8_t builtin, lean_object*); lean_object* initialize_Init_System_ST(uint8_t builtin, lean_object*); diff --git a/stage0/stdlib/Init/Util.c b/stage0/stdlib/Init/Util.c index 2d58aa1274..ca350d0768 100644 --- a/stage0/stdlib/Init/Util.c +++ b/stage0/stdlib/Init/Util.c @@ -14,7 +14,6 @@ extern "C" { #endif LEAN_EXPORT lean_object* l_dbgSleep___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Runtime_markPersistent___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Util_0__mkPanicMessage___closed__3; uint8_t lean_usize_dec_eq(size_t, size_t); @@ -37,12 +36,10 @@ uint8_t lean_is_exclusive_obj(lean_object*); lean_object* l_panic___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_withPtrEqUnsafe___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_ptrEq(lean_object*); -LEAN_EXPORT lean_object* l_Runtime_markMultiThreaded___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_isExclusiveUnsafe___boxed(lean_object*, lean_object*); static lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl___closed__1; LEAN_EXPORT lean_object* l_panicWithPosWithDecl___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_ptrEqList(lean_object*); -lean_object* lean_runtime_mark_multi_threaded(lean_object*); LEAN_EXPORT lean_object* l_dbgTraceVal___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Util_0__mkPanicMessage___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_dbgTrace___boxed(lean_object*, lean_object*, lean_object*); @@ -59,7 +56,6 @@ LEAN_EXPORT lean_object* l_dbgTraceIfShared___boxed(lean_object*, lean_object*, LEAN_EXPORT lean_object* l_withPtrEqDecEq___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_withPtrAddrUnsafe(lean_object*, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); -lean_object* lean_runtime_mark_persistent(lean_object*); LEAN_EXPORT lean_object* l_dbgTraceVal___rarg___lambda__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_ptrAddrUnsafe___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_withPtrEqDecEq(lean_object*); @@ -521,22 +517,6 @@ lean_dec(x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Runtime_markMultiThreaded___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = lean_runtime_mark_multi_threaded(x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Runtime_markPersistent___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = lean_runtime_mark_persistent(x_2); -return x_3; -} -} lean_object* initialize_Init_Data_String_Basic(uint8_t builtin, lean_object*); lean_object* initialize_Init_Data_ToString_Basic(uint8_t builtin, lean_object*); static bool _G_initialized = false; diff --git a/stage0/stdlib/Lake/Load/Materialize.c b/stage0/stdlib/Lake/Load/Materialize.c index 239f0badff..0a2068caf6 100644 --- a/stage0/stdlib/Lake/Load/Materialize.c +++ b/stage0/stdlib/Lake/Load/Materialize.c @@ -2916,7 +2916,7 @@ static lean_object* _init_l_Lake_Dependency_materialize___lambda__3___closed__8( _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("' (should be \"git#>rev>\")", 25, 25); +x_1 = lean_mk_string_unchecked("' (should be \"git#\")", 25, 25); return x_1; } } diff --git a/stage0/stdlib/Lean/AddDecl.c b/stage0/stdlib/Lean/AddDecl.c index 2f1cf310c1..8940990341 100644 --- a/stage0/stdlib/Lean/AddDecl.c +++ b/stage0/stdlib/Lean/AddDecl.c @@ -18,7 +18,6 @@ LEAN_EXPORT lean_object* l_Lean_addDecl___lambda__3___boxed(lean_object*, lean_o static lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___closed__1; LEAN_EXPORT lean_object* l_Lean_addDecl___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static double l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2___closed__1; -extern lean_object* l_Lean_profiler; lean_object* l_Lean_Core_getMaxHeartbeats(lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_add_decl(lean_object*, size_t, lean_object*, lean_object*); @@ -38,7 +37,7 @@ lean_object* lean_io_get_num_heartbeats(lean_object*); extern lean_object* l_Lean_trace_profiler_useHeartbeats; lean_object* l_Lean_stringToMessageData(lean_object*); static lean_object* l_Lean_addDecl___lambda__3___closed__2; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_compileDecl(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_initFn____x40_Lean_AddDecl___hyg_5____closed__4; @@ -86,7 +85,7 @@ lean_object* lean_add_decl_without_checking(lean_object*, lean_object*); static lean_object* l_Lean_initFn____x40_Lean_AddDecl___hyg_5____closed__5; static lean_object* l_Lean_initFn____x40_Lean_AddDecl___hyg_5____closed__1; static lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___closed__2; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addDecl___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Declaration_foldExprM___at_Lean_Declaration_hasSorry___spec__1(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_addDecl___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -94,7 +93,6 @@ static double l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___clo LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Environment_addAndCompile___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_profileitM___at_Lean_addDecl___spec__6(lean_object*); -static lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2___closed__2; extern lean_object* l_Lean_trace_profiler; lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_isTracingEnabledFor___at_Lean_Core_wrapAsyncAsSnapshot___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); @@ -102,7 +100,7 @@ static lean_object* l_Lean_addDecl___closed__4; lean_object* l_Lean_setEnv___at_Lean_compileDecl___spec__11(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_addDecl___closed__5; static lean_object* l_Lean_addDecl___lambda__3___closed__1; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addAndCompile(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_addDecl___spec__5(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_initFn____x40_Lean_AddDecl___hyg_5____closed__3; @@ -110,7 +108,7 @@ lean_object* l_Lean_KernelException_toMessageData(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_addDecl___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3___closed__1; LEAN_EXPORT lean_object* l_Lean_addDecl(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); double lean_float_sub(double, double); lean_object* l_Lean_Option_register___at_Lean_initFn____x40_Lean_Util_Profile___hyg_5____spec__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -414,69 +412,36 @@ x_3 = l_Float_ofScientific(x_1, x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2___closed__2() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2___closed__1; +x_15 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_15, 0, x_1); +lean_ctor_set(x_15, 1, x_3); +lean_ctor_set_float(x_15, sizeof(void*)*2, x_14); +lean_ctor_set_float(x_15, sizeof(void*)*2 + 8, x_14); +lean_ctor_set_uint8(x_15, sizeof(void*)*2 + 16, x_2); +x_16 = lean_box(0); +x_17 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__1(x_4, x_5, x_10, x_6, x_15, x_16, x_11, x_12, x_13); +return x_17; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { -_start: +else { -double x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_15 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_16 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_16, 0, x_1); -lean_ctor_set(x_16, 1, x_3); -lean_ctor_set_float(x_16, sizeof(void*)*2, x_15); -lean_ctor_set_float(x_16, sizeof(void*)*2 + 8, x_15); -lean_ctor_set_uint8(x_16, sizeof(void*)*2 + 16, x_2); -x_17 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2___closed__2; -x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_17); -if (x_18 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_19; lean_object* x_20; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_3); +lean_ctor_set_float(x_18, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); x_19 = lean_box(0); -x_20 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__1(x_4, x_5, x_11, x_6, x_16, x_19, x_12, x_13, x_14); +x_20 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__1(x_4, x_5, x_10, x_6, x_18, x_19, x_11, x_12, x_13); return x_20; } -else -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; -lean_dec(x_16); -x_21 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_21, 0, x_1); -lean_ctor_set(x_21, 1, x_3); -lean_ctor_set_float(x_21, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_21, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_21, sizeof(void*)*2 + 16, x_2); -x_22 = lean_box(0); -x_23 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__1(x_4, x_5, x_11, x_6, x_21, x_22, x_12, x_13, x_14); -return x_23; -} -} -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -lean_dec(x_16); -x_24 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_24, 0, x_1); -lean_ctor_set(x_24, 1, x_3); -lean_ctor_set_float(x_24, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_24, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_24, sizeof(void*)*2 + 16, x_2); -x_25 = lean_box(0); -x_26 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__1(x_4, x_5, x_11, x_6, x_24, x_25, x_12, x_13, x_14); -return x_26; -} } } static lean_object* _init_l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3___closed__1() { @@ -496,40 +461,40 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_15; lean_object* x_16; -x_15 = lean_ctor_get(x_12, 5); -lean_inc(x_15); -lean_inc(x_13); +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_11, 5); +lean_inc(x_14); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_16 = lean_apply_4(x_10, x_5, x_12, x_13, x_14); -if (lean_obj_tag(x_16) == 0) +x_15 = lean_apply_4(x_9, x_5, x_11, x_12, x_13); +if (lean_obj_tag(x_15) == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_ctor_get(x_16, 0); +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); lean_inc(x_17); -x_18 = lean_ctor_get(x_16, 1); -lean_inc(x_18); -lean_dec(x_16); -x_19 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2(x_1, x_2, x_3, x_4, x_15, x_5, x_6, x_7, x_8, x_9, x_17, x_12, x_13, x_18); -lean_dec(x_13); +lean_dec(x_15); +x_18 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2(x_1, x_2, x_3, x_4, x_14, x_5, x_6, x_7, x_8, x_16, x_11, x_12, x_17); +lean_dec(x_12); lean_dec(x_5); -return x_19; +return x_18; } else { -lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_20 = lean_ctor_get(x_16, 1); -lean_inc(x_20); -lean_dec(x_16); -x_21 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3___closed__2; -x_22 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2(x_1, x_2, x_3, x_4, x_15, x_5, x_6, x_7, x_8, x_9, x_21, x_12, x_13, x_20); -lean_dec(x_13); +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_15, 1); +lean_inc(x_19); +lean_dec(x_15); +x_20 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3___closed__2; +x_21 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2(x_1, x_2, x_3, x_4, x_14, x_5, x_6, x_7, x_8, x_20, x_11, x_12, x_19); +lean_dec(x_12); lean_dec(x_5); -return x_22; +return x_21; } } } @@ -593,251 +558,251 @@ x_15 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___closed__1; x_16 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_15); if (x_16 == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; -x_107 = lean_io_mono_nanos_now(x_14); -x_108 = lean_ctor_get(x_107, 0); -lean_inc(x_108); -x_109 = lean_ctor_get(x_107, 1); -lean_inc(x_109); -lean_dec(x_107); +lean_object* x_17; lean_object* x_18; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; +x_111 = lean_io_mono_nanos_now(x_14); +x_112 = lean_ctor_get(x_111, 0); +lean_inc(x_112); +x_113 = lean_ctor_get(x_111, 1); +lean_inc(x_113); +lean_dec(x_111); lean_inc(x_10); lean_inc(x_9); -x_110 = lean_apply_3(x_7, x_9, x_10, x_109); -if (lean_obj_tag(x_110) == 0) +x_114 = lean_apply_3(x_7, x_9, x_10, x_113); +if (lean_obj_tag(x_114) == 0) { -uint8_t x_111; -x_111 = !lean_is_exclusive(x_110); -if (x_111 == 0) +uint8_t x_115; +x_115 = !lean_is_exclusive(x_114); +if (x_115 == 0) { -lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; uint8_t x_116; -x_112 = lean_ctor_get(x_110, 0); -x_113 = lean_ctor_get(x_110, 1); -x_114 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_114, 0, x_112); -x_115 = lean_io_mono_nanos_now(x_113); -x_116 = !lean_is_exclusive(x_115); -if (x_116 == 0) +lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; uint8_t x_120; +x_116 = lean_ctor_get(x_114, 0); +x_117 = lean_ctor_get(x_114, 1); +x_118 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_118, 0, x_116); +x_119 = lean_io_mono_nanos_now(x_117); +x_120 = !lean_is_exclusive(x_119); +if (x_120 == 0) { -lean_object* x_117; lean_object* x_118; uint8_t x_119; lean_object* x_120; double x_121; double x_122; double x_123; double x_124; double x_125; lean_object* x_126; lean_object* x_127; -x_117 = lean_ctor_get(x_115, 0); -x_118 = lean_ctor_get(x_115, 1); -x_119 = 0; -x_120 = lean_unsigned_to_nat(0u); -x_121 = l_Float_ofScientific(x_108, x_119, x_120); -lean_dec(x_108); -x_122 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___closed__5; -x_123 = lean_float_div(x_121, x_122); -x_124 = l_Float_ofScientific(x_117, x_119, x_120); -lean_dec(x_117); -x_125 = lean_float_div(x_124, x_122); -x_126 = lean_box_float(x_123); -x_127 = lean_box_float(x_125); -lean_ctor_set(x_115, 1, x_127); -lean_ctor_set(x_115, 0, x_126); -lean_ctor_set(x_110, 1, x_115); -lean_ctor_set(x_110, 0, x_114); -x_17 = x_110; -x_18 = x_118; -goto block_106; +lean_object* x_121; lean_object* x_122; uint8_t x_123; lean_object* x_124; double x_125; double x_126; double x_127; double x_128; double x_129; lean_object* x_130; lean_object* x_131; +x_121 = lean_ctor_get(x_119, 0); +x_122 = lean_ctor_get(x_119, 1); +x_123 = 0; +x_124 = lean_unsigned_to_nat(0u); +x_125 = l_Float_ofScientific(x_112, x_123, x_124); +lean_dec(x_112); +x_126 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___closed__5; +x_127 = lean_float_div(x_125, x_126); +x_128 = l_Float_ofScientific(x_121, x_123, x_124); +lean_dec(x_121); +x_129 = lean_float_div(x_128, x_126); +x_130 = lean_box_float(x_127); +x_131 = lean_box_float(x_129); +lean_ctor_set(x_119, 1, x_131); +lean_ctor_set(x_119, 0, x_130); +lean_ctor_set(x_114, 1, x_119); +lean_ctor_set(x_114, 0, x_118); +x_17 = x_114; +x_18 = x_122; +goto block_110; } else { -lean_object* x_128; lean_object* x_129; uint8_t x_130; lean_object* x_131; double x_132; double x_133; double x_134; double x_135; double x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; -x_128 = lean_ctor_get(x_115, 0); -x_129 = lean_ctor_get(x_115, 1); -lean_inc(x_129); -lean_inc(x_128); -lean_dec(x_115); -x_130 = 0; -x_131 = lean_unsigned_to_nat(0u); -x_132 = l_Float_ofScientific(x_108, x_130, x_131); -lean_dec(x_108); -x_133 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___closed__5; -x_134 = lean_float_div(x_132, x_133); -x_135 = l_Float_ofScientific(x_128, x_130, x_131); -lean_dec(x_128); -x_136 = lean_float_div(x_135, x_133); -x_137 = lean_box_float(x_134); -x_138 = lean_box_float(x_136); -x_139 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_139, 0, x_137); -lean_ctor_set(x_139, 1, x_138); -lean_ctor_set(x_110, 1, x_139); -lean_ctor_set(x_110, 0, x_114); -x_17 = x_110; -x_18 = x_129; -goto block_106; +lean_object* x_132; lean_object* x_133; uint8_t x_134; lean_object* x_135; double x_136; double x_137; double x_138; double x_139; double x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; +x_132 = lean_ctor_get(x_119, 0); +x_133 = lean_ctor_get(x_119, 1); +lean_inc(x_133); +lean_inc(x_132); +lean_dec(x_119); +x_134 = 0; +x_135 = lean_unsigned_to_nat(0u); +x_136 = l_Float_ofScientific(x_112, x_134, x_135); +lean_dec(x_112); +x_137 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___closed__5; +x_138 = lean_float_div(x_136, x_137); +x_139 = l_Float_ofScientific(x_132, x_134, x_135); +lean_dec(x_132); +x_140 = lean_float_div(x_139, x_137); +x_141 = lean_box_float(x_138); +x_142 = lean_box_float(x_140); +x_143 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_143, 0, x_141); +lean_ctor_set(x_143, 1, x_142); +lean_ctor_set(x_114, 1, x_143); +lean_ctor_set(x_114, 0, x_118); +x_17 = x_114; +x_18 = x_133; +goto block_110; } } else { -lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; uint8_t x_147; lean_object* x_148; double x_149; double x_150; double x_151; double x_152; double x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; -x_140 = lean_ctor_get(x_110, 0); -x_141 = lean_ctor_get(x_110, 1); -lean_inc(x_141); -lean_inc(x_140); -lean_dec(x_110); -x_142 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_142, 0, x_140); -x_143 = lean_io_mono_nanos_now(x_141); -x_144 = lean_ctor_get(x_143, 0); -lean_inc(x_144); -x_145 = lean_ctor_get(x_143, 1); +lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; uint8_t x_151; lean_object* x_152; double x_153; double x_154; double x_155; double x_156; double x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; +x_144 = lean_ctor_get(x_114, 0); +x_145 = lean_ctor_get(x_114, 1); lean_inc(x_145); -if (lean_is_exclusive(x_143)) { - lean_ctor_release(x_143, 0); - lean_ctor_release(x_143, 1); - x_146 = x_143; +lean_inc(x_144); +lean_dec(x_114); +x_146 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_146, 0, x_144); +x_147 = lean_io_mono_nanos_now(x_145); +x_148 = lean_ctor_get(x_147, 0); +lean_inc(x_148); +x_149 = lean_ctor_get(x_147, 1); +lean_inc(x_149); +if (lean_is_exclusive(x_147)) { + lean_ctor_release(x_147, 0); + lean_ctor_release(x_147, 1); + x_150 = x_147; } else { - lean_dec_ref(x_143); - x_146 = lean_box(0); + lean_dec_ref(x_147); + x_150 = lean_box(0); } -x_147 = 0; -x_148 = lean_unsigned_to_nat(0u); -x_149 = l_Float_ofScientific(x_108, x_147, x_148); -lean_dec(x_108); -x_150 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___closed__5; -x_151 = lean_float_div(x_149, x_150); -x_152 = l_Float_ofScientific(x_144, x_147, x_148); -lean_dec(x_144); -x_153 = lean_float_div(x_152, x_150); -x_154 = lean_box_float(x_151); -x_155 = lean_box_float(x_153); -if (lean_is_scalar(x_146)) { - x_156 = lean_alloc_ctor(0, 2, 0); +x_151 = 0; +x_152 = lean_unsigned_to_nat(0u); +x_153 = l_Float_ofScientific(x_112, x_151, x_152); +lean_dec(x_112); +x_154 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___closed__5; +x_155 = lean_float_div(x_153, x_154); +x_156 = l_Float_ofScientific(x_148, x_151, x_152); +lean_dec(x_148); +x_157 = lean_float_div(x_156, x_154); +x_158 = lean_box_float(x_155); +x_159 = lean_box_float(x_157); +if (lean_is_scalar(x_150)) { + x_160 = lean_alloc_ctor(0, 2, 0); } else { - x_156 = x_146; + x_160 = x_150; } -lean_ctor_set(x_156, 0, x_154); -lean_ctor_set(x_156, 1, x_155); -x_157 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_157, 0, x_142); -lean_ctor_set(x_157, 1, x_156); -x_17 = x_157; -x_18 = x_145; -goto block_106; +lean_ctor_set(x_160, 0, x_158); +lean_ctor_set(x_160, 1, x_159); +x_161 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_161, 0, x_146); +lean_ctor_set(x_161, 1, x_160); +x_17 = x_161; +x_18 = x_149; +goto block_110; } } else { -uint8_t x_158; -x_158 = !lean_is_exclusive(x_110); -if (x_158 == 0) +uint8_t x_162; +x_162 = !lean_is_exclusive(x_114); +if (x_162 == 0) { -lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; uint8_t x_163; -x_159 = lean_ctor_get(x_110, 0); -x_160 = lean_ctor_get(x_110, 1); -x_161 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_161, 0, x_159); -x_162 = lean_io_mono_nanos_now(x_160); -x_163 = !lean_is_exclusive(x_162); -if (x_163 == 0) +lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; uint8_t x_167; +x_163 = lean_ctor_get(x_114, 0); +x_164 = lean_ctor_get(x_114, 1); +x_165 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_165, 0, x_163); +x_166 = lean_io_mono_nanos_now(x_164); +x_167 = !lean_is_exclusive(x_166); +if (x_167 == 0) { -lean_object* x_164; lean_object* x_165; uint8_t x_166; lean_object* x_167; double x_168; double x_169; double x_170; double x_171; double x_172; lean_object* x_173; lean_object* x_174; -x_164 = lean_ctor_get(x_162, 0); -x_165 = lean_ctor_get(x_162, 1); -x_166 = 0; -x_167 = lean_unsigned_to_nat(0u); -x_168 = l_Float_ofScientific(x_108, x_166, x_167); -lean_dec(x_108); -x_169 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___closed__5; -x_170 = lean_float_div(x_168, x_169); -x_171 = l_Float_ofScientific(x_164, x_166, x_167); -lean_dec(x_164); -x_172 = lean_float_div(x_171, x_169); -x_173 = lean_box_float(x_170); -x_174 = lean_box_float(x_172); -lean_ctor_set(x_162, 1, x_174); -lean_ctor_set(x_162, 0, x_173); -lean_ctor_set_tag(x_110, 0); -lean_ctor_set(x_110, 1, x_162); -lean_ctor_set(x_110, 0, x_161); -x_17 = x_110; -x_18 = x_165; -goto block_106; +lean_object* x_168; lean_object* x_169; uint8_t x_170; lean_object* x_171; double x_172; double x_173; double x_174; double x_175; double x_176; lean_object* x_177; lean_object* x_178; +x_168 = lean_ctor_get(x_166, 0); +x_169 = lean_ctor_get(x_166, 1); +x_170 = 0; +x_171 = lean_unsigned_to_nat(0u); +x_172 = l_Float_ofScientific(x_112, x_170, x_171); +lean_dec(x_112); +x_173 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___closed__5; +x_174 = lean_float_div(x_172, x_173); +x_175 = l_Float_ofScientific(x_168, x_170, x_171); +lean_dec(x_168); +x_176 = lean_float_div(x_175, x_173); +x_177 = lean_box_float(x_174); +x_178 = lean_box_float(x_176); +lean_ctor_set(x_166, 1, x_178); +lean_ctor_set(x_166, 0, x_177); +lean_ctor_set_tag(x_114, 0); +lean_ctor_set(x_114, 1, x_166); +lean_ctor_set(x_114, 0, x_165); +x_17 = x_114; +x_18 = x_169; +goto block_110; } else { -lean_object* x_175; lean_object* x_176; uint8_t x_177; lean_object* x_178; double x_179; double x_180; double x_181; double x_182; double x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; -x_175 = lean_ctor_get(x_162, 0); -x_176 = lean_ctor_get(x_162, 1); -lean_inc(x_176); -lean_inc(x_175); -lean_dec(x_162); -x_177 = 0; -x_178 = lean_unsigned_to_nat(0u); -x_179 = l_Float_ofScientific(x_108, x_177, x_178); -lean_dec(x_108); -x_180 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___closed__5; -x_181 = lean_float_div(x_179, x_180); -x_182 = l_Float_ofScientific(x_175, x_177, x_178); -lean_dec(x_175); -x_183 = lean_float_div(x_182, x_180); -x_184 = lean_box_float(x_181); -x_185 = lean_box_float(x_183); -x_186 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_186, 0, x_184); -lean_ctor_set(x_186, 1, x_185); -lean_ctor_set_tag(x_110, 0); -lean_ctor_set(x_110, 1, x_186); -lean_ctor_set(x_110, 0, x_161); -x_17 = x_110; -x_18 = x_176; -goto block_106; +lean_object* x_179; lean_object* x_180; uint8_t x_181; lean_object* x_182; double x_183; double x_184; double x_185; double x_186; double x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; +x_179 = lean_ctor_get(x_166, 0); +x_180 = lean_ctor_get(x_166, 1); +lean_inc(x_180); +lean_inc(x_179); +lean_dec(x_166); +x_181 = 0; +x_182 = lean_unsigned_to_nat(0u); +x_183 = l_Float_ofScientific(x_112, x_181, x_182); +lean_dec(x_112); +x_184 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___closed__5; +x_185 = lean_float_div(x_183, x_184); +x_186 = l_Float_ofScientific(x_179, x_181, x_182); +lean_dec(x_179); +x_187 = lean_float_div(x_186, x_184); +x_188 = lean_box_float(x_185); +x_189 = lean_box_float(x_187); +x_190 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_190, 0, x_188); +lean_ctor_set(x_190, 1, x_189); +lean_ctor_set_tag(x_114, 0); +lean_ctor_set(x_114, 1, x_190); +lean_ctor_set(x_114, 0, x_165); +x_17 = x_114; +x_18 = x_180; +goto block_110; } } else { -lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; uint8_t x_194; lean_object* x_195; double x_196; double x_197; double x_198; double x_199; double x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; -x_187 = lean_ctor_get(x_110, 0); -x_188 = lean_ctor_get(x_110, 1); -lean_inc(x_188); -lean_inc(x_187); -lean_dec(x_110); -x_189 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_189, 0, x_187); -x_190 = lean_io_mono_nanos_now(x_188); -x_191 = lean_ctor_get(x_190, 0); -lean_inc(x_191); -x_192 = lean_ctor_get(x_190, 1); +lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; uint8_t x_198; lean_object* x_199; double x_200; double x_201; double x_202; double x_203; double x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; +x_191 = lean_ctor_get(x_114, 0); +x_192 = lean_ctor_get(x_114, 1); lean_inc(x_192); -if (lean_is_exclusive(x_190)) { - lean_ctor_release(x_190, 0); - lean_ctor_release(x_190, 1); - x_193 = x_190; +lean_inc(x_191); +lean_dec(x_114); +x_193 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_193, 0, x_191); +x_194 = lean_io_mono_nanos_now(x_192); +x_195 = lean_ctor_get(x_194, 0); +lean_inc(x_195); +x_196 = lean_ctor_get(x_194, 1); +lean_inc(x_196); +if (lean_is_exclusive(x_194)) { + lean_ctor_release(x_194, 0); + lean_ctor_release(x_194, 1); + x_197 = x_194; } else { - lean_dec_ref(x_190); - x_193 = lean_box(0); + lean_dec_ref(x_194); + x_197 = lean_box(0); } -x_194 = 0; -x_195 = lean_unsigned_to_nat(0u); -x_196 = l_Float_ofScientific(x_108, x_194, x_195); -lean_dec(x_108); -x_197 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___closed__5; -x_198 = lean_float_div(x_196, x_197); -x_199 = l_Float_ofScientific(x_191, x_194, x_195); -lean_dec(x_191); -x_200 = lean_float_div(x_199, x_197); -x_201 = lean_box_float(x_198); -x_202 = lean_box_float(x_200); -if (lean_is_scalar(x_193)) { - x_203 = lean_alloc_ctor(0, 2, 0); +x_198 = 0; +x_199 = lean_unsigned_to_nat(0u); +x_200 = l_Float_ofScientific(x_112, x_198, x_199); +lean_dec(x_112); +x_201 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___closed__5; +x_202 = lean_float_div(x_200, x_201); +x_203 = l_Float_ofScientific(x_195, x_198, x_199); +lean_dec(x_195); +x_204 = lean_float_div(x_203, x_201); +x_205 = lean_box_float(x_202); +x_206 = lean_box_float(x_204); +if (lean_is_scalar(x_197)) { + x_207 = lean_alloc_ctor(0, 2, 0); } else { - x_203 = x_193; + x_207 = x_197; } -lean_ctor_set(x_203, 0, x_201); -lean_ctor_set(x_203, 1, x_202); -x_204 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_204, 0, x_189); -lean_ctor_set(x_204, 1, x_203); -x_17 = x_204; -x_18 = x_192; -goto block_106; +lean_ctor_set(x_207, 0, x_205); +lean_ctor_set(x_207, 1, x_206); +x_208 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_208, 0, x_193); +lean_ctor_set(x_208, 1, x_207); +x_17 = x_208; +x_18 = x_196; +goto block_110; } } -block_106: +block_110: { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_92; uint8_t x_93; +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; uint8_t x_25; x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); x_20 = lean_ctor_get(x_17, 0); @@ -848,17 +813,33 @@ lean_inc(x_21); x_22 = lean_ctor_get(x_19, 1); lean_inc(x_22); lean_dec(x_19); -x_92 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___closed__2; -x_93 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_92); -if (x_93 == 0) +x_23 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___closed__2; +x_24 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_23); +if (x_24 == 0) { -uint8_t x_94; -x_94 = 0; -x_23 = x_94; -goto block_91; +if (x_6 == 0) +{ +uint8_t x_90; +x_90 = 0; +x_25 = x_90; +goto block_89; } else { +lean_object* x_91; double x_92; double x_93; lean_object* x_94; +x_91 = lean_box(0); +x_92 = lean_unbox_float(x_21); +lean_dec(x_21); +x_93 = lean_unbox_float(x_22); +lean_dec(x_22); +x_94 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_92, x_93, x_5, x_91, x_9, x_10, x_18); +return x_94; +} +} +else +{ +if (x_6 == 0) +{ double x_95; double x_96; double x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; lean_object* x_101; double x_102; double x_103; double x_104; uint8_t x_105; x_95 = lean_unbox_float(x_22); x_96 = lean_unbox_float(x_21); @@ -872,845 +853,857 @@ lean_dec(x_99); x_103 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___closed__4; x_104 = lean_float_div(x_102, x_103); x_105 = lean_float_decLt(x_104, x_97); -x_23 = x_105; -goto block_91; +x_25 = x_105; +goto block_89; } -block_91: +else { -if (x_6 == 0) +lean_object* x_106; double x_107; double x_108; lean_object* x_109; +x_106 = lean_box(0); +x_107 = lean_unbox_float(x_21); +lean_dec(x_21); +x_108 = lean_unbox_float(x_22); +lean_dec(x_22); +x_109 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_107, x_108, x_5, x_106, x_9, x_10, x_18); +return x_109; +} +} +block_89: { -if (x_23 == 0) +if (x_25 == 0) { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_dec(x_22); lean_dec(x_21); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_24 = lean_st_ref_take(x_10, x_18); -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -x_26 = lean_ctor_get(x_25, 3); -lean_inc(x_26); -x_27 = lean_ctor_get(x_24, 1); +x_26 = lean_st_ref_take(x_10, x_18); +x_27 = lean_ctor_get(x_26, 0); lean_inc(x_27); -lean_dec(x_24); -x_28 = !lean_is_exclusive(x_25); -if (x_28 == 0) -{ -lean_object* x_29; uint8_t x_30; -x_29 = lean_ctor_get(x_25, 3); -lean_dec(x_29); -x_30 = !lean_is_exclusive(x_26); +x_28 = lean_ctor_get(x_27, 3); +lean_inc(x_28); +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); +lean_dec(x_26); +x_30 = !lean_is_exclusive(x_27); if (x_30 == 0) { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_31 = lean_ctor_get(x_26, 0); -x_32 = l_Lean_PersistentArray_append___rarg(x_13, x_31); +lean_object* x_31; uint8_t x_32; +x_31 = lean_ctor_get(x_27, 3); lean_dec(x_31); -lean_ctor_set(x_26, 0, x_32); -x_33 = lean_st_ref_set(x_10, x_25, x_27); -x_34 = lean_ctor_get(x_33, 1); -lean_inc(x_34); +x_32 = !lean_is_exclusive(x_28); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_33 = lean_ctor_get(x_28, 0); +x_34 = l_Lean_PersistentArray_append___rarg(x_13, x_33); lean_dec(x_33); -x_35 = l_MonadExcept_ofExcept___at_Lean_addDecl___spec__5(x_20, x_9, x_10, x_34); +lean_ctor_set(x_28, 0, x_34); +x_35 = lean_st_ref_set(x_10, x_27, x_29); +x_36 = lean_ctor_get(x_35, 1); +lean_inc(x_36); +lean_dec(x_35); +x_37 = l_MonadExcept_ofExcept___at_Lean_addDecl___spec__5(x_20, x_9, x_10, x_36); lean_dec(x_10); lean_dec(x_9); lean_dec(x_20); -if (lean_obj_tag(x_35) == 0) +if (lean_obj_tag(x_37) == 0) { -uint8_t x_36; -x_36 = !lean_is_exclusive(x_35); -if (x_36 == 0) +uint8_t x_38; +x_38 = !lean_is_exclusive(x_37); +if (x_38 == 0) { -return x_35; +return x_37; } else { -lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_37 = lean_ctor_get(x_35, 0); -x_38 = lean_ctor_get(x_35, 1); -lean_inc(x_38); -lean_inc(x_37); -lean_dec(x_35); -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_37); -lean_ctor_set(x_39, 1, x_38); -return x_39; +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_37, 0); +x_40 = lean_ctor_get(x_37, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_37); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +return x_41; } } else { -uint8_t x_40; -x_40 = !lean_is_exclusive(x_35); -if (x_40 == 0) +uint8_t x_42; +x_42 = !lean_is_exclusive(x_37); +if (x_42 == 0) { -return x_35; +return x_37; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_35, 0); -x_42 = lean_ctor_get(x_35, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_35); -x_43 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_42); -return x_43; +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_37, 0); +x_44 = lean_ctor_get(x_37, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_37); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; } } } else { -uint64_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_44 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); -x_45 = lean_ctor_get(x_26, 0); -lean_inc(x_45); -lean_dec(x_26); -x_46 = l_Lean_PersistentArray_append___rarg(x_13, x_45); -lean_dec(x_45); -x_47 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_47, 0, x_46); -lean_ctor_set_uint64(x_47, sizeof(void*)*1, x_44); -lean_ctor_set(x_25, 3, x_47); -x_48 = lean_st_ref_set(x_10, x_25, x_27); -x_49 = lean_ctor_get(x_48, 1); -lean_inc(x_49); -lean_dec(x_48); -x_50 = l_MonadExcept_ofExcept___at_Lean_addDecl___spec__5(x_20, x_9, x_10, x_49); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_20); -if (lean_obj_tag(x_50) == 0) -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_51 = lean_ctor_get(x_50, 0); +uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); +x_47 = lean_ctor_get(x_28, 0); +lean_inc(x_47); +lean_dec(x_28); +x_48 = l_Lean_PersistentArray_append___rarg(x_13, x_47); +lean_dec(x_47); +x_49 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); +lean_ctor_set(x_27, 3, x_49); +x_50 = lean_st_ref_set(x_10, x_27, x_29); +x_51 = lean_ctor_get(x_50, 1); lean_inc(x_51); -x_52 = lean_ctor_get(x_50, 1); -lean_inc(x_52); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_53 = x_50; +lean_dec(x_50); +x_52 = l_MonadExcept_ofExcept___at_Lean_addDecl___spec__5(x_20, x_9, x_10, x_51); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_20); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_52, 1); +lean_inc(x_54); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_55 = x_52; } else { - lean_dec_ref(x_50); - x_53 = lean_box(0); + lean_dec_ref(x_52); + x_55 = lean_box(0); } -if (lean_is_scalar(x_53)) { - x_54 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_55)) { + x_56 = lean_alloc_ctor(0, 2, 0); } else { - x_54 = x_53; + x_56 = x_55; } -lean_ctor_set(x_54, 0, x_51); -lean_ctor_set(x_54, 1, x_52); -return x_54; +lean_ctor_set(x_56, 0, x_53); +lean_ctor_set(x_56, 1, x_54); +return x_56; } else { -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_55 = lean_ctor_get(x_50, 0); -lean_inc(x_55); -x_56 = lean_ctor_get(x_50, 1); -lean_inc(x_56); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_57 = x_50; +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_57 = lean_ctor_get(x_52, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_52, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_59 = x_52; } else { - lean_dec_ref(x_50); - x_57 = lean_box(0); + lean_dec_ref(x_52); + x_59 = lean_box(0); } -if (lean_is_scalar(x_57)) { - x_58 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(1, 2, 0); } else { - x_58 = x_57; + x_60 = x_59; } -lean_ctor_set(x_58, 0, x_55); -lean_ctor_set(x_58, 1, x_56); -return x_58; +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_58); +return x_60; } } } else { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint64_t x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_59 = lean_ctor_get(x_25, 0); -x_60 = lean_ctor_get(x_25, 1); -x_61 = lean_ctor_get(x_25, 2); -x_62 = lean_ctor_get(x_25, 4); -x_63 = lean_ctor_get(x_25, 5); -x_64 = lean_ctor_get(x_25, 6); -x_65 = lean_ctor_get(x_25, 7); +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_61 = lean_ctor_get(x_27, 0); +x_62 = lean_ctor_get(x_27, 1); +x_63 = lean_ctor_get(x_27, 2); +x_64 = lean_ctor_get(x_27, 4); +x_65 = lean_ctor_get(x_27, 5); +x_66 = lean_ctor_get(x_27, 6); +x_67 = lean_ctor_get(x_27, 7); +lean_inc(x_67); +lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); lean_inc(x_62); lean_inc(x_61); -lean_inc(x_60); -lean_inc(x_59); -lean_dec(x_25); -x_66 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); -x_67 = lean_ctor_get(x_26, 0); -lean_inc(x_67); -if (lean_is_exclusive(x_26)) { - lean_ctor_release(x_26, 0); - x_68 = x_26; +lean_dec(x_27); +x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); +x_69 = lean_ctor_get(x_28, 0); +lean_inc(x_69); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + x_70 = x_28; } else { - lean_dec_ref(x_26); - x_68 = lean_box(0); + lean_dec_ref(x_28); + x_70 = lean_box(0); } -x_69 = l_Lean_PersistentArray_append___rarg(x_13, x_67); -lean_dec(x_67); -if (lean_is_scalar(x_68)) { - x_70 = lean_alloc_ctor(0, 1, 8); +x_71 = l_Lean_PersistentArray_append___rarg(x_13, x_69); +lean_dec(x_69); +if (lean_is_scalar(x_70)) { + x_72 = lean_alloc_ctor(0, 1, 8); } else { - x_70 = x_68; + x_72 = x_70; } -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set_uint64(x_70, sizeof(void*)*1, x_66); -x_71 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_71, 0, x_59); -lean_ctor_set(x_71, 1, x_60); -lean_ctor_set(x_71, 2, x_61); -lean_ctor_set(x_71, 3, x_70); -lean_ctor_set(x_71, 4, x_62); -lean_ctor_set(x_71, 5, x_63); -lean_ctor_set(x_71, 6, x_64); -lean_ctor_set(x_71, 7, x_65); -x_72 = lean_st_ref_set(x_10, x_71, x_27); -x_73 = lean_ctor_get(x_72, 1); -lean_inc(x_73); -lean_dec(x_72); -x_74 = l_MonadExcept_ofExcept___at_Lean_addDecl___spec__5(x_20, x_9, x_10, x_73); +lean_ctor_set(x_72, 0, x_71); +lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); +x_73 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_73, 0, x_61); +lean_ctor_set(x_73, 1, x_62); +lean_ctor_set(x_73, 2, x_63); +lean_ctor_set(x_73, 3, x_72); +lean_ctor_set(x_73, 4, x_64); +lean_ctor_set(x_73, 5, x_65); +lean_ctor_set(x_73, 6, x_66); +lean_ctor_set(x_73, 7, x_67); +x_74 = lean_st_ref_set(x_10, x_73, x_29); +x_75 = lean_ctor_get(x_74, 1); +lean_inc(x_75); +lean_dec(x_74); +x_76 = l_MonadExcept_ofExcept___at_Lean_addDecl___spec__5(x_20, x_9, x_10, x_75); lean_dec(x_10); lean_dec(x_9); lean_dec(x_20); -if (lean_obj_tag(x_74) == 0) +if (lean_obj_tag(x_76) == 0) { -lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_75 = lean_ctor_get(x_74, 0); -lean_inc(x_75); -x_76 = lean_ctor_get(x_74, 1); -lean_inc(x_76); -if (lean_is_exclusive(x_74)) { - lean_ctor_release(x_74, 0); - lean_ctor_release(x_74, 1); - x_77 = x_74; +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_77 = lean_ctor_get(x_76, 0); +lean_inc(x_77); +x_78 = lean_ctor_get(x_76, 1); +lean_inc(x_78); +if (lean_is_exclusive(x_76)) { + lean_ctor_release(x_76, 0); + lean_ctor_release(x_76, 1); + x_79 = x_76; } else { - lean_dec_ref(x_74); - x_77 = lean_box(0); + lean_dec_ref(x_76); + x_79 = lean_box(0); } -if (lean_is_scalar(x_77)) { - x_78 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_79)) { + x_80 = lean_alloc_ctor(0, 2, 0); } else { - x_78 = x_77; + x_80 = x_79; } -lean_ctor_set(x_78, 0, x_75); -lean_ctor_set(x_78, 1, x_76); -return x_78; +lean_ctor_set(x_80, 0, x_77); +lean_ctor_set(x_80, 1, x_78); +return x_80; } else { -lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_79 = lean_ctor_get(x_74, 0); -lean_inc(x_79); -x_80 = lean_ctor_get(x_74, 1); -lean_inc(x_80); -if (lean_is_exclusive(x_74)) { - lean_ctor_release(x_74, 0); - lean_ctor_release(x_74, 1); - x_81 = x_74; +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_81 = lean_ctor_get(x_76, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_76, 1); +lean_inc(x_82); +if (lean_is_exclusive(x_76)) { + lean_ctor_release(x_76, 0); + lean_ctor_release(x_76, 1); + x_83 = x_76; } else { - lean_dec_ref(x_74); - x_81 = lean_box(0); + lean_dec_ref(x_76); + x_83 = lean_box(0); } -if (lean_is_scalar(x_81)) { - x_82 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_83)) { + x_84 = lean_alloc_ctor(1, 2, 0); } else { - x_82 = x_81; + x_84 = x_83; } -lean_ctor_set(x_82, 0, x_79); -lean_ctor_set(x_82, 1, x_80); -return x_82; +lean_ctor_set(x_84, 0, x_81); +lean_ctor_set(x_84, 1, x_82); +return x_84; } } } else { -lean_object* x_83; double x_84; double x_85; lean_object* x_86; -x_83 = lean_box(0); -x_84 = lean_unbox_float(x_21); +lean_object* x_85; double x_86; double x_87; lean_object* x_88; +x_85 = lean_box(0); +x_86 = lean_unbox_float(x_21); lean_dec(x_21); -x_85 = lean_unbox_float(x_22); +x_87 = lean_unbox_float(x_22); lean_dec(x_22); -x_86 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3(x_2, x_3, x_4, x_13, x_20, x_1, x_23, x_84, x_85, x_5, x_83, x_9, x_10, x_18); -return x_86; -} -} -else -{ -lean_object* x_87; double x_88; double x_89; lean_object* x_90; -x_87 = lean_box(0); -x_88 = lean_unbox_float(x_21); -lean_dec(x_21); -x_89 = lean_unbox_float(x_22); -lean_dec(x_22); -x_90 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3(x_2, x_3, x_4, x_13, x_20, x_1, x_23, x_88, x_89, x_5, x_87, x_9, x_10, x_18); -return x_90; +x_88 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_86, x_87, x_5, x_85, x_9, x_10, x_18); +return x_88; } } } } else { -lean_object* x_205; lean_object* x_206; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; -x_293 = lean_io_get_num_heartbeats(x_14); -x_294 = lean_ctor_get(x_293, 0); -lean_inc(x_294); -x_295 = lean_ctor_get(x_293, 1); -lean_inc(x_295); -lean_dec(x_293); +lean_object* x_209; lean_object* x_210; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; +x_301 = lean_io_get_num_heartbeats(x_14); +x_302 = lean_ctor_get(x_301, 0); +lean_inc(x_302); +x_303 = lean_ctor_get(x_301, 1); +lean_inc(x_303); +lean_dec(x_301); lean_inc(x_10); lean_inc(x_9); -x_296 = lean_apply_3(x_7, x_9, x_10, x_295); -if (lean_obj_tag(x_296) == 0) +x_304 = lean_apply_3(x_7, x_9, x_10, x_303); +if (lean_obj_tag(x_304) == 0) { -uint8_t x_297; -x_297 = !lean_is_exclusive(x_296); -if (x_297 == 0) +uint8_t x_305; +x_305 = !lean_is_exclusive(x_304); +if (x_305 == 0) { -lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; uint8_t x_302; -x_298 = lean_ctor_get(x_296, 0); -x_299 = lean_ctor_get(x_296, 1); -x_300 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_300, 0, x_298); -x_301 = lean_io_get_num_heartbeats(x_299); -x_302 = !lean_is_exclusive(x_301); -if (x_302 == 0) +lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; uint8_t x_310; +x_306 = lean_ctor_get(x_304, 0); +x_307 = lean_ctor_get(x_304, 1); +x_308 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_308, 0, x_306); +x_309 = lean_io_get_num_heartbeats(x_307); +x_310 = !lean_is_exclusive(x_309); +if (x_310 == 0) { -lean_object* x_303; lean_object* x_304; uint8_t x_305; lean_object* x_306; double x_307; double x_308; lean_object* x_309; lean_object* x_310; -x_303 = lean_ctor_get(x_301, 0); -x_304 = lean_ctor_get(x_301, 1); -x_305 = 0; -x_306 = lean_unsigned_to_nat(0u); -x_307 = l_Float_ofScientific(x_294, x_305, x_306); -lean_dec(x_294); -x_308 = l_Float_ofScientific(x_303, x_305, x_306); -lean_dec(x_303); -x_309 = lean_box_float(x_307); -x_310 = lean_box_float(x_308); -lean_ctor_set(x_301, 1, x_310); -lean_ctor_set(x_301, 0, x_309); -lean_ctor_set(x_296, 1, x_301); -lean_ctor_set(x_296, 0, x_300); -x_205 = x_296; -x_206 = x_304; -goto block_292; -} -else -{ -lean_object* x_311; lean_object* x_312; uint8_t x_313; lean_object* x_314; double x_315; double x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; -x_311 = lean_ctor_get(x_301, 0); -x_312 = lean_ctor_get(x_301, 1); -lean_inc(x_312); -lean_inc(x_311); -lean_dec(x_301); +lean_object* x_311; lean_object* x_312; uint8_t x_313; lean_object* x_314; double x_315; double x_316; lean_object* x_317; lean_object* x_318; +x_311 = lean_ctor_get(x_309, 0); +x_312 = lean_ctor_get(x_309, 1); x_313 = 0; x_314 = lean_unsigned_to_nat(0u); -x_315 = l_Float_ofScientific(x_294, x_313, x_314); -lean_dec(x_294); +x_315 = l_Float_ofScientific(x_302, x_313, x_314); +lean_dec(x_302); x_316 = l_Float_ofScientific(x_311, x_313, x_314); lean_dec(x_311); x_317 = lean_box_float(x_315); x_318 = lean_box_float(x_316); -x_319 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_319, 0, x_317); -lean_ctor_set(x_319, 1, x_318); -lean_ctor_set(x_296, 1, x_319); -lean_ctor_set(x_296, 0, x_300); -x_205 = x_296; -x_206 = x_312; -goto block_292; -} +lean_ctor_set(x_309, 1, x_318); +lean_ctor_set(x_309, 0, x_317); +lean_ctor_set(x_304, 1, x_309); +lean_ctor_set(x_304, 0, x_308); +x_209 = x_304; +x_210 = x_312; +goto block_300; } else { -lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; uint8_t x_327; lean_object* x_328; double x_329; double x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; -x_320 = lean_ctor_get(x_296, 0); -x_321 = lean_ctor_get(x_296, 1); -lean_inc(x_321); +lean_object* x_319; lean_object* x_320; uint8_t x_321; lean_object* x_322; double x_323; double x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; +x_319 = lean_ctor_get(x_309, 0); +x_320 = lean_ctor_get(x_309, 1); lean_inc(x_320); -lean_dec(x_296); -x_322 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_322, 0, x_320); -x_323 = lean_io_get_num_heartbeats(x_321); -x_324 = lean_ctor_get(x_323, 0); -lean_inc(x_324); -x_325 = lean_ctor_get(x_323, 1); -lean_inc(x_325); -if (lean_is_exclusive(x_323)) { - lean_ctor_release(x_323, 0); - lean_ctor_release(x_323, 1); - x_326 = x_323; -} else { - lean_dec_ref(x_323); - x_326 = lean_box(0); -} -x_327 = 0; -x_328 = lean_unsigned_to_nat(0u); -x_329 = l_Float_ofScientific(x_294, x_327, x_328); -lean_dec(x_294); -x_330 = l_Float_ofScientific(x_324, x_327, x_328); -lean_dec(x_324); -x_331 = lean_box_float(x_329); -x_332 = lean_box_float(x_330); -if (lean_is_scalar(x_326)) { - x_333 = lean_alloc_ctor(0, 2, 0); -} else { - x_333 = x_326; -} -lean_ctor_set(x_333, 0, x_331); -lean_ctor_set(x_333, 1, x_332); -x_334 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_334, 0, x_322); -lean_ctor_set(x_334, 1, x_333); -x_205 = x_334; -x_206 = x_325; -goto block_292; +lean_inc(x_319); +lean_dec(x_309); +x_321 = 0; +x_322 = lean_unsigned_to_nat(0u); +x_323 = l_Float_ofScientific(x_302, x_321, x_322); +lean_dec(x_302); +x_324 = l_Float_ofScientific(x_319, x_321, x_322); +lean_dec(x_319); +x_325 = lean_box_float(x_323); +x_326 = lean_box_float(x_324); +x_327 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_327, 0, x_325); +lean_ctor_set(x_327, 1, x_326); +lean_ctor_set(x_304, 1, x_327); +lean_ctor_set(x_304, 0, x_308); +x_209 = x_304; +x_210 = x_320; +goto block_300; } } else { -uint8_t x_335; -x_335 = !lean_is_exclusive(x_296); -if (x_335 == 0) -{ -lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; uint8_t x_340; -x_336 = lean_ctor_get(x_296, 0); -x_337 = lean_ctor_get(x_296, 1); -x_338 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_338, 0, x_336); -x_339 = lean_io_get_num_heartbeats(x_337); -x_340 = !lean_is_exclusive(x_339); -if (x_340 == 0) -{ -lean_object* x_341; lean_object* x_342; uint8_t x_343; lean_object* x_344; double x_345; double x_346; lean_object* x_347; lean_object* x_348; -x_341 = lean_ctor_get(x_339, 0); -x_342 = lean_ctor_get(x_339, 1); -x_343 = 0; -x_344 = lean_unsigned_to_nat(0u); -x_345 = l_Float_ofScientific(x_294, x_343, x_344); -lean_dec(x_294); -x_346 = l_Float_ofScientific(x_341, x_343, x_344); -lean_dec(x_341); -x_347 = lean_box_float(x_345); -x_348 = lean_box_float(x_346); -lean_ctor_set(x_339, 1, x_348); -lean_ctor_set(x_339, 0, x_347); -lean_ctor_set_tag(x_296, 0); -lean_ctor_set(x_296, 1, x_339); -lean_ctor_set(x_296, 0, x_338); -x_205 = x_296; -x_206 = x_342; -goto block_292; +lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; uint8_t x_335; lean_object* x_336; double x_337; double x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; +x_328 = lean_ctor_get(x_304, 0); +x_329 = lean_ctor_get(x_304, 1); +lean_inc(x_329); +lean_inc(x_328); +lean_dec(x_304); +x_330 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_330, 0, x_328); +x_331 = lean_io_get_num_heartbeats(x_329); +x_332 = lean_ctor_get(x_331, 0); +lean_inc(x_332); +x_333 = lean_ctor_get(x_331, 1); +lean_inc(x_333); +if (lean_is_exclusive(x_331)) { + lean_ctor_release(x_331, 0); + lean_ctor_release(x_331, 1); + x_334 = x_331; +} else { + lean_dec_ref(x_331); + x_334 = lean_box(0); +} +x_335 = 0; +x_336 = lean_unsigned_to_nat(0u); +x_337 = l_Float_ofScientific(x_302, x_335, x_336); +lean_dec(x_302); +x_338 = l_Float_ofScientific(x_332, x_335, x_336); +lean_dec(x_332); +x_339 = lean_box_float(x_337); +x_340 = lean_box_float(x_338); +if (lean_is_scalar(x_334)) { + x_341 = lean_alloc_ctor(0, 2, 0); +} else { + x_341 = x_334; +} +lean_ctor_set(x_341, 0, x_339); +lean_ctor_set(x_341, 1, x_340); +x_342 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_342, 0, x_330); +lean_ctor_set(x_342, 1, x_341); +x_209 = x_342; +x_210 = x_333; +goto block_300; +} } else { -lean_object* x_349; lean_object* x_350; uint8_t x_351; lean_object* x_352; double x_353; double x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; -x_349 = lean_ctor_get(x_339, 0); -x_350 = lean_ctor_get(x_339, 1); -lean_inc(x_350); -lean_inc(x_349); -lean_dec(x_339); +uint8_t x_343; +x_343 = !lean_is_exclusive(x_304); +if (x_343 == 0) +{ +lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; uint8_t x_348; +x_344 = lean_ctor_get(x_304, 0); +x_345 = lean_ctor_get(x_304, 1); +x_346 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_346, 0, x_344); +x_347 = lean_io_get_num_heartbeats(x_345); +x_348 = !lean_is_exclusive(x_347); +if (x_348 == 0) +{ +lean_object* x_349; lean_object* x_350; uint8_t x_351; lean_object* x_352; double x_353; double x_354; lean_object* x_355; lean_object* x_356; +x_349 = lean_ctor_get(x_347, 0); +x_350 = lean_ctor_get(x_347, 1); x_351 = 0; x_352 = lean_unsigned_to_nat(0u); -x_353 = l_Float_ofScientific(x_294, x_351, x_352); -lean_dec(x_294); +x_353 = l_Float_ofScientific(x_302, x_351, x_352); +lean_dec(x_302); x_354 = l_Float_ofScientific(x_349, x_351, x_352); lean_dec(x_349); x_355 = lean_box_float(x_353); x_356 = lean_box_float(x_354); -x_357 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_357, 0, x_355); -lean_ctor_set(x_357, 1, x_356); -lean_ctor_set_tag(x_296, 0); -lean_ctor_set(x_296, 1, x_357); -lean_ctor_set(x_296, 0, x_338); -x_205 = x_296; -x_206 = x_350; -goto block_292; -} +lean_ctor_set(x_347, 1, x_356); +lean_ctor_set(x_347, 0, x_355); +lean_ctor_set_tag(x_304, 0); +lean_ctor_set(x_304, 1, x_347); +lean_ctor_set(x_304, 0, x_346); +x_209 = x_304; +x_210 = x_350; +goto block_300; } else { -lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; uint8_t x_365; lean_object* x_366; double x_367; double x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; -x_358 = lean_ctor_get(x_296, 0); -x_359 = lean_ctor_get(x_296, 1); -lean_inc(x_359); +lean_object* x_357; lean_object* x_358; uint8_t x_359; lean_object* x_360; double x_361; double x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; +x_357 = lean_ctor_get(x_347, 0); +x_358 = lean_ctor_get(x_347, 1); lean_inc(x_358); -lean_dec(x_296); -x_360 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_360, 0, x_358); -x_361 = lean_io_get_num_heartbeats(x_359); -x_362 = lean_ctor_get(x_361, 0); -lean_inc(x_362); -x_363 = lean_ctor_get(x_361, 1); -lean_inc(x_363); -if (lean_is_exclusive(x_361)) { - lean_ctor_release(x_361, 0); - lean_ctor_release(x_361, 1); - x_364 = x_361; -} else { - lean_dec_ref(x_361); - x_364 = lean_box(0); +lean_inc(x_357); +lean_dec(x_347); +x_359 = 0; +x_360 = lean_unsigned_to_nat(0u); +x_361 = l_Float_ofScientific(x_302, x_359, x_360); +lean_dec(x_302); +x_362 = l_Float_ofScientific(x_357, x_359, x_360); +lean_dec(x_357); +x_363 = lean_box_float(x_361); +x_364 = lean_box_float(x_362); +x_365 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_365, 0, x_363); +lean_ctor_set(x_365, 1, x_364); +lean_ctor_set_tag(x_304, 0); +lean_ctor_set(x_304, 1, x_365); +lean_ctor_set(x_304, 0, x_346); +x_209 = x_304; +x_210 = x_358; +goto block_300; } -x_365 = 0; -x_366 = lean_unsigned_to_nat(0u); -x_367 = l_Float_ofScientific(x_294, x_365, x_366); -lean_dec(x_294); -x_368 = l_Float_ofScientific(x_362, x_365, x_366); -lean_dec(x_362); -x_369 = lean_box_float(x_367); -x_370 = lean_box_float(x_368); -if (lean_is_scalar(x_364)) { - x_371 = lean_alloc_ctor(0, 2, 0); -} else { - x_371 = x_364; -} -lean_ctor_set(x_371, 0, x_369); -lean_ctor_set(x_371, 1, x_370); -x_372 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_372, 0, x_360); -lean_ctor_set(x_372, 1, x_371); -x_205 = x_372; -x_206 = x_363; -goto block_292; -} -} -block_292: -{ -lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; uint8_t x_211; lean_object* x_280; uint8_t x_281; -x_207 = lean_ctor_get(x_205, 1); -lean_inc(x_207); -x_208 = lean_ctor_get(x_205, 0); -lean_inc(x_208); -lean_dec(x_205); -x_209 = lean_ctor_get(x_207, 0); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 1); -lean_inc(x_210); -lean_dec(x_207); -x_280 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___closed__2; -x_281 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_280); -if (x_281 == 0) -{ -uint8_t x_282; -x_282 = 0; -x_211 = x_282; -goto block_279; } else { -double x_283; double x_284; double x_285; lean_object* x_286; lean_object* x_287; uint8_t x_288; lean_object* x_289; double x_290; uint8_t x_291; -x_283 = lean_unbox_float(x_210); -x_284 = lean_unbox_float(x_209); -x_285 = lean_float_sub(x_283, x_284); -x_286 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___closed__3; -x_287 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_286); -x_288 = 0; -x_289 = lean_unsigned_to_nat(0u); -x_290 = l_Float_ofScientific(x_287, x_288, x_289); -lean_dec(x_287); -x_291 = lean_float_decLt(x_290, x_285); -x_211 = x_291; -goto block_279; +lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; uint8_t x_373; lean_object* x_374; double x_375; double x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; +x_366 = lean_ctor_get(x_304, 0); +x_367 = lean_ctor_get(x_304, 1); +lean_inc(x_367); +lean_inc(x_366); +lean_dec(x_304); +x_368 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_368, 0, x_366); +x_369 = lean_io_get_num_heartbeats(x_367); +x_370 = lean_ctor_get(x_369, 0); +lean_inc(x_370); +x_371 = lean_ctor_get(x_369, 1); +lean_inc(x_371); +if (lean_is_exclusive(x_369)) { + lean_ctor_release(x_369, 0); + lean_ctor_release(x_369, 1); + x_372 = x_369; +} else { + lean_dec_ref(x_369); + x_372 = lean_box(0); } -block_279: +x_373 = 0; +x_374 = lean_unsigned_to_nat(0u); +x_375 = l_Float_ofScientific(x_302, x_373, x_374); +lean_dec(x_302); +x_376 = l_Float_ofScientific(x_370, x_373, x_374); +lean_dec(x_370); +x_377 = lean_box_float(x_375); +x_378 = lean_box_float(x_376); +if (lean_is_scalar(x_372)) { + x_379 = lean_alloc_ctor(0, 2, 0); +} else { + x_379 = x_372; +} +lean_ctor_set(x_379, 0, x_377); +lean_ctor_set(x_379, 1, x_378); +x_380 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_380, 0, x_368); +lean_ctor_set(x_380, 1, x_379); +x_209 = x_380; +x_210 = x_371; +goto block_300; +} +} +block_300: +{ +lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; uint8_t x_217; +x_211 = lean_ctor_get(x_209, 1); +lean_inc(x_211); +x_212 = lean_ctor_get(x_209, 0); +lean_inc(x_212); +lean_dec(x_209); +x_213 = lean_ctor_get(x_211, 0); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 1); +lean_inc(x_214); +lean_dec(x_211); +x_215 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___closed__2; +x_216 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_215); +if (x_216 == 0) { if (x_6 == 0) { -if (x_211 == 0) +uint8_t x_282; +x_282 = 0; +x_217 = x_282; +goto block_281; +} +else { -lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; -lean_dec(x_210); -lean_dec(x_209); +lean_object* x_283; double x_284; double x_285; lean_object* x_286; +x_283 = lean_box(0); +x_284 = lean_unbox_float(x_213); +lean_dec(x_213); +x_285 = lean_unbox_float(x_214); +lean_dec(x_214); +x_286 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_284, x_285, x_5, x_283, x_9, x_10, x_210); +return x_286; +} +} +else +{ +if (x_6 == 0) +{ +double x_287; double x_288; double x_289; lean_object* x_290; lean_object* x_291; uint8_t x_292; lean_object* x_293; double x_294; uint8_t x_295; +x_287 = lean_unbox_float(x_214); +x_288 = lean_unbox_float(x_213); +x_289 = lean_float_sub(x_287, x_288); +x_290 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___closed__3; +x_291 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_290); +x_292 = 0; +x_293 = lean_unsigned_to_nat(0u); +x_294 = l_Float_ofScientific(x_291, x_292, x_293); +lean_dec(x_291); +x_295 = lean_float_decLt(x_294, x_289); +x_217 = x_295; +goto block_281; +} +else +{ +lean_object* x_296; double x_297; double x_298; lean_object* x_299; +x_296 = lean_box(0); +x_297 = lean_unbox_float(x_213); +lean_dec(x_213); +x_298 = lean_unbox_float(x_214); +lean_dec(x_214); +x_299 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_297, x_298, x_5, x_296, x_9, x_10, x_210); +return x_299; +} +} +block_281: +{ +if (x_217 == 0) +{ +lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; uint8_t x_222; +lean_dec(x_214); +lean_dec(x_213); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_212 = lean_st_ref_take(x_10, x_206); -x_213 = lean_ctor_get(x_212, 0); -lean_inc(x_213); -x_214 = lean_ctor_get(x_213, 3); -lean_inc(x_214); -x_215 = lean_ctor_get(x_212, 1); -lean_inc(x_215); -lean_dec(x_212); -x_216 = !lean_is_exclusive(x_213); -if (x_216 == 0) +x_218 = lean_st_ref_take(x_10, x_210); +x_219 = lean_ctor_get(x_218, 0); +lean_inc(x_219); +x_220 = lean_ctor_get(x_219, 3); +lean_inc(x_220); +x_221 = lean_ctor_get(x_218, 1); +lean_inc(x_221); +lean_dec(x_218); +x_222 = !lean_is_exclusive(x_219); +if (x_222 == 0) { -lean_object* x_217; uint8_t x_218; -x_217 = lean_ctor_get(x_213, 3); -lean_dec(x_217); -x_218 = !lean_is_exclusive(x_214); -if (x_218 == 0) -{ -lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; -x_219 = lean_ctor_get(x_214, 0); -x_220 = l_Lean_PersistentArray_append___rarg(x_13, x_219); -lean_dec(x_219); -lean_ctor_set(x_214, 0, x_220); -x_221 = lean_st_ref_set(x_10, x_213, x_215); -x_222 = lean_ctor_get(x_221, 1); -lean_inc(x_222); -lean_dec(x_221); -x_223 = l_MonadExcept_ofExcept___at_Lean_addDecl___spec__5(x_208, x_9, x_10, x_222); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_223) == 0) -{ -uint8_t x_224; -x_224 = !lean_is_exclusive(x_223); +lean_object* x_223; uint8_t x_224; +x_223 = lean_ctor_get(x_219, 3); +lean_dec(x_223); +x_224 = !lean_is_exclusive(x_220); if (x_224 == 0) { -return x_223; -} -else -{ -lean_object* x_225; lean_object* x_226; lean_object* x_227; -x_225 = lean_ctor_get(x_223, 0); -x_226 = lean_ctor_get(x_223, 1); -lean_inc(x_226); -lean_inc(x_225); -lean_dec(x_223); -x_227 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_227, 0, x_225); -lean_ctor_set(x_227, 1, x_226); -return x_227; -} -} -else -{ -uint8_t x_228; -x_228 = !lean_is_exclusive(x_223); -if (x_228 == 0) -{ -return x_223; -} -else -{ -lean_object* x_229; lean_object* x_230; lean_object* x_231; -x_229 = lean_ctor_get(x_223, 0); -x_230 = lean_ctor_get(x_223, 1); -lean_inc(x_230); -lean_inc(x_229); -lean_dec(x_223); -x_231 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_231, 0, x_229); -lean_ctor_set(x_231, 1, x_230); -return x_231; -} -} -} -else -{ -uint64_t x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; -x_232 = lean_ctor_get_uint64(x_214, sizeof(void*)*1); -x_233 = lean_ctor_get(x_214, 0); -lean_inc(x_233); -lean_dec(x_214); -x_234 = l_Lean_PersistentArray_append___rarg(x_13, x_233); -lean_dec(x_233); -x_235 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_235, 0, x_234); -lean_ctor_set_uint64(x_235, sizeof(void*)*1, x_232); -lean_ctor_set(x_213, 3, x_235); -x_236 = lean_st_ref_set(x_10, x_213, x_215); -x_237 = lean_ctor_get(x_236, 1); -lean_inc(x_237); -lean_dec(x_236); -x_238 = l_MonadExcept_ofExcept___at_Lean_addDecl___spec__5(x_208, x_9, x_10, x_237); +lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; +x_225 = lean_ctor_get(x_220, 0); +x_226 = l_Lean_PersistentArray_append___rarg(x_13, x_225); +lean_dec(x_225); +lean_ctor_set(x_220, 0, x_226); +x_227 = lean_st_ref_set(x_10, x_219, x_221); +x_228 = lean_ctor_get(x_227, 1); +lean_inc(x_228); +lean_dec(x_227); +x_229 = l_MonadExcept_ofExcept___at_Lean_addDecl___spec__5(x_212, x_9, x_10, x_228); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_238) == 0) +lean_dec(x_212); +if (lean_obj_tag(x_229) == 0) { -lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; -x_239 = lean_ctor_get(x_238, 0); +uint8_t x_230; +x_230 = !lean_is_exclusive(x_229); +if (x_230 == 0) +{ +return x_229; +} +else +{ +lean_object* x_231; lean_object* x_232; lean_object* x_233; +x_231 = lean_ctor_get(x_229, 0); +x_232 = lean_ctor_get(x_229, 1); +lean_inc(x_232); +lean_inc(x_231); +lean_dec(x_229); +x_233 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_233, 0, x_231); +lean_ctor_set(x_233, 1, x_232); +return x_233; +} +} +else +{ +uint8_t x_234; +x_234 = !lean_is_exclusive(x_229); +if (x_234 == 0) +{ +return x_229; +} +else +{ +lean_object* x_235; lean_object* x_236; lean_object* x_237; +x_235 = lean_ctor_get(x_229, 0); +x_236 = lean_ctor_get(x_229, 1); +lean_inc(x_236); +lean_inc(x_235); +lean_dec(x_229); +x_237 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_237, 0, x_235); +lean_ctor_set(x_237, 1, x_236); +return x_237; +} +} +} +else +{ +uint64_t x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; +x_238 = lean_ctor_get_uint64(x_220, sizeof(void*)*1); +x_239 = lean_ctor_get(x_220, 0); lean_inc(x_239); -x_240 = lean_ctor_get(x_238, 1); -lean_inc(x_240); -if (lean_is_exclusive(x_238)) { - lean_ctor_release(x_238, 0); - lean_ctor_release(x_238, 1); - x_241 = x_238; -} else { - lean_dec_ref(x_238); - x_241 = lean_box(0); -} -if (lean_is_scalar(x_241)) { - x_242 = lean_alloc_ctor(0, 2, 0); -} else { - x_242 = x_241; -} -lean_ctor_set(x_242, 0, x_239); -lean_ctor_set(x_242, 1, x_240); -return x_242; -} -else -{ -lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; -x_243 = lean_ctor_get(x_238, 0); +lean_dec(x_220); +x_240 = l_Lean_PersistentArray_append___rarg(x_13, x_239); +lean_dec(x_239); +x_241 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_241, 0, x_240); +lean_ctor_set_uint64(x_241, sizeof(void*)*1, x_238); +lean_ctor_set(x_219, 3, x_241); +x_242 = lean_st_ref_set(x_10, x_219, x_221); +x_243 = lean_ctor_get(x_242, 1); lean_inc(x_243); -x_244 = lean_ctor_get(x_238, 1); -lean_inc(x_244); -if (lean_is_exclusive(x_238)) { - lean_ctor_release(x_238, 0); - lean_ctor_release(x_238, 1); - x_245 = x_238; -} else { - lean_dec_ref(x_238); - x_245 = lean_box(0); -} -if (lean_is_scalar(x_245)) { - x_246 = lean_alloc_ctor(1, 2, 0); -} else { - x_246 = x_245; -} -lean_ctor_set(x_246, 0, x_243); -lean_ctor_set(x_246, 1, x_244); -return x_246; -} -} -} -else -{ -lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; uint64_t x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; -x_247 = lean_ctor_get(x_213, 0); -x_248 = lean_ctor_get(x_213, 1); -x_249 = lean_ctor_get(x_213, 2); -x_250 = lean_ctor_get(x_213, 4); -x_251 = lean_ctor_get(x_213, 5); -x_252 = lean_ctor_get(x_213, 6); -x_253 = lean_ctor_get(x_213, 7); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_inc(x_248); -lean_inc(x_247); -lean_dec(x_213); -x_254 = lean_ctor_get_uint64(x_214, sizeof(void*)*1); -x_255 = lean_ctor_get(x_214, 0); -lean_inc(x_255); -if (lean_is_exclusive(x_214)) { - lean_ctor_release(x_214, 0); - x_256 = x_214; -} else { - lean_dec_ref(x_214); - x_256 = lean_box(0); -} -x_257 = l_Lean_PersistentArray_append___rarg(x_13, x_255); -lean_dec(x_255); -if (lean_is_scalar(x_256)) { - x_258 = lean_alloc_ctor(0, 1, 8); -} else { - x_258 = x_256; -} -lean_ctor_set(x_258, 0, x_257); -lean_ctor_set_uint64(x_258, sizeof(void*)*1, x_254); -x_259 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_259, 0, x_247); -lean_ctor_set(x_259, 1, x_248); -lean_ctor_set(x_259, 2, x_249); -lean_ctor_set(x_259, 3, x_258); -lean_ctor_set(x_259, 4, x_250); -lean_ctor_set(x_259, 5, x_251); -lean_ctor_set(x_259, 6, x_252); -lean_ctor_set(x_259, 7, x_253); -x_260 = lean_st_ref_set(x_10, x_259, x_215); -x_261 = lean_ctor_get(x_260, 1); -lean_inc(x_261); -lean_dec(x_260); -x_262 = l_MonadExcept_ofExcept___at_Lean_addDecl___spec__5(x_208, x_9, x_10, x_261); +lean_dec(x_242); +x_244 = l_MonadExcept_ofExcept___at_Lean_addDecl___spec__5(x_212, x_9, x_10, x_243); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_262) == 0) +lean_dec(x_212); +if (lean_obj_tag(x_244) == 0) { -lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; -x_263 = lean_ctor_get(x_262, 0); -lean_inc(x_263); -x_264 = lean_ctor_get(x_262, 1); -lean_inc(x_264); -if (lean_is_exclusive(x_262)) { - lean_ctor_release(x_262, 0); - lean_ctor_release(x_262, 1); - x_265 = x_262; +lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; +x_245 = lean_ctor_get(x_244, 0); +lean_inc(x_245); +x_246 = lean_ctor_get(x_244, 1); +lean_inc(x_246); +if (lean_is_exclusive(x_244)) { + lean_ctor_release(x_244, 0); + lean_ctor_release(x_244, 1); + x_247 = x_244; } else { - lean_dec_ref(x_262); - x_265 = lean_box(0); + lean_dec_ref(x_244); + x_247 = lean_box(0); } -if (lean_is_scalar(x_265)) { - x_266 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_247)) { + x_248 = lean_alloc_ctor(0, 2, 0); } else { - x_266 = x_265; + x_248 = x_247; } -lean_ctor_set(x_266, 0, x_263); -lean_ctor_set(x_266, 1, x_264); -return x_266; +lean_ctor_set(x_248, 0, x_245); +lean_ctor_set(x_248, 1, x_246); +return x_248; } else { -lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; -x_267 = lean_ctor_get(x_262, 0); +lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; +x_249 = lean_ctor_get(x_244, 0); +lean_inc(x_249); +x_250 = lean_ctor_get(x_244, 1); +lean_inc(x_250); +if (lean_is_exclusive(x_244)) { + lean_ctor_release(x_244, 0); + lean_ctor_release(x_244, 1); + x_251 = x_244; +} else { + lean_dec_ref(x_244); + x_251 = lean_box(0); +} +if (lean_is_scalar(x_251)) { + x_252 = lean_alloc_ctor(1, 2, 0); +} else { + x_252 = x_251; +} +lean_ctor_set(x_252, 0, x_249); +lean_ctor_set(x_252, 1, x_250); +return x_252; +} +} +} +else +{ +lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; uint64_t x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; +x_253 = lean_ctor_get(x_219, 0); +x_254 = lean_ctor_get(x_219, 1); +x_255 = lean_ctor_get(x_219, 2); +x_256 = lean_ctor_get(x_219, 4); +x_257 = lean_ctor_get(x_219, 5); +x_258 = lean_ctor_get(x_219, 6); +x_259 = lean_ctor_get(x_219, 7); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_inc(x_254); +lean_inc(x_253); +lean_dec(x_219); +x_260 = lean_ctor_get_uint64(x_220, sizeof(void*)*1); +x_261 = lean_ctor_get(x_220, 0); +lean_inc(x_261); +if (lean_is_exclusive(x_220)) { + lean_ctor_release(x_220, 0); + x_262 = x_220; +} else { + lean_dec_ref(x_220); + x_262 = lean_box(0); +} +x_263 = l_Lean_PersistentArray_append___rarg(x_13, x_261); +lean_dec(x_261); +if (lean_is_scalar(x_262)) { + x_264 = lean_alloc_ctor(0, 1, 8); +} else { + x_264 = x_262; +} +lean_ctor_set(x_264, 0, x_263); +lean_ctor_set_uint64(x_264, sizeof(void*)*1, x_260); +x_265 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_265, 0, x_253); +lean_ctor_set(x_265, 1, x_254); +lean_ctor_set(x_265, 2, x_255); +lean_ctor_set(x_265, 3, x_264); +lean_ctor_set(x_265, 4, x_256); +lean_ctor_set(x_265, 5, x_257); +lean_ctor_set(x_265, 6, x_258); +lean_ctor_set(x_265, 7, x_259); +x_266 = lean_st_ref_set(x_10, x_265, x_221); +x_267 = lean_ctor_get(x_266, 1); lean_inc(x_267); -x_268 = lean_ctor_get(x_262, 1); -lean_inc(x_268); -if (lean_is_exclusive(x_262)) { - lean_ctor_release(x_262, 0); - lean_ctor_release(x_262, 1); - x_269 = x_262; +lean_dec(x_266); +x_268 = l_MonadExcept_ofExcept___at_Lean_addDecl___spec__5(x_212, x_9, x_10, x_267); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_212); +if (lean_obj_tag(x_268) == 0) +{ +lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; +x_269 = lean_ctor_get(x_268, 0); +lean_inc(x_269); +x_270 = lean_ctor_get(x_268, 1); +lean_inc(x_270); +if (lean_is_exclusive(x_268)) { + lean_ctor_release(x_268, 0); + lean_ctor_release(x_268, 1); + x_271 = x_268; } else { - lean_dec_ref(x_262); - x_269 = lean_box(0); + lean_dec_ref(x_268); + x_271 = lean_box(0); } -if (lean_is_scalar(x_269)) { - x_270 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_271)) { + x_272 = lean_alloc_ctor(0, 2, 0); } else { - x_270 = x_269; + x_272 = x_271; } -lean_ctor_set(x_270, 0, x_267); -lean_ctor_set(x_270, 1, x_268); -return x_270; +lean_ctor_set(x_272, 0, x_269); +lean_ctor_set(x_272, 1, x_270); +return x_272; +} +else +{ +lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; +x_273 = lean_ctor_get(x_268, 0); +lean_inc(x_273); +x_274 = lean_ctor_get(x_268, 1); +lean_inc(x_274); +if (lean_is_exclusive(x_268)) { + lean_ctor_release(x_268, 0); + lean_ctor_release(x_268, 1); + x_275 = x_268; +} else { + lean_dec_ref(x_268); + x_275 = lean_box(0); +} +if (lean_is_scalar(x_275)) { + x_276 = lean_alloc_ctor(1, 2, 0); +} else { + x_276 = x_275; +} +lean_ctor_set(x_276, 0, x_273); +lean_ctor_set(x_276, 1, x_274); +return x_276; } } } else { -lean_object* x_271; double x_272; double x_273; lean_object* x_274; -x_271 = lean_box(0); -x_272 = lean_unbox_float(x_209); -lean_dec(x_209); -x_273 = lean_unbox_float(x_210); -lean_dec(x_210); -x_274 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3(x_2, x_3, x_4, x_13, x_208, x_1, x_211, x_272, x_273, x_5, x_271, x_9, x_10, x_206); -return x_274; -} -} -else -{ -lean_object* x_275; double x_276; double x_277; lean_object* x_278; -x_275 = lean_box(0); -x_276 = lean_unbox_float(x_209); -lean_dec(x_209); -x_277 = lean_unbox_float(x_210); -lean_dec(x_210); -x_278 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3(x_2, x_3, x_4, x_13, x_208, x_1, x_211, x_276, x_277, x_5, x_275, x_9, x_10, x_206); -return x_278; +lean_object* x_277; double x_278; double x_279; lean_object* x_280; +x_277 = lean_box(0); +x_278 = lean_unbox_float(x_213); +lean_dec(x_213); +x_279 = lean_unbox_float(x_214); +lean_dec(x_214); +x_280 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_278, x_279, x_5, x_277, x_9, x_10, x_210); +return x_280; } } } @@ -2099,41 +2092,39 @@ lean_dec(x_4); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; uint8_t x_16; double x_17; double x_18; lean_object* x_19; -x_15 = lean_unbox(x_2); +uint8_t x_14; uint8_t x_15; double x_16; double x_17; lean_object* x_18; +x_14 = lean_unbox(x_2); lean_dec(x_2); -x_16 = lean_unbox(x_8); +x_15 = lean_unbox(x_7); +lean_dec(x_7); +x_16 = lean_unbox_float(x_8); lean_dec(x_8); x_17 = lean_unbox_float(x_9); lean_dec(x_9); -x_18 = lean_unbox_float(x_10); -lean_dec(x_10); -x_19 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2(x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_16, x_17, x_18, x_11, x_12, x_13, x_14); -lean_dec(x_13); -lean_dec(x_7); +x_18 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2(x_1, x_14, x_3, x_4, x_5, x_6, x_15, x_16, x_17, x_10, x_11, x_12, x_13); +lean_dec(x_12); lean_dec(x_6); -return x_19; +return x_18; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; uint8_t x_16; double x_17; double x_18; lean_object* x_19; -x_15 = lean_unbox(x_2); +uint8_t x_14; uint8_t x_15; double x_16; double x_17; lean_object* x_18; +x_14 = lean_unbox(x_2); lean_dec(x_2); -x_16 = lean_unbox(x_7); +x_15 = lean_unbox(x_6); +lean_dec(x_6); +x_16 = lean_unbox_float(x_7); lean_dec(x_7); x_17 = lean_unbox_float(x_8); lean_dec(x_8); -x_18 = lean_unbox_float(x_9); -lean_dec(x_9); -x_19 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3(x_1, x_15, x_3, x_4, x_5, x_6, x_16, x_17, x_18, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_11); -lean_dec(x_6); -return x_19; +x_18 = l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3(x_1, x_14, x_3, x_4, x_5, x_15, x_16, x_17, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_10); +return x_18; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { @@ -2279,8 +2270,6 @@ lean_mark_persistent(l_Lean_Environment_addDecl___closed__1); l_Lean_logWarning___at_Lean_addDecl___spec__3___closed__1 = _init_l_Lean_logWarning___at_Lean_addDecl___spec__3___closed__1(); lean_mark_persistent(l_Lean_logWarning___at_Lean_addDecl___spec__3___closed__1); l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2___closed__1(); -l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2___closed__2 = _init_l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2___closed__2(); -lean_mark_persistent(l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__2___closed__2); l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3___closed__1); l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at_Lean_addDecl___spec__4___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Class.c b/stage0/stdlib/Lean/Class.c index 1c386c7877..e62acd70d6 100644 --- a/stage0/stdlib/Lean/Class.c +++ b/stage0/stdlib/Lean/Class.c @@ -2983,7 +2983,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_mkOutParamArgsImplicit_go___closed__1; x_2 = l_Lean_mkOutParamArgsImplicit_go___closed__2; -x_3 = lean_unsigned_to_nat(1761u); +x_3 = lean_unsigned_to_nat(1765u); x_4 = lean_unsigned_to_nat(24u); x_5 = l_Lean_mkOutParamArgsImplicit_go___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -3004,7 +3004,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_mkOutParamArgsImplicit_go___closed__1; x_2 = l_Lean_mkOutParamArgsImplicit_go___closed__5; -x_3 = lean_unsigned_to_nat(1750u); +x_3 = lean_unsigned_to_nat(1754u); x_4 = lean_unsigned_to_nat(23u); x_5 = l_Lean_mkOutParamArgsImplicit_go___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); diff --git a/stage0/stdlib/Lean/Compiler/CSimpAttr.c b/stage0/stdlib/Lean/Compiler/CSimpAttr.c index fdae930ca2..dd5e6f7484 100644 --- a/stage0/stdlib/Lean/Compiler/CSimpAttr.c +++ b/stage0/stdlib/Lean/Compiler/CSimpAttr.c @@ -16,7 +16,6 @@ extern "C" { LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_initFn____x40_Lean_Compiler_CSimpAttr___hyg_471_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_CSimp_initFn____x40_Lean_Compiler_CSimpAttr___hyg_471____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); -lean_object* l_Lean_SMap_switch___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__4(lean_object*); static lean_object* l_Lean_Compiler_CSimp_instInhabitedEntry___closed__1; static size_t l_Lean_PersistentHashMap_insertAux___at_Lean_Compiler_CSimp_initFn____x40_Lean_Compiler_CSimpAttr___hyg_137____spec__3___closed__1; size_t lean_usize_shift_right(size_t, size_t); @@ -125,6 +124,7 @@ lean_object* l_Lean_PersistentHashMap_mkEmptyEntries(lean_object*, lean_object*) uint64_t l_Lean_Name_hash___override(lean_object*); static lean_object* l_Lean_Compiler_CSimp_initFn____x40_Lean_Compiler_CSimpAttr___hyg_137____closed__8; uint64_t lean_uint64_xor(uint64_t, uint64_t); +lean_object* l_Lean_SMap_switch___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__4(lean_object*); lean_object* l_Lean_ScopedEnvExtension_getState___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at_Lean_Compiler_CSimp_initFn____x40_Lean_Compiler_CSimpAttr___hyg_137____spec__2(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_CSimp_initFn____x40_Lean_Compiler_CSimpAttr___hyg_471____closed__12; @@ -330,7 +330,7 @@ lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_3 = lean_ctor_get(x_1, 0); x_4 = lean_ctor_get(x_1, 1); x_5 = l_Lean_SMap_switch___at_Lean_Compiler_CSimp_State_switch___spec__1(x_3); -x_6 = l_Lean_SMap_switch___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__4(x_4); +x_6 = l_Lean_SMap_switch___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__4(x_4); lean_ctor_set(x_1, 1, x_6); lean_ctor_set(x_1, 0, x_5); return x_1; @@ -344,7 +344,7 @@ lean_inc(x_8); lean_inc(x_7); lean_dec(x_1); x_9 = l_Lean_SMap_switch___at_Lean_Compiler_CSimp_State_switch___spec__1(x_7); -x_10 = l_Lean_SMap_switch___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__4(x_8); +x_10 = l_Lean_SMap_switch___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__4(x_8); x_11 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_11, 0, x_9); lean_ctor_set(x_11, 1, x_10); diff --git a/stage0/stdlib/Lean/Compiler/LCNF/FVarUtil.c b/stage0/stdlib/Lean/Compiler/LCNF/FVarUtil.c index c55f35af49..ac7e3ffcf2 100644 --- a/stage0/stdlib/Lean/Compiler/LCNF/FVarUtil.c +++ b/stage0/stdlib/Lean/Compiler/LCNF/FVarUtil.c @@ -442,7 +442,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Compiler_LCNF_Expr_mapFVarM___rarg___lambda__1___closed__1; x_2 = l_Lean_Compiler_LCNF_Expr_mapFVarM___rarg___lambda__1___closed__2; -x_3 = lean_unsigned_to_nat(1697u); +x_3 = lean_unsigned_to_nat(1701u); x_4 = lean_unsigned_to_nat(20u); x_5 = l_Lean_Compiler_LCNF_Expr_mapFVarM___rarg___lambda__1___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -521,7 +521,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Compiler_LCNF_Expr_mapFVarM___rarg___lambda__1___closed__1; x_2 = l_Lean_Compiler_LCNF_Expr_mapFVarM___rarg___lambda__2___closed__1; -x_3 = lean_unsigned_to_nat(1686u); +x_3 = lean_unsigned_to_nat(1690u); x_4 = lean_unsigned_to_nat(18u); x_5 = l_Lean_Compiler_LCNF_Expr_mapFVarM___rarg___lambda__2___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -637,7 +637,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Compiler_LCNF_Expr_mapFVarM___rarg___lambda__1___closed__1; x_2 = l_Lean_Compiler_LCNF_Expr_mapFVarM___rarg___lambda__4___closed__1; -x_3 = lean_unsigned_to_nat(1781u); +x_3 = lean_unsigned_to_nat(1785u); x_4 = lean_unsigned_to_nat(20u); x_5 = l_Lean_Compiler_LCNF_Expr_mapFVarM___rarg___lambda__4___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -775,7 +775,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Compiler_LCNF_Expr_mapFVarM___rarg___lambda__1___closed__1; x_2 = l_Lean_Compiler_LCNF_Expr_mapFVarM___rarg___lambda__6___closed__1; -x_3 = lean_unsigned_to_nat(1761u); +x_3 = lean_unsigned_to_nat(1765u); x_4 = lean_unsigned_to_nat(24u); x_5 = l_Lean_Compiler_LCNF_Expr_mapFVarM___rarg___lambda__6___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); diff --git a/stage0/stdlib/Lean/Compiler/LCNF/Main.c b/stage0/stdlib/Lean/Compiler/LCNF/Main.c index 887bd14548..d246b12615 100644 --- a/stage0/stdlib/Lean/Compiler/LCNF/Main.c +++ b/stage0/stdlib/Lean/Compiler/LCNF/Main.c @@ -21,7 +21,6 @@ static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Compiler_LCNF_checkpo static lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__3; lean_object* l_Lean_Compiler_LCNF_toDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_main___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_profiler; static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Compiler_LCNF_PassManager_run___spec__6___lambda__1___closed__10; lean_object* l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_PassManager_run___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -51,9 +50,9 @@ static lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Compiler_LCNF_PassManager_run___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentArray_push___rarg(lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Compiler_LCNF_checkpoint___spec__1___closed__2; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); uint8_t l_Lean_Option_get___at_Lean_Compiler_LCNF_toConfigOptions___spec__2(lean_object*, lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); @@ -115,7 +114,7 @@ static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Compiler_LCNF_PassMan LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_main___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_main___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Compiler_LCNF_PassManager_run___spec__6___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_main___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_shouldGenerateCode___closed__11; @@ -145,7 +144,7 @@ uint8_t l___private_Lean_Compiler_InlineAttrs_0__Lean_Compiler_hasInlineAttrCore lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Compiler_LCNF_PassManager_run___spec__8___closed__1; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3___closed__2; lean_object* lean_io_mono_nanos_now(lean_object*); @@ -165,7 +164,7 @@ uint8_t l_Lean_isExtern(lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Compiler_LCNF_PassManager_run___spec__8___closed__3; extern lean_object* l_Lean_trace_profiler_threshold; lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_compile___closed__2; static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Main___hyg_1412____closed__15; @@ -195,7 +194,7 @@ extern lean_object* l_Lean_Compiler_compiler_check; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Compiler_LCNF_checkpoint___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_shouldGenerateCode_isCompIrrelevant(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__2; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_shouldGenerateCode___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_shouldGenerateCode___closed__6; @@ -265,7 +264,7 @@ static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Compiler_LCNF_checkpo lean_object* lean_array_get_size(lean_object*); static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Main___hyg_1412____closed__3; static lean_object* l_Lean_Compiler_LCNF_main___lambda__1___closed__1; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); uint8_t lean_usize_dec_lt(size_t, size_t); static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Compiler_LCNF_PassManager_run___spec__6___lambda__1___closed__9; @@ -282,14 +281,13 @@ uint64_t l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Compiler_LCNF_PassManager_run___spec__3___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofName(lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Repr_0__Nat_reprFast(lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Compiler_LCNF_checkpoint___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Compiler_LCNF_PassManager_run___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_PassManager_run___lambda__2___closed__2; static lean_object* l_Lean_Compiler_LCNF_shouldGenerateCode___closed__5; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_shouldGenerateCode___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2___closed__2; static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Compiler_LCNF_PassManager_run___spec__6___lambda__1___closed__13; double lean_float_sub(double, double); LEAN_EXPORT lean_object* l_Lean_Meta_isMatcher___at_Lean_Compiler_LCNF_shouldGenerateCode___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -3237,69 +3235,36 @@ x_3 = l_Float_ofScientific(x_1, x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2___closed__2() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2___closed__1; +x_17 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_3); +lean_ctor_set_float(x_17, sizeof(void*)*2, x_16); +lean_ctor_set_float(x_17, sizeof(void*)*2 + 8, x_16); +lean_ctor_set_uint8(x_17, sizeof(void*)*2 + 16, x_2); +x_18 = lean_box(0); +x_19 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__1(x_4, x_5, x_10, x_6, x_17, x_18, x_11, x_12, x_13, x_14, x_15); +return x_19; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { -_start: +else { -double x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_18 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_18, 0, x_1); -lean_ctor_set(x_18, 1, x_3); -lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); -lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); -lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); -x_19 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2___closed__2; -x_20 = l_Lean_Option_get___at_Lean_Compiler_LCNF_toConfigOptions___spec__2(x_7, x_19); -if (x_20 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_21; lean_object* x_22; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); x_21 = lean_box(0); -x_22 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_18, x_21, x_12, x_13, x_14, x_15, x_16); +x_22 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15); return x_22; } -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_18); -x_23 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_3); -lean_ctor_set_float(x_23, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); -x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_23, x_24, x_12, x_13, x_14, x_15, x_16); -return x_25; -} -} -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_18); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16); -return x_28; -} } } static lean_object* _init_l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3___closed__1() { @@ -3319,48 +3284,48 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 5); -lean_inc(x_17); -lean_inc(x_15); +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 5); +lean_inc(x_16); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_18 = lean_apply_6(x_10, x_5, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_18) == 0) +x_17 = lean_apply_6(x_9, x_5, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_14, x_15, x_20); -lean_dec(x_15); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_13, x_14, x_19); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_21; +return x_20; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_14, x_15, x_22); -lean_dec(x_15); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_13, x_14, x_21); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } } } @@ -3424,253 +3389,253 @@ x_17 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___ x_18 = l_Lean_Option_get___at_Lean_Compiler_LCNF_toConfigOptions___spec__2(x_1, x_17); if (x_18 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_109 = lean_io_mono_nanos_now(x_16); -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_109, 1); -lean_inc(x_111); -lean_dec(x_109); +lean_object* x_19; lean_object* x_20; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_113 = lean_io_mono_nanos_now(x_16); +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +lean_dec(x_113); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_112 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_111); -if (lean_obj_tag(x_112) == 0) +x_116 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_115); +if (lean_obj_tag(x_116) == 0) { -uint8_t x_113; -x_113 = !lean_is_exclusive(x_112); -if (x_113 == 0) +uint8_t x_117; +x_117 = !lean_is_exclusive(x_116); +if (x_117 == 0) { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_114 = lean_ctor_get(x_112, 0); -x_115 = lean_ctor_get(x_112, 1); -x_116 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_116, 0, x_114); -x_117 = lean_io_mono_nanos_now(x_115); -x_118 = !lean_is_exclusive(x_117); -if (x_118 == 0) +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_118 = lean_ctor_get(x_116, 0); +x_119 = lean_ctor_get(x_116, 1); +x_120 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_120, 0, x_118); +x_121 = lean_io_mono_nanos_now(x_119); +x_122 = !lean_is_exclusive(x_121); +if (x_122 == 0) { -lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_122; double x_123; double x_124; double x_125; double x_126; double x_127; lean_object* x_128; lean_object* x_129; -x_119 = lean_ctor_get(x_117, 0); -x_120 = lean_ctor_get(x_117, 1); -x_121 = 0; -x_122 = lean_unsigned_to_nat(0u); -x_123 = l_Float_ofScientific(x_110, x_121, x_122); -lean_dec(x_110); -x_124 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; -x_125 = lean_float_div(x_123, x_124); -x_126 = l_Float_ofScientific(x_119, x_121, x_122); -lean_dec(x_119); -x_127 = lean_float_div(x_126, x_124); -x_128 = lean_box_float(x_125); -x_129 = lean_box_float(x_127); -lean_ctor_set(x_117, 1, x_129); -lean_ctor_set(x_117, 0, x_128); -lean_ctor_set(x_112, 1, x_117); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_120; -goto block_108; +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; double x_130; double x_131; lean_object* x_132; lean_object* x_133; +x_123 = lean_ctor_get(x_121, 0); +x_124 = lean_ctor_get(x_121, 1); +x_125 = 0; +x_126 = lean_unsigned_to_nat(0u); +x_127 = l_Float_ofScientific(x_114, x_125, x_126); +lean_dec(x_114); +x_128 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; +x_129 = lean_float_div(x_127, x_128); +x_130 = l_Float_ofScientific(x_123, x_125, x_126); +lean_dec(x_123); +x_131 = lean_float_div(x_130, x_128); +x_132 = lean_box_float(x_129); +x_133 = lean_box_float(x_131); +lean_ctor_set(x_121, 1, x_133); +lean_ctor_set(x_121, 0, x_132); +lean_ctor_set(x_116, 1, x_121); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_124; +goto block_112; } else { -lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; double x_134; double x_135; double x_136; double x_137; double x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_130 = lean_ctor_get(x_117, 0); -x_131 = lean_ctor_get(x_117, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_117); -x_132 = 0; -x_133 = lean_unsigned_to_nat(0u); -x_134 = l_Float_ofScientific(x_110, x_132, x_133); -lean_dec(x_110); -x_135 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; -x_136 = lean_float_div(x_134, x_135); -x_137 = l_Float_ofScientific(x_130, x_132, x_133); -lean_dec(x_130); -x_138 = lean_float_div(x_137, x_135); -x_139 = lean_box_float(x_136); -x_140 = lean_box_float(x_138); -x_141 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -lean_ctor_set(x_112, 1, x_141); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_131; -goto block_108; +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_134 = lean_ctor_get(x_121, 0); +x_135 = lean_ctor_get(x_121, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_121); +x_136 = 0; +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Float_ofScientific(x_114, x_136, x_137); +lean_dec(x_114); +x_139 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; +x_140 = lean_float_div(x_138, x_139); +x_141 = l_Float_ofScientific(x_134, x_136, x_137); +lean_dec(x_134); +x_142 = lean_float_div(x_141, x_139); +x_143 = lean_box_float(x_140); +x_144 = lean_box_float(x_142); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_116, 1, x_145); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_135; +goto block_112; } } else { -lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_142 = lean_ctor_get(x_112, 0); -x_143 = lean_ctor_get(x_112, 1); -lean_inc(x_143); -lean_inc(x_142); -lean_dec(x_112); -x_144 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_144, 0, x_142); -x_145 = lean_io_mono_nanos_now(x_143); -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; lean_object* x_154; double x_155; double x_156; double x_157; double x_158; double x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_146 = lean_ctor_get(x_116, 0); +x_147 = lean_ctor_get(x_116, 1); lean_inc(x_147); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - lean_ctor_release(x_145, 1); - x_148 = x_145; +lean_inc(x_146); +lean_dec(x_116); +x_148 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_148, 0, x_146); +x_149 = lean_io_mono_nanos_now(x_147); +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + lean_ctor_release(x_149, 1); + x_152 = x_149; } else { - lean_dec_ref(x_145); - x_148 = lean_box(0); + lean_dec_ref(x_149); + x_152 = lean_box(0); } -x_149 = 0; -x_150 = lean_unsigned_to_nat(0u); -x_151 = l_Float_ofScientific(x_110, x_149, x_150); -lean_dec(x_110); -x_152 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; -x_153 = lean_float_div(x_151, x_152); -x_154 = l_Float_ofScientific(x_146, x_149, x_150); -lean_dec(x_146); -x_155 = lean_float_div(x_154, x_152); -x_156 = lean_box_float(x_153); -x_157 = lean_box_float(x_155); -if (lean_is_scalar(x_148)) { - x_158 = lean_alloc_ctor(0, 2, 0); +x_153 = 0; +x_154 = lean_unsigned_to_nat(0u); +x_155 = l_Float_ofScientific(x_114, x_153, x_154); +lean_dec(x_114); +x_156 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; +x_157 = lean_float_div(x_155, x_156); +x_158 = l_Float_ofScientific(x_150, x_153, x_154); +lean_dec(x_150); +x_159 = lean_float_div(x_158, x_156); +x_160 = lean_box_float(x_157); +x_161 = lean_box_float(x_159); +if (lean_is_scalar(x_152)) { + x_162 = lean_alloc_ctor(0, 2, 0); } else { - x_158 = x_148; + x_162 = x_152; } -lean_ctor_set(x_158, 0, x_156); -lean_ctor_set(x_158, 1, x_157); -x_159 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_159, 0, x_144); -lean_ctor_set(x_159, 1, x_158); -x_19 = x_159; -x_20 = x_147; -goto block_108; +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_161); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_148); +lean_ctor_set(x_163, 1, x_162); +x_19 = x_163; +x_20 = x_151; +goto block_112; } } else { -uint8_t x_160; -x_160 = !lean_is_exclusive(x_112); -if (x_160 == 0) +uint8_t x_164; +x_164 = !lean_is_exclusive(x_116); +if (x_164 == 0) { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_161 = lean_ctor_get(x_112, 0); -x_162 = lean_ctor_get(x_112, 1); -x_163 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_163, 0, x_161); -x_164 = lean_io_mono_nanos_now(x_162); -x_165 = !lean_is_exclusive(x_164); -if (x_165 == 0) +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; +x_165 = lean_ctor_get(x_116, 0); +x_166 = lean_ctor_get(x_116, 1); +x_167 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_167, 0, x_165); +x_168 = lean_io_mono_nanos_now(x_166); +x_169 = !lean_is_exclusive(x_168); +if (x_169 == 0) { -lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; double x_170; double x_171; double x_172; double x_173; double x_174; lean_object* x_175; lean_object* x_176; -x_166 = lean_ctor_get(x_164, 0); -x_167 = lean_ctor_get(x_164, 1); -x_168 = 0; -x_169 = lean_unsigned_to_nat(0u); -x_170 = l_Float_ofScientific(x_110, x_168, x_169); -lean_dec(x_110); -x_171 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; -x_172 = lean_float_div(x_170, x_171); -x_173 = l_Float_ofScientific(x_166, x_168, x_169); -lean_dec(x_166); -x_174 = lean_float_div(x_173, x_171); -x_175 = lean_box_float(x_172); -x_176 = lean_box_float(x_174); -lean_ctor_set(x_164, 1, x_176); -lean_ctor_set(x_164, 0, x_175); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_164); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_167; -goto block_108; +lean_object* x_170; lean_object* x_171; uint8_t x_172; lean_object* x_173; double x_174; double x_175; double x_176; double x_177; double x_178; lean_object* x_179; lean_object* x_180; +x_170 = lean_ctor_get(x_168, 0); +x_171 = lean_ctor_get(x_168, 1); +x_172 = 0; +x_173 = lean_unsigned_to_nat(0u); +x_174 = l_Float_ofScientific(x_114, x_172, x_173); +lean_dec(x_114); +x_175 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; +x_176 = lean_float_div(x_174, x_175); +x_177 = l_Float_ofScientific(x_170, x_172, x_173); +lean_dec(x_170); +x_178 = lean_float_div(x_177, x_175); +x_179 = lean_box_float(x_176); +x_180 = lean_box_float(x_178); +lean_ctor_set(x_168, 1, x_180); +lean_ctor_set(x_168, 0, x_179); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_168); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_171; +goto block_112; } else { -lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_object* x_180; double x_181; double x_182; double x_183; double x_184; double x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_177 = lean_ctor_get(x_164, 0); -x_178 = lean_ctor_get(x_164, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_164); -x_179 = 0; -x_180 = lean_unsigned_to_nat(0u); -x_181 = l_Float_ofScientific(x_110, x_179, x_180); -lean_dec(x_110); -x_182 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; -x_183 = lean_float_div(x_181, x_182); -x_184 = l_Float_ofScientific(x_177, x_179, x_180); -lean_dec(x_177); -x_185 = lean_float_div(x_184, x_182); -x_186 = lean_box_float(x_183); -x_187 = lean_box_float(x_185); -x_188 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_188); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_178; -goto block_108; +lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_181 = lean_ctor_get(x_168, 0); +x_182 = lean_ctor_get(x_168, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_168); +x_183 = 0; +x_184 = lean_unsigned_to_nat(0u); +x_185 = l_Float_ofScientific(x_114, x_183, x_184); +lean_dec(x_114); +x_186 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; +x_187 = lean_float_div(x_185, x_186); +x_188 = l_Float_ofScientific(x_181, x_183, x_184); +lean_dec(x_181); +x_189 = lean_float_div(x_188, x_186); +x_190 = lean_box_float(x_187); +x_191 = lean_box_float(x_189); +x_192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_192); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_182; +goto block_112; } } else { -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_189 = lean_ctor_get(x_112, 0); -x_190 = lean_ctor_get(x_112, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_112); -x_191 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_191, 0, x_189); -x_192 = lean_io_mono_nanos_now(x_190); -x_193 = lean_ctor_get(x_192, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; lean_object* x_201; double x_202; double x_203; double x_204; double x_205; double x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_193 = lean_ctor_get(x_116, 0); +x_194 = lean_ctor_get(x_116, 1); lean_inc(x_194); -if (lean_is_exclusive(x_192)) { - lean_ctor_release(x_192, 0); - lean_ctor_release(x_192, 1); - x_195 = x_192; +lean_inc(x_193); +lean_dec(x_116); +x_195 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_195, 0, x_193); +x_196 = lean_io_mono_nanos_now(x_194); +x_197 = lean_ctor_get(x_196, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_196, 1); +lean_inc(x_198); +if (lean_is_exclusive(x_196)) { + lean_ctor_release(x_196, 0); + lean_ctor_release(x_196, 1); + x_199 = x_196; } else { - lean_dec_ref(x_192); - x_195 = lean_box(0); + lean_dec_ref(x_196); + x_199 = lean_box(0); } -x_196 = 0; -x_197 = lean_unsigned_to_nat(0u); -x_198 = l_Float_ofScientific(x_110, x_196, x_197); -lean_dec(x_110); -x_199 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; -x_200 = lean_float_div(x_198, x_199); -x_201 = l_Float_ofScientific(x_193, x_196, x_197); -lean_dec(x_193); -x_202 = lean_float_div(x_201, x_199); -x_203 = lean_box_float(x_200); -x_204 = lean_box_float(x_202); -if (lean_is_scalar(x_195)) { - x_205 = lean_alloc_ctor(0, 2, 0); +x_200 = 0; +x_201 = lean_unsigned_to_nat(0u); +x_202 = l_Float_ofScientific(x_114, x_200, x_201); +lean_dec(x_114); +x_203 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; +x_204 = lean_float_div(x_202, x_203); +x_205 = l_Float_ofScientific(x_197, x_200, x_201); +lean_dec(x_197); +x_206 = lean_float_div(x_205, x_203); +x_207 = lean_box_float(x_204); +x_208 = lean_box_float(x_206); +if (lean_is_scalar(x_199)) { + x_209 = lean_alloc_ctor(0, 2, 0); } else { - x_205 = x_195; + x_209 = x_199; } -lean_ctor_set(x_205, 0, x_203); -lean_ctor_set(x_205, 1, x_204); -x_206 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_206, 0, x_191); -lean_ctor_set(x_206, 1, x_205); -x_19 = x_206; -x_20 = x_194; -goto block_108; +lean_ctor_set(x_209, 0, x_207); +lean_ctor_set(x_209, 1, x_208); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_195); +lean_ctor_set(x_210, 1, x_209); +x_19 = x_210; +x_20 = x_198; +goto block_112; } } -block_108: +block_112: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_94; uint8_t x_95; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); x_22 = lean_ctor_get(x_19, 0); @@ -3681,17 +3646,33 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_21, 1); lean_inc(x_24); lean_dec(x_21); -x_94 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__2; -x_95 = l_Lean_Option_get___at_Lean_Compiler_LCNF_toConfigOptions___spec__2(x_1, x_94); -if (x_95 == 0) +x_25 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__2; +x_26 = l_Lean_Option_get___at_Lean_Compiler_LCNF_toConfigOptions___spec__2(x_1, x_25); +if (x_26 == 0) { -uint8_t x_96; -x_96 = 0; -x_25 = x_96; -goto block_93; +if (x_6 == 0) +{ +uint8_t x_92; +x_92 = 0; +x_27 = x_92; +goto block_91; } else { +lean_object* x_93; double x_94; double x_95; lean_object* x_96; +x_93 = lean_box(0); +x_94 = lean_unbox_float(x_23); +lean_dec(x_23); +x_95 = lean_unbox_float(x_24); +lean_dec(x_24); +x_96 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_94, x_95, x_5, x_93, x_9, x_10, x_11, x_12, x_20); +return x_96; +} +} +else +{ +if (x_6 == 0) +{ double x_97; double x_98; double x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; double x_104; double x_105; double x_106; uint8_t x_107; x_97 = lean_unbox_float(x_24); x_98 = lean_unbox_float(x_23); @@ -3705,859 +3686,871 @@ lean_dec(x_101); x_105 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__4; x_106 = lean_float_div(x_104, x_105); x_107 = lean_float_decLt(x_106, x_99); -x_25 = x_107; -goto block_93; +x_27 = x_107; +goto block_91; } -block_93: +else { -if (x_6 == 0) +lean_object* x_108; double x_109; double x_110; lean_object* x_111; +x_108 = lean_box(0); +x_109 = lean_unbox_float(x_23); +lean_dec(x_23); +x_110 = lean_unbox_float(x_24); +lean_dec(x_24); +x_111 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_109, x_110, x_5, x_108, x_9, x_10, x_11, x_12, x_20); +return x_111; +} +} +block_91: { -if (x_25 == 0) +if (x_27 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_24); lean_dec(x_23); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_26 = lean_st_ref_take(x_12, x_20); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -x_29 = lean_ctor_get(x_26, 1); +x_28 = lean_st_ref_take(x_12, x_20); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -lean_dec(x_26); -x_30 = !lean_is_exclusive(x_27); -if (x_30 == 0) -{ -lean_object* x_31; uint8_t x_32; -x_31 = lean_ctor_get(x_27, 3); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_28); +x_30 = lean_ctor_get(x_29, 3); +lean_inc(x_30); +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = !lean_is_exclusive(x_29); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_33 = lean_ctor_get(x_28, 0); -x_34 = l_Lean_PersistentArray_append___rarg(x_15, x_33); +lean_object* x_33; uint8_t x_34; +x_33 = lean_ctor_get(x_29, 3); lean_dec(x_33); -lean_ctor_set(x_28, 0, x_34); -x_35 = lean_st_ref_set(x_12, x_27, x_29); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); +x_34 = !lean_is_exclusive(x_30); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_ctor_get(x_30, 0); +x_36 = l_Lean_PersistentArray_append___rarg(x_15, x_35); lean_dec(x_35); -x_37 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_PassManager_run___spec__5(x_22, x_9, x_10, x_11, x_12, x_36); +lean_ctor_set(x_30, 0, x_36); +x_37 = lean_st_ref_set(x_12, x_29, x_31); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +x_39 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_PassManager_run___spec__5(x_22, x_9, x_10, x_11, x_12, x_38); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_37) == 0) +if (lean_obj_tag(x_39) == 0) { -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -return x_37; +return x_39; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_ctor_get(x_37, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_37); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_39); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } else { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_37); -if (x_42 == 0) +uint8_t x_44; +x_44 = !lean_is_exclusive(x_39); +if (x_44 == 0) { -return x_37; +return x_39; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_37, 0); -x_44 = lean_ctor_get(x_37, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_37); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_39, 0); +x_46 = lean_ctor_get(x_39, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_39); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } } else { -uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_47 = lean_ctor_get(x_28, 0); -lean_inc(x_47); -lean_dec(x_28); -x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_47); -lean_dec(x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); -lean_ctor_set(x_27, 3, x_49); -x_50 = lean_st_ref_set(x_12, x_27, x_29); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -lean_dec(x_50); -x_52 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_PassManager_run___spec__5(x_22, x_9, x_10, x_11, x_12, x_51); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_22); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); +uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_49 = lean_ctor_get(x_30, 0); +lean_inc(x_49); +lean_dec(x_30); +x_50 = l_Lean_PersistentArray_append___rarg(x_15, x_49); +lean_dec(x_49); +x_51 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); +lean_ctor_set(x_29, 3, x_51); +x_52 = lean_st_ref_set(x_12, x_29, x_31); +x_53 = lean_ctor_get(x_52, 1); lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_55 = x_52; +lean_dec(x_52); +x_54 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_PassManager_run___spec__5(x_22, x_9, x_10, x_11, x_12, x_53); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_22); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; } else { - lean_dec_ref(x_52); - x_55 = lean_box(0); + lean_dec_ref(x_54); + x_57 = lean_box(0); } -if (lean_is_scalar(x_55)) { - x_56 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_57)) { + x_58 = lean_alloc_ctor(0, 2, 0); } else { - x_56 = x_55; + x_58 = x_57; } -lean_ctor_set(x_56, 0, x_53); -lean_ctor_set(x_56, 1, x_54); -return x_56; +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_56); +return x_58; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_52, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_52, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_59 = x_52; +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_54, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_54, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_61 = x_54; } else { - lean_dec_ref(x_52); - x_59 = lean_box(0); + lean_dec_ref(x_54); + x_61 = lean_box(0); } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(1, 2, 0); } else { - x_60 = x_59; + x_62 = x_61; } -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_58); -return x_60; +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; } } } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_61 = lean_ctor_get(x_27, 0); -x_62 = lean_ctor_get(x_27, 1); -x_63 = lean_ctor_get(x_27, 2); -x_64 = lean_ctor_get(x_27, 4); -x_65 = lean_ctor_get(x_27, 5); -x_66 = lean_ctor_get(x_27, 6); -x_67 = lean_ctor_get(x_27, 7); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_63 = lean_ctor_get(x_29, 0); +x_64 = lean_ctor_get(x_29, 1); +x_65 = lean_ctor_get(x_29, 2); +x_66 = lean_ctor_get(x_29, 4); +x_67 = lean_ctor_get(x_29, 5); +x_68 = lean_ctor_get(x_29, 6); +x_69 = lean_ctor_get(x_29, 7); +lean_inc(x_69); +lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_27); -x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_69 = lean_ctor_get(x_28, 0); -lean_inc(x_69); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - x_70 = x_28; +lean_dec(x_29); +x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_71 = lean_ctor_get(x_30, 0); +lean_inc(x_71); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + x_72 = x_30; } else { - lean_dec_ref(x_28); - x_70 = lean_box(0); + lean_dec_ref(x_30); + x_72 = lean_box(0); } -x_71 = l_Lean_PersistentArray_append___rarg(x_15, x_69); -lean_dec(x_69); -if (lean_is_scalar(x_70)) { - x_72 = lean_alloc_ctor(0, 1, 8); +x_73 = l_Lean_PersistentArray_append___rarg(x_15, x_71); +lean_dec(x_71); +if (lean_is_scalar(x_72)) { + x_74 = lean_alloc_ctor(0, 1, 8); } else { - x_72 = x_70; + x_74 = x_72; } -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); -x_73 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_73, 0, x_61); -lean_ctor_set(x_73, 1, x_62); -lean_ctor_set(x_73, 2, x_63); -lean_ctor_set(x_73, 3, x_72); -lean_ctor_set(x_73, 4, x_64); -lean_ctor_set(x_73, 5, x_65); -lean_ctor_set(x_73, 6, x_66); -lean_ctor_set(x_73, 7, x_67); -x_74 = lean_st_ref_set(x_12, x_73, x_29); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_76 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_PassManager_run___spec__5(x_22, x_9, x_10, x_11, x_12, x_75); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); +x_75 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_64); +lean_ctor_set(x_75, 2, x_65); +lean_ctor_set(x_75, 3, x_74); +lean_ctor_set(x_75, 4, x_66); +lean_ctor_set(x_75, 5, x_67); +lean_ctor_set(x_75, 6, x_68); +lean_ctor_set(x_75, 7, x_69); +x_76 = lean_st_ref_set(x_12, x_75, x_31); +x_77 = lean_ctor_get(x_76, 1); +lean_inc(x_77); +lean_dec(x_76); +x_78 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_PassManager_run___spec__5(x_22, x_9, x_10, x_11, x_12, x_77); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_76) == 0) +if (lean_obj_tag(x_78) == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_76, 0); -lean_inc(x_77); -x_78 = lean_ctor_get(x_76, 1); -lean_inc(x_78); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_79 = x_76; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_81 = x_78; } else { - lean_dec_ref(x_76); - x_79 = lean_box(0); + lean_dec_ref(x_78); + x_81 = lean_box(0); } -if (lean_is_scalar(x_79)) { - x_80 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(0, 2, 0); } else { - x_80 = x_79; + x_82 = x_81; } -lean_ctor_set(x_80, 0, x_77); -lean_ctor_set(x_80, 1, x_78); -return x_80; +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_80); +return x_82; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_81 = lean_ctor_get(x_76, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_76, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_83 = x_76; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_83 = lean_ctor_get(x_78, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_78, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_85 = x_78; } else { - lean_dec_ref(x_76); - x_83 = lean_box(0); + lean_dec_ref(x_78); + x_85 = lean_box(0); } -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); } else { - x_84 = x_83; + x_86 = x_85; } -lean_ctor_set(x_84, 0, x_81); -lean_ctor_set(x_84, 1, x_82); -return x_84; +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; } } } else { -lean_object* x_85; double x_86; double x_87; lean_object* x_88; -x_85 = lean_box(0); -x_86 = lean_unbox_float(x_23); +lean_object* x_87; double x_88; double x_89; lean_object* x_90; +x_87 = lean_box(0); +x_88 = lean_unbox_float(x_23); lean_dec(x_23); -x_87 = lean_unbox_float(x_24); +x_89 = lean_unbox_float(x_24); lean_dec(x_24); -x_88 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_86, x_87, x_5, x_85, x_9, x_10, x_11, x_12, x_20); -return x_88; -} -} -else -{ -lean_object* x_89; double x_90; double x_91; lean_object* x_92; -x_89 = lean_box(0); -x_90 = lean_unbox_float(x_23); -lean_dec(x_23); -x_91 = lean_unbox_float(x_24); -lean_dec(x_24); -x_92 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_20); -return x_92; +x_90 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_20); +return x_90; } } } } else { -lean_object* x_207; lean_object* x_208; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_16); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_211; lean_object* x_212; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_16); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_207 = x_336; -x_208 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_211 = x_344; +x_212 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_207 = x_374; -x_208 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_282; uint8_t x_283; -x_209 = lean_ctor_get(x_207, 1); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 0); -lean_inc(x_210); -lean_dec(x_207); -x_211 = lean_ctor_get(x_209, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 1); -lean_inc(x_212); -lean_dec(x_209); -x_282 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at_Lean_Compiler_LCNF_toConfigOptions___spec__2(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_213 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_212); -x_286 = lean_unbox_float(x_211); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_Compiler_LCNF_toConfigOptions___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_213 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_211 = x_382; +x_212 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; uint8_t x_219; +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 0); +lean_inc(x_214); +lean_dec(x_211); +x_215 = lean_ctor_get(x_213, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 1); +lean_inc(x_216); +lean_dec(x_213); +x_217 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__2; +x_218 = l_Lean_Option_get___at_Lean_Compiler_LCNF_toConfigOptions___spec__2(x_1, x_217); +if (x_218 == 0) { if (x_6 == 0) { -if (x_213 == 0) +uint8_t x_284; +x_284 = 0; +x_219 = x_284; +goto block_283; +} +else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; -lean_dec(x_212); -lean_dec(x_211); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_215); +lean_dec(x_215); +x_287 = lean_unbox_float(x_216); +lean_dec(x_216); +x_288 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_212); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_216); +x_290 = lean_unbox_float(x_215); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_Compiler_LCNF_toConfigOptions___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_219 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_215); +lean_dec(x_215); +x_300 = lean_unbox_float(x_216); +lean_dec(x_216); +x_301 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_212); +return x_301; +} +} +block_283: +{ +if (x_219 == 0) +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; +lean_dec(x_216); +lean_dec(x_215); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_214 = lean_st_ref_take(x_12, x_208); -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_215, 3); -lean_inc(x_216); -x_217 = lean_ctor_get(x_214, 1); -lean_inc(x_217); -lean_dec(x_214); -x_218 = !lean_is_exclusive(x_215); -if (x_218 == 0) +x_220 = lean_st_ref_take(x_12, x_212); +x_221 = lean_ctor_get(x_220, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_221, 3); +lean_inc(x_222); +x_223 = lean_ctor_get(x_220, 1); +lean_inc(x_223); +lean_dec(x_220); +x_224 = !lean_is_exclusive(x_221); +if (x_224 == 0) { -lean_object* x_219; uint8_t x_220; -x_219 = lean_ctor_get(x_215, 3); -lean_dec(x_219); -x_220 = !lean_is_exclusive(x_216); -if (x_220 == 0) -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_221 = lean_ctor_get(x_216, 0); -x_222 = l_Lean_PersistentArray_append___rarg(x_15, x_221); -lean_dec(x_221); -lean_ctor_set(x_216, 0, x_222); -x_223 = lean_st_ref_set(x_12, x_215, x_217); -x_224 = lean_ctor_get(x_223, 1); -lean_inc(x_224); -lean_dec(x_223); -x_225 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_PassManager_run___spec__5(x_210, x_9, x_10, x_11, x_12, x_224); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_225) == 0) -{ -uint8_t x_226; -x_226 = !lean_is_exclusive(x_225); +lean_object* x_225; uint8_t x_226; +x_225 = lean_ctor_get(x_221, 3); +lean_dec(x_225); +x_226 = !lean_is_exclusive(x_222); if (x_226 == 0) { -return x_225; -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; -x_227 = lean_ctor_get(x_225, 0); -x_228 = lean_ctor_get(x_225, 1); -lean_inc(x_228); -lean_inc(x_227); -lean_dec(x_225); -x_229 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_229, 0, x_227); -lean_ctor_set(x_229, 1, x_228); -return x_229; -} -} -else -{ -uint8_t x_230; -x_230 = !lean_is_exclusive(x_225); -if (x_230 == 0) -{ -return x_225; -} -else -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_225, 0); -x_232 = lean_ctor_get(x_225, 1); -lean_inc(x_232); -lean_inc(x_231); -lean_dec(x_225); -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_231); -lean_ctor_set(x_233, 1, x_232); -return x_233; -} -} -} -else -{ -uint64_t x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_234 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_235 = lean_ctor_get(x_216, 0); -lean_inc(x_235); -lean_dec(x_216); -x_236 = l_Lean_PersistentArray_append___rarg(x_15, x_235); -lean_dec(x_235); -x_237 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_237, 0, x_236); -lean_ctor_set_uint64(x_237, sizeof(void*)*1, x_234); -lean_ctor_set(x_215, 3, x_237); -x_238 = lean_st_ref_set(x_12, x_215, x_217); -x_239 = lean_ctor_get(x_238, 1); -lean_inc(x_239); -lean_dec(x_238); -x_240 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_PassManager_run___spec__5(x_210, x_9, x_10, x_11, x_12, x_239); +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_227 = lean_ctor_get(x_222, 0); +x_228 = l_Lean_PersistentArray_append___rarg(x_15, x_227); +lean_dec(x_227); +lean_ctor_set(x_222, 0, x_228); +x_229 = lean_st_ref_set(x_12, x_221, x_223); +x_230 = lean_ctor_get(x_229, 1); +lean_inc(x_230); +lean_dec(x_229); +x_231 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_PassManager_run___spec__5(x_214, x_9, x_10, x_11, x_12, x_230); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_240) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_231) == 0) { -lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; -x_241 = lean_ctor_get(x_240, 0); +uint8_t x_232; +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +return x_231; +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_231, 0); +x_234 = lean_ctor_get(x_231, 1); +lean_inc(x_234); +lean_inc(x_233); +lean_dec(x_231); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +return x_235; +} +} +else +{ +uint8_t x_236; +x_236 = !lean_is_exclusive(x_231); +if (x_236 == 0) +{ +return x_231; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_231, 0); +x_238 = lean_ctor_get(x_231, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_231); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} +} +} +else +{ +uint64_t x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_240 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_241 = lean_ctor_get(x_222, 0); lean_inc(x_241); -x_242 = lean_ctor_get(x_240, 1); -lean_inc(x_242); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_243 = x_240; -} else { - lean_dec_ref(x_240); - x_243 = lean_box(0); -} -if (lean_is_scalar(x_243)) { - x_244 = lean_alloc_ctor(0, 2, 0); -} else { - x_244 = x_243; -} -lean_ctor_set(x_244, 0, x_241); -lean_ctor_set(x_244, 1, x_242); -return x_244; -} -else -{ -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_245 = lean_ctor_get(x_240, 0); +lean_dec(x_222); +x_242 = l_Lean_PersistentArray_append___rarg(x_15, x_241); +lean_dec(x_241); +x_243 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set_uint64(x_243, sizeof(void*)*1, x_240); +lean_ctor_set(x_221, 3, x_243); +x_244 = lean_st_ref_set(x_12, x_221, x_223); +x_245 = lean_ctor_get(x_244, 1); lean_inc(x_245); -x_246 = lean_ctor_get(x_240, 1); -lean_inc(x_246); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_247 = x_240; -} else { - lean_dec_ref(x_240); - x_247 = lean_box(0); -} -if (lean_is_scalar(x_247)) { - x_248 = lean_alloc_ctor(1, 2, 0); -} else { - x_248 = x_247; -} -lean_ctor_set(x_248, 0, x_245); -lean_ctor_set(x_248, 1, x_246); -return x_248; -} -} -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_249 = lean_ctor_get(x_215, 0); -x_250 = lean_ctor_get(x_215, 1); -x_251 = lean_ctor_get(x_215, 2); -x_252 = lean_ctor_get(x_215, 4); -x_253 = lean_ctor_get(x_215, 5); -x_254 = lean_ctor_get(x_215, 6); -x_255 = lean_ctor_get(x_215, 7); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_dec(x_215); -x_256 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_257 = lean_ctor_get(x_216, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_216)) { - lean_ctor_release(x_216, 0); - x_258 = x_216; -} else { - lean_dec_ref(x_216); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_15, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_261, 0, x_249); -lean_ctor_set(x_261, 1, x_250); -lean_ctor_set(x_261, 2, x_251); -lean_ctor_set(x_261, 3, x_260); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_255); -x_262 = lean_st_ref_set(x_12, x_261, x_217); -x_263 = lean_ctor_get(x_262, 1); -lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_PassManager_run___spec__5(x_210, x_9, x_10, x_11, x_12, x_263); +lean_dec(x_244); +x_246 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_PassManager_run___spec__5(x_214, x_9, x_10, x_11, x_12, x_245); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_246) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_247 = lean_ctor_get(x_246, 0); +lean_inc(x_247); +x_248 = lean_ctor_get(x_246, 1); +lean_inc(x_248); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_249 = x_246; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_246); + x_249 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_249)) { + x_250 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_250 = x_249; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_250, 0, x_247); +lean_ctor_set(x_250, 1, x_248); +return x_250; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_251 = lean_ctor_get(x_246, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_246, 1); +lean_inc(x_252); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_253 = x_246; +} else { + lean_dec_ref(x_246); + x_253 = lean_box(0); +} +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(1, 2, 0); +} else { + x_254 = x_253; +} +lean_ctor_set(x_254, 0, x_251); +lean_ctor_set(x_254, 1, x_252); +return x_254; +} +} +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_255 = lean_ctor_get(x_221, 0); +x_256 = lean_ctor_get(x_221, 1); +x_257 = lean_ctor_get(x_221, 2); +x_258 = lean_ctor_get(x_221, 4); +x_259 = lean_ctor_get(x_221, 5); +x_260 = lean_ctor_get(x_221, 6); +x_261 = lean_ctor_get(x_221, 7); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_221); +x_262 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_263 = lean_ctor_get(x_222, 0); +lean_inc(x_263); +if (lean_is_exclusive(x_222)) { + lean_ctor_release(x_222, 0); + x_264 = x_222; +} else { + lean_dec_ref(x_222); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_15, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_267, 0, x_255); +lean_ctor_set(x_267, 1, x_256); +lean_ctor_set(x_267, 2, x_257); +lean_ctor_set(x_267, 3, x_266); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_261); +x_268 = lean_st_ref_set(x_12, x_267, x_223); +x_269 = lean_ctor_get(x_268, 1); lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_PassManager_run___spec__5(x_214, x_9, x_10, x_11, x_12, x_269); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_214); +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_272 = x_271; + x_274 = x_273; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; +} else { + lean_dec_ref(x_270); + x_277 = lean_box(0); +} +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); +} else { + x_278 = x_277; +} +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_211); -lean_dec(x_211); -x_275 = lean_unbox_float(x_212); -lean_dec(x_212); -x_276 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_274, x_275, x_5, x_273, x_9, x_10, x_11, x_12, x_208); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_211); -lean_dec(x_211); -x_279 = lean_unbox_float(x_212); -lean_dec(x_212); -x_280 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_278, x_279, x_5, x_277, x_9, x_10, x_11, x_12, x_208); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_215); +lean_dec(x_215); +x_281 = lean_unbox_float(x_216); +lean_dec(x_216); +x_282 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_212); +return x_282; } } } @@ -7485,44 +7478,42 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_8); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); lean_dec(x_8); x_19 = lean_unbox_float(x_9); lean_dec(x_9); -x_20 = lean_unbox_float(x_10); -lean_dec(x_10); -x_21 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_18, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_15); +x_20 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2(x_1, x_16, x_3, x_4, x_5, x_6, x_17, x_18, x_19, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_21; +return x_20; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_7); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); lean_dec(x_7); x_19 = lean_unbox_float(x_8); lean_dec(x_8); -x_20 = lean_unbox_float(x_9); -lean_dec(x_9); -x_21 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_11); -lean_dec(x_6); -return x_21; +x_20 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3(x_1, x_16, x_3, x_4, x_5, x_17, x_18, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +return x_20; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -7873,97 +7864,72 @@ lean_dec(x_7); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -double x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_15 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_16 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_16, 0, x_1); -lean_ctor_set(x_16, 1, x_3); -lean_ctor_set_float(x_16, sizeof(void*)*2, x_15); -lean_ctor_set_float(x_16, sizeof(void*)*2 + 8, x_15); -lean_ctor_set_uint8(x_16, sizeof(void*)*2 + 16, x_2); -x_17 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2___closed__2; -x_18 = l_Lean_Option_get___at_Lean_Compiler_LCNF_toConfigOptions___spec__2(x_7, x_17); -if (x_18 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2___closed__1; +x_15 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_15, 0, x_1); +lean_ctor_set(x_15, 1, x_3); +lean_ctor_set_float(x_15, sizeof(void*)*2, x_14); +lean_ctor_set_float(x_15, sizeof(void*)*2 + 8, x_14); +lean_ctor_set_uint8(x_15, sizeof(void*)*2 + 16, x_2); +x_16 = lean_box(0); +x_17 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_15, x_16, x_11, x_12, x_13); +return x_17; +} +else { -lean_object* x_19; lean_object* x_20; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_3); +lean_ctor_set_float(x_18, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); x_19 = lean_box(0); -x_20 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_16, x_19, x_12, x_13, x_14); +x_20 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_18, x_19, x_11, x_12, x_13); return x_20; } -else -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; -lean_dec(x_16); -x_21 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_21, 0, x_1); -lean_ctor_set(x_21, 1, x_3); -lean_ctor_set_float(x_21, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_21, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_21, sizeof(void*)*2 + 16, x_2); -x_22 = lean_box(0); -x_23 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_21, x_22, x_12, x_13, x_14); -return x_23; } } -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -lean_dec(x_16); -x_24 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_24, 0, x_1); -lean_ctor_set(x_24, 1, x_3); -lean_ctor_set_float(x_24, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_24, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_24, sizeof(void*)*2 + 16, x_2); -x_25 = lean_box(0); -x_26 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_24, x_25, x_12, x_13, x_14); -return x_26; -} -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_15; lean_object* x_16; -x_15 = lean_ctor_get(x_12, 5); -lean_inc(x_15); -lean_inc(x_13); +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_11, 5); +lean_inc(x_14); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_16 = lean_apply_4(x_10, x_5, x_12, x_13, x_14); -if (lean_obj_tag(x_16) == 0) +x_15 = lean_apply_4(x_9, x_5, x_11, x_12, x_13); +if (lean_obj_tag(x_15) == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_ctor_get(x_16, 0); +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); lean_inc(x_17); -x_18 = lean_ctor_get(x_16, 1); -lean_inc(x_18); -lean_dec(x_16); -x_19 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_15, x_5, x_6, x_7, x_8, x_9, x_17, x_12, x_13, x_18); -lean_dec(x_13); +lean_dec(x_15); +x_18 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_14, x_5, x_6, x_7, x_8, x_16, x_11, x_12, x_17); +lean_dec(x_12); lean_dec(x_5); -return x_19; +return x_18; } else { -lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_20 = lean_ctor_get(x_16, 1); -lean_inc(x_20); -lean_dec(x_16); -x_21 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3___closed__2; -x_22 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_15, x_5, x_6, x_7, x_8, x_9, x_21, x_12, x_13, x_20); -lean_dec(x_13); +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_15, 1); +lean_inc(x_19); +lean_dec(x_15); +x_20 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3___closed__2; +x_21 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_14, x_5, x_6, x_7, x_8, x_20, x_11, x_12, x_19); +lean_dec(x_12); lean_dec(x_5); -return x_22; +return x_21; } } } @@ -7981,251 +7947,251 @@ x_15 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___ x_16 = l_Lean_Option_get___at_Lean_Compiler_LCNF_toConfigOptions___spec__2(x_1, x_15); if (x_16 == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; -x_107 = lean_io_mono_nanos_now(x_14); -x_108 = lean_ctor_get(x_107, 0); -lean_inc(x_108); -x_109 = lean_ctor_get(x_107, 1); -lean_inc(x_109); -lean_dec(x_107); +lean_object* x_17; lean_object* x_18; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; +x_111 = lean_io_mono_nanos_now(x_14); +x_112 = lean_ctor_get(x_111, 0); +lean_inc(x_112); +x_113 = lean_ctor_get(x_111, 1); +lean_inc(x_113); +lean_dec(x_111); lean_inc(x_10); lean_inc(x_9); -x_110 = lean_apply_3(x_7, x_9, x_10, x_109); -if (lean_obj_tag(x_110) == 0) +x_114 = lean_apply_3(x_7, x_9, x_10, x_113); +if (lean_obj_tag(x_114) == 0) { -uint8_t x_111; -x_111 = !lean_is_exclusive(x_110); -if (x_111 == 0) +uint8_t x_115; +x_115 = !lean_is_exclusive(x_114); +if (x_115 == 0) { -lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; uint8_t x_116; -x_112 = lean_ctor_get(x_110, 0); -x_113 = lean_ctor_get(x_110, 1); -x_114 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_114, 0, x_112); -x_115 = lean_io_mono_nanos_now(x_113); -x_116 = !lean_is_exclusive(x_115); -if (x_116 == 0) +lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; uint8_t x_120; +x_116 = lean_ctor_get(x_114, 0); +x_117 = lean_ctor_get(x_114, 1); +x_118 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_118, 0, x_116); +x_119 = lean_io_mono_nanos_now(x_117); +x_120 = !lean_is_exclusive(x_119); +if (x_120 == 0) { -lean_object* x_117; lean_object* x_118; uint8_t x_119; lean_object* x_120; double x_121; double x_122; double x_123; double x_124; double x_125; lean_object* x_126; lean_object* x_127; -x_117 = lean_ctor_get(x_115, 0); -x_118 = lean_ctor_get(x_115, 1); -x_119 = 0; -x_120 = lean_unsigned_to_nat(0u); -x_121 = l_Float_ofScientific(x_108, x_119, x_120); -lean_dec(x_108); -x_122 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; -x_123 = lean_float_div(x_121, x_122); -x_124 = l_Float_ofScientific(x_117, x_119, x_120); -lean_dec(x_117); -x_125 = lean_float_div(x_124, x_122); -x_126 = lean_box_float(x_123); -x_127 = lean_box_float(x_125); -lean_ctor_set(x_115, 1, x_127); -lean_ctor_set(x_115, 0, x_126); -lean_ctor_set(x_110, 1, x_115); -lean_ctor_set(x_110, 0, x_114); -x_17 = x_110; -x_18 = x_118; -goto block_106; +lean_object* x_121; lean_object* x_122; uint8_t x_123; lean_object* x_124; double x_125; double x_126; double x_127; double x_128; double x_129; lean_object* x_130; lean_object* x_131; +x_121 = lean_ctor_get(x_119, 0); +x_122 = lean_ctor_get(x_119, 1); +x_123 = 0; +x_124 = lean_unsigned_to_nat(0u); +x_125 = l_Float_ofScientific(x_112, x_123, x_124); +lean_dec(x_112); +x_126 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; +x_127 = lean_float_div(x_125, x_126); +x_128 = l_Float_ofScientific(x_121, x_123, x_124); +lean_dec(x_121); +x_129 = lean_float_div(x_128, x_126); +x_130 = lean_box_float(x_127); +x_131 = lean_box_float(x_129); +lean_ctor_set(x_119, 1, x_131); +lean_ctor_set(x_119, 0, x_130); +lean_ctor_set(x_114, 1, x_119); +lean_ctor_set(x_114, 0, x_118); +x_17 = x_114; +x_18 = x_122; +goto block_110; } else { -lean_object* x_128; lean_object* x_129; uint8_t x_130; lean_object* x_131; double x_132; double x_133; double x_134; double x_135; double x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; -x_128 = lean_ctor_get(x_115, 0); -x_129 = lean_ctor_get(x_115, 1); -lean_inc(x_129); -lean_inc(x_128); -lean_dec(x_115); -x_130 = 0; -x_131 = lean_unsigned_to_nat(0u); -x_132 = l_Float_ofScientific(x_108, x_130, x_131); -lean_dec(x_108); -x_133 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; -x_134 = lean_float_div(x_132, x_133); -x_135 = l_Float_ofScientific(x_128, x_130, x_131); -lean_dec(x_128); -x_136 = lean_float_div(x_135, x_133); -x_137 = lean_box_float(x_134); -x_138 = lean_box_float(x_136); -x_139 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_139, 0, x_137); -lean_ctor_set(x_139, 1, x_138); -lean_ctor_set(x_110, 1, x_139); -lean_ctor_set(x_110, 0, x_114); -x_17 = x_110; -x_18 = x_129; -goto block_106; +lean_object* x_132; lean_object* x_133; uint8_t x_134; lean_object* x_135; double x_136; double x_137; double x_138; double x_139; double x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; +x_132 = lean_ctor_get(x_119, 0); +x_133 = lean_ctor_get(x_119, 1); +lean_inc(x_133); +lean_inc(x_132); +lean_dec(x_119); +x_134 = 0; +x_135 = lean_unsigned_to_nat(0u); +x_136 = l_Float_ofScientific(x_112, x_134, x_135); +lean_dec(x_112); +x_137 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; +x_138 = lean_float_div(x_136, x_137); +x_139 = l_Float_ofScientific(x_132, x_134, x_135); +lean_dec(x_132); +x_140 = lean_float_div(x_139, x_137); +x_141 = lean_box_float(x_138); +x_142 = lean_box_float(x_140); +x_143 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_143, 0, x_141); +lean_ctor_set(x_143, 1, x_142); +lean_ctor_set(x_114, 1, x_143); +lean_ctor_set(x_114, 0, x_118); +x_17 = x_114; +x_18 = x_133; +goto block_110; } } else { -lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; uint8_t x_147; lean_object* x_148; double x_149; double x_150; double x_151; double x_152; double x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; -x_140 = lean_ctor_get(x_110, 0); -x_141 = lean_ctor_get(x_110, 1); -lean_inc(x_141); -lean_inc(x_140); -lean_dec(x_110); -x_142 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_142, 0, x_140); -x_143 = lean_io_mono_nanos_now(x_141); -x_144 = lean_ctor_get(x_143, 0); -lean_inc(x_144); -x_145 = lean_ctor_get(x_143, 1); +lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; uint8_t x_151; lean_object* x_152; double x_153; double x_154; double x_155; double x_156; double x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; +x_144 = lean_ctor_get(x_114, 0); +x_145 = lean_ctor_get(x_114, 1); lean_inc(x_145); -if (lean_is_exclusive(x_143)) { - lean_ctor_release(x_143, 0); - lean_ctor_release(x_143, 1); - x_146 = x_143; +lean_inc(x_144); +lean_dec(x_114); +x_146 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_146, 0, x_144); +x_147 = lean_io_mono_nanos_now(x_145); +x_148 = lean_ctor_get(x_147, 0); +lean_inc(x_148); +x_149 = lean_ctor_get(x_147, 1); +lean_inc(x_149); +if (lean_is_exclusive(x_147)) { + lean_ctor_release(x_147, 0); + lean_ctor_release(x_147, 1); + x_150 = x_147; } else { - lean_dec_ref(x_143); - x_146 = lean_box(0); + lean_dec_ref(x_147); + x_150 = lean_box(0); } -x_147 = 0; -x_148 = lean_unsigned_to_nat(0u); -x_149 = l_Float_ofScientific(x_108, x_147, x_148); -lean_dec(x_108); -x_150 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; -x_151 = lean_float_div(x_149, x_150); -x_152 = l_Float_ofScientific(x_144, x_147, x_148); -lean_dec(x_144); -x_153 = lean_float_div(x_152, x_150); -x_154 = lean_box_float(x_151); -x_155 = lean_box_float(x_153); -if (lean_is_scalar(x_146)) { - x_156 = lean_alloc_ctor(0, 2, 0); +x_151 = 0; +x_152 = lean_unsigned_to_nat(0u); +x_153 = l_Float_ofScientific(x_112, x_151, x_152); +lean_dec(x_112); +x_154 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; +x_155 = lean_float_div(x_153, x_154); +x_156 = l_Float_ofScientific(x_148, x_151, x_152); +lean_dec(x_148); +x_157 = lean_float_div(x_156, x_154); +x_158 = lean_box_float(x_155); +x_159 = lean_box_float(x_157); +if (lean_is_scalar(x_150)) { + x_160 = lean_alloc_ctor(0, 2, 0); } else { - x_156 = x_146; + x_160 = x_150; } -lean_ctor_set(x_156, 0, x_154); -lean_ctor_set(x_156, 1, x_155); -x_157 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_157, 0, x_142); -lean_ctor_set(x_157, 1, x_156); -x_17 = x_157; -x_18 = x_145; -goto block_106; +lean_ctor_set(x_160, 0, x_158); +lean_ctor_set(x_160, 1, x_159); +x_161 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_161, 0, x_146); +lean_ctor_set(x_161, 1, x_160); +x_17 = x_161; +x_18 = x_149; +goto block_110; } } else { -uint8_t x_158; -x_158 = !lean_is_exclusive(x_110); -if (x_158 == 0) +uint8_t x_162; +x_162 = !lean_is_exclusive(x_114); +if (x_162 == 0) { -lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; uint8_t x_163; -x_159 = lean_ctor_get(x_110, 0); -x_160 = lean_ctor_get(x_110, 1); -x_161 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_161, 0, x_159); -x_162 = lean_io_mono_nanos_now(x_160); -x_163 = !lean_is_exclusive(x_162); -if (x_163 == 0) +lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; uint8_t x_167; +x_163 = lean_ctor_get(x_114, 0); +x_164 = lean_ctor_get(x_114, 1); +x_165 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_165, 0, x_163); +x_166 = lean_io_mono_nanos_now(x_164); +x_167 = !lean_is_exclusive(x_166); +if (x_167 == 0) { -lean_object* x_164; lean_object* x_165; uint8_t x_166; lean_object* x_167; double x_168; double x_169; double x_170; double x_171; double x_172; lean_object* x_173; lean_object* x_174; -x_164 = lean_ctor_get(x_162, 0); -x_165 = lean_ctor_get(x_162, 1); -x_166 = 0; -x_167 = lean_unsigned_to_nat(0u); -x_168 = l_Float_ofScientific(x_108, x_166, x_167); -lean_dec(x_108); -x_169 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; -x_170 = lean_float_div(x_168, x_169); -x_171 = l_Float_ofScientific(x_164, x_166, x_167); -lean_dec(x_164); -x_172 = lean_float_div(x_171, x_169); -x_173 = lean_box_float(x_170); -x_174 = lean_box_float(x_172); -lean_ctor_set(x_162, 1, x_174); -lean_ctor_set(x_162, 0, x_173); -lean_ctor_set_tag(x_110, 0); -lean_ctor_set(x_110, 1, x_162); -lean_ctor_set(x_110, 0, x_161); -x_17 = x_110; -x_18 = x_165; -goto block_106; +lean_object* x_168; lean_object* x_169; uint8_t x_170; lean_object* x_171; double x_172; double x_173; double x_174; double x_175; double x_176; lean_object* x_177; lean_object* x_178; +x_168 = lean_ctor_get(x_166, 0); +x_169 = lean_ctor_get(x_166, 1); +x_170 = 0; +x_171 = lean_unsigned_to_nat(0u); +x_172 = l_Float_ofScientific(x_112, x_170, x_171); +lean_dec(x_112); +x_173 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; +x_174 = lean_float_div(x_172, x_173); +x_175 = l_Float_ofScientific(x_168, x_170, x_171); +lean_dec(x_168); +x_176 = lean_float_div(x_175, x_173); +x_177 = lean_box_float(x_174); +x_178 = lean_box_float(x_176); +lean_ctor_set(x_166, 1, x_178); +lean_ctor_set(x_166, 0, x_177); +lean_ctor_set_tag(x_114, 0); +lean_ctor_set(x_114, 1, x_166); +lean_ctor_set(x_114, 0, x_165); +x_17 = x_114; +x_18 = x_169; +goto block_110; } else { -lean_object* x_175; lean_object* x_176; uint8_t x_177; lean_object* x_178; double x_179; double x_180; double x_181; double x_182; double x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; -x_175 = lean_ctor_get(x_162, 0); -x_176 = lean_ctor_get(x_162, 1); -lean_inc(x_176); -lean_inc(x_175); -lean_dec(x_162); -x_177 = 0; -x_178 = lean_unsigned_to_nat(0u); -x_179 = l_Float_ofScientific(x_108, x_177, x_178); -lean_dec(x_108); -x_180 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; -x_181 = lean_float_div(x_179, x_180); -x_182 = l_Float_ofScientific(x_175, x_177, x_178); -lean_dec(x_175); -x_183 = lean_float_div(x_182, x_180); -x_184 = lean_box_float(x_181); -x_185 = lean_box_float(x_183); -x_186 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_186, 0, x_184); -lean_ctor_set(x_186, 1, x_185); -lean_ctor_set_tag(x_110, 0); -lean_ctor_set(x_110, 1, x_186); -lean_ctor_set(x_110, 0, x_161); -x_17 = x_110; -x_18 = x_176; -goto block_106; +lean_object* x_179; lean_object* x_180; uint8_t x_181; lean_object* x_182; double x_183; double x_184; double x_185; double x_186; double x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; +x_179 = lean_ctor_get(x_166, 0); +x_180 = lean_ctor_get(x_166, 1); +lean_inc(x_180); +lean_inc(x_179); +lean_dec(x_166); +x_181 = 0; +x_182 = lean_unsigned_to_nat(0u); +x_183 = l_Float_ofScientific(x_112, x_181, x_182); +lean_dec(x_112); +x_184 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; +x_185 = lean_float_div(x_183, x_184); +x_186 = l_Float_ofScientific(x_179, x_181, x_182); +lean_dec(x_179); +x_187 = lean_float_div(x_186, x_184); +x_188 = lean_box_float(x_185); +x_189 = lean_box_float(x_187); +x_190 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_190, 0, x_188); +lean_ctor_set(x_190, 1, x_189); +lean_ctor_set_tag(x_114, 0); +lean_ctor_set(x_114, 1, x_190); +lean_ctor_set(x_114, 0, x_165); +x_17 = x_114; +x_18 = x_180; +goto block_110; } } else { -lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; uint8_t x_194; lean_object* x_195; double x_196; double x_197; double x_198; double x_199; double x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; -x_187 = lean_ctor_get(x_110, 0); -x_188 = lean_ctor_get(x_110, 1); -lean_inc(x_188); -lean_inc(x_187); -lean_dec(x_110); -x_189 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_189, 0, x_187); -x_190 = lean_io_mono_nanos_now(x_188); -x_191 = lean_ctor_get(x_190, 0); -lean_inc(x_191); -x_192 = lean_ctor_get(x_190, 1); +lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; uint8_t x_198; lean_object* x_199; double x_200; double x_201; double x_202; double x_203; double x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; +x_191 = lean_ctor_get(x_114, 0); +x_192 = lean_ctor_get(x_114, 1); lean_inc(x_192); -if (lean_is_exclusive(x_190)) { - lean_ctor_release(x_190, 0); - lean_ctor_release(x_190, 1); - x_193 = x_190; +lean_inc(x_191); +lean_dec(x_114); +x_193 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_193, 0, x_191); +x_194 = lean_io_mono_nanos_now(x_192); +x_195 = lean_ctor_get(x_194, 0); +lean_inc(x_195); +x_196 = lean_ctor_get(x_194, 1); +lean_inc(x_196); +if (lean_is_exclusive(x_194)) { + lean_ctor_release(x_194, 0); + lean_ctor_release(x_194, 1); + x_197 = x_194; } else { - lean_dec_ref(x_190); - x_193 = lean_box(0); + lean_dec_ref(x_194); + x_197 = lean_box(0); } -x_194 = 0; -x_195 = lean_unsigned_to_nat(0u); -x_196 = l_Float_ofScientific(x_108, x_194, x_195); -lean_dec(x_108); -x_197 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; -x_198 = lean_float_div(x_196, x_197); -x_199 = l_Float_ofScientific(x_191, x_194, x_195); -lean_dec(x_191); -x_200 = lean_float_div(x_199, x_197); -x_201 = lean_box_float(x_198); -x_202 = lean_box_float(x_200); -if (lean_is_scalar(x_193)) { - x_203 = lean_alloc_ctor(0, 2, 0); +x_198 = 0; +x_199 = lean_unsigned_to_nat(0u); +x_200 = l_Float_ofScientific(x_112, x_198, x_199); +lean_dec(x_112); +x_201 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__5; +x_202 = lean_float_div(x_200, x_201); +x_203 = l_Float_ofScientific(x_195, x_198, x_199); +lean_dec(x_195); +x_204 = lean_float_div(x_203, x_201); +x_205 = lean_box_float(x_202); +x_206 = lean_box_float(x_204); +if (lean_is_scalar(x_197)) { + x_207 = lean_alloc_ctor(0, 2, 0); } else { - x_203 = x_193; + x_207 = x_197; } -lean_ctor_set(x_203, 0, x_201); -lean_ctor_set(x_203, 1, x_202); -x_204 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_204, 0, x_189); -lean_ctor_set(x_204, 1, x_203); -x_17 = x_204; -x_18 = x_192; -goto block_106; +lean_ctor_set(x_207, 0, x_205); +lean_ctor_set(x_207, 1, x_206); +x_208 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_208, 0, x_193); +lean_ctor_set(x_208, 1, x_207); +x_17 = x_208; +x_18 = x_196; +goto block_110; } } -block_106: +block_110: { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_92; uint8_t x_93; +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; uint8_t x_25; x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); x_20 = lean_ctor_get(x_17, 0); @@ -8236,17 +8202,33 @@ lean_inc(x_21); x_22 = lean_ctor_get(x_19, 1); lean_inc(x_22); lean_dec(x_19); -x_92 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__2; -x_93 = l_Lean_Option_get___at_Lean_Compiler_LCNF_toConfigOptions___spec__2(x_1, x_92); -if (x_93 == 0) +x_23 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__2; +x_24 = l_Lean_Option_get___at_Lean_Compiler_LCNF_toConfigOptions___spec__2(x_1, x_23); +if (x_24 == 0) { -uint8_t x_94; -x_94 = 0; -x_23 = x_94; -goto block_91; +if (x_6 == 0) +{ +uint8_t x_90; +x_90 = 0; +x_25 = x_90; +goto block_89; } else { +lean_object* x_91; double x_92; double x_93; lean_object* x_94; +x_91 = lean_box(0); +x_92 = lean_unbox_float(x_21); +lean_dec(x_21); +x_93 = lean_unbox_float(x_22); +lean_dec(x_22); +x_94 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_92, x_93, x_5, x_91, x_9, x_10, x_18); +return x_94; +} +} +else +{ +if (x_6 == 0) +{ double x_95; double x_96; double x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; lean_object* x_101; double x_102; double x_103; double x_104; uint8_t x_105; x_95 = lean_unbox_float(x_22); x_96 = lean_unbox_float(x_21); @@ -8260,845 +8242,857 @@ lean_dec(x_99); x_103 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__4; x_104 = lean_float_div(x_102, x_103); x_105 = lean_float_decLt(x_104, x_97); -x_23 = x_105; -goto block_91; +x_25 = x_105; +goto block_89; } -block_91: +else { -if (x_6 == 0) +lean_object* x_106; double x_107; double x_108; lean_object* x_109; +x_106 = lean_box(0); +x_107 = lean_unbox_float(x_21); +lean_dec(x_21); +x_108 = lean_unbox_float(x_22); +lean_dec(x_22); +x_109 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_107, x_108, x_5, x_106, x_9, x_10, x_18); +return x_109; +} +} +block_89: { -if (x_23 == 0) +if (x_25 == 0) { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_dec(x_22); lean_dec(x_21); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_24 = lean_st_ref_take(x_10, x_18); -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -x_26 = lean_ctor_get(x_25, 3); -lean_inc(x_26); -x_27 = lean_ctor_get(x_24, 1); +x_26 = lean_st_ref_take(x_10, x_18); +x_27 = lean_ctor_get(x_26, 0); lean_inc(x_27); -lean_dec(x_24); -x_28 = !lean_is_exclusive(x_25); -if (x_28 == 0) -{ -lean_object* x_29; uint8_t x_30; -x_29 = lean_ctor_get(x_25, 3); -lean_dec(x_29); -x_30 = !lean_is_exclusive(x_26); +x_28 = lean_ctor_get(x_27, 3); +lean_inc(x_28); +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); +lean_dec(x_26); +x_30 = !lean_is_exclusive(x_27); if (x_30 == 0) { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_31 = lean_ctor_get(x_26, 0); -x_32 = l_Lean_PersistentArray_append___rarg(x_13, x_31); +lean_object* x_31; uint8_t x_32; +x_31 = lean_ctor_get(x_27, 3); lean_dec(x_31); -lean_ctor_set(x_26, 0, x_32); -x_33 = lean_st_ref_set(x_10, x_25, x_27); -x_34 = lean_ctor_get(x_33, 1); -lean_inc(x_34); +x_32 = !lean_is_exclusive(x_28); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_33 = lean_ctor_get(x_28, 0); +x_34 = l_Lean_PersistentArray_append___rarg(x_13, x_33); lean_dec(x_33); -x_35 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_main___spec__2(x_20, x_9, x_10, x_34); +lean_ctor_set(x_28, 0, x_34); +x_35 = lean_st_ref_set(x_10, x_27, x_29); +x_36 = lean_ctor_get(x_35, 1); +lean_inc(x_36); +lean_dec(x_35); +x_37 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_main___spec__2(x_20, x_9, x_10, x_36); lean_dec(x_10); lean_dec(x_9); lean_dec(x_20); -if (lean_obj_tag(x_35) == 0) +if (lean_obj_tag(x_37) == 0) { -uint8_t x_36; -x_36 = !lean_is_exclusive(x_35); -if (x_36 == 0) +uint8_t x_38; +x_38 = !lean_is_exclusive(x_37); +if (x_38 == 0) { -return x_35; +return x_37; } else { -lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_37 = lean_ctor_get(x_35, 0); -x_38 = lean_ctor_get(x_35, 1); -lean_inc(x_38); -lean_inc(x_37); -lean_dec(x_35); -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_37); -lean_ctor_set(x_39, 1, x_38); -return x_39; +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_37, 0); +x_40 = lean_ctor_get(x_37, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_37); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +return x_41; } } else { -uint8_t x_40; -x_40 = !lean_is_exclusive(x_35); -if (x_40 == 0) +uint8_t x_42; +x_42 = !lean_is_exclusive(x_37); +if (x_42 == 0) { -return x_35; +return x_37; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_35, 0); -x_42 = lean_ctor_get(x_35, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_35); -x_43 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_42); -return x_43; +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_37, 0); +x_44 = lean_ctor_get(x_37, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_37); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; } } } else { -uint64_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_44 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); -x_45 = lean_ctor_get(x_26, 0); -lean_inc(x_45); -lean_dec(x_26); -x_46 = l_Lean_PersistentArray_append___rarg(x_13, x_45); -lean_dec(x_45); -x_47 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_47, 0, x_46); -lean_ctor_set_uint64(x_47, sizeof(void*)*1, x_44); -lean_ctor_set(x_25, 3, x_47); -x_48 = lean_st_ref_set(x_10, x_25, x_27); -x_49 = lean_ctor_get(x_48, 1); -lean_inc(x_49); -lean_dec(x_48); -x_50 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_main___spec__2(x_20, x_9, x_10, x_49); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_20); -if (lean_obj_tag(x_50) == 0) -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_51 = lean_ctor_get(x_50, 0); +uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); +x_47 = lean_ctor_get(x_28, 0); +lean_inc(x_47); +lean_dec(x_28); +x_48 = l_Lean_PersistentArray_append___rarg(x_13, x_47); +lean_dec(x_47); +x_49 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); +lean_ctor_set(x_27, 3, x_49); +x_50 = lean_st_ref_set(x_10, x_27, x_29); +x_51 = lean_ctor_get(x_50, 1); lean_inc(x_51); -x_52 = lean_ctor_get(x_50, 1); -lean_inc(x_52); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_53 = x_50; +lean_dec(x_50); +x_52 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_main___spec__2(x_20, x_9, x_10, x_51); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_20); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_52, 1); +lean_inc(x_54); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_55 = x_52; } else { - lean_dec_ref(x_50); - x_53 = lean_box(0); + lean_dec_ref(x_52); + x_55 = lean_box(0); } -if (lean_is_scalar(x_53)) { - x_54 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_55)) { + x_56 = lean_alloc_ctor(0, 2, 0); } else { - x_54 = x_53; + x_56 = x_55; } -lean_ctor_set(x_54, 0, x_51); -lean_ctor_set(x_54, 1, x_52); -return x_54; +lean_ctor_set(x_56, 0, x_53); +lean_ctor_set(x_56, 1, x_54); +return x_56; } else { -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_55 = lean_ctor_get(x_50, 0); -lean_inc(x_55); -x_56 = lean_ctor_get(x_50, 1); -lean_inc(x_56); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_57 = x_50; +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_57 = lean_ctor_get(x_52, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_52, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_59 = x_52; } else { - lean_dec_ref(x_50); - x_57 = lean_box(0); + lean_dec_ref(x_52); + x_59 = lean_box(0); } -if (lean_is_scalar(x_57)) { - x_58 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(1, 2, 0); } else { - x_58 = x_57; + x_60 = x_59; } -lean_ctor_set(x_58, 0, x_55); -lean_ctor_set(x_58, 1, x_56); -return x_58; +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_58); +return x_60; } } } else { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint64_t x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_59 = lean_ctor_get(x_25, 0); -x_60 = lean_ctor_get(x_25, 1); -x_61 = lean_ctor_get(x_25, 2); -x_62 = lean_ctor_get(x_25, 4); -x_63 = lean_ctor_get(x_25, 5); -x_64 = lean_ctor_get(x_25, 6); -x_65 = lean_ctor_get(x_25, 7); +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_61 = lean_ctor_get(x_27, 0); +x_62 = lean_ctor_get(x_27, 1); +x_63 = lean_ctor_get(x_27, 2); +x_64 = lean_ctor_get(x_27, 4); +x_65 = lean_ctor_get(x_27, 5); +x_66 = lean_ctor_get(x_27, 6); +x_67 = lean_ctor_get(x_27, 7); +lean_inc(x_67); +lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); lean_inc(x_62); lean_inc(x_61); -lean_inc(x_60); -lean_inc(x_59); -lean_dec(x_25); -x_66 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); -x_67 = lean_ctor_get(x_26, 0); -lean_inc(x_67); -if (lean_is_exclusive(x_26)) { - lean_ctor_release(x_26, 0); - x_68 = x_26; +lean_dec(x_27); +x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); +x_69 = lean_ctor_get(x_28, 0); +lean_inc(x_69); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + x_70 = x_28; } else { - lean_dec_ref(x_26); - x_68 = lean_box(0); + lean_dec_ref(x_28); + x_70 = lean_box(0); } -x_69 = l_Lean_PersistentArray_append___rarg(x_13, x_67); -lean_dec(x_67); -if (lean_is_scalar(x_68)) { - x_70 = lean_alloc_ctor(0, 1, 8); +x_71 = l_Lean_PersistentArray_append___rarg(x_13, x_69); +lean_dec(x_69); +if (lean_is_scalar(x_70)) { + x_72 = lean_alloc_ctor(0, 1, 8); } else { - x_70 = x_68; + x_72 = x_70; } -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set_uint64(x_70, sizeof(void*)*1, x_66); -x_71 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_71, 0, x_59); -lean_ctor_set(x_71, 1, x_60); -lean_ctor_set(x_71, 2, x_61); -lean_ctor_set(x_71, 3, x_70); -lean_ctor_set(x_71, 4, x_62); -lean_ctor_set(x_71, 5, x_63); -lean_ctor_set(x_71, 6, x_64); -lean_ctor_set(x_71, 7, x_65); -x_72 = lean_st_ref_set(x_10, x_71, x_27); -x_73 = lean_ctor_get(x_72, 1); -lean_inc(x_73); -lean_dec(x_72); -x_74 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_main___spec__2(x_20, x_9, x_10, x_73); +lean_ctor_set(x_72, 0, x_71); +lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); +x_73 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_73, 0, x_61); +lean_ctor_set(x_73, 1, x_62); +lean_ctor_set(x_73, 2, x_63); +lean_ctor_set(x_73, 3, x_72); +lean_ctor_set(x_73, 4, x_64); +lean_ctor_set(x_73, 5, x_65); +lean_ctor_set(x_73, 6, x_66); +lean_ctor_set(x_73, 7, x_67); +x_74 = lean_st_ref_set(x_10, x_73, x_29); +x_75 = lean_ctor_get(x_74, 1); +lean_inc(x_75); +lean_dec(x_74); +x_76 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_main___spec__2(x_20, x_9, x_10, x_75); lean_dec(x_10); lean_dec(x_9); lean_dec(x_20); -if (lean_obj_tag(x_74) == 0) +if (lean_obj_tag(x_76) == 0) { -lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_75 = lean_ctor_get(x_74, 0); -lean_inc(x_75); -x_76 = lean_ctor_get(x_74, 1); -lean_inc(x_76); -if (lean_is_exclusive(x_74)) { - lean_ctor_release(x_74, 0); - lean_ctor_release(x_74, 1); - x_77 = x_74; +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_77 = lean_ctor_get(x_76, 0); +lean_inc(x_77); +x_78 = lean_ctor_get(x_76, 1); +lean_inc(x_78); +if (lean_is_exclusive(x_76)) { + lean_ctor_release(x_76, 0); + lean_ctor_release(x_76, 1); + x_79 = x_76; } else { - lean_dec_ref(x_74); - x_77 = lean_box(0); + lean_dec_ref(x_76); + x_79 = lean_box(0); } -if (lean_is_scalar(x_77)) { - x_78 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_79)) { + x_80 = lean_alloc_ctor(0, 2, 0); } else { - x_78 = x_77; + x_80 = x_79; } -lean_ctor_set(x_78, 0, x_75); -lean_ctor_set(x_78, 1, x_76); -return x_78; +lean_ctor_set(x_80, 0, x_77); +lean_ctor_set(x_80, 1, x_78); +return x_80; } else { -lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_79 = lean_ctor_get(x_74, 0); -lean_inc(x_79); -x_80 = lean_ctor_get(x_74, 1); -lean_inc(x_80); -if (lean_is_exclusive(x_74)) { - lean_ctor_release(x_74, 0); - lean_ctor_release(x_74, 1); - x_81 = x_74; +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_81 = lean_ctor_get(x_76, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_76, 1); +lean_inc(x_82); +if (lean_is_exclusive(x_76)) { + lean_ctor_release(x_76, 0); + lean_ctor_release(x_76, 1); + x_83 = x_76; } else { - lean_dec_ref(x_74); - x_81 = lean_box(0); + lean_dec_ref(x_76); + x_83 = lean_box(0); } -if (lean_is_scalar(x_81)) { - x_82 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_83)) { + x_84 = lean_alloc_ctor(1, 2, 0); } else { - x_82 = x_81; + x_84 = x_83; } -lean_ctor_set(x_82, 0, x_79); -lean_ctor_set(x_82, 1, x_80); -return x_82; +lean_ctor_set(x_84, 0, x_81); +lean_ctor_set(x_84, 1, x_82); +return x_84; } } } else { -lean_object* x_83; double x_84; double x_85; lean_object* x_86; -x_83 = lean_box(0); -x_84 = lean_unbox_float(x_21); +lean_object* x_85; double x_86; double x_87; lean_object* x_88; +x_85 = lean_box(0); +x_86 = lean_unbox_float(x_21); lean_dec(x_21); -x_85 = lean_unbox_float(x_22); +x_87 = lean_unbox_float(x_22); lean_dec(x_22); -x_86 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_20, x_1, x_23, x_84, x_85, x_5, x_83, x_9, x_10, x_18); -return x_86; -} -} -else -{ -lean_object* x_87; double x_88; double x_89; lean_object* x_90; -x_87 = lean_box(0); -x_88 = lean_unbox_float(x_21); -lean_dec(x_21); -x_89 = lean_unbox_float(x_22); -lean_dec(x_22); -x_90 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_20, x_1, x_23, x_88, x_89, x_5, x_87, x_9, x_10, x_18); -return x_90; +x_88 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_86, x_87, x_5, x_85, x_9, x_10, x_18); +return x_88; } } } } else { -lean_object* x_205; lean_object* x_206; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; -x_293 = lean_io_get_num_heartbeats(x_14); -x_294 = lean_ctor_get(x_293, 0); -lean_inc(x_294); -x_295 = lean_ctor_get(x_293, 1); -lean_inc(x_295); -lean_dec(x_293); +lean_object* x_209; lean_object* x_210; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; +x_301 = lean_io_get_num_heartbeats(x_14); +x_302 = lean_ctor_get(x_301, 0); +lean_inc(x_302); +x_303 = lean_ctor_get(x_301, 1); +lean_inc(x_303); +lean_dec(x_301); lean_inc(x_10); lean_inc(x_9); -x_296 = lean_apply_3(x_7, x_9, x_10, x_295); -if (lean_obj_tag(x_296) == 0) +x_304 = lean_apply_3(x_7, x_9, x_10, x_303); +if (lean_obj_tag(x_304) == 0) { -uint8_t x_297; -x_297 = !lean_is_exclusive(x_296); -if (x_297 == 0) +uint8_t x_305; +x_305 = !lean_is_exclusive(x_304); +if (x_305 == 0) { -lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; uint8_t x_302; -x_298 = lean_ctor_get(x_296, 0); -x_299 = lean_ctor_get(x_296, 1); -x_300 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_300, 0, x_298); -x_301 = lean_io_get_num_heartbeats(x_299); -x_302 = !lean_is_exclusive(x_301); -if (x_302 == 0) +lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; uint8_t x_310; +x_306 = lean_ctor_get(x_304, 0); +x_307 = lean_ctor_get(x_304, 1); +x_308 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_308, 0, x_306); +x_309 = lean_io_get_num_heartbeats(x_307); +x_310 = !lean_is_exclusive(x_309); +if (x_310 == 0) { -lean_object* x_303; lean_object* x_304; uint8_t x_305; lean_object* x_306; double x_307; double x_308; lean_object* x_309; lean_object* x_310; -x_303 = lean_ctor_get(x_301, 0); -x_304 = lean_ctor_get(x_301, 1); -x_305 = 0; -x_306 = lean_unsigned_to_nat(0u); -x_307 = l_Float_ofScientific(x_294, x_305, x_306); -lean_dec(x_294); -x_308 = l_Float_ofScientific(x_303, x_305, x_306); -lean_dec(x_303); -x_309 = lean_box_float(x_307); -x_310 = lean_box_float(x_308); -lean_ctor_set(x_301, 1, x_310); -lean_ctor_set(x_301, 0, x_309); -lean_ctor_set(x_296, 1, x_301); -lean_ctor_set(x_296, 0, x_300); -x_205 = x_296; -x_206 = x_304; -goto block_292; -} -else -{ -lean_object* x_311; lean_object* x_312; uint8_t x_313; lean_object* x_314; double x_315; double x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; -x_311 = lean_ctor_get(x_301, 0); -x_312 = lean_ctor_get(x_301, 1); -lean_inc(x_312); -lean_inc(x_311); -lean_dec(x_301); +lean_object* x_311; lean_object* x_312; uint8_t x_313; lean_object* x_314; double x_315; double x_316; lean_object* x_317; lean_object* x_318; +x_311 = lean_ctor_get(x_309, 0); +x_312 = lean_ctor_get(x_309, 1); x_313 = 0; x_314 = lean_unsigned_to_nat(0u); -x_315 = l_Float_ofScientific(x_294, x_313, x_314); -lean_dec(x_294); +x_315 = l_Float_ofScientific(x_302, x_313, x_314); +lean_dec(x_302); x_316 = l_Float_ofScientific(x_311, x_313, x_314); lean_dec(x_311); x_317 = lean_box_float(x_315); x_318 = lean_box_float(x_316); -x_319 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_319, 0, x_317); -lean_ctor_set(x_319, 1, x_318); -lean_ctor_set(x_296, 1, x_319); -lean_ctor_set(x_296, 0, x_300); -x_205 = x_296; -x_206 = x_312; -goto block_292; -} +lean_ctor_set(x_309, 1, x_318); +lean_ctor_set(x_309, 0, x_317); +lean_ctor_set(x_304, 1, x_309); +lean_ctor_set(x_304, 0, x_308); +x_209 = x_304; +x_210 = x_312; +goto block_300; } else { -lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; uint8_t x_327; lean_object* x_328; double x_329; double x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; -x_320 = lean_ctor_get(x_296, 0); -x_321 = lean_ctor_get(x_296, 1); -lean_inc(x_321); +lean_object* x_319; lean_object* x_320; uint8_t x_321; lean_object* x_322; double x_323; double x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; +x_319 = lean_ctor_get(x_309, 0); +x_320 = lean_ctor_get(x_309, 1); lean_inc(x_320); -lean_dec(x_296); -x_322 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_322, 0, x_320); -x_323 = lean_io_get_num_heartbeats(x_321); -x_324 = lean_ctor_get(x_323, 0); -lean_inc(x_324); -x_325 = lean_ctor_get(x_323, 1); -lean_inc(x_325); -if (lean_is_exclusive(x_323)) { - lean_ctor_release(x_323, 0); - lean_ctor_release(x_323, 1); - x_326 = x_323; -} else { - lean_dec_ref(x_323); - x_326 = lean_box(0); -} -x_327 = 0; -x_328 = lean_unsigned_to_nat(0u); -x_329 = l_Float_ofScientific(x_294, x_327, x_328); -lean_dec(x_294); -x_330 = l_Float_ofScientific(x_324, x_327, x_328); -lean_dec(x_324); -x_331 = lean_box_float(x_329); -x_332 = lean_box_float(x_330); -if (lean_is_scalar(x_326)) { - x_333 = lean_alloc_ctor(0, 2, 0); -} else { - x_333 = x_326; -} -lean_ctor_set(x_333, 0, x_331); -lean_ctor_set(x_333, 1, x_332); -x_334 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_334, 0, x_322); -lean_ctor_set(x_334, 1, x_333); -x_205 = x_334; -x_206 = x_325; -goto block_292; +lean_inc(x_319); +lean_dec(x_309); +x_321 = 0; +x_322 = lean_unsigned_to_nat(0u); +x_323 = l_Float_ofScientific(x_302, x_321, x_322); +lean_dec(x_302); +x_324 = l_Float_ofScientific(x_319, x_321, x_322); +lean_dec(x_319); +x_325 = lean_box_float(x_323); +x_326 = lean_box_float(x_324); +x_327 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_327, 0, x_325); +lean_ctor_set(x_327, 1, x_326); +lean_ctor_set(x_304, 1, x_327); +lean_ctor_set(x_304, 0, x_308); +x_209 = x_304; +x_210 = x_320; +goto block_300; } } else { -uint8_t x_335; -x_335 = !lean_is_exclusive(x_296); -if (x_335 == 0) -{ -lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; uint8_t x_340; -x_336 = lean_ctor_get(x_296, 0); -x_337 = lean_ctor_get(x_296, 1); -x_338 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_338, 0, x_336); -x_339 = lean_io_get_num_heartbeats(x_337); -x_340 = !lean_is_exclusive(x_339); -if (x_340 == 0) -{ -lean_object* x_341; lean_object* x_342; uint8_t x_343; lean_object* x_344; double x_345; double x_346; lean_object* x_347; lean_object* x_348; -x_341 = lean_ctor_get(x_339, 0); -x_342 = lean_ctor_get(x_339, 1); -x_343 = 0; -x_344 = lean_unsigned_to_nat(0u); -x_345 = l_Float_ofScientific(x_294, x_343, x_344); -lean_dec(x_294); -x_346 = l_Float_ofScientific(x_341, x_343, x_344); -lean_dec(x_341); -x_347 = lean_box_float(x_345); -x_348 = lean_box_float(x_346); -lean_ctor_set(x_339, 1, x_348); -lean_ctor_set(x_339, 0, x_347); -lean_ctor_set_tag(x_296, 0); -lean_ctor_set(x_296, 1, x_339); -lean_ctor_set(x_296, 0, x_338); -x_205 = x_296; -x_206 = x_342; -goto block_292; +lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; uint8_t x_335; lean_object* x_336; double x_337; double x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; +x_328 = lean_ctor_get(x_304, 0); +x_329 = lean_ctor_get(x_304, 1); +lean_inc(x_329); +lean_inc(x_328); +lean_dec(x_304); +x_330 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_330, 0, x_328); +x_331 = lean_io_get_num_heartbeats(x_329); +x_332 = lean_ctor_get(x_331, 0); +lean_inc(x_332); +x_333 = lean_ctor_get(x_331, 1); +lean_inc(x_333); +if (lean_is_exclusive(x_331)) { + lean_ctor_release(x_331, 0); + lean_ctor_release(x_331, 1); + x_334 = x_331; +} else { + lean_dec_ref(x_331); + x_334 = lean_box(0); +} +x_335 = 0; +x_336 = lean_unsigned_to_nat(0u); +x_337 = l_Float_ofScientific(x_302, x_335, x_336); +lean_dec(x_302); +x_338 = l_Float_ofScientific(x_332, x_335, x_336); +lean_dec(x_332); +x_339 = lean_box_float(x_337); +x_340 = lean_box_float(x_338); +if (lean_is_scalar(x_334)) { + x_341 = lean_alloc_ctor(0, 2, 0); +} else { + x_341 = x_334; +} +lean_ctor_set(x_341, 0, x_339); +lean_ctor_set(x_341, 1, x_340); +x_342 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_342, 0, x_330); +lean_ctor_set(x_342, 1, x_341); +x_209 = x_342; +x_210 = x_333; +goto block_300; +} } else { -lean_object* x_349; lean_object* x_350; uint8_t x_351; lean_object* x_352; double x_353; double x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; -x_349 = lean_ctor_get(x_339, 0); -x_350 = lean_ctor_get(x_339, 1); -lean_inc(x_350); -lean_inc(x_349); -lean_dec(x_339); +uint8_t x_343; +x_343 = !lean_is_exclusive(x_304); +if (x_343 == 0) +{ +lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; uint8_t x_348; +x_344 = lean_ctor_get(x_304, 0); +x_345 = lean_ctor_get(x_304, 1); +x_346 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_346, 0, x_344); +x_347 = lean_io_get_num_heartbeats(x_345); +x_348 = !lean_is_exclusive(x_347); +if (x_348 == 0) +{ +lean_object* x_349; lean_object* x_350; uint8_t x_351; lean_object* x_352; double x_353; double x_354; lean_object* x_355; lean_object* x_356; +x_349 = lean_ctor_get(x_347, 0); +x_350 = lean_ctor_get(x_347, 1); x_351 = 0; x_352 = lean_unsigned_to_nat(0u); -x_353 = l_Float_ofScientific(x_294, x_351, x_352); -lean_dec(x_294); +x_353 = l_Float_ofScientific(x_302, x_351, x_352); +lean_dec(x_302); x_354 = l_Float_ofScientific(x_349, x_351, x_352); lean_dec(x_349); x_355 = lean_box_float(x_353); x_356 = lean_box_float(x_354); -x_357 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_357, 0, x_355); -lean_ctor_set(x_357, 1, x_356); -lean_ctor_set_tag(x_296, 0); -lean_ctor_set(x_296, 1, x_357); -lean_ctor_set(x_296, 0, x_338); -x_205 = x_296; -x_206 = x_350; -goto block_292; -} +lean_ctor_set(x_347, 1, x_356); +lean_ctor_set(x_347, 0, x_355); +lean_ctor_set_tag(x_304, 0); +lean_ctor_set(x_304, 1, x_347); +lean_ctor_set(x_304, 0, x_346); +x_209 = x_304; +x_210 = x_350; +goto block_300; } else { -lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; uint8_t x_365; lean_object* x_366; double x_367; double x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; -x_358 = lean_ctor_get(x_296, 0); -x_359 = lean_ctor_get(x_296, 1); -lean_inc(x_359); +lean_object* x_357; lean_object* x_358; uint8_t x_359; lean_object* x_360; double x_361; double x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; +x_357 = lean_ctor_get(x_347, 0); +x_358 = lean_ctor_get(x_347, 1); lean_inc(x_358); -lean_dec(x_296); -x_360 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_360, 0, x_358); -x_361 = lean_io_get_num_heartbeats(x_359); -x_362 = lean_ctor_get(x_361, 0); -lean_inc(x_362); -x_363 = lean_ctor_get(x_361, 1); -lean_inc(x_363); -if (lean_is_exclusive(x_361)) { - lean_ctor_release(x_361, 0); - lean_ctor_release(x_361, 1); - x_364 = x_361; -} else { - lean_dec_ref(x_361); - x_364 = lean_box(0); +lean_inc(x_357); +lean_dec(x_347); +x_359 = 0; +x_360 = lean_unsigned_to_nat(0u); +x_361 = l_Float_ofScientific(x_302, x_359, x_360); +lean_dec(x_302); +x_362 = l_Float_ofScientific(x_357, x_359, x_360); +lean_dec(x_357); +x_363 = lean_box_float(x_361); +x_364 = lean_box_float(x_362); +x_365 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_365, 0, x_363); +lean_ctor_set(x_365, 1, x_364); +lean_ctor_set_tag(x_304, 0); +lean_ctor_set(x_304, 1, x_365); +lean_ctor_set(x_304, 0, x_346); +x_209 = x_304; +x_210 = x_358; +goto block_300; } -x_365 = 0; -x_366 = lean_unsigned_to_nat(0u); -x_367 = l_Float_ofScientific(x_294, x_365, x_366); -lean_dec(x_294); -x_368 = l_Float_ofScientific(x_362, x_365, x_366); -lean_dec(x_362); -x_369 = lean_box_float(x_367); -x_370 = lean_box_float(x_368); -if (lean_is_scalar(x_364)) { - x_371 = lean_alloc_ctor(0, 2, 0); -} else { - x_371 = x_364; -} -lean_ctor_set(x_371, 0, x_369); -lean_ctor_set(x_371, 1, x_370); -x_372 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_372, 0, x_360); -lean_ctor_set(x_372, 1, x_371); -x_205 = x_372; -x_206 = x_363; -goto block_292; -} -} -block_292: -{ -lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; uint8_t x_211; lean_object* x_280; uint8_t x_281; -x_207 = lean_ctor_get(x_205, 1); -lean_inc(x_207); -x_208 = lean_ctor_get(x_205, 0); -lean_inc(x_208); -lean_dec(x_205); -x_209 = lean_ctor_get(x_207, 0); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 1); -lean_inc(x_210); -lean_dec(x_207); -x_280 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__2; -x_281 = l_Lean_Option_get___at_Lean_Compiler_LCNF_toConfigOptions___spec__2(x_1, x_280); -if (x_281 == 0) -{ -uint8_t x_282; -x_282 = 0; -x_211 = x_282; -goto block_279; } else { -double x_283; double x_284; double x_285; lean_object* x_286; lean_object* x_287; uint8_t x_288; lean_object* x_289; double x_290; uint8_t x_291; -x_283 = lean_unbox_float(x_210); -x_284 = lean_unbox_float(x_209); -x_285 = lean_float_sub(x_283, x_284); -x_286 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__3; -x_287 = l_Lean_Option_get___at_Lean_Compiler_LCNF_toConfigOptions___spec__1(x_1, x_286); -x_288 = 0; -x_289 = lean_unsigned_to_nat(0u); -x_290 = l_Float_ofScientific(x_287, x_288, x_289); -lean_dec(x_287); -x_291 = lean_float_decLt(x_290, x_285); -x_211 = x_291; -goto block_279; +lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; uint8_t x_373; lean_object* x_374; double x_375; double x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; +x_366 = lean_ctor_get(x_304, 0); +x_367 = lean_ctor_get(x_304, 1); +lean_inc(x_367); +lean_inc(x_366); +lean_dec(x_304); +x_368 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_368, 0, x_366); +x_369 = lean_io_get_num_heartbeats(x_367); +x_370 = lean_ctor_get(x_369, 0); +lean_inc(x_370); +x_371 = lean_ctor_get(x_369, 1); +lean_inc(x_371); +if (lean_is_exclusive(x_369)) { + lean_ctor_release(x_369, 0); + lean_ctor_release(x_369, 1); + x_372 = x_369; +} else { + lean_dec_ref(x_369); + x_372 = lean_box(0); } -block_279: +x_373 = 0; +x_374 = lean_unsigned_to_nat(0u); +x_375 = l_Float_ofScientific(x_302, x_373, x_374); +lean_dec(x_302); +x_376 = l_Float_ofScientific(x_370, x_373, x_374); +lean_dec(x_370); +x_377 = lean_box_float(x_375); +x_378 = lean_box_float(x_376); +if (lean_is_scalar(x_372)) { + x_379 = lean_alloc_ctor(0, 2, 0); +} else { + x_379 = x_372; +} +lean_ctor_set(x_379, 0, x_377); +lean_ctor_set(x_379, 1, x_378); +x_380 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_380, 0, x_368); +lean_ctor_set(x_380, 1, x_379); +x_209 = x_380; +x_210 = x_371; +goto block_300; +} +} +block_300: +{ +lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; uint8_t x_217; +x_211 = lean_ctor_get(x_209, 1); +lean_inc(x_211); +x_212 = lean_ctor_get(x_209, 0); +lean_inc(x_212); +lean_dec(x_209); +x_213 = lean_ctor_get(x_211, 0); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 1); +lean_inc(x_214); +lean_dec(x_211); +x_215 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__2; +x_216 = l_Lean_Option_get___at_Lean_Compiler_LCNF_toConfigOptions___spec__2(x_1, x_215); +if (x_216 == 0) { if (x_6 == 0) { -if (x_211 == 0) +uint8_t x_282; +x_282 = 0; +x_217 = x_282; +goto block_281; +} +else { -lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; -lean_dec(x_210); -lean_dec(x_209); +lean_object* x_283; double x_284; double x_285; lean_object* x_286; +x_283 = lean_box(0); +x_284 = lean_unbox_float(x_213); +lean_dec(x_213); +x_285 = lean_unbox_float(x_214); +lean_dec(x_214); +x_286 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_284, x_285, x_5, x_283, x_9, x_10, x_210); +return x_286; +} +} +else +{ +if (x_6 == 0) +{ +double x_287; double x_288; double x_289; lean_object* x_290; lean_object* x_291; uint8_t x_292; lean_object* x_293; double x_294; uint8_t x_295; +x_287 = lean_unbox_float(x_214); +x_288 = lean_unbox_float(x_213); +x_289 = lean_float_sub(x_287, x_288); +x_290 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__4___closed__3; +x_291 = l_Lean_Option_get___at_Lean_Compiler_LCNF_toConfigOptions___spec__1(x_1, x_290); +x_292 = 0; +x_293 = lean_unsigned_to_nat(0u); +x_294 = l_Float_ofScientific(x_291, x_292, x_293); +lean_dec(x_291); +x_295 = lean_float_decLt(x_294, x_289); +x_217 = x_295; +goto block_281; +} +else +{ +lean_object* x_296; double x_297; double x_298; lean_object* x_299; +x_296 = lean_box(0); +x_297 = lean_unbox_float(x_213); +lean_dec(x_213); +x_298 = lean_unbox_float(x_214); +lean_dec(x_214); +x_299 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_297, x_298, x_5, x_296, x_9, x_10, x_210); +return x_299; +} +} +block_281: +{ +if (x_217 == 0) +{ +lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; uint8_t x_222; +lean_dec(x_214); +lean_dec(x_213); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_212 = lean_st_ref_take(x_10, x_206); -x_213 = lean_ctor_get(x_212, 0); -lean_inc(x_213); -x_214 = lean_ctor_get(x_213, 3); -lean_inc(x_214); -x_215 = lean_ctor_get(x_212, 1); -lean_inc(x_215); -lean_dec(x_212); -x_216 = !lean_is_exclusive(x_213); -if (x_216 == 0) +x_218 = lean_st_ref_take(x_10, x_210); +x_219 = lean_ctor_get(x_218, 0); +lean_inc(x_219); +x_220 = lean_ctor_get(x_219, 3); +lean_inc(x_220); +x_221 = lean_ctor_get(x_218, 1); +lean_inc(x_221); +lean_dec(x_218); +x_222 = !lean_is_exclusive(x_219); +if (x_222 == 0) { -lean_object* x_217; uint8_t x_218; -x_217 = lean_ctor_get(x_213, 3); -lean_dec(x_217); -x_218 = !lean_is_exclusive(x_214); -if (x_218 == 0) -{ -lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; -x_219 = lean_ctor_get(x_214, 0); -x_220 = l_Lean_PersistentArray_append___rarg(x_13, x_219); -lean_dec(x_219); -lean_ctor_set(x_214, 0, x_220); -x_221 = lean_st_ref_set(x_10, x_213, x_215); -x_222 = lean_ctor_get(x_221, 1); -lean_inc(x_222); -lean_dec(x_221); -x_223 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_main___spec__2(x_208, x_9, x_10, x_222); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_223) == 0) -{ -uint8_t x_224; -x_224 = !lean_is_exclusive(x_223); +lean_object* x_223; uint8_t x_224; +x_223 = lean_ctor_get(x_219, 3); +lean_dec(x_223); +x_224 = !lean_is_exclusive(x_220); if (x_224 == 0) { -return x_223; -} -else -{ -lean_object* x_225; lean_object* x_226; lean_object* x_227; -x_225 = lean_ctor_get(x_223, 0); -x_226 = lean_ctor_get(x_223, 1); -lean_inc(x_226); -lean_inc(x_225); -lean_dec(x_223); -x_227 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_227, 0, x_225); -lean_ctor_set(x_227, 1, x_226); -return x_227; -} -} -else -{ -uint8_t x_228; -x_228 = !lean_is_exclusive(x_223); -if (x_228 == 0) -{ -return x_223; -} -else -{ -lean_object* x_229; lean_object* x_230; lean_object* x_231; -x_229 = lean_ctor_get(x_223, 0); -x_230 = lean_ctor_get(x_223, 1); -lean_inc(x_230); -lean_inc(x_229); -lean_dec(x_223); -x_231 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_231, 0, x_229); -lean_ctor_set(x_231, 1, x_230); -return x_231; -} -} -} -else -{ -uint64_t x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; -x_232 = lean_ctor_get_uint64(x_214, sizeof(void*)*1); -x_233 = lean_ctor_get(x_214, 0); -lean_inc(x_233); -lean_dec(x_214); -x_234 = l_Lean_PersistentArray_append___rarg(x_13, x_233); -lean_dec(x_233); -x_235 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_235, 0, x_234); -lean_ctor_set_uint64(x_235, sizeof(void*)*1, x_232); -lean_ctor_set(x_213, 3, x_235); -x_236 = lean_st_ref_set(x_10, x_213, x_215); -x_237 = lean_ctor_get(x_236, 1); -lean_inc(x_237); -lean_dec(x_236); -x_238 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_main___spec__2(x_208, x_9, x_10, x_237); +lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; +x_225 = lean_ctor_get(x_220, 0); +x_226 = l_Lean_PersistentArray_append___rarg(x_13, x_225); +lean_dec(x_225); +lean_ctor_set(x_220, 0, x_226); +x_227 = lean_st_ref_set(x_10, x_219, x_221); +x_228 = lean_ctor_get(x_227, 1); +lean_inc(x_228); +lean_dec(x_227); +x_229 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_main___spec__2(x_212, x_9, x_10, x_228); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_238) == 0) +lean_dec(x_212); +if (lean_obj_tag(x_229) == 0) { -lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; -x_239 = lean_ctor_get(x_238, 0); +uint8_t x_230; +x_230 = !lean_is_exclusive(x_229); +if (x_230 == 0) +{ +return x_229; +} +else +{ +lean_object* x_231; lean_object* x_232; lean_object* x_233; +x_231 = lean_ctor_get(x_229, 0); +x_232 = lean_ctor_get(x_229, 1); +lean_inc(x_232); +lean_inc(x_231); +lean_dec(x_229); +x_233 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_233, 0, x_231); +lean_ctor_set(x_233, 1, x_232); +return x_233; +} +} +else +{ +uint8_t x_234; +x_234 = !lean_is_exclusive(x_229); +if (x_234 == 0) +{ +return x_229; +} +else +{ +lean_object* x_235; lean_object* x_236; lean_object* x_237; +x_235 = lean_ctor_get(x_229, 0); +x_236 = lean_ctor_get(x_229, 1); +lean_inc(x_236); +lean_inc(x_235); +lean_dec(x_229); +x_237 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_237, 0, x_235); +lean_ctor_set(x_237, 1, x_236); +return x_237; +} +} +} +else +{ +uint64_t x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; +x_238 = lean_ctor_get_uint64(x_220, sizeof(void*)*1); +x_239 = lean_ctor_get(x_220, 0); lean_inc(x_239); -x_240 = lean_ctor_get(x_238, 1); -lean_inc(x_240); -if (lean_is_exclusive(x_238)) { - lean_ctor_release(x_238, 0); - lean_ctor_release(x_238, 1); - x_241 = x_238; -} else { - lean_dec_ref(x_238); - x_241 = lean_box(0); -} -if (lean_is_scalar(x_241)) { - x_242 = lean_alloc_ctor(0, 2, 0); -} else { - x_242 = x_241; -} -lean_ctor_set(x_242, 0, x_239); -lean_ctor_set(x_242, 1, x_240); -return x_242; -} -else -{ -lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; -x_243 = lean_ctor_get(x_238, 0); +lean_dec(x_220); +x_240 = l_Lean_PersistentArray_append___rarg(x_13, x_239); +lean_dec(x_239); +x_241 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_241, 0, x_240); +lean_ctor_set_uint64(x_241, sizeof(void*)*1, x_238); +lean_ctor_set(x_219, 3, x_241); +x_242 = lean_st_ref_set(x_10, x_219, x_221); +x_243 = lean_ctor_get(x_242, 1); lean_inc(x_243); -x_244 = lean_ctor_get(x_238, 1); -lean_inc(x_244); -if (lean_is_exclusive(x_238)) { - lean_ctor_release(x_238, 0); - lean_ctor_release(x_238, 1); - x_245 = x_238; -} else { - lean_dec_ref(x_238); - x_245 = lean_box(0); -} -if (lean_is_scalar(x_245)) { - x_246 = lean_alloc_ctor(1, 2, 0); -} else { - x_246 = x_245; -} -lean_ctor_set(x_246, 0, x_243); -lean_ctor_set(x_246, 1, x_244); -return x_246; -} -} -} -else -{ -lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; uint64_t x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; -x_247 = lean_ctor_get(x_213, 0); -x_248 = lean_ctor_get(x_213, 1); -x_249 = lean_ctor_get(x_213, 2); -x_250 = lean_ctor_get(x_213, 4); -x_251 = lean_ctor_get(x_213, 5); -x_252 = lean_ctor_get(x_213, 6); -x_253 = lean_ctor_get(x_213, 7); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_inc(x_248); -lean_inc(x_247); -lean_dec(x_213); -x_254 = lean_ctor_get_uint64(x_214, sizeof(void*)*1); -x_255 = lean_ctor_get(x_214, 0); -lean_inc(x_255); -if (lean_is_exclusive(x_214)) { - lean_ctor_release(x_214, 0); - x_256 = x_214; -} else { - lean_dec_ref(x_214); - x_256 = lean_box(0); -} -x_257 = l_Lean_PersistentArray_append___rarg(x_13, x_255); -lean_dec(x_255); -if (lean_is_scalar(x_256)) { - x_258 = lean_alloc_ctor(0, 1, 8); -} else { - x_258 = x_256; -} -lean_ctor_set(x_258, 0, x_257); -lean_ctor_set_uint64(x_258, sizeof(void*)*1, x_254); -x_259 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_259, 0, x_247); -lean_ctor_set(x_259, 1, x_248); -lean_ctor_set(x_259, 2, x_249); -lean_ctor_set(x_259, 3, x_258); -lean_ctor_set(x_259, 4, x_250); -lean_ctor_set(x_259, 5, x_251); -lean_ctor_set(x_259, 6, x_252); -lean_ctor_set(x_259, 7, x_253); -x_260 = lean_st_ref_set(x_10, x_259, x_215); -x_261 = lean_ctor_get(x_260, 1); -lean_inc(x_261); -lean_dec(x_260); -x_262 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_main___spec__2(x_208, x_9, x_10, x_261); +lean_dec(x_242); +x_244 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_main___spec__2(x_212, x_9, x_10, x_243); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_262) == 0) +lean_dec(x_212); +if (lean_obj_tag(x_244) == 0) { -lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; -x_263 = lean_ctor_get(x_262, 0); -lean_inc(x_263); -x_264 = lean_ctor_get(x_262, 1); -lean_inc(x_264); -if (lean_is_exclusive(x_262)) { - lean_ctor_release(x_262, 0); - lean_ctor_release(x_262, 1); - x_265 = x_262; +lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; +x_245 = lean_ctor_get(x_244, 0); +lean_inc(x_245); +x_246 = lean_ctor_get(x_244, 1); +lean_inc(x_246); +if (lean_is_exclusive(x_244)) { + lean_ctor_release(x_244, 0); + lean_ctor_release(x_244, 1); + x_247 = x_244; } else { - lean_dec_ref(x_262); - x_265 = lean_box(0); + lean_dec_ref(x_244); + x_247 = lean_box(0); } -if (lean_is_scalar(x_265)) { - x_266 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_247)) { + x_248 = lean_alloc_ctor(0, 2, 0); } else { - x_266 = x_265; + x_248 = x_247; } -lean_ctor_set(x_266, 0, x_263); -lean_ctor_set(x_266, 1, x_264); -return x_266; +lean_ctor_set(x_248, 0, x_245); +lean_ctor_set(x_248, 1, x_246); +return x_248; } else { -lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; -x_267 = lean_ctor_get(x_262, 0); +lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; +x_249 = lean_ctor_get(x_244, 0); +lean_inc(x_249); +x_250 = lean_ctor_get(x_244, 1); +lean_inc(x_250); +if (lean_is_exclusive(x_244)) { + lean_ctor_release(x_244, 0); + lean_ctor_release(x_244, 1); + x_251 = x_244; +} else { + lean_dec_ref(x_244); + x_251 = lean_box(0); +} +if (lean_is_scalar(x_251)) { + x_252 = lean_alloc_ctor(1, 2, 0); +} else { + x_252 = x_251; +} +lean_ctor_set(x_252, 0, x_249); +lean_ctor_set(x_252, 1, x_250); +return x_252; +} +} +} +else +{ +lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; uint64_t x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; +x_253 = lean_ctor_get(x_219, 0); +x_254 = lean_ctor_get(x_219, 1); +x_255 = lean_ctor_get(x_219, 2); +x_256 = lean_ctor_get(x_219, 4); +x_257 = lean_ctor_get(x_219, 5); +x_258 = lean_ctor_get(x_219, 6); +x_259 = lean_ctor_get(x_219, 7); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_inc(x_254); +lean_inc(x_253); +lean_dec(x_219); +x_260 = lean_ctor_get_uint64(x_220, sizeof(void*)*1); +x_261 = lean_ctor_get(x_220, 0); +lean_inc(x_261); +if (lean_is_exclusive(x_220)) { + lean_ctor_release(x_220, 0); + x_262 = x_220; +} else { + lean_dec_ref(x_220); + x_262 = lean_box(0); +} +x_263 = l_Lean_PersistentArray_append___rarg(x_13, x_261); +lean_dec(x_261); +if (lean_is_scalar(x_262)) { + x_264 = lean_alloc_ctor(0, 1, 8); +} else { + x_264 = x_262; +} +lean_ctor_set(x_264, 0, x_263); +lean_ctor_set_uint64(x_264, sizeof(void*)*1, x_260); +x_265 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_265, 0, x_253); +lean_ctor_set(x_265, 1, x_254); +lean_ctor_set(x_265, 2, x_255); +lean_ctor_set(x_265, 3, x_264); +lean_ctor_set(x_265, 4, x_256); +lean_ctor_set(x_265, 5, x_257); +lean_ctor_set(x_265, 6, x_258); +lean_ctor_set(x_265, 7, x_259); +x_266 = lean_st_ref_set(x_10, x_265, x_221); +x_267 = lean_ctor_get(x_266, 1); lean_inc(x_267); -x_268 = lean_ctor_get(x_262, 1); -lean_inc(x_268); -if (lean_is_exclusive(x_262)) { - lean_ctor_release(x_262, 0); - lean_ctor_release(x_262, 1); - x_269 = x_262; +lean_dec(x_266); +x_268 = l_MonadExcept_ofExcept___at_Lean_Compiler_LCNF_main___spec__2(x_212, x_9, x_10, x_267); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_212); +if (lean_obj_tag(x_268) == 0) +{ +lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; +x_269 = lean_ctor_get(x_268, 0); +lean_inc(x_269); +x_270 = lean_ctor_get(x_268, 1); +lean_inc(x_270); +if (lean_is_exclusive(x_268)) { + lean_ctor_release(x_268, 0); + lean_ctor_release(x_268, 1); + x_271 = x_268; } else { - lean_dec_ref(x_262); - x_269 = lean_box(0); + lean_dec_ref(x_268); + x_271 = lean_box(0); } -if (lean_is_scalar(x_269)) { - x_270 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_271)) { + x_272 = lean_alloc_ctor(0, 2, 0); } else { - x_270 = x_269; + x_272 = x_271; } -lean_ctor_set(x_270, 0, x_267); -lean_ctor_set(x_270, 1, x_268); -return x_270; +lean_ctor_set(x_272, 0, x_269); +lean_ctor_set(x_272, 1, x_270); +return x_272; +} +else +{ +lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; +x_273 = lean_ctor_get(x_268, 0); +lean_inc(x_273); +x_274 = lean_ctor_get(x_268, 1); +lean_inc(x_274); +if (lean_is_exclusive(x_268)) { + lean_ctor_release(x_268, 0); + lean_ctor_release(x_268, 1); + x_275 = x_268; +} else { + lean_dec_ref(x_268); + x_275 = lean_box(0); +} +if (lean_is_scalar(x_275)) { + x_276 = lean_alloc_ctor(1, 2, 0); +} else { + x_276 = x_275; +} +lean_ctor_set(x_276, 0, x_273); +lean_ctor_set(x_276, 1, x_274); +return x_276; } } } else { -lean_object* x_271; double x_272; double x_273; lean_object* x_274; -x_271 = lean_box(0); -x_272 = lean_unbox_float(x_209); -lean_dec(x_209); -x_273 = lean_unbox_float(x_210); -lean_dec(x_210); -x_274 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_208, x_1, x_211, x_272, x_273, x_5, x_271, x_9, x_10, x_206); -return x_274; -} -} -else -{ -lean_object* x_275; double x_276; double x_277; lean_object* x_278; -x_275 = lean_box(0); -x_276 = lean_unbox_float(x_209); -lean_dec(x_209); -x_277 = lean_unbox_float(x_210); -lean_dec(x_210); -x_278 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_208, x_1, x_211, x_276, x_277, x_5, x_275, x_9, x_10, x_206); -return x_278; +lean_object* x_277; double x_278; double x_279; lean_object* x_280; +x_277 = lean_box(0); +x_278 = lean_unbox_float(x_213); +lean_dec(x_213); +x_279 = lean_unbox_float(x_214); +lean_dec(x_214); +x_280 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_278, x_279, x_5, x_277, x_9, x_10, x_210); +return x_280; } } } @@ -9380,41 +9374,39 @@ lean_dec(x_4); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; uint8_t x_16; double x_17; double x_18; lean_object* x_19; -x_15 = lean_unbox(x_2); +uint8_t x_14; uint8_t x_15; double x_16; double x_17; lean_object* x_18; +x_14 = lean_unbox(x_2); lean_dec(x_2); -x_16 = lean_unbox(x_8); +x_15 = lean_unbox(x_7); +lean_dec(x_7); +x_16 = lean_unbox_float(x_8); lean_dec(x_8); x_17 = lean_unbox_float(x_9); lean_dec(x_9); -x_18 = lean_unbox_float(x_10); -lean_dec(x_10); -x_19 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__2(x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_16, x_17, x_18, x_11, x_12, x_13, x_14); -lean_dec(x_13); -lean_dec(x_7); +x_18 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__2(x_1, x_14, x_3, x_4, x_5, x_6, x_15, x_16, x_17, x_10, x_11, x_12, x_13); +lean_dec(x_12); lean_dec(x_6); -return x_19; +return x_18; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; uint8_t x_16; double x_17; double x_18; lean_object* x_19; -x_15 = lean_unbox(x_2); +uint8_t x_14; uint8_t x_15; double x_16; double x_17; lean_object* x_18; +x_14 = lean_unbox(x_2); lean_dec(x_2); -x_16 = lean_unbox(x_7); +x_15 = lean_unbox(x_6); +lean_dec(x_6); +x_16 = lean_unbox_float(x_7); lean_dec(x_7); x_17 = lean_unbox_float(x_8); lean_dec(x_8); -x_18 = lean_unbox_float(x_9); -lean_dec(x_9); -x_19 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__3(x_1, x_15, x_3, x_4, x_5, x_6, x_16, x_17, x_18, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_11); -lean_dec(x_6); -return x_19; +x_18 = l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__3(x_1, x_14, x_3, x_4, x_5, x_15, x_16, x_17, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_10); +return x_18; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Compiler_LCNF_main___spec__1___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { @@ -9905,8 +9897,6 @@ lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at_Lean_Compiler_LCNF_checkp l_Array_forIn_x27Unsafe_loop___at_Lean_Compiler_LCNF_checkpoint___spec__1___closed__4 = _init_l_Array_forIn_x27Unsafe_loop___at_Lean_Compiler_LCNF_checkpoint___spec__1___closed__4(); lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at_Lean_Compiler_LCNF_checkpoint___spec__1___closed__4); l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2___closed__1(); -l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2___closed__2(); -lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__2___closed__2); l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3___closed__1); l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Compiler_LCNF_PassManager_run___spec__2___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Compiler/LCNF/Simp/ConstantFold.c b/stage0/stdlib/Lean/Compiler/LCNF/Simp/ConstantFold.c index 7f2765ddd0..eb248ec32b 100644 --- a/stage0/stdlib/Lean/Compiler/LCNF/Simp/ConstantFold.c +++ b/stage0/stdlib/Lean/Compiler/LCNF/Simp/ConstantFold.c @@ -196,6 +196,7 @@ static lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_arithmeticFolders___c lean_object* l_Nat_sub___boxed(lean_object*, lean_object*); lean_object* l_UInt16_add___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_initFn____x40_Lean_Compiler_LCNF_Simp_ConstantFold___hyg_4833____closed__4; +extern uint32_t l_instInhabitedUInt32; lean_object* l_Lean_Compiler_LCNF_getPhase(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_initFn____x40_Lean_Compiler_LCNF_Simp_ConstantFold___hyg_4833____closed__5; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_Folder_leftAnnihilator___at_Lean_Compiler_LCNF_Simp_ConstantFold_arithmeticFolders___spec__29___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -308,6 +309,7 @@ static lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_arithmeticFolders___c LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_Folder_mkBinaryDecisionProcedure___at_Lean_Compiler_LCNF_Simp_ConstantFold_relationFolders___spec__3___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_Folder_leftNeutral___at_Lean_Compiler_LCNF_Simp_ConstantFold_arithmeticFolders___spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_Folder_mkBinaryDecisionProcedure___at_Lean_Compiler_LCNF_Simp_ConstantFold_relationFolders___spec__1___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern uint64_t l_instInhabitedUInt64; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_mkBoolLit___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_Folder_leftRightNeutral(lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_Folder_rightAnnihilator___at_Lean_Compiler_LCNF_Simp_ConstantFold_arithmeticFolders___spec__30(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -393,7 +395,6 @@ static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Compiler_LCNF_Simp_Co LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_Folder_mkBinary___at_Lean_Compiler_LCNF_Simp_ConstantFold_arithmeticFolders___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_Folder_leftRightNeutral___at_Lean_Compiler_LCNF_Simp_ConstantFold_arithmeticFolders___spec__11(uint16_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_arithmeticFolders___closed__47; -extern uint16_t l_UInt16_instInhabited; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Compiler_LCNF_Simp_ConstantFold_initFn____x40_Lean_Compiler_LCNF_Simp_ConstantFold___hyg_4833____spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Compiler_LCNF_Simp_ConstantFold_0__Lean_Compiler_LCNF_Simp_ConstantFold_getFolder___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_Folder_mkUnary___at_Lean_Compiler_LCNF_Simp_ConstantFold_stringFolders___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -488,10 +489,12 @@ LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_Folder_rightNeut LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Compiler_LCNF_Simp_ConstantFold_initFn____x40_Lean_Compiler_LCNF_Simp_ConstantFold___hyg_4833____spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_Folder_divShift___at_Lean_Compiler_LCNF_Simp_ConstantFold_arithmeticFolders___spec__56(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_arithmeticFolders___closed__29; +extern uint16_t l_instInhabitedUInt16; static lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_instLiteralString___closed__2; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_Folder_rightNeutral___at_Lean_Compiler_LCNF_Simp_ConstantFold_arithmeticFolders___spec__13(uint16_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_arithmeticFolders___closed__40; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_Folder_first___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern uint8_t l_instInhabitedUInt8; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_Folder_mulRhsShift___at_Lean_Compiler_LCNF_Simp_ConstantFold_arithmeticFolders___spec__34___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_arithmeticFolders___closed__20; LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Compiler_LCNF_Simp_ConstantFold_0__Lean_Compiler_LCNF_Simp_ConstantFold_getFolder___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); @@ -594,8 +597,6 @@ lean_object* lean_array_mk(lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_Folder_leftNeutral___at_Lean_Compiler_LCNF_Simp_ConstantFold_arithmeticFolders___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_getBoolLit___closed__3; static lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_instLiteralUInt8___closed__2; -extern uint32_t l_UInt32_instInhabited; -extern uint64_t l_UInt64_instInhabited; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_Compiler_LCNF_Simp_ConstantFold_applyFolders___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_Folder_mkBinaryDecisionProcedure___at_Lean_Compiler_LCNF_Simp_ConstantFold_relationFolders___spec__4___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_Folder_rightAnnihilator___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -669,7 +670,6 @@ uint8_t lean_nat_dec_le(lean_object*, lean_object*); static lean_object* l___private_Lean_Compiler_LCNF_Simp_ConstantFold_0__Lean_Compiler_LCNF_Simp_ConstantFold_getFolderCoreUnsafe___closed__2; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_mkAuxLetDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_lt(size_t, size_t); -extern uint8_t l_UInt8_instInhabited; static lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_arithmeticFolders___closed__11; static lean_object* l_Lean_Compiler_LCNF_Simp_ConstantFold_instLiteralUInt32___closed__4; lean_object* l_UInt16_decLe___boxed(lean_object*, lean_object*); @@ -2574,7 +2574,7 @@ static lean_object* _init_l_Lean_Compiler_LCNF_Simp_ConstantFold_instLiteralUInt _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_1 = l_UInt8_instInhabited; +x_1 = l_instInhabitedUInt8; x_2 = l_Lean_Compiler_LCNF_Simp_ConstantFold_instLiteralUInt8___closed__4; x_3 = l_Lean_Compiler_LCNF_Simp_ConstantFold_instLiteralUInt8___closed__3; x_4 = l_Lean_Compiler_LCNF_Simp_ConstantFold_instLiteralUInt8___closed__5; @@ -2630,7 +2630,7 @@ static lean_object* _init_l_Lean_Compiler_LCNF_Simp_ConstantFold_instLiteralUInt _start: { uint16_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_1 = l_UInt16_instInhabited; +x_1 = l_instInhabitedUInt16; x_2 = l_Lean_Compiler_LCNF_Simp_ConstantFold_instLiteralUInt16___closed__3; x_3 = l_Lean_Compiler_LCNF_Simp_ConstantFold_instLiteralUInt16___closed__2; x_4 = l_Lean_Compiler_LCNF_Simp_ConstantFold_instLiteralUInt16___closed__4; @@ -2686,7 +2686,7 @@ static lean_object* _init_l_Lean_Compiler_LCNF_Simp_ConstantFold_instLiteralUInt _start: { uint32_t x_1; lean_object* x_2; -x_1 = l_UInt32_instInhabited; +x_1 = l_instInhabitedUInt32; x_2 = lean_box_uint32(x_1); return x_2; } @@ -2749,7 +2749,7 @@ static lean_object* _init_l_Lean_Compiler_LCNF_Simp_ConstantFold_instLiteralUInt _start: { uint64_t x_1; lean_object* x_2; -x_1 = l_UInt64_instInhabited; +x_1 = l_instInhabitedUInt64; x_2 = lean_box_uint64(x_1); return x_2; } diff --git a/stage0/stdlib/Lean/CoreM.c b/stage0/stdlib/Lean/CoreM.c index c7283f7ee1..9e3a642fb1 100644 --- a/stage0/stdlib/Lean/CoreM.c +++ b/stage0/stdlib/Lean/CoreM.c @@ -45,7 +45,6 @@ lean_object* l_EIO_toBaseIO___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_Core_instantiateTypeLevelParams___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_compileDecl___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instMonadExceptOfExceptionCoreM; -extern lean_object* l_Lean_profiler; LEAN_EXPORT lean_object* l_Lean_Core_getMaxHeartbeats(lean_object*); LEAN_EXPORT lean_object* l_List_foldlM___at___private_Lean_CoreM_0__Lean_checkUnsupported___spec__2___rarg___lambda__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_instMonadTraceCoreM___lambda__2___boxed(lean_object*, lean_object*, lean_object*); @@ -193,7 +192,7 @@ static lean_object* l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__1; LEAN_EXPORT lean_object* l_Lean_Core_wrapAsyncAsSnapshot___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Core_initFn____x40_Lean_CoreM___hyg_3052____closed__6; LEAN_EXPORT lean_object* l_List_foldlM___at___private_Lean_CoreM_0__Lean_checkUnsupported___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_hasSyntheticSorry(lean_object*); static lean_object* l_Lean_Core_instAddMessageContextCoreM___closed__1; uint8_t l_Lean_ConstantInfo_hasValue(lean_object*); @@ -303,7 +302,7 @@ static lean_object* l_Lean_addMessageContextPartial___at_Lean_Core_instAddMessag LEAN_EXPORT lean_object* l_List_beq___at_Lean_Core_instantiateTypeLevelParams___spec__8___boxed(lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_instMonadLogCoreM___lambda__1___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Core_instMonadQuotationCoreM___closed__3; LEAN_EXPORT uint8_t l_List_beq___at_Lean_Core_instantiateTypeLevelParams___spec__8(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_catchInternalId___boxed(lean_object*, lean_object*, lean_object*); @@ -325,6 +324,7 @@ LEAN_EXPORT lean_object* l_Lean_Core_instMonadNameGeneratorCoreM___lambda__1(lea LEAN_EXPORT lean_object* l_Lean_instMonadExceptOfExceptionCoreM___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_is_aux_recursor(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_instantiateValueLevelParams(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint64_t lean_uint64_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_instMonadRecDepthCoreM; extern lean_object* l_ByteArray_empty; lean_object* lean_nat_div(lean_object*, lean_object*); @@ -355,7 +355,7 @@ static lean_object* l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___sp LEAN_EXPORT lean_object* l_Lean_Core_withIncRecDepth___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_tryCatchRuntimeEx(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_Core_instantiateTypeLevelParams___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofFormat(lean_object*); lean_object* l_Lean_PersistentArray_append___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_CoreM_0__Lean_checkUnsupported(lean_object*); @@ -366,7 +366,6 @@ lean_object* l_Lean_Expr_forallE___override(lean_object*, lean_object*, lean_obj static lean_object* l_Lean_Core_instMonadNameGeneratorCoreM___closed__2; static lean_object* l___auto____x40_Lean_CoreM___hyg_4103____closed__20; static lean_object* l___auto____x40_Lean_CoreM___hyg_4103____closed__26; -static lean_object* l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2___closed__2; static lean_object* l_Lean_compileDecl___lambda__1___closed__2; static lean_object* l_Lean_Core_instMonadRefCoreM___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_async; @@ -468,7 +467,7 @@ LEAN_EXPORT lean_object* l_Lean_Core_setMessageLog(lean_object*, lean_object*, l LEAN_EXPORT lean_object* l_Lean_catchInternalId___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instMonadRuntimeExceptionReaderT___rarg___lambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_wrapAsyncAsSnapshot___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldlM___at_Lean_compileDecl___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_diagnostics; LEAN_EXPORT lean_object* l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -496,7 +495,7 @@ LEAN_EXPORT lean_object* l_Lean_withAtLeastMaxRecDepth___rarg(lean_object*, lean static lean_object* l_Lean_Core_initFn____x40_Lean_CoreM___hyg_2938____closed__2; LEAN_EXPORT lean_object* l_Lean_Core_instantiateValueLevelParams___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_getAndEmptyMessageLog___rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_mkFreshUserName(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___auto____x40_Lean_CoreM___hyg_4103____closed__31; @@ -555,7 +554,7 @@ static lean_object* l_Lean_Core_initFn____x40_Lean_CoreM___hyg_3052____closed__1 LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_CoreM___hyg_40_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_wrapAsync___rarg___lambda__1(uint64_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_instMonadLogCoreM___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_wrapAsyncAsSnapshot___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_CoreM_run___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -600,7 +599,7 @@ LEAN_EXPORT lean_object* l_Lean_Core_instMonadLiftIOCoreM___rarg___boxed(lean_ob LEAN_EXPORT lean_object* l_Lean_Core_wrapAsync___elambda__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___auto____x40_Lean_CoreM___hyg_4103____closed__38; LEAN_EXPORT lean_object* l_Lean_Declaration_foldExprM___at___private_Lean_CoreM_0__Lean_checkUnsupported___spec__1___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_catchInternalIds___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_instMonadQuotationCoreM___lambda__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_mkArrowN___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -642,7 +641,7 @@ lean_object* lean_nat_sub(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_wrapAsync___elambda__1(lean_object*); static lean_object* l_Lean_Core_instMonadLogCoreM___lambda__5___closed__4; LEAN_EXPORT lean_object* l_Lean_Core_modifyInstLevelTypeCache(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__6; +static uint64_t l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__6; LEAN_EXPORT uint8_t l_List_foldlM___at___private_Lean_CoreM_0__Lean_checkUnsupported___spec__2___rarg___lambda__1(lean_object*, lean_object*); lean_object* lean_nat_mul(lean_object*, lean_object*); static lean_object* l___private_Lean_CoreM_0__Lean_supportedRecursors___closed__5; @@ -708,7 +707,7 @@ LEAN_EXPORT lean_object* l_Lean_logAt___at_Lean_Core_wrapAsyncAsSnapshot___spec_ LEAN_EXPORT lean_object* l_Lean_compileDecl___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uget(lean_object*, size_t); size_t lean_array_size(lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_instantiateValueLevelParams___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_initFn____x40_Lean_CoreM___hyg_114____closed__2; LEAN_EXPORT lean_object* l_Lean_mkArrowN___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -830,6 +829,7 @@ LEAN_EXPORT lean_object* l_Lean_Core_instMonadResolveNameCoreM___lambda__2___box static lean_object* l___private_Lean_CoreM_0__Lean_supportedRecursors___closed__13; LEAN_EXPORT lean_object* l___private_Lean_CoreM_0__Lean_checkUnsupported___at_Lean_compileDecl___spec__6(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_wrapAsyncAsSnapshot___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__9; lean_object* l_Lean_MessageLog_add(lean_object*, lean_object*); lean_object* l_ReaderT_instMonad___rarg(lean_object*); size_t lean_usize_land(size_t, size_t); @@ -11956,69 +11956,36 @@ x_3 = l_Float_ofScientific(x_1, x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2___closed__2() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2___closed__1; +x_15 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_15, 0, x_1); +lean_ctor_set(x_15, 1, x_3); +lean_ctor_set_float(x_15, sizeof(void*)*2, x_14); +lean_ctor_set_float(x_15, sizeof(void*)*2 + 8, x_14); +lean_ctor_set_uint8(x_15, sizeof(void*)*2 + 16, x_2); +x_16 = lean_box(0); +x_17 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_15, x_16, x_11, x_12, x_13); +return x_17; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { -_start: +else { -double x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_15 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_16 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_16, 0, x_1); -lean_ctor_set(x_16, 1, x_3); -lean_ctor_set_float(x_16, sizeof(void*)*2, x_15); -lean_ctor_set_float(x_16, sizeof(void*)*2 + 8, x_15); -lean_ctor_set_uint8(x_16, sizeof(void*)*2 + 16, x_2); -x_17 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2___closed__2; -x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_17); -if (x_18 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_19; lean_object* x_20; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_3); +lean_ctor_set_float(x_18, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); x_19 = lean_box(0); -x_20 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_16, x_19, x_12, x_13, x_14); +x_20 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_18, x_19, x_11, x_12, x_13); return x_20; } -else -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; -lean_dec(x_16); -x_21 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_21, 0, x_1); -lean_ctor_set(x_21, 1, x_3); -lean_ctor_set_float(x_21, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_21, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_21, sizeof(void*)*2 + 16, x_2); -x_22 = lean_box(0); -x_23 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_21, x_22, x_12, x_13, x_14); -return x_23; -} -} -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -lean_dec(x_16); -x_24 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_24, 0, x_1); -lean_ctor_set(x_24, 1, x_3); -lean_ctor_set_float(x_24, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_24, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_24, sizeof(void*)*2 + 16, x_2); -x_25 = lean_box(0); -x_26 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_24, x_25, x_12, x_13, x_14); -return x_26; -} } } static lean_object* _init_l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3___closed__1() { @@ -12038,40 +12005,40 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_15; lean_object* x_16; -x_15 = lean_ctor_get(x_12, 5); -lean_inc(x_15); -lean_inc(x_13); +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_11, 5); +lean_inc(x_14); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_16 = lean_apply_4(x_10, x_5, x_12, x_13, x_14); -if (lean_obj_tag(x_16) == 0) +x_15 = lean_apply_4(x_9, x_5, x_11, x_12, x_13); +if (lean_obj_tag(x_15) == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_ctor_get(x_16, 0); +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); lean_inc(x_17); -x_18 = lean_ctor_get(x_16, 1); -lean_inc(x_18); -lean_dec(x_16); -x_19 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_15, x_5, x_6, x_7, x_8, x_9, x_17, x_12, x_13, x_18); -lean_dec(x_13); +lean_dec(x_15); +x_18 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_14, x_5, x_6, x_7, x_8, x_16, x_11, x_12, x_17); +lean_dec(x_12); lean_dec(x_5); -return x_19; +return x_18; } else { -lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_20 = lean_ctor_get(x_16, 1); -lean_inc(x_20); -lean_dec(x_16); -x_21 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3___closed__2; -x_22 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_15, x_5, x_6, x_7, x_8, x_9, x_21, x_12, x_13, x_20); -lean_dec(x_13); +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_15, 1); +lean_inc(x_19); +lean_dec(x_15); +x_20 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3___closed__2; +x_21 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_14, x_5, x_6, x_7, x_8, x_20, x_11, x_12, x_19); +lean_dec(x_12); lean_dec(x_5); -return x_22; +return x_21; } } } @@ -12135,251 +12102,251 @@ x_15 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambd x_16 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_15); if (x_16 == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; -x_107 = lean_io_mono_nanos_now(x_14); -x_108 = lean_ctor_get(x_107, 0); -lean_inc(x_108); -x_109 = lean_ctor_get(x_107, 1); -lean_inc(x_109); -lean_dec(x_107); +lean_object* x_17; lean_object* x_18; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; +x_111 = lean_io_mono_nanos_now(x_14); +x_112 = lean_ctor_get(x_111, 0); +lean_inc(x_112); +x_113 = lean_ctor_get(x_111, 1); +lean_inc(x_113); +lean_dec(x_111); lean_inc(x_10); lean_inc(x_9); -x_110 = lean_apply_3(x_7, x_9, x_10, x_109); -if (lean_obj_tag(x_110) == 0) +x_114 = lean_apply_3(x_7, x_9, x_10, x_113); +if (lean_obj_tag(x_114) == 0) { -uint8_t x_111; -x_111 = !lean_is_exclusive(x_110); -if (x_111 == 0) +uint8_t x_115; +x_115 = !lean_is_exclusive(x_114); +if (x_115 == 0) { -lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; uint8_t x_116; -x_112 = lean_ctor_get(x_110, 0); -x_113 = lean_ctor_get(x_110, 1); -x_114 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_114, 0, x_112); -x_115 = lean_io_mono_nanos_now(x_113); -x_116 = !lean_is_exclusive(x_115); -if (x_116 == 0) +lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; uint8_t x_120; +x_116 = lean_ctor_get(x_114, 0); +x_117 = lean_ctor_get(x_114, 1); +x_118 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_118, 0, x_116); +x_119 = lean_io_mono_nanos_now(x_117); +x_120 = !lean_is_exclusive(x_119); +if (x_120 == 0) { -lean_object* x_117; lean_object* x_118; uint8_t x_119; lean_object* x_120; double x_121; double x_122; double x_123; double x_124; double x_125; lean_object* x_126; lean_object* x_127; -x_117 = lean_ctor_get(x_115, 0); -x_118 = lean_ctor_get(x_115, 1); -x_119 = 0; -x_120 = lean_unsigned_to_nat(0u); -x_121 = l_Float_ofScientific(x_108, x_119, x_120); -lean_dec(x_108); -x_122 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; -x_123 = lean_float_div(x_121, x_122); -x_124 = l_Float_ofScientific(x_117, x_119, x_120); -lean_dec(x_117); -x_125 = lean_float_div(x_124, x_122); -x_126 = lean_box_float(x_123); -x_127 = lean_box_float(x_125); -lean_ctor_set(x_115, 1, x_127); -lean_ctor_set(x_115, 0, x_126); -lean_ctor_set(x_110, 1, x_115); -lean_ctor_set(x_110, 0, x_114); -x_17 = x_110; -x_18 = x_118; -goto block_106; +lean_object* x_121; lean_object* x_122; uint8_t x_123; lean_object* x_124; double x_125; double x_126; double x_127; double x_128; double x_129; lean_object* x_130; lean_object* x_131; +x_121 = lean_ctor_get(x_119, 0); +x_122 = lean_ctor_get(x_119, 1); +x_123 = 0; +x_124 = lean_unsigned_to_nat(0u); +x_125 = l_Float_ofScientific(x_112, x_123, x_124); +lean_dec(x_112); +x_126 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; +x_127 = lean_float_div(x_125, x_126); +x_128 = l_Float_ofScientific(x_121, x_123, x_124); +lean_dec(x_121); +x_129 = lean_float_div(x_128, x_126); +x_130 = lean_box_float(x_127); +x_131 = lean_box_float(x_129); +lean_ctor_set(x_119, 1, x_131); +lean_ctor_set(x_119, 0, x_130); +lean_ctor_set(x_114, 1, x_119); +lean_ctor_set(x_114, 0, x_118); +x_17 = x_114; +x_18 = x_122; +goto block_110; } else { -lean_object* x_128; lean_object* x_129; uint8_t x_130; lean_object* x_131; double x_132; double x_133; double x_134; double x_135; double x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; -x_128 = lean_ctor_get(x_115, 0); -x_129 = lean_ctor_get(x_115, 1); -lean_inc(x_129); -lean_inc(x_128); -lean_dec(x_115); -x_130 = 0; -x_131 = lean_unsigned_to_nat(0u); -x_132 = l_Float_ofScientific(x_108, x_130, x_131); -lean_dec(x_108); -x_133 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; -x_134 = lean_float_div(x_132, x_133); -x_135 = l_Float_ofScientific(x_128, x_130, x_131); -lean_dec(x_128); -x_136 = lean_float_div(x_135, x_133); -x_137 = lean_box_float(x_134); -x_138 = lean_box_float(x_136); -x_139 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_139, 0, x_137); -lean_ctor_set(x_139, 1, x_138); -lean_ctor_set(x_110, 1, x_139); -lean_ctor_set(x_110, 0, x_114); -x_17 = x_110; -x_18 = x_129; -goto block_106; +lean_object* x_132; lean_object* x_133; uint8_t x_134; lean_object* x_135; double x_136; double x_137; double x_138; double x_139; double x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; +x_132 = lean_ctor_get(x_119, 0); +x_133 = lean_ctor_get(x_119, 1); +lean_inc(x_133); +lean_inc(x_132); +lean_dec(x_119); +x_134 = 0; +x_135 = lean_unsigned_to_nat(0u); +x_136 = l_Float_ofScientific(x_112, x_134, x_135); +lean_dec(x_112); +x_137 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; +x_138 = lean_float_div(x_136, x_137); +x_139 = l_Float_ofScientific(x_132, x_134, x_135); +lean_dec(x_132); +x_140 = lean_float_div(x_139, x_137); +x_141 = lean_box_float(x_138); +x_142 = lean_box_float(x_140); +x_143 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_143, 0, x_141); +lean_ctor_set(x_143, 1, x_142); +lean_ctor_set(x_114, 1, x_143); +lean_ctor_set(x_114, 0, x_118); +x_17 = x_114; +x_18 = x_133; +goto block_110; } } else { -lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; uint8_t x_147; lean_object* x_148; double x_149; double x_150; double x_151; double x_152; double x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; -x_140 = lean_ctor_get(x_110, 0); -x_141 = lean_ctor_get(x_110, 1); -lean_inc(x_141); -lean_inc(x_140); -lean_dec(x_110); -x_142 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_142, 0, x_140); -x_143 = lean_io_mono_nanos_now(x_141); -x_144 = lean_ctor_get(x_143, 0); -lean_inc(x_144); -x_145 = lean_ctor_get(x_143, 1); +lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; uint8_t x_151; lean_object* x_152; double x_153; double x_154; double x_155; double x_156; double x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; +x_144 = lean_ctor_get(x_114, 0); +x_145 = lean_ctor_get(x_114, 1); lean_inc(x_145); -if (lean_is_exclusive(x_143)) { - lean_ctor_release(x_143, 0); - lean_ctor_release(x_143, 1); - x_146 = x_143; +lean_inc(x_144); +lean_dec(x_114); +x_146 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_146, 0, x_144); +x_147 = lean_io_mono_nanos_now(x_145); +x_148 = lean_ctor_get(x_147, 0); +lean_inc(x_148); +x_149 = lean_ctor_get(x_147, 1); +lean_inc(x_149); +if (lean_is_exclusive(x_147)) { + lean_ctor_release(x_147, 0); + lean_ctor_release(x_147, 1); + x_150 = x_147; } else { - lean_dec_ref(x_143); - x_146 = lean_box(0); + lean_dec_ref(x_147); + x_150 = lean_box(0); } -x_147 = 0; -x_148 = lean_unsigned_to_nat(0u); -x_149 = l_Float_ofScientific(x_108, x_147, x_148); -lean_dec(x_108); -x_150 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; -x_151 = lean_float_div(x_149, x_150); -x_152 = l_Float_ofScientific(x_144, x_147, x_148); -lean_dec(x_144); -x_153 = lean_float_div(x_152, x_150); -x_154 = lean_box_float(x_151); -x_155 = lean_box_float(x_153); -if (lean_is_scalar(x_146)) { - x_156 = lean_alloc_ctor(0, 2, 0); +x_151 = 0; +x_152 = lean_unsigned_to_nat(0u); +x_153 = l_Float_ofScientific(x_112, x_151, x_152); +lean_dec(x_112); +x_154 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; +x_155 = lean_float_div(x_153, x_154); +x_156 = l_Float_ofScientific(x_148, x_151, x_152); +lean_dec(x_148); +x_157 = lean_float_div(x_156, x_154); +x_158 = lean_box_float(x_155); +x_159 = lean_box_float(x_157); +if (lean_is_scalar(x_150)) { + x_160 = lean_alloc_ctor(0, 2, 0); } else { - x_156 = x_146; + x_160 = x_150; } -lean_ctor_set(x_156, 0, x_154); -lean_ctor_set(x_156, 1, x_155); -x_157 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_157, 0, x_142); -lean_ctor_set(x_157, 1, x_156); -x_17 = x_157; -x_18 = x_145; -goto block_106; +lean_ctor_set(x_160, 0, x_158); +lean_ctor_set(x_160, 1, x_159); +x_161 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_161, 0, x_146); +lean_ctor_set(x_161, 1, x_160); +x_17 = x_161; +x_18 = x_149; +goto block_110; } } else { -uint8_t x_158; -x_158 = !lean_is_exclusive(x_110); -if (x_158 == 0) +uint8_t x_162; +x_162 = !lean_is_exclusive(x_114); +if (x_162 == 0) { -lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; uint8_t x_163; -x_159 = lean_ctor_get(x_110, 0); -x_160 = lean_ctor_get(x_110, 1); -x_161 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_161, 0, x_159); -x_162 = lean_io_mono_nanos_now(x_160); -x_163 = !lean_is_exclusive(x_162); -if (x_163 == 0) +lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; uint8_t x_167; +x_163 = lean_ctor_get(x_114, 0); +x_164 = lean_ctor_get(x_114, 1); +x_165 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_165, 0, x_163); +x_166 = lean_io_mono_nanos_now(x_164); +x_167 = !lean_is_exclusive(x_166); +if (x_167 == 0) { -lean_object* x_164; lean_object* x_165; uint8_t x_166; lean_object* x_167; double x_168; double x_169; double x_170; double x_171; double x_172; lean_object* x_173; lean_object* x_174; -x_164 = lean_ctor_get(x_162, 0); -x_165 = lean_ctor_get(x_162, 1); -x_166 = 0; -x_167 = lean_unsigned_to_nat(0u); -x_168 = l_Float_ofScientific(x_108, x_166, x_167); -lean_dec(x_108); -x_169 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; -x_170 = lean_float_div(x_168, x_169); -x_171 = l_Float_ofScientific(x_164, x_166, x_167); -lean_dec(x_164); -x_172 = lean_float_div(x_171, x_169); -x_173 = lean_box_float(x_170); -x_174 = lean_box_float(x_172); -lean_ctor_set(x_162, 1, x_174); -lean_ctor_set(x_162, 0, x_173); -lean_ctor_set_tag(x_110, 0); -lean_ctor_set(x_110, 1, x_162); -lean_ctor_set(x_110, 0, x_161); -x_17 = x_110; -x_18 = x_165; -goto block_106; +lean_object* x_168; lean_object* x_169; uint8_t x_170; lean_object* x_171; double x_172; double x_173; double x_174; double x_175; double x_176; lean_object* x_177; lean_object* x_178; +x_168 = lean_ctor_get(x_166, 0); +x_169 = lean_ctor_get(x_166, 1); +x_170 = 0; +x_171 = lean_unsigned_to_nat(0u); +x_172 = l_Float_ofScientific(x_112, x_170, x_171); +lean_dec(x_112); +x_173 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; +x_174 = lean_float_div(x_172, x_173); +x_175 = l_Float_ofScientific(x_168, x_170, x_171); +lean_dec(x_168); +x_176 = lean_float_div(x_175, x_173); +x_177 = lean_box_float(x_174); +x_178 = lean_box_float(x_176); +lean_ctor_set(x_166, 1, x_178); +lean_ctor_set(x_166, 0, x_177); +lean_ctor_set_tag(x_114, 0); +lean_ctor_set(x_114, 1, x_166); +lean_ctor_set(x_114, 0, x_165); +x_17 = x_114; +x_18 = x_169; +goto block_110; } else { -lean_object* x_175; lean_object* x_176; uint8_t x_177; lean_object* x_178; double x_179; double x_180; double x_181; double x_182; double x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; -x_175 = lean_ctor_get(x_162, 0); -x_176 = lean_ctor_get(x_162, 1); -lean_inc(x_176); -lean_inc(x_175); -lean_dec(x_162); -x_177 = 0; -x_178 = lean_unsigned_to_nat(0u); -x_179 = l_Float_ofScientific(x_108, x_177, x_178); -lean_dec(x_108); -x_180 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; -x_181 = lean_float_div(x_179, x_180); -x_182 = l_Float_ofScientific(x_175, x_177, x_178); -lean_dec(x_175); -x_183 = lean_float_div(x_182, x_180); -x_184 = lean_box_float(x_181); -x_185 = lean_box_float(x_183); -x_186 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_186, 0, x_184); -lean_ctor_set(x_186, 1, x_185); -lean_ctor_set_tag(x_110, 0); -lean_ctor_set(x_110, 1, x_186); -lean_ctor_set(x_110, 0, x_161); -x_17 = x_110; -x_18 = x_176; -goto block_106; +lean_object* x_179; lean_object* x_180; uint8_t x_181; lean_object* x_182; double x_183; double x_184; double x_185; double x_186; double x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; +x_179 = lean_ctor_get(x_166, 0); +x_180 = lean_ctor_get(x_166, 1); +lean_inc(x_180); +lean_inc(x_179); +lean_dec(x_166); +x_181 = 0; +x_182 = lean_unsigned_to_nat(0u); +x_183 = l_Float_ofScientific(x_112, x_181, x_182); +lean_dec(x_112); +x_184 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; +x_185 = lean_float_div(x_183, x_184); +x_186 = l_Float_ofScientific(x_179, x_181, x_182); +lean_dec(x_179); +x_187 = lean_float_div(x_186, x_184); +x_188 = lean_box_float(x_185); +x_189 = lean_box_float(x_187); +x_190 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_190, 0, x_188); +lean_ctor_set(x_190, 1, x_189); +lean_ctor_set_tag(x_114, 0); +lean_ctor_set(x_114, 1, x_190); +lean_ctor_set(x_114, 0, x_165); +x_17 = x_114; +x_18 = x_180; +goto block_110; } } else { -lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; uint8_t x_194; lean_object* x_195; double x_196; double x_197; double x_198; double x_199; double x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; -x_187 = lean_ctor_get(x_110, 0); -x_188 = lean_ctor_get(x_110, 1); -lean_inc(x_188); -lean_inc(x_187); -lean_dec(x_110); -x_189 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_189, 0, x_187); -x_190 = lean_io_mono_nanos_now(x_188); -x_191 = lean_ctor_get(x_190, 0); -lean_inc(x_191); -x_192 = lean_ctor_get(x_190, 1); +lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; uint8_t x_198; lean_object* x_199; double x_200; double x_201; double x_202; double x_203; double x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; +x_191 = lean_ctor_get(x_114, 0); +x_192 = lean_ctor_get(x_114, 1); lean_inc(x_192); -if (lean_is_exclusive(x_190)) { - lean_ctor_release(x_190, 0); - lean_ctor_release(x_190, 1); - x_193 = x_190; +lean_inc(x_191); +lean_dec(x_114); +x_193 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_193, 0, x_191); +x_194 = lean_io_mono_nanos_now(x_192); +x_195 = lean_ctor_get(x_194, 0); +lean_inc(x_195); +x_196 = lean_ctor_get(x_194, 1); +lean_inc(x_196); +if (lean_is_exclusive(x_194)) { + lean_ctor_release(x_194, 0); + lean_ctor_release(x_194, 1); + x_197 = x_194; } else { - lean_dec_ref(x_190); - x_193 = lean_box(0); + lean_dec_ref(x_194); + x_197 = lean_box(0); } -x_194 = 0; -x_195 = lean_unsigned_to_nat(0u); -x_196 = l_Float_ofScientific(x_108, x_194, x_195); -lean_dec(x_108); -x_197 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; -x_198 = lean_float_div(x_196, x_197); -x_199 = l_Float_ofScientific(x_191, x_194, x_195); -lean_dec(x_191); -x_200 = lean_float_div(x_199, x_197); -x_201 = lean_box_float(x_198); -x_202 = lean_box_float(x_200); -if (lean_is_scalar(x_193)) { - x_203 = lean_alloc_ctor(0, 2, 0); +x_198 = 0; +x_199 = lean_unsigned_to_nat(0u); +x_200 = l_Float_ofScientific(x_112, x_198, x_199); +lean_dec(x_112); +x_201 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; +x_202 = lean_float_div(x_200, x_201); +x_203 = l_Float_ofScientific(x_195, x_198, x_199); +lean_dec(x_195); +x_204 = lean_float_div(x_203, x_201); +x_205 = lean_box_float(x_202); +x_206 = lean_box_float(x_204); +if (lean_is_scalar(x_197)) { + x_207 = lean_alloc_ctor(0, 2, 0); } else { - x_203 = x_193; + x_207 = x_197; } -lean_ctor_set(x_203, 0, x_201); -lean_ctor_set(x_203, 1, x_202); -x_204 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_204, 0, x_189); -lean_ctor_set(x_204, 1, x_203); -x_17 = x_204; -x_18 = x_192; -goto block_106; +lean_ctor_set(x_207, 0, x_205); +lean_ctor_set(x_207, 1, x_206); +x_208 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_208, 0, x_193); +lean_ctor_set(x_208, 1, x_207); +x_17 = x_208; +x_18 = x_196; +goto block_110; } } -block_106: +block_110: { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_92; uint8_t x_93; +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; uint8_t x_25; x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); x_20 = lean_ctor_get(x_17, 0); @@ -12390,17 +12357,33 @@ lean_inc(x_21); x_22 = lean_ctor_get(x_19, 1); lean_inc(x_22); lean_dec(x_19); -x_92 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__2; -x_93 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_92); -if (x_93 == 0) +x_23 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__2; +x_24 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_23); +if (x_24 == 0) { -uint8_t x_94; -x_94 = 0; -x_23 = x_94; -goto block_91; +if (x_6 == 0) +{ +uint8_t x_90; +x_90 = 0; +x_25 = x_90; +goto block_89; } else { +lean_object* x_91; double x_92; double x_93; lean_object* x_94; +x_91 = lean_box(0); +x_92 = lean_unbox_float(x_21); +lean_dec(x_21); +x_93 = lean_unbox_float(x_22); +lean_dec(x_22); +x_94 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_92, x_93, x_5, x_91, x_9, x_10, x_18); +return x_94; +} +} +else +{ +if (x_6 == 0) +{ double x_95; double x_96; double x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; lean_object* x_101; double x_102; double x_103; double x_104; uint8_t x_105; x_95 = lean_unbox_float(x_22); x_96 = lean_unbox_float(x_21); @@ -12414,845 +12397,857 @@ lean_dec(x_99); x_103 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__4; x_104 = lean_float_div(x_102, x_103); x_105 = lean_float_decLt(x_104, x_97); -x_23 = x_105; -goto block_91; +x_25 = x_105; +goto block_89; } -block_91: +else { -if (x_6 == 0) +lean_object* x_106; double x_107; double x_108; lean_object* x_109; +x_106 = lean_box(0); +x_107 = lean_unbox_float(x_21); +lean_dec(x_21); +x_108 = lean_unbox_float(x_22); +lean_dec(x_22); +x_109 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_107, x_108, x_5, x_106, x_9, x_10, x_18); +return x_109; +} +} +block_89: { -if (x_23 == 0) +if (x_25 == 0) { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_dec(x_22); lean_dec(x_21); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_24 = lean_st_ref_take(x_10, x_18); -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -x_26 = lean_ctor_get(x_25, 3); -lean_inc(x_26); -x_27 = lean_ctor_get(x_24, 1); +x_26 = lean_st_ref_take(x_10, x_18); +x_27 = lean_ctor_get(x_26, 0); lean_inc(x_27); -lean_dec(x_24); -x_28 = !lean_is_exclusive(x_25); -if (x_28 == 0) -{ -lean_object* x_29; uint8_t x_30; -x_29 = lean_ctor_get(x_25, 3); -lean_dec(x_29); -x_30 = !lean_is_exclusive(x_26); +x_28 = lean_ctor_get(x_27, 3); +lean_inc(x_28); +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); +lean_dec(x_26); +x_30 = !lean_is_exclusive(x_27); if (x_30 == 0) { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_31 = lean_ctor_get(x_26, 0); -x_32 = l_Lean_PersistentArray_append___rarg(x_13, x_31); +lean_object* x_31; uint8_t x_32; +x_31 = lean_ctor_get(x_27, 3); lean_dec(x_31); -lean_ctor_set(x_26, 0, x_32); -x_33 = lean_st_ref_set(x_10, x_25, x_27); -x_34 = lean_ctor_get(x_33, 1); -lean_inc(x_34); +x_32 = !lean_is_exclusive(x_28); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_33 = lean_ctor_get(x_28, 0); +x_34 = l_Lean_PersistentArray_append___rarg(x_13, x_33); lean_dec(x_33); -x_35 = l_MonadExcept_ofExcept___at_Lean_Core_wrapAsyncAsSnapshot___spec__5(x_20, x_9, x_10, x_34); +lean_ctor_set(x_28, 0, x_34); +x_35 = lean_st_ref_set(x_10, x_27, x_29); +x_36 = lean_ctor_get(x_35, 1); +lean_inc(x_36); +lean_dec(x_35); +x_37 = l_MonadExcept_ofExcept___at_Lean_Core_wrapAsyncAsSnapshot___spec__5(x_20, x_9, x_10, x_36); lean_dec(x_10); lean_dec(x_9); lean_dec(x_20); -if (lean_obj_tag(x_35) == 0) +if (lean_obj_tag(x_37) == 0) { -uint8_t x_36; -x_36 = !lean_is_exclusive(x_35); -if (x_36 == 0) +uint8_t x_38; +x_38 = !lean_is_exclusive(x_37); +if (x_38 == 0) { -return x_35; +return x_37; } else { -lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_37 = lean_ctor_get(x_35, 0); -x_38 = lean_ctor_get(x_35, 1); -lean_inc(x_38); -lean_inc(x_37); -lean_dec(x_35); -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_37); -lean_ctor_set(x_39, 1, x_38); -return x_39; +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_37, 0); +x_40 = lean_ctor_get(x_37, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_37); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +return x_41; } } else { -uint8_t x_40; -x_40 = !lean_is_exclusive(x_35); -if (x_40 == 0) +uint8_t x_42; +x_42 = !lean_is_exclusive(x_37); +if (x_42 == 0) { -return x_35; +return x_37; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_35, 0); -x_42 = lean_ctor_get(x_35, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_35); -x_43 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_42); -return x_43; +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_37, 0); +x_44 = lean_ctor_get(x_37, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_37); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; } } } else { -uint64_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_44 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); -x_45 = lean_ctor_get(x_26, 0); -lean_inc(x_45); -lean_dec(x_26); -x_46 = l_Lean_PersistentArray_append___rarg(x_13, x_45); -lean_dec(x_45); -x_47 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_47, 0, x_46); -lean_ctor_set_uint64(x_47, sizeof(void*)*1, x_44); -lean_ctor_set(x_25, 3, x_47); -x_48 = lean_st_ref_set(x_10, x_25, x_27); -x_49 = lean_ctor_get(x_48, 1); -lean_inc(x_49); -lean_dec(x_48); -x_50 = l_MonadExcept_ofExcept___at_Lean_Core_wrapAsyncAsSnapshot___spec__5(x_20, x_9, x_10, x_49); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_20); -if (lean_obj_tag(x_50) == 0) -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_51 = lean_ctor_get(x_50, 0); +uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); +x_47 = lean_ctor_get(x_28, 0); +lean_inc(x_47); +lean_dec(x_28); +x_48 = l_Lean_PersistentArray_append___rarg(x_13, x_47); +lean_dec(x_47); +x_49 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); +lean_ctor_set(x_27, 3, x_49); +x_50 = lean_st_ref_set(x_10, x_27, x_29); +x_51 = lean_ctor_get(x_50, 1); lean_inc(x_51); -x_52 = lean_ctor_get(x_50, 1); -lean_inc(x_52); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_53 = x_50; +lean_dec(x_50); +x_52 = l_MonadExcept_ofExcept___at_Lean_Core_wrapAsyncAsSnapshot___spec__5(x_20, x_9, x_10, x_51); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_20); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_52, 1); +lean_inc(x_54); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_55 = x_52; } else { - lean_dec_ref(x_50); - x_53 = lean_box(0); + lean_dec_ref(x_52); + x_55 = lean_box(0); } -if (lean_is_scalar(x_53)) { - x_54 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_55)) { + x_56 = lean_alloc_ctor(0, 2, 0); } else { - x_54 = x_53; + x_56 = x_55; } -lean_ctor_set(x_54, 0, x_51); -lean_ctor_set(x_54, 1, x_52); -return x_54; +lean_ctor_set(x_56, 0, x_53); +lean_ctor_set(x_56, 1, x_54); +return x_56; } else { -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_55 = lean_ctor_get(x_50, 0); -lean_inc(x_55); -x_56 = lean_ctor_get(x_50, 1); -lean_inc(x_56); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_57 = x_50; +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_57 = lean_ctor_get(x_52, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_52, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_59 = x_52; } else { - lean_dec_ref(x_50); - x_57 = lean_box(0); + lean_dec_ref(x_52); + x_59 = lean_box(0); } -if (lean_is_scalar(x_57)) { - x_58 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(1, 2, 0); } else { - x_58 = x_57; + x_60 = x_59; } -lean_ctor_set(x_58, 0, x_55); -lean_ctor_set(x_58, 1, x_56); -return x_58; +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_58); +return x_60; } } } else { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint64_t x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_59 = lean_ctor_get(x_25, 0); -x_60 = lean_ctor_get(x_25, 1); -x_61 = lean_ctor_get(x_25, 2); -x_62 = lean_ctor_get(x_25, 4); -x_63 = lean_ctor_get(x_25, 5); -x_64 = lean_ctor_get(x_25, 6); -x_65 = lean_ctor_get(x_25, 7); +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_61 = lean_ctor_get(x_27, 0); +x_62 = lean_ctor_get(x_27, 1); +x_63 = lean_ctor_get(x_27, 2); +x_64 = lean_ctor_get(x_27, 4); +x_65 = lean_ctor_get(x_27, 5); +x_66 = lean_ctor_get(x_27, 6); +x_67 = lean_ctor_get(x_27, 7); +lean_inc(x_67); +lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); lean_inc(x_62); lean_inc(x_61); -lean_inc(x_60); -lean_inc(x_59); -lean_dec(x_25); -x_66 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); -x_67 = lean_ctor_get(x_26, 0); -lean_inc(x_67); -if (lean_is_exclusive(x_26)) { - lean_ctor_release(x_26, 0); - x_68 = x_26; +lean_dec(x_27); +x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); +x_69 = lean_ctor_get(x_28, 0); +lean_inc(x_69); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + x_70 = x_28; } else { - lean_dec_ref(x_26); - x_68 = lean_box(0); + lean_dec_ref(x_28); + x_70 = lean_box(0); } -x_69 = l_Lean_PersistentArray_append___rarg(x_13, x_67); -lean_dec(x_67); -if (lean_is_scalar(x_68)) { - x_70 = lean_alloc_ctor(0, 1, 8); +x_71 = l_Lean_PersistentArray_append___rarg(x_13, x_69); +lean_dec(x_69); +if (lean_is_scalar(x_70)) { + x_72 = lean_alloc_ctor(0, 1, 8); } else { - x_70 = x_68; + x_72 = x_70; } -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set_uint64(x_70, sizeof(void*)*1, x_66); -x_71 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_71, 0, x_59); -lean_ctor_set(x_71, 1, x_60); -lean_ctor_set(x_71, 2, x_61); -lean_ctor_set(x_71, 3, x_70); -lean_ctor_set(x_71, 4, x_62); -lean_ctor_set(x_71, 5, x_63); -lean_ctor_set(x_71, 6, x_64); -lean_ctor_set(x_71, 7, x_65); -x_72 = lean_st_ref_set(x_10, x_71, x_27); -x_73 = lean_ctor_get(x_72, 1); -lean_inc(x_73); -lean_dec(x_72); -x_74 = l_MonadExcept_ofExcept___at_Lean_Core_wrapAsyncAsSnapshot___spec__5(x_20, x_9, x_10, x_73); +lean_ctor_set(x_72, 0, x_71); +lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); +x_73 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_73, 0, x_61); +lean_ctor_set(x_73, 1, x_62); +lean_ctor_set(x_73, 2, x_63); +lean_ctor_set(x_73, 3, x_72); +lean_ctor_set(x_73, 4, x_64); +lean_ctor_set(x_73, 5, x_65); +lean_ctor_set(x_73, 6, x_66); +lean_ctor_set(x_73, 7, x_67); +x_74 = lean_st_ref_set(x_10, x_73, x_29); +x_75 = lean_ctor_get(x_74, 1); +lean_inc(x_75); +lean_dec(x_74); +x_76 = l_MonadExcept_ofExcept___at_Lean_Core_wrapAsyncAsSnapshot___spec__5(x_20, x_9, x_10, x_75); lean_dec(x_10); lean_dec(x_9); lean_dec(x_20); -if (lean_obj_tag(x_74) == 0) +if (lean_obj_tag(x_76) == 0) { -lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_75 = lean_ctor_get(x_74, 0); -lean_inc(x_75); -x_76 = lean_ctor_get(x_74, 1); -lean_inc(x_76); -if (lean_is_exclusive(x_74)) { - lean_ctor_release(x_74, 0); - lean_ctor_release(x_74, 1); - x_77 = x_74; +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_77 = lean_ctor_get(x_76, 0); +lean_inc(x_77); +x_78 = lean_ctor_get(x_76, 1); +lean_inc(x_78); +if (lean_is_exclusive(x_76)) { + lean_ctor_release(x_76, 0); + lean_ctor_release(x_76, 1); + x_79 = x_76; } else { - lean_dec_ref(x_74); - x_77 = lean_box(0); + lean_dec_ref(x_76); + x_79 = lean_box(0); } -if (lean_is_scalar(x_77)) { - x_78 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_79)) { + x_80 = lean_alloc_ctor(0, 2, 0); } else { - x_78 = x_77; + x_80 = x_79; } -lean_ctor_set(x_78, 0, x_75); -lean_ctor_set(x_78, 1, x_76); -return x_78; +lean_ctor_set(x_80, 0, x_77); +lean_ctor_set(x_80, 1, x_78); +return x_80; } else { -lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_79 = lean_ctor_get(x_74, 0); -lean_inc(x_79); -x_80 = lean_ctor_get(x_74, 1); -lean_inc(x_80); -if (lean_is_exclusive(x_74)) { - lean_ctor_release(x_74, 0); - lean_ctor_release(x_74, 1); - x_81 = x_74; +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_81 = lean_ctor_get(x_76, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_76, 1); +lean_inc(x_82); +if (lean_is_exclusive(x_76)) { + lean_ctor_release(x_76, 0); + lean_ctor_release(x_76, 1); + x_83 = x_76; } else { - lean_dec_ref(x_74); - x_81 = lean_box(0); + lean_dec_ref(x_76); + x_83 = lean_box(0); } -if (lean_is_scalar(x_81)) { - x_82 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_83)) { + x_84 = lean_alloc_ctor(1, 2, 0); } else { - x_82 = x_81; + x_84 = x_83; } -lean_ctor_set(x_82, 0, x_79); -lean_ctor_set(x_82, 1, x_80); -return x_82; +lean_ctor_set(x_84, 0, x_81); +lean_ctor_set(x_84, 1, x_82); +return x_84; } } } else { -lean_object* x_83; double x_84; double x_85; lean_object* x_86; -x_83 = lean_box(0); -x_84 = lean_unbox_float(x_21); +lean_object* x_85; double x_86; double x_87; lean_object* x_88; +x_85 = lean_box(0); +x_86 = lean_unbox_float(x_21); lean_dec(x_21); -x_85 = lean_unbox_float(x_22); +x_87 = lean_unbox_float(x_22); lean_dec(x_22); -x_86 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_20, x_1, x_23, x_84, x_85, x_5, x_83, x_9, x_10, x_18); -return x_86; -} -} -else -{ -lean_object* x_87; double x_88; double x_89; lean_object* x_90; -x_87 = lean_box(0); -x_88 = lean_unbox_float(x_21); -lean_dec(x_21); -x_89 = lean_unbox_float(x_22); -lean_dec(x_22); -x_90 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_20, x_1, x_23, x_88, x_89, x_5, x_87, x_9, x_10, x_18); -return x_90; +x_88 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_86, x_87, x_5, x_85, x_9, x_10, x_18); +return x_88; } } } } else { -lean_object* x_205; lean_object* x_206; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; -x_293 = lean_io_get_num_heartbeats(x_14); -x_294 = lean_ctor_get(x_293, 0); -lean_inc(x_294); -x_295 = lean_ctor_get(x_293, 1); -lean_inc(x_295); -lean_dec(x_293); +lean_object* x_209; lean_object* x_210; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; +x_301 = lean_io_get_num_heartbeats(x_14); +x_302 = lean_ctor_get(x_301, 0); +lean_inc(x_302); +x_303 = lean_ctor_get(x_301, 1); +lean_inc(x_303); +lean_dec(x_301); lean_inc(x_10); lean_inc(x_9); -x_296 = lean_apply_3(x_7, x_9, x_10, x_295); -if (lean_obj_tag(x_296) == 0) +x_304 = lean_apply_3(x_7, x_9, x_10, x_303); +if (lean_obj_tag(x_304) == 0) { -uint8_t x_297; -x_297 = !lean_is_exclusive(x_296); -if (x_297 == 0) +uint8_t x_305; +x_305 = !lean_is_exclusive(x_304); +if (x_305 == 0) { -lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; uint8_t x_302; -x_298 = lean_ctor_get(x_296, 0); -x_299 = lean_ctor_get(x_296, 1); -x_300 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_300, 0, x_298); -x_301 = lean_io_get_num_heartbeats(x_299); -x_302 = !lean_is_exclusive(x_301); -if (x_302 == 0) +lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; uint8_t x_310; +x_306 = lean_ctor_get(x_304, 0); +x_307 = lean_ctor_get(x_304, 1); +x_308 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_308, 0, x_306); +x_309 = lean_io_get_num_heartbeats(x_307); +x_310 = !lean_is_exclusive(x_309); +if (x_310 == 0) { -lean_object* x_303; lean_object* x_304; uint8_t x_305; lean_object* x_306; double x_307; double x_308; lean_object* x_309; lean_object* x_310; -x_303 = lean_ctor_get(x_301, 0); -x_304 = lean_ctor_get(x_301, 1); -x_305 = 0; -x_306 = lean_unsigned_to_nat(0u); -x_307 = l_Float_ofScientific(x_294, x_305, x_306); -lean_dec(x_294); -x_308 = l_Float_ofScientific(x_303, x_305, x_306); -lean_dec(x_303); -x_309 = lean_box_float(x_307); -x_310 = lean_box_float(x_308); -lean_ctor_set(x_301, 1, x_310); -lean_ctor_set(x_301, 0, x_309); -lean_ctor_set(x_296, 1, x_301); -lean_ctor_set(x_296, 0, x_300); -x_205 = x_296; -x_206 = x_304; -goto block_292; -} -else -{ -lean_object* x_311; lean_object* x_312; uint8_t x_313; lean_object* x_314; double x_315; double x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; -x_311 = lean_ctor_get(x_301, 0); -x_312 = lean_ctor_get(x_301, 1); -lean_inc(x_312); -lean_inc(x_311); -lean_dec(x_301); +lean_object* x_311; lean_object* x_312; uint8_t x_313; lean_object* x_314; double x_315; double x_316; lean_object* x_317; lean_object* x_318; +x_311 = lean_ctor_get(x_309, 0); +x_312 = lean_ctor_get(x_309, 1); x_313 = 0; x_314 = lean_unsigned_to_nat(0u); -x_315 = l_Float_ofScientific(x_294, x_313, x_314); -lean_dec(x_294); +x_315 = l_Float_ofScientific(x_302, x_313, x_314); +lean_dec(x_302); x_316 = l_Float_ofScientific(x_311, x_313, x_314); lean_dec(x_311); x_317 = lean_box_float(x_315); x_318 = lean_box_float(x_316); -x_319 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_319, 0, x_317); -lean_ctor_set(x_319, 1, x_318); -lean_ctor_set(x_296, 1, x_319); -lean_ctor_set(x_296, 0, x_300); -x_205 = x_296; -x_206 = x_312; -goto block_292; -} +lean_ctor_set(x_309, 1, x_318); +lean_ctor_set(x_309, 0, x_317); +lean_ctor_set(x_304, 1, x_309); +lean_ctor_set(x_304, 0, x_308); +x_209 = x_304; +x_210 = x_312; +goto block_300; } else { -lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; uint8_t x_327; lean_object* x_328; double x_329; double x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; -x_320 = lean_ctor_get(x_296, 0); -x_321 = lean_ctor_get(x_296, 1); -lean_inc(x_321); +lean_object* x_319; lean_object* x_320; uint8_t x_321; lean_object* x_322; double x_323; double x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; +x_319 = lean_ctor_get(x_309, 0); +x_320 = lean_ctor_get(x_309, 1); lean_inc(x_320); -lean_dec(x_296); -x_322 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_322, 0, x_320); -x_323 = lean_io_get_num_heartbeats(x_321); -x_324 = lean_ctor_get(x_323, 0); -lean_inc(x_324); -x_325 = lean_ctor_get(x_323, 1); -lean_inc(x_325); -if (lean_is_exclusive(x_323)) { - lean_ctor_release(x_323, 0); - lean_ctor_release(x_323, 1); - x_326 = x_323; -} else { - lean_dec_ref(x_323); - x_326 = lean_box(0); -} -x_327 = 0; -x_328 = lean_unsigned_to_nat(0u); -x_329 = l_Float_ofScientific(x_294, x_327, x_328); -lean_dec(x_294); -x_330 = l_Float_ofScientific(x_324, x_327, x_328); -lean_dec(x_324); -x_331 = lean_box_float(x_329); -x_332 = lean_box_float(x_330); -if (lean_is_scalar(x_326)) { - x_333 = lean_alloc_ctor(0, 2, 0); -} else { - x_333 = x_326; -} -lean_ctor_set(x_333, 0, x_331); -lean_ctor_set(x_333, 1, x_332); -x_334 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_334, 0, x_322); -lean_ctor_set(x_334, 1, x_333); -x_205 = x_334; -x_206 = x_325; -goto block_292; +lean_inc(x_319); +lean_dec(x_309); +x_321 = 0; +x_322 = lean_unsigned_to_nat(0u); +x_323 = l_Float_ofScientific(x_302, x_321, x_322); +lean_dec(x_302); +x_324 = l_Float_ofScientific(x_319, x_321, x_322); +lean_dec(x_319); +x_325 = lean_box_float(x_323); +x_326 = lean_box_float(x_324); +x_327 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_327, 0, x_325); +lean_ctor_set(x_327, 1, x_326); +lean_ctor_set(x_304, 1, x_327); +lean_ctor_set(x_304, 0, x_308); +x_209 = x_304; +x_210 = x_320; +goto block_300; } } else { -uint8_t x_335; -x_335 = !lean_is_exclusive(x_296); -if (x_335 == 0) -{ -lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; uint8_t x_340; -x_336 = lean_ctor_get(x_296, 0); -x_337 = lean_ctor_get(x_296, 1); -x_338 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_338, 0, x_336); -x_339 = lean_io_get_num_heartbeats(x_337); -x_340 = !lean_is_exclusive(x_339); -if (x_340 == 0) -{ -lean_object* x_341; lean_object* x_342; uint8_t x_343; lean_object* x_344; double x_345; double x_346; lean_object* x_347; lean_object* x_348; -x_341 = lean_ctor_get(x_339, 0); -x_342 = lean_ctor_get(x_339, 1); -x_343 = 0; -x_344 = lean_unsigned_to_nat(0u); -x_345 = l_Float_ofScientific(x_294, x_343, x_344); -lean_dec(x_294); -x_346 = l_Float_ofScientific(x_341, x_343, x_344); -lean_dec(x_341); -x_347 = lean_box_float(x_345); -x_348 = lean_box_float(x_346); -lean_ctor_set(x_339, 1, x_348); -lean_ctor_set(x_339, 0, x_347); -lean_ctor_set_tag(x_296, 0); -lean_ctor_set(x_296, 1, x_339); -lean_ctor_set(x_296, 0, x_338); -x_205 = x_296; -x_206 = x_342; -goto block_292; +lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; uint8_t x_335; lean_object* x_336; double x_337; double x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; +x_328 = lean_ctor_get(x_304, 0); +x_329 = lean_ctor_get(x_304, 1); +lean_inc(x_329); +lean_inc(x_328); +lean_dec(x_304); +x_330 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_330, 0, x_328); +x_331 = lean_io_get_num_heartbeats(x_329); +x_332 = lean_ctor_get(x_331, 0); +lean_inc(x_332); +x_333 = lean_ctor_get(x_331, 1); +lean_inc(x_333); +if (lean_is_exclusive(x_331)) { + lean_ctor_release(x_331, 0); + lean_ctor_release(x_331, 1); + x_334 = x_331; +} else { + lean_dec_ref(x_331); + x_334 = lean_box(0); +} +x_335 = 0; +x_336 = lean_unsigned_to_nat(0u); +x_337 = l_Float_ofScientific(x_302, x_335, x_336); +lean_dec(x_302); +x_338 = l_Float_ofScientific(x_332, x_335, x_336); +lean_dec(x_332); +x_339 = lean_box_float(x_337); +x_340 = lean_box_float(x_338); +if (lean_is_scalar(x_334)) { + x_341 = lean_alloc_ctor(0, 2, 0); +} else { + x_341 = x_334; +} +lean_ctor_set(x_341, 0, x_339); +lean_ctor_set(x_341, 1, x_340); +x_342 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_342, 0, x_330); +lean_ctor_set(x_342, 1, x_341); +x_209 = x_342; +x_210 = x_333; +goto block_300; +} } else { -lean_object* x_349; lean_object* x_350; uint8_t x_351; lean_object* x_352; double x_353; double x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; -x_349 = lean_ctor_get(x_339, 0); -x_350 = lean_ctor_get(x_339, 1); -lean_inc(x_350); -lean_inc(x_349); -lean_dec(x_339); +uint8_t x_343; +x_343 = !lean_is_exclusive(x_304); +if (x_343 == 0) +{ +lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; uint8_t x_348; +x_344 = lean_ctor_get(x_304, 0); +x_345 = lean_ctor_get(x_304, 1); +x_346 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_346, 0, x_344); +x_347 = lean_io_get_num_heartbeats(x_345); +x_348 = !lean_is_exclusive(x_347); +if (x_348 == 0) +{ +lean_object* x_349; lean_object* x_350; uint8_t x_351; lean_object* x_352; double x_353; double x_354; lean_object* x_355; lean_object* x_356; +x_349 = lean_ctor_get(x_347, 0); +x_350 = lean_ctor_get(x_347, 1); x_351 = 0; x_352 = lean_unsigned_to_nat(0u); -x_353 = l_Float_ofScientific(x_294, x_351, x_352); -lean_dec(x_294); +x_353 = l_Float_ofScientific(x_302, x_351, x_352); +lean_dec(x_302); x_354 = l_Float_ofScientific(x_349, x_351, x_352); lean_dec(x_349); x_355 = lean_box_float(x_353); x_356 = lean_box_float(x_354); -x_357 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_357, 0, x_355); -lean_ctor_set(x_357, 1, x_356); -lean_ctor_set_tag(x_296, 0); -lean_ctor_set(x_296, 1, x_357); -lean_ctor_set(x_296, 0, x_338); -x_205 = x_296; -x_206 = x_350; -goto block_292; -} +lean_ctor_set(x_347, 1, x_356); +lean_ctor_set(x_347, 0, x_355); +lean_ctor_set_tag(x_304, 0); +lean_ctor_set(x_304, 1, x_347); +lean_ctor_set(x_304, 0, x_346); +x_209 = x_304; +x_210 = x_350; +goto block_300; } else { -lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; uint8_t x_365; lean_object* x_366; double x_367; double x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; -x_358 = lean_ctor_get(x_296, 0); -x_359 = lean_ctor_get(x_296, 1); -lean_inc(x_359); +lean_object* x_357; lean_object* x_358; uint8_t x_359; lean_object* x_360; double x_361; double x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; +x_357 = lean_ctor_get(x_347, 0); +x_358 = lean_ctor_get(x_347, 1); lean_inc(x_358); -lean_dec(x_296); -x_360 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_360, 0, x_358); -x_361 = lean_io_get_num_heartbeats(x_359); -x_362 = lean_ctor_get(x_361, 0); -lean_inc(x_362); -x_363 = lean_ctor_get(x_361, 1); -lean_inc(x_363); -if (lean_is_exclusive(x_361)) { - lean_ctor_release(x_361, 0); - lean_ctor_release(x_361, 1); - x_364 = x_361; -} else { - lean_dec_ref(x_361); - x_364 = lean_box(0); +lean_inc(x_357); +lean_dec(x_347); +x_359 = 0; +x_360 = lean_unsigned_to_nat(0u); +x_361 = l_Float_ofScientific(x_302, x_359, x_360); +lean_dec(x_302); +x_362 = l_Float_ofScientific(x_357, x_359, x_360); +lean_dec(x_357); +x_363 = lean_box_float(x_361); +x_364 = lean_box_float(x_362); +x_365 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_365, 0, x_363); +lean_ctor_set(x_365, 1, x_364); +lean_ctor_set_tag(x_304, 0); +lean_ctor_set(x_304, 1, x_365); +lean_ctor_set(x_304, 0, x_346); +x_209 = x_304; +x_210 = x_358; +goto block_300; } -x_365 = 0; -x_366 = lean_unsigned_to_nat(0u); -x_367 = l_Float_ofScientific(x_294, x_365, x_366); -lean_dec(x_294); -x_368 = l_Float_ofScientific(x_362, x_365, x_366); -lean_dec(x_362); -x_369 = lean_box_float(x_367); -x_370 = lean_box_float(x_368); -if (lean_is_scalar(x_364)) { - x_371 = lean_alloc_ctor(0, 2, 0); -} else { - x_371 = x_364; -} -lean_ctor_set(x_371, 0, x_369); -lean_ctor_set(x_371, 1, x_370); -x_372 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_372, 0, x_360); -lean_ctor_set(x_372, 1, x_371); -x_205 = x_372; -x_206 = x_363; -goto block_292; -} -} -block_292: -{ -lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; uint8_t x_211; lean_object* x_280; uint8_t x_281; -x_207 = lean_ctor_get(x_205, 1); -lean_inc(x_207); -x_208 = lean_ctor_get(x_205, 0); -lean_inc(x_208); -lean_dec(x_205); -x_209 = lean_ctor_get(x_207, 0); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 1); -lean_inc(x_210); -lean_dec(x_207); -x_280 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__2; -x_281 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_280); -if (x_281 == 0) -{ -uint8_t x_282; -x_282 = 0; -x_211 = x_282; -goto block_279; } else { -double x_283; double x_284; double x_285; lean_object* x_286; lean_object* x_287; uint8_t x_288; lean_object* x_289; double x_290; uint8_t x_291; -x_283 = lean_unbox_float(x_210); -x_284 = lean_unbox_float(x_209); -x_285 = lean_float_sub(x_283, x_284); -x_286 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__3; -x_287 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_286); -x_288 = 0; -x_289 = lean_unsigned_to_nat(0u); -x_290 = l_Float_ofScientific(x_287, x_288, x_289); -lean_dec(x_287); -x_291 = lean_float_decLt(x_290, x_285); -x_211 = x_291; -goto block_279; +lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; uint8_t x_373; lean_object* x_374; double x_375; double x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; +x_366 = lean_ctor_get(x_304, 0); +x_367 = lean_ctor_get(x_304, 1); +lean_inc(x_367); +lean_inc(x_366); +lean_dec(x_304); +x_368 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_368, 0, x_366); +x_369 = lean_io_get_num_heartbeats(x_367); +x_370 = lean_ctor_get(x_369, 0); +lean_inc(x_370); +x_371 = lean_ctor_get(x_369, 1); +lean_inc(x_371); +if (lean_is_exclusive(x_369)) { + lean_ctor_release(x_369, 0); + lean_ctor_release(x_369, 1); + x_372 = x_369; +} else { + lean_dec_ref(x_369); + x_372 = lean_box(0); } -block_279: +x_373 = 0; +x_374 = lean_unsigned_to_nat(0u); +x_375 = l_Float_ofScientific(x_302, x_373, x_374); +lean_dec(x_302); +x_376 = l_Float_ofScientific(x_370, x_373, x_374); +lean_dec(x_370); +x_377 = lean_box_float(x_375); +x_378 = lean_box_float(x_376); +if (lean_is_scalar(x_372)) { + x_379 = lean_alloc_ctor(0, 2, 0); +} else { + x_379 = x_372; +} +lean_ctor_set(x_379, 0, x_377); +lean_ctor_set(x_379, 1, x_378); +x_380 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_380, 0, x_368); +lean_ctor_set(x_380, 1, x_379); +x_209 = x_380; +x_210 = x_371; +goto block_300; +} +} +block_300: +{ +lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; uint8_t x_217; +x_211 = lean_ctor_get(x_209, 1); +lean_inc(x_211); +x_212 = lean_ctor_get(x_209, 0); +lean_inc(x_212); +lean_dec(x_209); +x_213 = lean_ctor_get(x_211, 0); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 1); +lean_inc(x_214); +lean_dec(x_211); +x_215 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__2; +x_216 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_215); +if (x_216 == 0) { if (x_6 == 0) { -if (x_211 == 0) +uint8_t x_282; +x_282 = 0; +x_217 = x_282; +goto block_281; +} +else { -lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; -lean_dec(x_210); -lean_dec(x_209); +lean_object* x_283; double x_284; double x_285; lean_object* x_286; +x_283 = lean_box(0); +x_284 = lean_unbox_float(x_213); +lean_dec(x_213); +x_285 = lean_unbox_float(x_214); +lean_dec(x_214); +x_286 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_284, x_285, x_5, x_283, x_9, x_10, x_210); +return x_286; +} +} +else +{ +if (x_6 == 0) +{ +double x_287; double x_288; double x_289; lean_object* x_290; lean_object* x_291; uint8_t x_292; lean_object* x_293; double x_294; uint8_t x_295; +x_287 = lean_unbox_float(x_214); +x_288 = lean_unbox_float(x_213); +x_289 = lean_float_sub(x_287, x_288); +x_290 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__3; +x_291 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_290); +x_292 = 0; +x_293 = lean_unsigned_to_nat(0u); +x_294 = l_Float_ofScientific(x_291, x_292, x_293); +lean_dec(x_291); +x_295 = lean_float_decLt(x_294, x_289); +x_217 = x_295; +goto block_281; +} +else +{ +lean_object* x_296; double x_297; double x_298; lean_object* x_299; +x_296 = lean_box(0); +x_297 = lean_unbox_float(x_213); +lean_dec(x_213); +x_298 = lean_unbox_float(x_214); +lean_dec(x_214); +x_299 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_297, x_298, x_5, x_296, x_9, x_10, x_210); +return x_299; +} +} +block_281: +{ +if (x_217 == 0) +{ +lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; uint8_t x_222; +lean_dec(x_214); +lean_dec(x_213); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_212 = lean_st_ref_take(x_10, x_206); -x_213 = lean_ctor_get(x_212, 0); -lean_inc(x_213); -x_214 = lean_ctor_get(x_213, 3); -lean_inc(x_214); -x_215 = lean_ctor_get(x_212, 1); -lean_inc(x_215); -lean_dec(x_212); -x_216 = !lean_is_exclusive(x_213); -if (x_216 == 0) +x_218 = lean_st_ref_take(x_10, x_210); +x_219 = lean_ctor_get(x_218, 0); +lean_inc(x_219); +x_220 = lean_ctor_get(x_219, 3); +lean_inc(x_220); +x_221 = lean_ctor_get(x_218, 1); +lean_inc(x_221); +lean_dec(x_218); +x_222 = !lean_is_exclusive(x_219); +if (x_222 == 0) { -lean_object* x_217; uint8_t x_218; -x_217 = lean_ctor_get(x_213, 3); -lean_dec(x_217); -x_218 = !lean_is_exclusive(x_214); -if (x_218 == 0) -{ -lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; -x_219 = lean_ctor_get(x_214, 0); -x_220 = l_Lean_PersistentArray_append___rarg(x_13, x_219); -lean_dec(x_219); -lean_ctor_set(x_214, 0, x_220); -x_221 = lean_st_ref_set(x_10, x_213, x_215); -x_222 = lean_ctor_get(x_221, 1); -lean_inc(x_222); -lean_dec(x_221); -x_223 = l_MonadExcept_ofExcept___at_Lean_Core_wrapAsyncAsSnapshot___spec__5(x_208, x_9, x_10, x_222); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_223) == 0) -{ -uint8_t x_224; -x_224 = !lean_is_exclusive(x_223); +lean_object* x_223; uint8_t x_224; +x_223 = lean_ctor_get(x_219, 3); +lean_dec(x_223); +x_224 = !lean_is_exclusive(x_220); if (x_224 == 0) { -return x_223; -} -else -{ -lean_object* x_225; lean_object* x_226; lean_object* x_227; -x_225 = lean_ctor_get(x_223, 0); -x_226 = lean_ctor_get(x_223, 1); -lean_inc(x_226); -lean_inc(x_225); -lean_dec(x_223); -x_227 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_227, 0, x_225); -lean_ctor_set(x_227, 1, x_226); -return x_227; -} -} -else -{ -uint8_t x_228; -x_228 = !lean_is_exclusive(x_223); -if (x_228 == 0) -{ -return x_223; -} -else -{ -lean_object* x_229; lean_object* x_230; lean_object* x_231; -x_229 = lean_ctor_get(x_223, 0); -x_230 = lean_ctor_get(x_223, 1); -lean_inc(x_230); -lean_inc(x_229); -lean_dec(x_223); -x_231 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_231, 0, x_229); -lean_ctor_set(x_231, 1, x_230); -return x_231; -} -} -} -else -{ -uint64_t x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; -x_232 = lean_ctor_get_uint64(x_214, sizeof(void*)*1); -x_233 = lean_ctor_get(x_214, 0); -lean_inc(x_233); -lean_dec(x_214); -x_234 = l_Lean_PersistentArray_append___rarg(x_13, x_233); -lean_dec(x_233); -x_235 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_235, 0, x_234); -lean_ctor_set_uint64(x_235, sizeof(void*)*1, x_232); -lean_ctor_set(x_213, 3, x_235); -x_236 = lean_st_ref_set(x_10, x_213, x_215); -x_237 = lean_ctor_get(x_236, 1); -lean_inc(x_237); -lean_dec(x_236); -x_238 = l_MonadExcept_ofExcept___at_Lean_Core_wrapAsyncAsSnapshot___spec__5(x_208, x_9, x_10, x_237); +lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; +x_225 = lean_ctor_get(x_220, 0); +x_226 = l_Lean_PersistentArray_append___rarg(x_13, x_225); +lean_dec(x_225); +lean_ctor_set(x_220, 0, x_226); +x_227 = lean_st_ref_set(x_10, x_219, x_221); +x_228 = lean_ctor_get(x_227, 1); +lean_inc(x_228); +lean_dec(x_227); +x_229 = l_MonadExcept_ofExcept___at_Lean_Core_wrapAsyncAsSnapshot___spec__5(x_212, x_9, x_10, x_228); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_238) == 0) +lean_dec(x_212); +if (lean_obj_tag(x_229) == 0) { -lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; -x_239 = lean_ctor_get(x_238, 0); +uint8_t x_230; +x_230 = !lean_is_exclusive(x_229); +if (x_230 == 0) +{ +return x_229; +} +else +{ +lean_object* x_231; lean_object* x_232; lean_object* x_233; +x_231 = lean_ctor_get(x_229, 0); +x_232 = lean_ctor_get(x_229, 1); +lean_inc(x_232); +lean_inc(x_231); +lean_dec(x_229); +x_233 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_233, 0, x_231); +lean_ctor_set(x_233, 1, x_232); +return x_233; +} +} +else +{ +uint8_t x_234; +x_234 = !lean_is_exclusive(x_229); +if (x_234 == 0) +{ +return x_229; +} +else +{ +lean_object* x_235; lean_object* x_236; lean_object* x_237; +x_235 = lean_ctor_get(x_229, 0); +x_236 = lean_ctor_get(x_229, 1); +lean_inc(x_236); +lean_inc(x_235); +lean_dec(x_229); +x_237 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_237, 0, x_235); +lean_ctor_set(x_237, 1, x_236); +return x_237; +} +} +} +else +{ +uint64_t x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; +x_238 = lean_ctor_get_uint64(x_220, sizeof(void*)*1); +x_239 = lean_ctor_get(x_220, 0); lean_inc(x_239); -x_240 = lean_ctor_get(x_238, 1); -lean_inc(x_240); -if (lean_is_exclusive(x_238)) { - lean_ctor_release(x_238, 0); - lean_ctor_release(x_238, 1); - x_241 = x_238; -} else { - lean_dec_ref(x_238); - x_241 = lean_box(0); -} -if (lean_is_scalar(x_241)) { - x_242 = lean_alloc_ctor(0, 2, 0); -} else { - x_242 = x_241; -} -lean_ctor_set(x_242, 0, x_239); -lean_ctor_set(x_242, 1, x_240); -return x_242; -} -else -{ -lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; -x_243 = lean_ctor_get(x_238, 0); +lean_dec(x_220); +x_240 = l_Lean_PersistentArray_append___rarg(x_13, x_239); +lean_dec(x_239); +x_241 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_241, 0, x_240); +lean_ctor_set_uint64(x_241, sizeof(void*)*1, x_238); +lean_ctor_set(x_219, 3, x_241); +x_242 = lean_st_ref_set(x_10, x_219, x_221); +x_243 = lean_ctor_get(x_242, 1); lean_inc(x_243); -x_244 = lean_ctor_get(x_238, 1); -lean_inc(x_244); -if (lean_is_exclusive(x_238)) { - lean_ctor_release(x_238, 0); - lean_ctor_release(x_238, 1); - x_245 = x_238; -} else { - lean_dec_ref(x_238); - x_245 = lean_box(0); -} -if (lean_is_scalar(x_245)) { - x_246 = lean_alloc_ctor(1, 2, 0); -} else { - x_246 = x_245; -} -lean_ctor_set(x_246, 0, x_243); -lean_ctor_set(x_246, 1, x_244); -return x_246; -} -} -} -else -{ -lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; uint64_t x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; -x_247 = lean_ctor_get(x_213, 0); -x_248 = lean_ctor_get(x_213, 1); -x_249 = lean_ctor_get(x_213, 2); -x_250 = lean_ctor_get(x_213, 4); -x_251 = lean_ctor_get(x_213, 5); -x_252 = lean_ctor_get(x_213, 6); -x_253 = lean_ctor_get(x_213, 7); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_inc(x_248); -lean_inc(x_247); -lean_dec(x_213); -x_254 = lean_ctor_get_uint64(x_214, sizeof(void*)*1); -x_255 = lean_ctor_get(x_214, 0); -lean_inc(x_255); -if (lean_is_exclusive(x_214)) { - lean_ctor_release(x_214, 0); - x_256 = x_214; -} else { - lean_dec_ref(x_214); - x_256 = lean_box(0); -} -x_257 = l_Lean_PersistentArray_append___rarg(x_13, x_255); -lean_dec(x_255); -if (lean_is_scalar(x_256)) { - x_258 = lean_alloc_ctor(0, 1, 8); -} else { - x_258 = x_256; -} -lean_ctor_set(x_258, 0, x_257); -lean_ctor_set_uint64(x_258, sizeof(void*)*1, x_254); -x_259 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_259, 0, x_247); -lean_ctor_set(x_259, 1, x_248); -lean_ctor_set(x_259, 2, x_249); -lean_ctor_set(x_259, 3, x_258); -lean_ctor_set(x_259, 4, x_250); -lean_ctor_set(x_259, 5, x_251); -lean_ctor_set(x_259, 6, x_252); -lean_ctor_set(x_259, 7, x_253); -x_260 = lean_st_ref_set(x_10, x_259, x_215); -x_261 = lean_ctor_get(x_260, 1); -lean_inc(x_261); -lean_dec(x_260); -x_262 = l_MonadExcept_ofExcept___at_Lean_Core_wrapAsyncAsSnapshot___spec__5(x_208, x_9, x_10, x_261); +lean_dec(x_242); +x_244 = l_MonadExcept_ofExcept___at_Lean_Core_wrapAsyncAsSnapshot___spec__5(x_212, x_9, x_10, x_243); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_262) == 0) +lean_dec(x_212); +if (lean_obj_tag(x_244) == 0) { -lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; -x_263 = lean_ctor_get(x_262, 0); -lean_inc(x_263); -x_264 = lean_ctor_get(x_262, 1); -lean_inc(x_264); -if (lean_is_exclusive(x_262)) { - lean_ctor_release(x_262, 0); - lean_ctor_release(x_262, 1); - x_265 = x_262; +lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; +x_245 = lean_ctor_get(x_244, 0); +lean_inc(x_245); +x_246 = lean_ctor_get(x_244, 1); +lean_inc(x_246); +if (lean_is_exclusive(x_244)) { + lean_ctor_release(x_244, 0); + lean_ctor_release(x_244, 1); + x_247 = x_244; } else { - lean_dec_ref(x_262); - x_265 = lean_box(0); + lean_dec_ref(x_244); + x_247 = lean_box(0); } -if (lean_is_scalar(x_265)) { - x_266 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_247)) { + x_248 = lean_alloc_ctor(0, 2, 0); } else { - x_266 = x_265; + x_248 = x_247; } -lean_ctor_set(x_266, 0, x_263); -lean_ctor_set(x_266, 1, x_264); -return x_266; +lean_ctor_set(x_248, 0, x_245); +lean_ctor_set(x_248, 1, x_246); +return x_248; } else { -lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; -x_267 = lean_ctor_get(x_262, 0); +lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; +x_249 = lean_ctor_get(x_244, 0); +lean_inc(x_249); +x_250 = lean_ctor_get(x_244, 1); +lean_inc(x_250); +if (lean_is_exclusive(x_244)) { + lean_ctor_release(x_244, 0); + lean_ctor_release(x_244, 1); + x_251 = x_244; +} else { + lean_dec_ref(x_244); + x_251 = lean_box(0); +} +if (lean_is_scalar(x_251)) { + x_252 = lean_alloc_ctor(1, 2, 0); +} else { + x_252 = x_251; +} +lean_ctor_set(x_252, 0, x_249); +lean_ctor_set(x_252, 1, x_250); +return x_252; +} +} +} +else +{ +lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; uint64_t x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; +x_253 = lean_ctor_get(x_219, 0); +x_254 = lean_ctor_get(x_219, 1); +x_255 = lean_ctor_get(x_219, 2); +x_256 = lean_ctor_get(x_219, 4); +x_257 = lean_ctor_get(x_219, 5); +x_258 = lean_ctor_get(x_219, 6); +x_259 = lean_ctor_get(x_219, 7); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_inc(x_254); +lean_inc(x_253); +lean_dec(x_219); +x_260 = lean_ctor_get_uint64(x_220, sizeof(void*)*1); +x_261 = lean_ctor_get(x_220, 0); +lean_inc(x_261); +if (lean_is_exclusive(x_220)) { + lean_ctor_release(x_220, 0); + x_262 = x_220; +} else { + lean_dec_ref(x_220); + x_262 = lean_box(0); +} +x_263 = l_Lean_PersistentArray_append___rarg(x_13, x_261); +lean_dec(x_261); +if (lean_is_scalar(x_262)) { + x_264 = lean_alloc_ctor(0, 1, 8); +} else { + x_264 = x_262; +} +lean_ctor_set(x_264, 0, x_263); +lean_ctor_set_uint64(x_264, sizeof(void*)*1, x_260); +x_265 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_265, 0, x_253); +lean_ctor_set(x_265, 1, x_254); +lean_ctor_set(x_265, 2, x_255); +lean_ctor_set(x_265, 3, x_264); +lean_ctor_set(x_265, 4, x_256); +lean_ctor_set(x_265, 5, x_257); +lean_ctor_set(x_265, 6, x_258); +lean_ctor_set(x_265, 7, x_259); +x_266 = lean_st_ref_set(x_10, x_265, x_221); +x_267 = lean_ctor_get(x_266, 1); lean_inc(x_267); -x_268 = lean_ctor_get(x_262, 1); -lean_inc(x_268); -if (lean_is_exclusive(x_262)) { - lean_ctor_release(x_262, 0); - lean_ctor_release(x_262, 1); - x_269 = x_262; +lean_dec(x_266); +x_268 = l_MonadExcept_ofExcept___at_Lean_Core_wrapAsyncAsSnapshot___spec__5(x_212, x_9, x_10, x_267); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_212); +if (lean_obj_tag(x_268) == 0) +{ +lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; +x_269 = lean_ctor_get(x_268, 0); +lean_inc(x_269); +x_270 = lean_ctor_get(x_268, 1); +lean_inc(x_270); +if (lean_is_exclusive(x_268)) { + lean_ctor_release(x_268, 0); + lean_ctor_release(x_268, 1); + x_271 = x_268; } else { - lean_dec_ref(x_262); - x_269 = lean_box(0); + lean_dec_ref(x_268); + x_271 = lean_box(0); } -if (lean_is_scalar(x_269)) { - x_270 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_271)) { + x_272 = lean_alloc_ctor(0, 2, 0); } else { - x_270 = x_269; + x_272 = x_271; } -lean_ctor_set(x_270, 0, x_267); -lean_ctor_set(x_270, 1, x_268); -return x_270; +lean_ctor_set(x_272, 0, x_269); +lean_ctor_set(x_272, 1, x_270); +return x_272; +} +else +{ +lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; +x_273 = lean_ctor_get(x_268, 0); +lean_inc(x_273); +x_274 = lean_ctor_get(x_268, 1); +lean_inc(x_274); +if (lean_is_exclusive(x_268)) { + lean_ctor_release(x_268, 0); + lean_ctor_release(x_268, 1); + x_275 = x_268; +} else { + lean_dec_ref(x_268); + x_275 = lean_box(0); +} +if (lean_is_scalar(x_275)) { + x_276 = lean_alloc_ctor(1, 2, 0); +} else { + x_276 = x_275; +} +lean_ctor_set(x_276, 0, x_273); +lean_ctor_set(x_276, 1, x_274); +return x_276; } } } else { -lean_object* x_271; double x_272; double x_273; lean_object* x_274; -x_271 = lean_box(0); -x_272 = lean_unbox_float(x_209); -lean_dec(x_209); -x_273 = lean_unbox_float(x_210); -lean_dec(x_210); -x_274 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_208, x_1, x_211, x_272, x_273, x_5, x_271, x_9, x_10, x_206); -return x_274; -} -} -else -{ -lean_object* x_275; double x_276; double x_277; lean_object* x_278; -x_275 = lean_box(0); -x_276 = lean_unbox_float(x_209); -lean_dec(x_209); -x_277 = lean_unbox_float(x_210); -lean_dec(x_210); -x_278 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_208, x_1, x_211, x_276, x_277, x_5, x_275, x_9, x_10, x_206); -return x_278; +lean_object* x_277; double x_278; double x_279; lean_object* x_280; +x_277 = lean_box(0); +x_278 = lean_unbox_float(x_213); +lean_dec(x_213); +x_279 = lean_unbox_float(x_214); +lean_dec(x_214); +x_280 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_278, x_279, x_5, x_277, x_9, x_10, x_210); +return x_280; } } } @@ -17240,11 +17235,20 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__6() { +static uint64_t _init_l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__6() { +_start: +{ +lean_object* x_1; uint64_t x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_uint64_of_nat(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__7() { _start: { uint64_t x_1; lean_object* x_2; lean_object* x_3; -x_1 = 0; +x_1 = l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__6; x_2 = l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__3; x_3 = lean_alloc_ctor(0, 1, 8); lean_ctor_set(x_3, 0, x_2); @@ -17252,14 +17256,14 @@ lean_ctor_set_uint64(x_3, sizeof(void*)*1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__7() { +static lean_object* _init_l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; lean_object* x_6; x_1 = lean_box(0); x_2 = l_Lean_initFn____x40_Lean_CoreM___hyg_80____closed__3; x_3 = l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__5; -x_4 = l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__6; +x_4 = l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__7; x_5 = 0; x_6 = lean_alloc_ctor(0, 4, 1); lean_ctor_set(x_6, 0, x_2); @@ -17270,11 +17274,11 @@ lean_ctor_set_uint8(x_6, sizeof(void*)*4, x_5); return x_6; } } -static lean_object* _init_l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__8() { +static lean_object* _init_l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__7; +x_1 = l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__8; x_2 = l___auto____x40_Lean_CoreM___hyg_4103____closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -17291,7 +17295,7 @@ lean_object* x_5; lean_object* x_6; lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_5 = l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__8; +x_5 = l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__9; x_6 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_6, 0, x_5); lean_ctor_set(x_6, 1, x_4); @@ -17591,41 +17595,39 @@ lean_dec(x_4); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; uint8_t x_16; double x_17; double x_18; lean_object* x_19; -x_15 = lean_unbox(x_2); +uint8_t x_14; uint8_t x_15; double x_16; double x_17; lean_object* x_18; +x_14 = lean_unbox(x_2); lean_dec(x_2); -x_16 = lean_unbox(x_8); +x_15 = lean_unbox(x_7); +lean_dec(x_7); +x_16 = lean_unbox_float(x_8); lean_dec(x_8); x_17 = lean_unbox_float(x_9); lean_dec(x_9); -x_18 = lean_unbox_float(x_10); -lean_dec(x_10); -x_19 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2(x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_16, x_17, x_18, x_11, x_12, x_13, x_14); -lean_dec(x_13); -lean_dec(x_7); +x_18 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2(x_1, x_14, x_3, x_4, x_5, x_6, x_15, x_16, x_17, x_10, x_11, x_12, x_13); +lean_dec(x_12); lean_dec(x_6); -return x_19; +return x_18; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; uint8_t x_16; double x_17; double x_18; lean_object* x_19; -x_15 = lean_unbox(x_2); +uint8_t x_14; uint8_t x_15; double x_16; double x_17; lean_object* x_18; +x_14 = lean_unbox(x_2); lean_dec(x_2); -x_16 = lean_unbox(x_7); +x_15 = lean_unbox(x_6); +lean_dec(x_6); +x_16 = lean_unbox_float(x_7); lean_dec(x_7); x_17 = lean_unbox_float(x_8); lean_dec(x_8); -x_18 = lean_unbox_float(x_9); -lean_dec(x_9); -x_19 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3(x_1, x_15, x_3, x_4, x_5, x_6, x_16, x_17, x_18, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_11); -lean_dec(x_6); -return x_19; +x_18 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3(x_1, x_14, x_3, x_4, x_5, x_15, x_16, x_17, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_10); +return x_18; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { @@ -20134,97 +20136,72 @@ lean_dec(x_7); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -double x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_15 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_16 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_16, 0, x_1); -lean_ctor_set(x_16, 1, x_3); -lean_ctor_set_float(x_16, sizeof(void*)*2, x_15); -lean_ctor_set_float(x_16, sizeof(void*)*2 + 8, x_15); -lean_ctor_set_uint8(x_16, sizeof(void*)*2 + 16, x_2); -x_17 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2___closed__2; -x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_17); -if (x_18 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2___closed__1; +x_15 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_15, 0, x_1); +lean_ctor_set(x_15, 1, x_3); +lean_ctor_set_float(x_15, sizeof(void*)*2, x_14); +lean_ctor_set_float(x_15, sizeof(void*)*2 + 8, x_14); +lean_ctor_set_uint8(x_15, sizeof(void*)*2 + 16, x_2); +x_16 = lean_box(0); +x_17 = l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__1(x_4, x_5, x_10, x_6, x_15, x_16, x_11, x_12, x_13); +return x_17; +} +else { -lean_object* x_19; lean_object* x_20; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_3); +lean_ctor_set_float(x_18, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); x_19 = lean_box(0); -x_20 = l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_16, x_19, x_12, x_13, x_14); +x_20 = l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__1(x_4, x_5, x_10, x_6, x_18, x_19, x_11, x_12, x_13); return x_20; } -else -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; -lean_dec(x_16); -x_21 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_21, 0, x_1); -lean_ctor_set(x_21, 1, x_3); -lean_ctor_set_float(x_21, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_21, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_21, sizeof(void*)*2 + 16, x_2); -x_22 = lean_box(0); -x_23 = l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_21, x_22, x_12, x_13, x_14); -return x_23; } } -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -lean_dec(x_16); -x_24 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_24, 0, x_1); -lean_ctor_set(x_24, 1, x_3); -lean_ctor_set_float(x_24, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_24, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_24, sizeof(void*)*2 + 16, x_2); -x_25 = lean_box(0); -x_26 = l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_24, x_25, x_12, x_13, x_14); -return x_26; -} -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_15; lean_object* x_16; -x_15 = lean_ctor_get(x_12, 5); -lean_inc(x_15); -lean_inc(x_13); +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_11, 5); +lean_inc(x_14); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_16 = lean_apply_4(x_10, x_5, x_12, x_13, x_14); -if (lean_obj_tag(x_16) == 0) +x_15 = lean_apply_4(x_9, x_5, x_11, x_12, x_13); +if (lean_obj_tag(x_15) == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_ctor_get(x_16, 0); +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); lean_inc(x_17); -x_18 = lean_ctor_get(x_16, 1); -lean_inc(x_18); -lean_dec(x_16); -x_19 = l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_15, x_5, x_6, x_7, x_8, x_9, x_17, x_12, x_13, x_18); -lean_dec(x_13); +lean_dec(x_15); +x_18 = l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_14, x_5, x_6, x_7, x_8, x_16, x_11, x_12, x_17); +lean_dec(x_12); lean_dec(x_5); -return x_19; +return x_18; } else { -lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_20 = lean_ctor_get(x_16, 1); -lean_inc(x_20); -lean_dec(x_16); -x_21 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3___closed__2; -x_22 = l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_15, x_5, x_6, x_7, x_8, x_9, x_21, x_12, x_13, x_20); -lean_dec(x_13); +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_15, 1); +lean_inc(x_19); +lean_dec(x_15); +x_20 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3___closed__2; +x_21 = l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_14, x_5, x_6, x_7, x_8, x_20, x_11, x_12, x_19); +lean_dec(x_12); lean_dec(x_5); -return x_22; +return x_21; } } } @@ -20242,251 +20219,251 @@ x_15 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambd x_16 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_15); if (x_16 == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; -x_107 = lean_io_mono_nanos_now(x_14); -x_108 = lean_ctor_get(x_107, 0); -lean_inc(x_108); -x_109 = lean_ctor_get(x_107, 1); -lean_inc(x_109); -lean_dec(x_107); +lean_object* x_17; lean_object* x_18; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; +x_111 = lean_io_mono_nanos_now(x_14); +x_112 = lean_ctor_get(x_111, 0); +lean_inc(x_112); +x_113 = lean_ctor_get(x_111, 1); +lean_inc(x_113); +lean_dec(x_111); lean_inc(x_10); lean_inc(x_9); -x_110 = lean_apply_3(x_7, x_9, x_10, x_109); -if (lean_obj_tag(x_110) == 0) +x_114 = lean_apply_3(x_7, x_9, x_10, x_113); +if (lean_obj_tag(x_114) == 0) { -uint8_t x_111; -x_111 = !lean_is_exclusive(x_110); -if (x_111 == 0) +uint8_t x_115; +x_115 = !lean_is_exclusive(x_114); +if (x_115 == 0) { -lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; uint8_t x_116; -x_112 = lean_ctor_get(x_110, 0); -x_113 = lean_ctor_get(x_110, 1); -x_114 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_114, 0, x_112); -x_115 = lean_io_mono_nanos_now(x_113); -x_116 = !lean_is_exclusive(x_115); -if (x_116 == 0) +lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; uint8_t x_120; +x_116 = lean_ctor_get(x_114, 0); +x_117 = lean_ctor_get(x_114, 1); +x_118 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_118, 0, x_116); +x_119 = lean_io_mono_nanos_now(x_117); +x_120 = !lean_is_exclusive(x_119); +if (x_120 == 0) { -lean_object* x_117; lean_object* x_118; uint8_t x_119; lean_object* x_120; double x_121; double x_122; double x_123; double x_124; double x_125; lean_object* x_126; lean_object* x_127; -x_117 = lean_ctor_get(x_115, 0); -x_118 = lean_ctor_get(x_115, 1); -x_119 = 0; -x_120 = lean_unsigned_to_nat(0u); -x_121 = l_Float_ofScientific(x_108, x_119, x_120); -lean_dec(x_108); -x_122 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; -x_123 = lean_float_div(x_121, x_122); -x_124 = l_Float_ofScientific(x_117, x_119, x_120); -lean_dec(x_117); -x_125 = lean_float_div(x_124, x_122); -x_126 = lean_box_float(x_123); -x_127 = lean_box_float(x_125); -lean_ctor_set(x_115, 1, x_127); -lean_ctor_set(x_115, 0, x_126); -lean_ctor_set(x_110, 1, x_115); -lean_ctor_set(x_110, 0, x_114); -x_17 = x_110; -x_18 = x_118; -goto block_106; +lean_object* x_121; lean_object* x_122; uint8_t x_123; lean_object* x_124; double x_125; double x_126; double x_127; double x_128; double x_129; lean_object* x_130; lean_object* x_131; +x_121 = lean_ctor_get(x_119, 0); +x_122 = lean_ctor_get(x_119, 1); +x_123 = 0; +x_124 = lean_unsigned_to_nat(0u); +x_125 = l_Float_ofScientific(x_112, x_123, x_124); +lean_dec(x_112); +x_126 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; +x_127 = lean_float_div(x_125, x_126); +x_128 = l_Float_ofScientific(x_121, x_123, x_124); +lean_dec(x_121); +x_129 = lean_float_div(x_128, x_126); +x_130 = lean_box_float(x_127); +x_131 = lean_box_float(x_129); +lean_ctor_set(x_119, 1, x_131); +lean_ctor_set(x_119, 0, x_130); +lean_ctor_set(x_114, 1, x_119); +lean_ctor_set(x_114, 0, x_118); +x_17 = x_114; +x_18 = x_122; +goto block_110; } else { -lean_object* x_128; lean_object* x_129; uint8_t x_130; lean_object* x_131; double x_132; double x_133; double x_134; double x_135; double x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; -x_128 = lean_ctor_get(x_115, 0); -x_129 = lean_ctor_get(x_115, 1); -lean_inc(x_129); -lean_inc(x_128); -lean_dec(x_115); -x_130 = 0; -x_131 = lean_unsigned_to_nat(0u); -x_132 = l_Float_ofScientific(x_108, x_130, x_131); -lean_dec(x_108); -x_133 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; -x_134 = lean_float_div(x_132, x_133); -x_135 = l_Float_ofScientific(x_128, x_130, x_131); -lean_dec(x_128); -x_136 = lean_float_div(x_135, x_133); -x_137 = lean_box_float(x_134); -x_138 = lean_box_float(x_136); -x_139 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_139, 0, x_137); -lean_ctor_set(x_139, 1, x_138); -lean_ctor_set(x_110, 1, x_139); -lean_ctor_set(x_110, 0, x_114); -x_17 = x_110; -x_18 = x_129; -goto block_106; +lean_object* x_132; lean_object* x_133; uint8_t x_134; lean_object* x_135; double x_136; double x_137; double x_138; double x_139; double x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; +x_132 = lean_ctor_get(x_119, 0); +x_133 = lean_ctor_get(x_119, 1); +lean_inc(x_133); +lean_inc(x_132); +lean_dec(x_119); +x_134 = 0; +x_135 = lean_unsigned_to_nat(0u); +x_136 = l_Float_ofScientific(x_112, x_134, x_135); +lean_dec(x_112); +x_137 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; +x_138 = lean_float_div(x_136, x_137); +x_139 = l_Float_ofScientific(x_132, x_134, x_135); +lean_dec(x_132); +x_140 = lean_float_div(x_139, x_137); +x_141 = lean_box_float(x_138); +x_142 = lean_box_float(x_140); +x_143 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_143, 0, x_141); +lean_ctor_set(x_143, 1, x_142); +lean_ctor_set(x_114, 1, x_143); +lean_ctor_set(x_114, 0, x_118); +x_17 = x_114; +x_18 = x_133; +goto block_110; } } else { -lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; uint8_t x_147; lean_object* x_148; double x_149; double x_150; double x_151; double x_152; double x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; -x_140 = lean_ctor_get(x_110, 0); -x_141 = lean_ctor_get(x_110, 1); -lean_inc(x_141); -lean_inc(x_140); -lean_dec(x_110); -x_142 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_142, 0, x_140); -x_143 = lean_io_mono_nanos_now(x_141); -x_144 = lean_ctor_get(x_143, 0); -lean_inc(x_144); -x_145 = lean_ctor_get(x_143, 1); +lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; uint8_t x_151; lean_object* x_152; double x_153; double x_154; double x_155; double x_156; double x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; +x_144 = lean_ctor_get(x_114, 0); +x_145 = lean_ctor_get(x_114, 1); lean_inc(x_145); -if (lean_is_exclusive(x_143)) { - lean_ctor_release(x_143, 0); - lean_ctor_release(x_143, 1); - x_146 = x_143; +lean_inc(x_144); +lean_dec(x_114); +x_146 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_146, 0, x_144); +x_147 = lean_io_mono_nanos_now(x_145); +x_148 = lean_ctor_get(x_147, 0); +lean_inc(x_148); +x_149 = lean_ctor_get(x_147, 1); +lean_inc(x_149); +if (lean_is_exclusive(x_147)) { + lean_ctor_release(x_147, 0); + lean_ctor_release(x_147, 1); + x_150 = x_147; } else { - lean_dec_ref(x_143); - x_146 = lean_box(0); + lean_dec_ref(x_147); + x_150 = lean_box(0); } -x_147 = 0; -x_148 = lean_unsigned_to_nat(0u); -x_149 = l_Float_ofScientific(x_108, x_147, x_148); -lean_dec(x_108); -x_150 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; -x_151 = lean_float_div(x_149, x_150); -x_152 = l_Float_ofScientific(x_144, x_147, x_148); -lean_dec(x_144); -x_153 = lean_float_div(x_152, x_150); -x_154 = lean_box_float(x_151); -x_155 = lean_box_float(x_153); -if (lean_is_scalar(x_146)) { - x_156 = lean_alloc_ctor(0, 2, 0); +x_151 = 0; +x_152 = lean_unsigned_to_nat(0u); +x_153 = l_Float_ofScientific(x_112, x_151, x_152); +lean_dec(x_112); +x_154 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; +x_155 = lean_float_div(x_153, x_154); +x_156 = l_Float_ofScientific(x_148, x_151, x_152); +lean_dec(x_148); +x_157 = lean_float_div(x_156, x_154); +x_158 = lean_box_float(x_155); +x_159 = lean_box_float(x_157); +if (lean_is_scalar(x_150)) { + x_160 = lean_alloc_ctor(0, 2, 0); } else { - x_156 = x_146; + x_160 = x_150; } -lean_ctor_set(x_156, 0, x_154); -lean_ctor_set(x_156, 1, x_155); -x_157 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_157, 0, x_142); -lean_ctor_set(x_157, 1, x_156); -x_17 = x_157; -x_18 = x_145; -goto block_106; +lean_ctor_set(x_160, 0, x_158); +lean_ctor_set(x_160, 1, x_159); +x_161 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_161, 0, x_146); +lean_ctor_set(x_161, 1, x_160); +x_17 = x_161; +x_18 = x_149; +goto block_110; } } else { -uint8_t x_158; -x_158 = !lean_is_exclusive(x_110); -if (x_158 == 0) +uint8_t x_162; +x_162 = !lean_is_exclusive(x_114); +if (x_162 == 0) { -lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; uint8_t x_163; -x_159 = lean_ctor_get(x_110, 0); -x_160 = lean_ctor_get(x_110, 1); -x_161 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_161, 0, x_159); -x_162 = lean_io_mono_nanos_now(x_160); -x_163 = !lean_is_exclusive(x_162); -if (x_163 == 0) +lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; uint8_t x_167; +x_163 = lean_ctor_get(x_114, 0); +x_164 = lean_ctor_get(x_114, 1); +x_165 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_165, 0, x_163); +x_166 = lean_io_mono_nanos_now(x_164); +x_167 = !lean_is_exclusive(x_166); +if (x_167 == 0) { -lean_object* x_164; lean_object* x_165; uint8_t x_166; lean_object* x_167; double x_168; double x_169; double x_170; double x_171; double x_172; lean_object* x_173; lean_object* x_174; -x_164 = lean_ctor_get(x_162, 0); -x_165 = lean_ctor_get(x_162, 1); -x_166 = 0; -x_167 = lean_unsigned_to_nat(0u); -x_168 = l_Float_ofScientific(x_108, x_166, x_167); -lean_dec(x_108); -x_169 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; -x_170 = lean_float_div(x_168, x_169); -x_171 = l_Float_ofScientific(x_164, x_166, x_167); -lean_dec(x_164); -x_172 = lean_float_div(x_171, x_169); -x_173 = lean_box_float(x_170); -x_174 = lean_box_float(x_172); -lean_ctor_set(x_162, 1, x_174); -lean_ctor_set(x_162, 0, x_173); -lean_ctor_set_tag(x_110, 0); -lean_ctor_set(x_110, 1, x_162); -lean_ctor_set(x_110, 0, x_161); -x_17 = x_110; -x_18 = x_165; -goto block_106; +lean_object* x_168; lean_object* x_169; uint8_t x_170; lean_object* x_171; double x_172; double x_173; double x_174; double x_175; double x_176; lean_object* x_177; lean_object* x_178; +x_168 = lean_ctor_get(x_166, 0); +x_169 = lean_ctor_get(x_166, 1); +x_170 = 0; +x_171 = lean_unsigned_to_nat(0u); +x_172 = l_Float_ofScientific(x_112, x_170, x_171); +lean_dec(x_112); +x_173 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; +x_174 = lean_float_div(x_172, x_173); +x_175 = l_Float_ofScientific(x_168, x_170, x_171); +lean_dec(x_168); +x_176 = lean_float_div(x_175, x_173); +x_177 = lean_box_float(x_174); +x_178 = lean_box_float(x_176); +lean_ctor_set(x_166, 1, x_178); +lean_ctor_set(x_166, 0, x_177); +lean_ctor_set_tag(x_114, 0); +lean_ctor_set(x_114, 1, x_166); +lean_ctor_set(x_114, 0, x_165); +x_17 = x_114; +x_18 = x_169; +goto block_110; } else { -lean_object* x_175; lean_object* x_176; uint8_t x_177; lean_object* x_178; double x_179; double x_180; double x_181; double x_182; double x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; -x_175 = lean_ctor_get(x_162, 0); -x_176 = lean_ctor_get(x_162, 1); -lean_inc(x_176); -lean_inc(x_175); -lean_dec(x_162); -x_177 = 0; -x_178 = lean_unsigned_to_nat(0u); -x_179 = l_Float_ofScientific(x_108, x_177, x_178); -lean_dec(x_108); -x_180 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; -x_181 = lean_float_div(x_179, x_180); -x_182 = l_Float_ofScientific(x_175, x_177, x_178); -lean_dec(x_175); -x_183 = lean_float_div(x_182, x_180); -x_184 = lean_box_float(x_181); -x_185 = lean_box_float(x_183); -x_186 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_186, 0, x_184); -lean_ctor_set(x_186, 1, x_185); -lean_ctor_set_tag(x_110, 0); -lean_ctor_set(x_110, 1, x_186); -lean_ctor_set(x_110, 0, x_161); -x_17 = x_110; -x_18 = x_176; -goto block_106; +lean_object* x_179; lean_object* x_180; uint8_t x_181; lean_object* x_182; double x_183; double x_184; double x_185; double x_186; double x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; +x_179 = lean_ctor_get(x_166, 0); +x_180 = lean_ctor_get(x_166, 1); +lean_inc(x_180); +lean_inc(x_179); +lean_dec(x_166); +x_181 = 0; +x_182 = lean_unsigned_to_nat(0u); +x_183 = l_Float_ofScientific(x_112, x_181, x_182); +lean_dec(x_112); +x_184 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; +x_185 = lean_float_div(x_183, x_184); +x_186 = l_Float_ofScientific(x_179, x_181, x_182); +lean_dec(x_179); +x_187 = lean_float_div(x_186, x_184); +x_188 = lean_box_float(x_185); +x_189 = lean_box_float(x_187); +x_190 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_190, 0, x_188); +lean_ctor_set(x_190, 1, x_189); +lean_ctor_set_tag(x_114, 0); +lean_ctor_set(x_114, 1, x_190); +lean_ctor_set(x_114, 0, x_165); +x_17 = x_114; +x_18 = x_180; +goto block_110; } } else { -lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; uint8_t x_194; lean_object* x_195; double x_196; double x_197; double x_198; double x_199; double x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; -x_187 = lean_ctor_get(x_110, 0); -x_188 = lean_ctor_get(x_110, 1); -lean_inc(x_188); -lean_inc(x_187); -lean_dec(x_110); -x_189 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_189, 0, x_187); -x_190 = lean_io_mono_nanos_now(x_188); -x_191 = lean_ctor_get(x_190, 0); -lean_inc(x_191); -x_192 = lean_ctor_get(x_190, 1); +lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; uint8_t x_198; lean_object* x_199; double x_200; double x_201; double x_202; double x_203; double x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; +x_191 = lean_ctor_get(x_114, 0); +x_192 = lean_ctor_get(x_114, 1); lean_inc(x_192); -if (lean_is_exclusive(x_190)) { - lean_ctor_release(x_190, 0); - lean_ctor_release(x_190, 1); - x_193 = x_190; +lean_inc(x_191); +lean_dec(x_114); +x_193 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_193, 0, x_191); +x_194 = lean_io_mono_nanos_now(x_192); +x_195 = lean_ctor_get(x_194, 0); +lean_inc(x_195); +x_196 = lean_ctor_get(x_194, 1); +lean_inc(x_196); +if (lean_is_exclusive(x_194)) { + lean_ctor_release(x_194, 0); + lean_ctor_release(x_194, 1); + x_197 = x_194; } else { - lean_dec_ref(x_190); - x_193 = lean_box(0); + lean_dec_ref(x_194); + x_197 = lean_box(0); } -x_194 = 0; -x_195 = lean_unsigned_to_nat(0u); -x_196 = l_Float_ofScientific(x_108, x_194, x_195); -lean_dec(x_108); -x_197 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; -x_198 = lean_float_div(x_196, x_197); -x_199 = l_Float_ofScientific(x_191, x_194, x_195); -lean_dec(x_191); -x_200 = lean_float_div(x_199, x_197); -x_201 = lean_box_float(x_198); -x_202 = lean_box_float(x_200); -if (lean_is_scalar(x_193)) { - x_203 = lean_alloc_ctor(0, 2, 0); +x_198 = 0; +x_199 = lean_unsigned_to_nat(0u); +x_200 = l_Float_ofScientific(x_112, x_198, x_199); +lean_dec(x_112); +x_201 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__5; +x_202 = lean_float_div(x_200, x_201); +x_203 = l_Float_ofScientific(x_195, x_198, x_199); +lean_dec(x_195); +x_204 = lean_float_div(x_203, x_201); +x_205 = lean_box_float(x_202); +x_206 = lean_box_float(x_204); +if (lean_is_scalar(x_197)) { + x_207 = lean_alloc_ctor(0, 2, 0); } else { - x_203 = x_193; + x_207 = x_197; } -lean_ctor_set(x_203, 0, x_201); -lean_ctor_set(x_203, 1, x_202); -x_204 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_204, 0, x_189); -lean_ctor_set(x_204, 1, x_203); -x_17 = x_204; -x_18 = x_192; -goto block_106; +lean_ctor_set(x_207, 0, x_205); +lean_ctor_set(x_207, 1, x_206); +x_208 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_208, 0, x_193); +lean_ctor_set(x_208, 1, x_207); +x_17 = x_208; +x_18 = x_196; +goto block_110; } } -block_106: +block_110: { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_92; uint8_t x_93; +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; uint8_t x_25; x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); x_20 = lean_ctor_get(x_17, 0); @@ -20497,17 +20474,33 @@ lean_inc(x_21); x_22 = lean_ctor_get(x_19, 1); lean_inc(x_22); lean_dec(x_19); -x_92 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__2; -x_93 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_92); -if (x_93 == 0) +x_23 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__2; +x_24 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_23); +if (x_24 == 0) { -uint8_t x_94; -x_94 = 0; -x_23 = x_94; -goto block_91; +if (x_6 == 0) +{ +uint8_t x_90; +x_90 = 0; +x_25 = x_90; +goto block_89; } else { +lean_object* x_91; double x_92; double x_93; lean_object* x_94; +x_91 = lean_box(0); +x_92 = lean_unbox_float(x_21); +lean_dec(x_21); +x_93 = lean_unbox_float(x_22); +lean_dec(x_22); +x_94 = l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_92, x_93, x_5, x_91, x_9, x_10, x_18); +return x_94; +} +} +else +{ +if (x_6 == 0) +{ double x_95; double x_96; double x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; lean_object* x_101; double x_102; double x_103; double x_104; uint8_t x_105; x_95 = lean_unbox_float(x_22); x_96 = lean_unbox_float(x_21); @@ -20521,845 +20514,857 @@ lean_dec(x_99); x_103 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__4; x_104 = lean_float_div(x_102, x_103); x_105 = lean_float_decLt(x_104, x_97); -x_23 = x_105; -goto block_91; +x_25 = x_105; +goto block_89; } -block_91: +else { -if (x_6 == 0) +lean_object* x_106; double x_107; double x_108; lean_object* x_109; +x_106 = lean_box(0); +x_107 = lean_unbox_float(x_21); +lean_dec(x_21); +x_108 = lean_unbox_float(x_22); +lean_dec(x_22); +x_109 = l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_107, x_108, x_5, x_106, x_9, x_10, x_18); +return x_109; +} +} +block_89: { -if (x_23 == 0) +if (x_25 == 0) { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_dec(x_22); lean_dec(x_21); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_24 = lean_st_ref_take(x_10, x_18); -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -x_26 = lean_ctor_get(x_25, 3); -lean_inc(x_26); -x_27 = lean_ctor_get(x_24, 1); +x_26 = lean_st_ref_take(x_10, x_18); +x_27 = lean_ctor_get(x_26, 0); lean_inc(x_27); -lean_dec(x_24); -x_28 = !lean_is_exclusive(x_25); -if (x_28 == 0) -{ -lean_object* x_29; uint8_t x_30; -x_29 = lean_ctor_get(x_25, 3); -lean_dec(x_29); -x_30 = !lean_is_exclusive(x_26); +x_28 = lean_ctor_get(x_27, 3); +lean_inc(x_28); +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); +lean_dec(x_26); +x_30 = !lean_is_exclusive(x_27); if (x_30 == 0) { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_31 = lean_ctor_get(x_26, 0); -x_32 = l_Lean_PersistentArray_append___rarg(x_13, x_31); +lean_object* x_31; uint8_t x_32; +x_31 = lean_ctor_get(x_27, 3); lean_dec(x_31); -lean_ctor_set(x_26, 0, x_32); -x_33 = lean_st_ref_set(x_10, x_25, x_27); -x_34 = lean_ctor_get(x_33, 1); -lean_inc(x_34); +x_32 = !lean_is_exclusive(x_28); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_33 = lean_ctor_get(x_28, 0); +x_34 = l_Lean_PersistentArray_append___rarg(x_13, x_33); lean_dec(x_33); -x_35 = l_MonadExcept_ofExcept___at_Lean_compileDecl___spec__3(x_20, x_9, x_10, x_34); +lean_ctor_set(x_28, 0, x_34); +x_35 = lean_st_ref_set(x_10, x_27, x_29); +x_36 = lean_ctor_get(x_35, 1); +lean_inc(x_36); +lean_dec(x_35); +x_37 = l_MonadExcept_ofExcept___at_Lean_compileDecl___spec__3(x_20, x_9, x_10, x_36); lean_dec(x_10); lean_dec(x_9); lean_dec(x_20); -if (lean_obj_tag(x_35) == 0) +if (lean_obj_tag(x_37) == 0) { -uint8_t x_36; -x_36 = !lean_is_exclusive(x_35); -if (x_36 == 0) +uint8_t x_38; +x_38 = !lean_is_exclusive(x_37); +if (x_38 == 0) { -return x_35; +return x_37; } else { -lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_37 = lean_ctor_get(x_35, 0); -x_38 = lean_ctor_get(x_35, 1); -lean_inc(x_38); -lean_inc(x_37); -lean_dec(x_35); -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_37); -lean_ctor_set(x_39, 1, x_38); -return x_39; +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_37, 0); +x_40 = lean_ctor_get(x_37, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_37); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +return x_41; } } else { -uint8_t x_40; -x_40 = !lean_is_exclusive(x_35); -if (x_40 == 0) +uint8_t x_42; +x_42 = !lean_is_exclusive(x_37); +if (x_42 == 0) { -return x_35; +return x_37; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_35, 0); -x_42 = lean_ctor_get(x_35, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_35); -x_43 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_42); -return x_43; +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_37, 0); +x_44 = lean_ctor_get(x_37, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_37); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; } } } else { -uint64_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_44 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); -x_45 = lean_ctor_get(x_26, 0); -lean_inc(x_45); -lean_dec(x_26); -x_46 = l_Lean_PersistentArray_append___rarg(x_13, x_45); -lean_dec(x_45); -x_47 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_47, 0, x_46); -lean_ctor_set_uint64(x_47, sizeof(void*)*1, x_44); -lean_ctor_set(x_25, 3, x_47); -x_48 = lean_st_ref_set(x_10, x_25, x_27); -x_49 = lean_ctor_get(x_48, 1); -lean_inc(x_49); -lean_dec(x_48); -x_50 = l_MonadExcept_ofExcept___at_Lean_compileDecl___spec__3(x_20, x_9, x_10, x_49); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_20); -if (lean_obj_tag(x_50) == 0) -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_51 = lean_ctor_get(x_50, 0); +uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); +x_47 = lean_ctor_get(x_28, 0); +lean_inc(x_47); +lean_dec(x_28); +x_48 = l_Lean_PersistentArray_append___rarg(x_13, x_47); +lean_dec(x_47); +x_49 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); +lean_ctor_set(x_27, 3, x_49); +x_50 = lean_st_ref_set(x_10, x_27, x_29); +x_51 = lean_ctor_get(x_50, 1); lean_inc(x_51); -x_52 = lean_ctor_get(x_50, 1); -lean_inc(x_52); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_53 = x_50; +lean_dec(x_50); +x_52 = l_MonadExcept_ofExcept___at_Lean_compileDecl___spec__3(x_20, x_9, x_10, x_51); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_20); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_52, 1); +lean_inc(x_54); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_55 = x_52; } else { - lean_dec_ref(x_50); - x_53 = lean_box(0); + lean_dec_ref(x_52); + x_55 = lean_box(0); } -if (lean_is_scalar(x_53)) { - x_54 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_55)) { + x_56 = lean_alloc_ctor(0, 2, 0); } else { - x_54 = x_53; + x_56 = x_55; } -lean_ctor_set(x_54, 0, x_51); -lean_ctor_set(x_54, 1, x_52); -return x_54; +lean_ctor_set(x_56, 0, x_53); +lean_ctor_set(x_56, 1, x_54); +return x_56; } else { -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_55 = lean_ctor_get(x_50, 0); -lean_inc(x_55); -x_56 = lean_ctor_get(x_50, 1); -lean_inc(x_56); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_57 = x_50; +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_57 = lean_ctor_get(x_52, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_52, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_59 = x_52; } else { - lean_dec_ref(x_50); - x_57 = lean_box(0); + lean_dec_ref(x_52); + x_59 = lean_box(0); } -if (lean_is_scalar(x_57)) { - x_58 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(1, 2, 0); } else { - x_58 = x_57; + x_60 = x_59; } -lean_ctor_set(x_58, 0, x_55); -lean_ctor_set(x_58, 1, x_56); -return x_58; +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_58); +return x_60; } } } else { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint64_t x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_59 = lean_ctor_get(x_25, 0); -x_60 = lean_ctor_get(x_25, 1); -x_61 = lean_ctor_get(x_25, 2); -x_62 = lean_ctor_get(x_25, 4); -x_63 = lean_ctor_get(x_25, 5); -x_64 = lean_ctor_get(x_25, 6); -x_65 = lean_ctor_get(x_25, 7); +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_61 = lean_ctor_get(x_27, 0); +x_62 = lean_ctor_get(x_27, 1); +x_63 = lean_ctor_get(x_27, 2); +x_64 = lean_ctor_get(x_27, 4); +x_65 = lean_ctor_get(x_27, 5); +x_66 = lean_ctor_get(x_27, 6); +x_67 = lean_ctor_get(x_27, 7); +lean_inc(x_67); +lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); lean_inc(x_62); lean_inc(x_61); -lean_inc(x_60); -lean_inc(x_59); -lean_dec(x_25); -x_66 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); -x_67 = lean_ctor_get(x_26, 0); -lean_inc(x_67); -if (lean_is_exclusive(x_26)) { - lean_ctor_release(x_26, 0); - x_68 = x_26; +lean_dec(x_27); +x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); +x_69 = lean_ctor_get(x_28, 0); +lean_inc(x_69); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + x_70 = x_28; } else { - lean_dec_ref(x_26); - x_68 = lean_box(0); + lean_dec_ref(x_28); + x_70 = lean_box(0); } -x_69 = l_Lean_PersistentArray_append___rarg(x_13, x_67); -lean_dec(x_67); -if (lean_is_scalar(x_68)) { - x_70 = lean_alloc_ctor(0, 1, 8); +x_71 = l_Lean_PersistentArray_append___rarg(x_13, x_69); +lean_dec(x_69); +if (lean_is_scalar(x_70)) { + x_72 = lean_alloc_ctor(0, 1, 8); } else { - x_70 = x_68; + x_72 = x_70; } -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set_uint64(x_70, sizeof(void*)*1, x_66); -x_71 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_71, 0, x_59); -lean_ctor_set(x_71, 1, x_60); -lean_ctor_set(x_71, 2, x_61); -lean_ctor_set(x_71, 3, x_70); -lean_ctor_set(x_71, 4, x_62); -lean_ctor_set(x_71, 5, x_63); -lean_ctor_set(x_71, 6, x_64); -lean_ctor_set(x_71, 7, x_65); -x_72 = lean_st_ref_set(x_10, x_71, x_27); -x_73 = lean_ctor_get(x_72, 1); -lean_inc(x_73); -lean_dec(x_72); -x_74 = l_MonadExcept_ofExcept___at_Lean_compileDecl___spec__3(x_20, x_9, x_10, x_73); +lean_ctor_set(x_72, 0, x_71); +lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); +x_73 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_73, 0, x_61); +lean_ctor_set(x_73, 1, x_62); +lean_ctor_set(x_73, 2, x_63); +lean_ctor_set(x_73, 3, x_72); +lean_ctor_set(x_73, 4, x_64); +lean_ctor_set(x_73, 5, x_65); +lean_ctor_set(x_73, 6, x_66); +lean_ctor_set(x_73, 7, x_67); +x_74 = lean_st_ref_set(x_10, x_73, x_29); +x_75 = lean_ctor_get(x_74, 1); +lean_inc(x_75); +lean_dec(x_74); +x_76 = l_MonadExcept_ofExcept___at_Lean_compileDecl___spec__3(x_20, x_9, x_10, x_75); lean_dec(x_10); lean_dec(x_9); lean_dec(x_20); -if (lean_obj_tag(x_74) == 0) +if (lean_obj_tag(x_76) == 0) { -lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_75 = lean_ctor_get(x_74, 0); -lean_inc(x_75); -x_76 = lean_ctor_get(x_74, 1); -lean_inc(x_76); -if (lean_is_exclusive(x_74)) { - lean_ctor_release(x_74, 0); - lean_ctor_release(x_74, 1); - x_77 = x_74; +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_77 = lean_ctor_get(x_76, 0); +lean_inc(x_77); +x_78 = lean_ctor_get(x_76, 1); +lean_inc(x_78); +if (lean_is_exclusive(x_76)) { + lean_ctor_release(x_76, 0); + lean_ctor_release(x_76, 1); + x_79 = x_76; } else { - lean_dec_ref(x_74); - x_77 = lean_box(0); + lean_dec_ref(x_76); + x_79 = lean_box(0); } -if (lean_is_scalar(x_77)) { - x_78 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_79)) { + x_80 = lean_alloc_ctor(0, 2, 0); } else { - x_78 = x_77; + x_80 = x_79; } -lean_ctor_set(x_78, 0, x_75); -lean_ctor_set(x_78, 1, x_76); -return x_78; +lean_ctor_set(x_80, 0, x_77); +lean_ctor_set(x_80, 1, x_78); +return x_80; } else { -lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_79 = lean_ctor_get(x_74, 0); -lean_inc(x_79); -x_80 = lean_ctor_get(x_74, 1); -lean_inc(x_80); -if (lean_is_exclusive(x_74)) { - lean_ctor_release(x_74, 0); - lean_ctor_release(x_74, 1); - x_81 = x_74; +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_81 = lean_ctor_get(x_76, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_76, 1); +lean_inc(x_82); +if (lean_is_exclusive(x_76)) { + lean_ctor_release(x_76, 0); + lean_ctor_release(x_76, 1); + x_83 = x_76; } else { - lean_dec_ref(x_74); - x_81 = lean_box(0); + lean_dec_ref(x_76); + x_83 = lean_box(0); } -if (lean_is_scalar(x_81)) { - x_82 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_83)) { + x_84 = lean_alloc_ctor(1, 2, 0); } else { - x_82 = x_81; + x_84 = x_83; } -lean_ctor_set(x_82, 0, x_79); -lean_ctor_set(x_82, 1, x_80); -return x_82; +lean_ctor_set(x_84, 0, x_81); +lean_ctor_set(x_84, 1, x_82); +return x_84; } } } else { -lean_object* x_83; double x_84; double x_85; lean_object* x_86; -x_83 = lean_box(0); -x_84 = lean_unbox_float(x_21); +lean_object* x_85; double x_86; double x_87; lean_object* x_88; +x_85 = lean_box(0); +x_86 = lean_unbox_float(x_21); lean_dec(x_21); -x_85 = lean_unbox_float(x_22); +x_87 = lean_unbox_float(x_22); lean_dec(x_22); -x_86 = l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__3(x_2, x_3, x_4, x_13, x_20, x_1, x_23, x_84, x_85, x_5, x_83, x_9, x_10, x_18); -return x_86; -} -} -else -{ -lean_object* x_87; double x_88; double x_89; lean_object* x_90; -x_87 = lean_box(0); -x_88 = lean_unbox_float(x_21); -lean_dec(x_21); -x_89 = lean_unbox_float(x_22); -lean_dec(x_22); -x_90 = l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__3(x_2, x_3, x_4, x_13, x_20, x_1, x_23, x_88, x_89, x_5, x_87, x_9, x_10, x_18); -return x_90; +x_88 = l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_86, x_87, x_5, x_85, x_9, x_10, x_18); +return x_88; } } } } else { -lean_object* x_205; lean_object* x_206; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; -x_293 = lean_io_get_num_heartbeats(x_14); -x_294 = lean_ctor_get(x_293, 0); -lean_inc(x_294); -x_295 = lean_ctor_get(x_293, 1); -lean_inc(x_295); -lean_dec(x_293); +lean_object* x_209; lean_object* x_210; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; +x_301 = lean_io_get_num_heartbeats(x_14); +x_302 = lean_ctor_get(x_301, 0); +lean_inc(x_302); +x_303 = lean_ctor_get(x_301, 1); +lean_inc(x_303); +lean_dec(x_301); lean_inc(x_10); lean_inc(x_9); -x_296 = lean_apply_3(x_7, x_9, x_10, x_295); -if (lean_obj_tag(x_296) == 0) +x_304 = lean_apply_3(x_7, x_9, x_10, x_303); +if (lean_obj_tag(x_304) == 0) { -uint8_t x_297; -x_297 = !lean_is_exclusive(x_296); -if (x_297 == 0) +uint8_t x_305; +x_305 = !lean_is_exclusive(x_304); +if (x_305 == 0) { -lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; uint8_t x_302; -x_298 = lean_ctor_get(x_296, 0); -x_299 = lean_ctor_get(x_296, 1); -x_300 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_300, 0, x_298); -x_301 = lean_io_get_num_heartbeats(x_299); -x_302 = !lean_is_exclusive(x_301); -if (x_302 == 0) +lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; uint8_t x_310; +x_306 = lean_ctor_get(x_304, 0); +x_307 = lean_ctor_get(x_304, 1); +x_308 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_308, 0, x_306); +x_309 = lean_io_get_num_heartbeats(x_307); +x_310 = !lean_is_exclusive(x_309); +if (x_310 == 0) { -lean_object* x_303; lean_object* x_304; uint8_t x_305; lean_object* x_306; double x_307; double x_308; lean_object* x_309; lean_object* x_310; -x_303 = lean_ctor_get(x_301, 0); -x_304 = lean_ctor_get(x_301, 1); -x_305 = 0; -x_306 = lean_unsigned_to_nat(0u); -x_307 = l_Float_ofScientific(x_294, x_305, x_306); -lean_dec(x_294); -x_308 = l_Float_ofScientific(x_303, x_305, x_306); -lean_dec(x_303); -x_309 = lean_box_float(x_307); -x_310 = lean_box_float(x_308); -lean_ctor_set(x_301, 1, x_310); -lean_ctor_set(x_301, 0, x_309); -lean_ctor_set(x_296, 1, x_301); -lean_ctor_set(x_296, 0, x_300); -x_205 = x_296; -x_206 = x_304; -goto block_292; -} -else -{ -lean_object* x_311; lean_object* x_312; uint8_t x_313; lean_object* x_314; double x_315; double x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; -x_311 = lean_ctor_get(x_301, 0); -x_312 = lean_ctor_get(x_301, 1); -lean_inc(x_312); -lean_inc(x_311); -lean_dec(x_301); +lean_object* x_311; lean_object* x_312; uint8_t x_313; lean_object* x_314; double x_315; double x_316; lean_object* x_317; lean_object* x_318; +x_311 = lean_ctor_get(x_309, 0); +x_312 = lean_ctor_get(x_309, 1); x_313 = 0; x_314 = lean_unsigned_to_nat(0u); -x_315 = l_Float_ofScientific(x_294, x_313, x_314); -lean_dec(x_294); +x_315 = l_Float_ofScientific(x_302, x_313, x_314); +lean_dec(x_302); x_316 = l_Float_ofScientific(x_311, x_313, x_314); lean_dec(x_311); x_317 = lean_box_float(x_315); x_318 = lean_box_float(x_316); -x_319 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_319, 0, x_317); -lean_ctor_set(x_319, 1, x_318); -lean_ctor_set(x_296, 1, x_319); -lean_ctor_set(x_296, 0, x_300); -x_205 = x_296; -x_206 = x_312; -goto block_292; -} +lean_ctor_set(x_309, 1, x_318); +lean_ctor_set(x_309, 0, x_317); +lean_ctor_set(x_304, 1, x_309); +lean_ctor_set(x_304, 0, x_308); +x_209 = x_304; +x_210 = x_312; +goto block_300; } else { -lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; uint8_t x_327; lean_object* x_328; double x_329; double x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; -x_320 = lean_ctor_get(x_296, 0); -x_321 = lean_ctor_get(x_296, 1); -lean_inc(x_321); +lean_object* x_319; lean_object* x_320; uint8_t x_321; lean_object* x_322; double x_323; double x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; +x_319 = lean_ctor_get(x_309, 0); +x_320 = lean_ctor_get(x_309, 1); lean_inc(x_320); -lean_dec(x_296); -x_322 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_322, 0, x_320); -x_323 = lean_io_get_num_heartbeats(x_321); -x_324 = lean_ctor_get(x_323, 0); -lean_inc(x_324); -x_325 = lean_ctor_get(x_323, 1); -lean_inc(x_325); -if (lean_is_exclusive(x_323)) { - lean_ctor_release(x_323, 0); - lean_ctor_release(x_323, 1); - x_326 = x_323; -} else { - lean_dec_ref(x_323); - x_326 = lean_box(0); -} -x_327 = 0; -x_328 = lean_unsigned_to_nat(0u); -x_329 = l_Float_ofScientific(x_294, x_327, x_328); -lean_dec(x_294); -x_330 = l_Float_ofScientific(x_324, x_327, x_328); -lean_dec(x_324); -x_331 = lean_box_float(x_329); -x_332 = lean_box_float(x_330); -if (lean_is_scalar(x_326)) { - x_333 = lean_alloc_ctor(0, 2, 0); -} else { - x_333 = x_326; -} -lean_ctor_set(x_333, 0, x_331); -lean_ctor_set(x_333, 1, x_332); -x_334 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_334, 0, x_322); -lean_ctor_set(x_334, 1, x_333); -x_205 = x_334; -x_206 = x_325; -goto block_292; +lean_inc(x_319); +lean_dec(x_309); +x_321 = 0; +x_322 = lean_unsigned_to_nat(0u); +x_323 = l_Float_ofScientific(x_302, x_321, x_322); +lean_dec(x_302); +x_324 = l_Float_ofScientific(x_319, x_321, x_322); +lean_dec(x_319); +x_325 = lean_box_float(x_323); +x_326 = lean_box_float(x_324); +x_327 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_327, 0, x_325); +lean_ctor_set(x_327, 1, x_326); +lean_ctor_set(x_304, 1, x_327); +lean_ctor_set(x_304, 0, x_308); +x_209 = x_304; +x_210 = x_320; +goto block_300; } } else { -uint8_t x_335; -x_335 = !lean_is_exclusive(x_296); -if (x_335 == 0) -{ -lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; uint8_t x_340; -x_336 = lean_ctor_get(x_296, 0); -x_337 = lean_ctor_get(x_296, 1); -x_338 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_338, 0, x_336); -x_339 = lean_io_get_num_heartbeats(x_337); -x_340 = !lean_is_exclusive(x_339); -if (x_340 == 0) -{ -lean_object* x_341; lean_object* x_342; uint8_t x_343; lean_object* x_344; double x_345; double x_346; lean_object* x_347; lean_object* x_348; -x_341 = lean_ctor_get(x_339, 0); -x_342 = lean_ctor_get(x_339, 1); -x_343 = 0; -x_344 = lean_unsigned_to_nat(0u); -x_345 = l_Float_ofScientific(x_294, x_343, x_344); -lean_dec(x_294); -x_346 = l_Float_ofScientific(x_341, x_343, x_344); -lean_dec(x_341); -x_347 = lean_box_float(x_345); -x_348 = lean_box_float(x_346); -lean_ctor_set(x_339, 1, x_348); -lean_ctor_set(x_339, 0, x_347); -lean_ctor_set_tag(x_296, 0); -lean_ctor_set(x_296, 1, x_339); -lean_ctor_set(x_296, 0, x_338); -x_205 = x_296; -x_206 = x_342; -goto block_292; +lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; uint8_t x_335; lean_object* x_336; double x_337; double x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; +x_328 = lean_ctor_get(x_304, 0); +x_329 = lean_ctor_get(x_304, 1); +lean_inc(x_329); +lean_inc(x_328); +lean_dec(x_304); +x_330 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_330, 0, x_328); +x_331 = lean_io_get_num_heartbeats(x_329); +x_332 = lean_ctor_get(x_331, 0); +lean_inc(x_332); +x_333 = lean_ctor_get(x_331, 1); +lean_inc(x_333); +if (lean_is_exclusive(x_331)) { + lean_ctor_release(x_331, 0); + lean_ctor_release(x_331, 1); + x_334 = x_331; +} else { + lean_dec_ref(x_331); + x_334 = lean_box(0); +} +x_335 = 0; +x_336 = lean_unsigned_to_nat(0u); +x_337 = l_Float_ofScientific(x_302, x_335, x_336); +lean_dec(x_302); +x_338 = l_Float_ofScientific(x_332, x_335, x_336); +lean_dec(x_332); +x_339 = lean_box_float(x_337); +x_340 = lean_box_float(x_338); +if (lean_is_scalar(x_334)) { + x_341 = lean_alloc_ctor(0, 2, 0); +} else { + x_341 = x_334; +} +lean_ctor_set(x_341, 0, x_339); +lean_ctor_set(x_341, 1, x_340); +x_342 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_342, 0, x_330); +lean_ctor_set(x_342, 1, x_341); +x_209 = x_342; +x_210 = x_333; +goto block_300; +} } else { -lean_object* x_349; lean_object* x_350; uint8_t x_351; lean_object* x_352; double x_353; double x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; -x_349 = lean_ctor_get(x_339, 0); -x_350 = lean_ctor_get(x_339, 1); -lean_inc(x_350); -lean_inc(x_349); -lean_dec(x_339); +uint8_t x_343; +x_343 = !lean_is_exclusive(x_304); +if (x_343 == 0) +{ +lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; uint8_t x_348; +x_344 = lean_ctor_get(x_304, 0); +x_345 = lean_ctor_get(x_304, 1); +x_346 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_346, 0, x_344); +x_347 = lean_io_get_num_heartbeats(x_345); +x_348 = !lean_is_exclusive(x_347); +if (x_348 == 0) +{ +lean_object* x_349; lean_object* x_350; uint8_t x_351; lean_object* x_352; double x_353; double x_354; lean_object* x_355; lean_object* x_356; +x_349 = lean_ctor_get(x_347, 0); +x_350 = lean_ctor_get(x_347, 1); x_351 = 0; x_352 = lean_unsigned_to_nat(0u); -x_353 = l_Float_ofScientific(x_294, x_351, x_352); -lean_dec(x_294); +x_353 = l_Float_ofScientific(x_302, x_351, x_352); +lean_dec(x_302); x_354 = l_Float_ofScientific(x_349, x_351, x_352); lean_dec(x_349); x_355 = lean_box_float(x_353); x_356 = lean_box_float(x_354); -x_357 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_357, 0, x_355); -lean_ctor_set(x_357, 1, x_356); -lean_ctor_set_tag(x_296, 0); -lean_ctor_set(x_296, 1, x_357); -lean_ctor_set(x_296, 0, x_338); -x_205 = x_296; -x_206 = x_350; -goto block_292; -} +lean_ctor_set(x_347, 1, x_356); +lean_ctor_set(x_347, 0, x_355); +lean_ctor_set_tag(x_304, 0); +lean_ctor_set(x_304, 1, x_347); +lean_ctor_set(x_304, 0, x_346); +x_209 = x_304; +x_210 = x_350; +goto block_300; } else { -lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; uint8_t x_365; lean_object* x_366; double x_367; double x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; -x_358 = lean_ctor_get(x_296, 0); -x_359 = lean_ctor_get(x_296, 1); -lean_inc(x_359); +lean_object* x_357; lean_object* x_358; uint8_t x_359; lean_object* x_360; double x_361; double x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; +x_357 = lean_ctor_get(x_347, 0); +x_358 = lean_ctor_get(x_347, 1); lean_inc(x_358); -lean_dec(x_296); -x_360 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_360, 0, x_358); -x_361 = lean_io_get_num_heartbeats(x_359); -x_362 = lean_ctor_get(x_361, 0); -lean_inc(x_362); -x_363 = lean_ctor_get(x_361, 1); -lean_inc(x_363); -if (lean_is_exclusive(x_361)) { - lean_ctor_release(x_361, 0); - lean_ctor_release(x_361, 1); - x_364 = x_361; -} else { - lean_dec_ref(x_361); - x_364 = lean_box(0); +lean_inc(x_357); +lean_dec(x_347); +x_359 = 0; +x_360 = lean_unsigned_to_nat(0u); +x_361 = l_Float_ofScientific(x_302, x_359, x_360); +lean_dec(x_302); +x_362 = l_Float_ofScientific(x_357, x_359, x_360); +lean_dec(x_357); +x_363 = lean_box_float(x_361); +x_364 = lean_box_float(x_362); +x_365 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_365, 0, x_363); +lean_ctor_set(x_365, 1, x_364); +lean_ctor_set_tag(x_304, 0); +lean_ctor_set(x_304, 1, x_365); +lean_ctor_set(x_304, 0, x_346); +x_209 = x_304; +x_210 = x_358; +goto block_300; } -x_365 = 0; -x_366 = lean_unsigned_to_nat(0u); -x_367 = l_Float_ofScientific(x_294, x_365, x_366); -lean_dec(x_294); -x_368 = l_Float_ofScientific(x_362, x_365, x_366); -lean_dec(x_362); -x_369 = lean_box_float(x_367); -x_370 = lean_box_float(x_368); -if (lean_is_scalar(x_364)) { - x_371 = lean_alloc_ctor(0, 2, 0); -} else { - x_371 = x_364; -} -lean_ctor_set(x_371, 0, x_369); -lean_ctor_set(x_371, 1, x_370); -x_372 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_372, 0, x_360); -lean_ctor_set(x_372, 1, x_371); -x_205 = x_372; -x_206 = x_363; -goto block_292; -} -} -block_292: -{ -lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; uint8_t x_211; lean_object* x_280; uint8_t x_281; -x_207 = lean_ctor_get(x_205, 1); -lean_inc(x_207); -x_208 = lean_ctor_get(x_205, 0); -lean_inc(x_208); -lean_dec(x_205); -x_209 = lean_ctor_get(x_207, 0); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 1); -lean_inc(x_210); -lean_dec(x_207); -x_280 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__2; -x_281 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_280); -if (x_281 == 0) -{ -uint8_t x_282; -x_282 = 0; -x_211 = x_282; -goto block_279; } else { -double x_283; double x_284; double x_285; lean_object* x_286; lean_object* x_287; uint8_t x_288; lean_object* x_289; double x_290; uint8_t x_291; -x_283 = lean_unbox_float(x_210); -x_284 = lean_unbox_float(x_209); -x_285 = lean_float_sub(x_283, x_284); -x_286 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__3; -x_287 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_286); -x_288 = 0; -x_289 = lean_unsigned_to_nat(0u); -x_290 = l_Float_ofScientific(x_287, x_288, x_289); -lean_dec(x_287); -x_291 = lean_float_decLt(x_290, x_285); -x_211 = x_291; -goto block_279; +lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; uint8_t x_373; lean_object* x_374; double x_375; double x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; +x_366 = lean_ctor_get(x_304, 0); +x_367 = lean_ctor_get(x_304, 1); +lean_inc(x_367); +lean_inc(x_366); +lean_dec(x_304); +x_368 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_368, 0, x_366); +x_369 = lean_io_get_num_heartbeats(x_367); +x_370 = lean_ctor_get(x_369, 0); +lean_inc(x_370); +x_371 = lean_ctor_get(x_369, 1); +lean_inc(x_371); +if (lean_is_exclusive(x_369)) { + lean_ctor_release(x_369, 0); + lean_ctor_release(x_369, 1); + x_372 = x_369; +} else { + lean_dec_ref(x_369); + x_372 = lean_box(0); } -block_279: +x_373 = 0; +x_374 = lean_unsigned_to_nat(0u); +x_375 = l_Float_ofScientific(x_302, x_373, x_374); +lean_dec(x_302); +x_376 = l_Float_ofScientific(x_370, x_373, x_374); +lean_dec(x_370); +x_377 = lean_box_float(x_375); +x_378 = lean_box_float(x_376); +if (lean_is_scalar(x_372)) { + x_379 = lean_alloc_ctor(0, 2, 0); +} else { + x_379 = x_372; +} +lean_ctor_set(x_379, 0, x_377); +lean_ctor_set(x_379, 1, x_378); +x_380 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_380, 0, x_368); +lean_ctor_set(x_380, 1, x_379); +x_209 = x_380; +x_210 = x_371; +goto block_300; +} +} +block_300: +{ +lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; uint8_t x_217; +x_211 = lean_ctor_get(x_209, 1); +lean_inc(x_211); +x_212 = lean_ctor_get(x_209, 0); +lean_inc(x_212); +lean_dec(x_209); +x_213 = lean_ctor_get(x_211, 0); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 1); +lean_inc(x_214); +lean_dec(x_211); +x_215 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__2; +x_216 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_215); +if (x_216 == 0) { if (x_6 == 0) { -if (x_211 == 0) +uint8_t x_282; +x_282 = 0; +x_217 = x_282; +goto block_281; +} +else { -lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; -lean_dec(x_210); -lean_dec(x_209); +lean_object* x_283; double x_284; double x_285; lean_object* x_286; +x_283 = lean_box(0); +x_284 = lean_unbox_float(x_213); +lean_dec(x_213); +x_285 = lean_unbox_float(x_214); +lean_dec(x_214); +x_286 = l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_284, x_285, x_5, x_283, x_9, x_10, x_210); +return x_286; +} +} +else +{ +if (x_6 == 0) +{ +double x_287; double x_288; double x_289; lean_object* x_290; lean_object* x_291; uint8_t x_292; lean_object* x_293; double x_294; uint8_t x_295; +x_287 = lean_unbox_float(x_214); +x_288 = lean_unbox_float(x_213); +x_289 = lean_float_sub(x_287, x_288); +x_290 = l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__4___closed__3; +x_291 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_290); +x_292 = 0; +x_293 = lean_unsigned_to_nat(0u); +x_294 = l_Float_ofScientific(x_291, x_292, x_293); +lean_dec(x_291); +x_295 = lean_float_decLt(x_294, x_289); +x_217 = x_295; +goto block_281; +} +else +{ +lean_object* x_296; double x_297; double x_298; lean_object* x_299; +x_296 = lean_box(0); +x_297 = lean_unbox_float(x_213); +lean_dec(x_213); +x_298 = lean_unbox_float(x_214); +lean_dec(x_214); +x_299 = l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_297, x_298, x_5, x_296, x_9, x_10, x_210); +return x_299; +} +} +block_281: +{ +if (x_217 == 0) +{ +lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; uint8_t x_222; +lean_dec(x_214); +lean_dec(x_213); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_212 = lean_st_ref_take(x_10, x_206); -x_213 = lean_ctor_get(x_212, 0); -lean_inc(x_213); -x_214 = lean_ctor_get(x_213, 3); -lean_inc(x_214); -x_215 = lean_ctor_get(x_212, 1); -lean_inc(x_215); -lean_dec(x_212); -x_216 = !lean_is_exclusive(x_213); -if (x_216 == 0) +x_218 = lean_st_ref_take(x_10, x_210); +x_219 = lean_ctor_get(x_218, 0); +lean_inc(x_219); +x_220 = lean_ctor_get(x_219, 3); +lean_inc(x_220); +x_221 = lean_ctor_get(x_218, 1); +lean_inc(x_221); +lean_dec(x_218); +x_222 = !lean_is_exclusive(x_219); +if (x_222 == 0) { -lean_object* x_217; uint8_t x_218; -x_217 = lean_ctor_get(x_213, 3); -lean_dec(x_217); -x_218 = !lean_is_exclusive(x_214); -if (x_218 == 0) -{ -lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; -x_219 = lean_ctor_get(x_214, 0); -x_220 = l_Lean_PersistentArray_append___rarg(x_13, x_219); -lean_dec(x_219); -lean_ctor_set(x_214, 0, x_220); -x_221 = lean_st_ref_set(x_10, x_213, x_215); -x_222 = lean_ctor_get(x_221, 1); -lean_inc(x_222); -lean_dec(x_221); -x_223 = l_MonadExcept_ofExcept___at_Lean_compileDecl___spec__3(x_208, x_9, x_10, x_222); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_223) == 0) -{ -uint8_t x_224; -x_224 = !lean_is_exclusive(x_223); +lean_object* x_223; uint8_t x_224; +x_223 = lean_ctor_get(x_219, 3); +lean_dec(x_223); +x_224 = !lean_is_exclusive(x_220); if (x_224 == 0) { -return x_223; -} -else -{ -lean_object* x_225; lean_object* x_226; lean_object* x_227; -x_225 = lean_ctor_get(x_223, 0); -x_226 = lean_ctor_get(x_223, 1); -lean_inc(x_226); -lean_inc(x_225); -lean_dec(x_223); -x_227 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_227, 0, x_225); -lean_ctor_set(x_227, 1, x_226); -return x_227; -} -} -else -{ -uint8_t x_228; -x_228 = !lean_is_exclusive(x_223); -if (x_228 == 0) -{ -return x_223; -} -else -{ -lean_object* x_229; lean_object* x_230; lean_object* x_231; -x_229 = lean_ctor_get(x_223, 0); -x_230 = lean_ctor_get(x_223, 1); -lean_inc(x_230); -lean_inc(x_229); -lean_dec(x_223); -x_231 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_231, 0, x_229); -lean_ctor_set(x_231, 1, x_230); -return x_231; -} -} -} -else -{ -uint64_t x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; -x_232 = lean_ctor_get_uint64(x_214, sizeof(void*)*1); -x_233 = lean_ctor_get(x_214, 0); -lean_inc(x_233); -lean_dec(x_214); -x_234 = l_Lean_PersistentArray_append___rarg(x_13, x_233); -lean_dec(x_233); -x_235 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_235, 0, x_234); -lean_ctor_set_uint64(x_235, sizeof(void*)*1, x_232); -lean_ctor_set(x_213, 3, x_235); -x_236 = lean_st_ref_set(x_10, x_213, x_215); -x_237 = lean_ctor_get(x_236, 1); -lean_inc(x_237); -lean_dec(x_236); -x_238 = l_MonadExcept_ofExcept___at_Lean_compileDecl___spec__3(x_208, x_9, x_10, x_237); +lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; +x_225 = lean_ctor_get(x_220, 0); +x_226 = l_Lean_PersistentArray_append___rarg(x_13, x_225); +lean_dec(x_225); +lean_ctor_set(x_220, 0, x_226); +x_227 = lean_st_ref_set(x_10, x_219, x_221); +x_228 = lean_ctor_get(x_227, 1); +lean_inc(x_228); +lean_dec(x_227); +x_229 = l_MonadExcept_ofExcept___at_Lean_compileDecl___spec__3(x_212, x_9, x_10, x_228); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_238) == 0) +lean_dec(x_212); +if (lean_obj_tag(x_229) == 0) { -lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; -x_239 = lean_ctor_get(x_238, 0); +uint8_t x_230; +x_230 = !lean_is_exclusive(x_229); +if (x_230 == 0) +{ +return x_229; +} +else +{ +lean_object* x_231; lean_object* x_232; lean_object* x_233; +x_231 = lean_ctor_get(x_229, 0); +x_232 = lean_ctor_get(x_229, 1); +lean_inc(x_232); +lean_inc(x_231); +lean_dec(x_229); +x_233 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_233, 0, x_231); +lean_ctor_set(x_233, 1, x_232); +return x_233; +} +} +else +{ +uint8_t x_234; +x_234 = !lean_is_exclusive(x_229); +if (x_234 == 0) +{ +return x_229; +} +else +{ +lean_object* x_235; lean_object* x_236; lean_object* x_237; +x_235 = lean_ctor_get(x_229, 0); +x_236 = lean_ctor_get(x_229, 1); +lean_inc(x_236); +lean_inc(x_235); +lean_dec(x_229); +x_237 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_237, 0, x_235); +lean_ctor_set(x_237, 1, x_236); +return x_237; +} +} +} +else +{ +uint64_t x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; +x_238 = lean_ctor_get_uint64(x_220, sizeof(void*)*1); +x_239 = lean_ctor_get(x_220, 0); lean_inc(x_239); -x_240 = lean_ctor_get(x_238, 1); -lean_inc(x_240); -if (lean_is_exclusive(x_238)) { - lean_ctor_release(x_238, 0); - lean_ctor_release(x_238, 1); - x_241 = x_238; -} else { - lean_dec_ref(x_238); - x_241 = lean_box(0); -} -if (lean_is_scalar(x_241)) { - x_242 = lean_alloc_ctor(0, 2, 0); -} else { - x_242 = x_241; -} -lean_ctor_set(x_242, 0, x_239); -lean_ctor_set(x_242, 1, x_240); -return x_242; -} -else -{ -lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; -x_243 = lean_ctor_get(x_238, 0); +lean_dec(x_220); +x_240 = l_Lean_PersistentArray_append___rarg(x_13, x_239); +lean_dec(x_239); +x_241 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_241, 0, x_240); +lean_ctor_set_uint64(x_241, sizeof(void*)*1, x_238); +lean_ctor_set(x_219, 3, x_241); +x_242 = lean_st_ref_set(x_10, x_219, x_221); +x_243 = lean_ctor_get(x_242, 1); lean_inc(x_243); -x_244 = lean_ctor_get(x_238, 1); -lean_inc(x_244); -if (lean_is_exclusive(x_238)) { - lean_ctor_release(x_238, 0); - lean_ctor_release(x_238, 1); - x_245 = x_238; -} else { - lean_dec_ref(x_238); - x_245 = lean_box(0); -} -if (lean_is_scalar(x_245)) { - x_246 = lean_alloc_ctor(1, 2, 0); -} else { - x_246 = x_245; -} -lean_ctor_set(x_246, 0, x_243); -lean_ctor_set(x_246, 1, x_244); -return x_246; -} -} -} -else -{ -lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; uint64_t x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; -x_247 = lean_ctor_get(x_213, 0); -x_248 = lean_ctor_get(x_213, 1); -x_249 = lean_ctor_get(x_213, 2); -x_250 = lean_ctor_get(x_213, 4); -x_251 = lean_ctor_get(x_213, 5); -x_252 = lean_ctor_get(x_213, 6); -x_253 = lean_ctor_get(x_213, 7); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_inc(x_248); -lean_inc(x_247); -lean_dec(x_213); -x_254 = lean_ctor_get_uint64(x_214, sizeof(void*)*1); -x_255 = lean_ctor_get(x_214, 0); -lean_inc(x_255); -if (lean_is_exclusive(x_214)) { - lean_ctor_release(x_214, 0); - x_256 = x_214; -} else { - lean_dec_ref(x_214); - x_256 = lean_box(0); -} -x_257 = l_Lean_PersistentArray_append___rarg(x_13, x_255); -lean_dec(x_255); -if (lean_is_scalar(x_256)) { - x_258 = lean_alloc_ctor(0, 1, 8); -} else { - x_258 = x_256; -} -lean_ctor_set(x_258, 0, x_257); -lean_ctor_set_uint64(x_258, sizeof(void*)*1, x_254); -x_259 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_259, 0, x_247); -lean_ctor_set(x_259, 1, x_248); -lean_ctor_set(x_259, 2, x_249); -lean_ctor_set(x_259, 3, x_258); -lean_ctor_set(x_259, 4, x_250); -lean_ctor_set(x_259, 5, x_251); -lean_ctor_set(x_259, 6, x_252); -lean_ctor_set(x_259, 7, x_253); -x_260 = lean_st_ref_set(x_10, x_259, x_215); -x_261 = lean_ctor_get(x_260, 1); -lean_inc(x_261); -lean_dec(x_260); -x_262 = l_MonadExcept_ofExcept___at_Lean_compileDecl___spec__3(x_208, x_9, x_10, x_261); +lean_dec(x_242); +x_244 = l_MonadExcept_ofExcept___at_Lean_compileDecl___spec__3(x_212, x_9, x_10, x_243); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_262) == 0) +lean_dec(x_212); +if (lean_obj_tag(x_244) == 0) { -lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; -x_263 = lean_ctor_get(x_262, 0); -lean_inc(x_263); -x_264 = lean_ctor_get(x_262, 1); -lean_inc(x_264); -if (lean_is_exclusive(x_262)) { - lean_ctor_release(x_262, 0); - lean_ctor_release(x_262, 1); - x_265 = x_262; +lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; +x_245 = lean_ctor_get(x_244, 0); +lean_inc(x_245); +x_246 = lean_ctor_get(x_244, 1); +lean_inc(x_246); +if (lean_is_exclusive(x_244)) { + lean_ctor_release(x_244, 0); + lean_ctor_release(x_244, 1); + x_247 = x_244; } else { - lean_dec_ref(x_262); - x_265 = lean_box(0); + lean_dec_ref(x_244); + x_247 = lean_box(0); } -if (lean_is_scalar(x_265)) { - x_266 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_247)) { + x_248 = lean_alloc_ctor(0, 2, 0); } else { - x_266 = x_265; + x_248 = x_247; } -lean_ctor_set(x_266, 0, x_263); -lean_ctor_set(x_266, 1, x_264); -return x_266; +lean_ctor_set(x_248, 0, x_245); +lean_ctor_set(x_248, 1, x_246); +return x_248; } else { -lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; -x_267 = lean_ctor_get(x_262, 0); +lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; +x_249 = lean_ctor_get(x_244, 0); +lean_inc(x_249); +x_250 = lean_ctor_get(x_244, 1); +lean_inc(x_250); +if (lean_is_exclusive(x_244)) { + lean_ctor_release(x_244, 0); + lean_ctor_release(x_244, 1); + x_251 = x_244; +} else { + lean_dec_ref(x_244); + x_251 = lean_box(0); +} +if (lean_is_scalar(x_251)) { + x_252 = lean_alloc_ctor(1, 2, 0); +} else { + x_252 = x_251; +} +lean_ctor_set(x_252, 0, x_249); +lean_ctor_set(x_252, 1, x_250); +return x_252; +} +} +} +else +{ +lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; uint64_t x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; +x_253 = lean_ctor_get(x_219, 0); +x_254 = lean_ctor_get(x_219, 1); +x_255 = lean_ctor_get(x_219, 2); +x_256 = lean_ctor_get(x_219, 4); +x_257 = lean_ctor_get(x_219, 5); +x_258 = lean_ctor_get(x_219, 6); +x_259 = lean_ctor_get(x_219, 7); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_inc(x_254); +lean_inc(x_253); +lean_dec(x_219); +x_260 = lean_ctor_get_uint64(x_220, sizeof(void*)*1); +x_261 = lean_ctor_get(x_220, 0); +lean_inc(x_261); +if (lean_is_exclusive(x_220)) { + lean_ctor_release(x_220, 0); + x_262 = x_220; +} else { + lean_dec_ref(x_220); + x_262 = lean_box(0); +} +x_263 = l_Lean_PersistentArray_append___rarg(x_13, x_261); +lean_dec(x_261); +if (lean_is_scalar(x_262)) { + x_264 = lean_alloc_ctor(0, 1, 8); +} else { + x_264 = x_262; +} +lean_ctor_set(x_264, 0, x_263); +lean_ctor_set_uint64(x_264, sizeof(void*)*1, x_260); +x_265 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_265, 0, x_253); +lean_ctor_set(x_265, 1, x_254); +lean_ctor_set(x_265, 2, x_255); +lean_ctor_set(x_265, 3, x_264); +lean_ctor_set(x_265, 4, x_256); +lean_ctor_set(x_265, 5, x_257); +lean_ctor_set(x_265, 6, x_258); +lean_ctor_set(x_265, 7, x_259); +x_266 = lean_st_ref_set(x_10, x_265, x_221); +x_267 = lean_ctor_get(x_266, 1); lean_inc(x_267); -x_268 = lean_ctor_get(x_262, 1); -lean_inc(x_268); -if (lean_is_exclusive(x_262)) { - lean_ctor_release(x_262, 0); - lean_ctor_release(x_262, 1); - x_269 = x_262; +lean_dec(x_266); +x_268 = l_MonadExcept_ofExcept___at_Lean_compileDecl___spec__3(x_212, x_9, x_10, x_267); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_212); +if (lean_obj_tag(x_268) == 0) +{ +lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; +x_269 = lean_ctor_get(x_268, 0); +lean_inc(x_269); +x_270 = lean_ctor_get(x_268, 1); +lean_inc(x_270); +if (lean_is_exclusive(x_268)) { + lean_ctor_release(x_268, 0); + lean_ctor_release(x_268, 1); + x_271 = x_268; } else { - lean_dec_ref(x_262); - x_269 = lean_box(0); + lean_dec_ref(x_268); + x_271 = lean_box(0); } -if (lean_is_scalar(x_269)) { - x_270 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_271)) { + x_272 = lean_alloc_ctor(0, 2, 0); } else { - x_270 = x_269; + x_272 = x_271; } -lean_ctor_set(x_270, 0, x_267); -lean_ctor_set(x_270, 1, x_268); -return x_270; +lean_ctor_set(x_272, 0, x_269); +lean_ctor_set(x_272, 1, x_270); +return x_272; +} +else +{ +lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; +x_273 = lean_ctor_get(x_268, 0); +lean_inc(x_273); +x_274 = lean_ctor_get(x_268, 1); +lean_inc(x_274); +if (lean_is_exclusive(x_268)) { + lean_ctor_release(x_268, 0); + lean_ctor_release(x_268, 1); + x_275 = x_268; +} else { + lean_dec_ref(x_268); + x_275 = lean_box(0); +} +if (lean_is_scalar(x_275)) { + x_276 = lean_alloc_ctor(1, 2, 0); +} else { + x_276 = x_275; +} +lean_ctor_set(x_276, 0, x_273); +lean_ctor_set(x_276, 1, x_274); +return x_276; } } } else { -lean_object* x_271; double x_272; double x_273; lean_object* x_274; -x_271 = lean_box(0); -x_272 = lean_unbox_float(x_209); -lean_dec(x_209); -x_273 = lean_unbox_float(x_210); -lean_dec(x_210); -x_274 = l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__3(x_2, x_3, x_4, x_13, x_208, x_1, x_211, x_272, x_273, x_5, x_271, x_9, x_10, x_206); -return x_274; -} -} -else -{ -lean_object* x_275; double x_276; double x_277; lean_object* x_278; -x_275 = lean_box(0); -x_276 = lean_unbox_float(x_209); -lean_dec(x_209); -x_277 = lean_unbox_float(x_210); -lean_dec(x_210); -x_278 = l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__3(x_2, x_3, x_4, x_13, x_208, x_1, x_211, x_276, x_277, x_5, x_275, x_9, x_10, x_206); -return x_278; +lean_object* x_277; double x_278; double x_279; lean_object* x_280; +x_277 = lean_box(0); +x_278 = lean_unbox_float(x_213); +lean_dec(x_213); +x_279 = lean_unbox_float(x_214); +lean_dec(x_214); +x_280 = l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_278, x_279, x_5, x_277, x_9, x_10, x_210); +return x_280; } } } @@ -23115,41 +23120,39 @@ lean_dec(x_4); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; uint8_t x_16; double x_17; double x_18; lean_object* x_19; -x_15 = lean_unbox(x_2); +uint8_t x_14; uint8_t x_15; double x_16; double x_17; lean_object* x_18; +x_14 = lean_unbox(x_2); lean_dec(x_2); -x_16 = lean_unbox(x_8); +x_15 = lean_unbox(x_7); +lean_dec(x_7); +x_16 = lean_unbox_float(x_8); lean_dec(x_8); x_17 = lean_unbox_float(x_9); lean_dec(x_9); -x_18 = lean_unbox_float(x_10); -lean_dec(x_10); -x_19 = l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__2(x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_16, x_17, x_18, x_11, x_12, x_13, x_14); -lean_dec(x_13); -lean_dec(x_7); +x_18 = l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__2(x_1, x_14, x_3, x_4, x_5, x_6, x_15, x_16, x_17, x_10, x_11, x_12, x_13); +lean_dec(x_12); lean_dec(x_6); -return x_19; +return x_18; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; uint8_t x_16; double x_17; double x_18; lean_object* x_19; -x_15 = lean_unbox(x_2); +uint8_t x_14; uint8_t x_15; double x_16; double x_17; lean_object* x_18; +x_14 = lean_unbox(x_2); lean_dec(x_2); -x_16 = lean_unbox(x_7); +x_15 = lean_unbox(x_6); +lean_dec(x_6); +x_16 = lean_unbox_float(x_7); lean_dec(x_7); x_17 = lean_unbox_float(x_8); lean_dec(x_8); -x_18 = lean_unbox_float(x_9); -lean_dec(x_9); -x_19 = l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__3(x_1, x_15, x_3, x_4, x_5, x_6, x_16, x_17, x_18, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_11); -lean_dec(x_6); -return x_19; +x_18 = l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__3(x_1, x_14, x_3, x_4, x_5, x_15, x_16, x_17, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_10); +return x_18; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_compileDecl___spec__2___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { @@ -25868,8 +25871,6 @@ lean_mark_persistent(l___auto____x40_Lean_CoreM___hyg_4103____closed__40); l___auto____x40_Lean_CoreM___hyg_4103_ = _init_l___auto____x40_Lean_CoreM___hyg_4103_(); lean_mark_persistent(l___auto____x40_Lean_CoreM___hyg_4103_); l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2___closed__1(); -l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2___closed__2(); -lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__2___closed__2); l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3___closed__1); l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__1___lambda__3___closed__2(); @@ -25936,11 +25937,12 @@ lean_mark_persistent(l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__4); l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__5 = _init_l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__5(); lean_mark_persistent(l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__5); l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__6 = _init_l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__6(); -lean_mark_persistent(l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__6); l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__7 = _init_l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__7(); lean_mark_persistent(l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__7); l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__8 = _init_l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__8(); lean_mark_persistent(l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__8); +l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__9 = _init_l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__9(); +lean_mark_persistent(l_Lean_Core_wrapAsyncAsSnapshot___lambda__5___closed__9); l_Lean_mkArrow___closed__1 = _init_l_Lean_mkArrow___closed__1(); lean_mark_persistent(l_Lean_mkArrow___closed__1); l_Lean_mkArrow___closed__2 = _init_l_Lean_mkArrow___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Command.c b/stage0/stdlib/Lean/Elab/Command.c index 2c4565fe33..48bc36a18a 100644 --- a/stage0/stdlib/Lean/Elab/Command.c +++ b/stage0/stdlib/Lean/Elab/Command.c @@ -29,7 +29,7 @@ static lean_object* l_List_foldl___at_Lean_Elab_Command_instAddErrorMessageConte lean_object* lean_format_pretty(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_liftAttrM___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_elabSetOption_setOption___at_Lean_withSetOptionIn___spec__6___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_logException___at_Lean_Elab_Command_runLinters___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_2915____closed__1; LEAN_EXPORT lean_object* l_Lean_addMessageContextPartial___at_Lean_Elab_Command_instAddMessageContextCommandElabM___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -50,7 +50,6 @@ static lean_object* l_IO_FS_withIsolatedStreams___at_Lean_Elab_Command_wrapAsync LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__9___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_diagExt; static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_2915____closed__2; -extern lean_object* l_Lean_profiler; lean_object* l_Lean_Core_getMaxHeartbeats(lean_object*); uint8_t l_Lean_Elab_isAbortExceptionId(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_instMonadLogCommandElabM___lambda__5___boxed(lean_object*); @@ -331,7 +330,7 @@ static lean_object* l_List_foldl___at_Lean_Elab_Command_instAddErrorMessageConte static lean_object* l___auto____x40_Lean_Elab_Command___hyg_472____closed__10; static lean_object* l_IO_FS_withIsolatedStreams___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__10___closed__3; static lean_object* l_Lean_Elab_Command_elabCommand___lambda__6___closed__3; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_InternalExceptionId_getName(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_Elab_Command_liftCoreM___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Command_runLinters___spec__9___lambda__3___boxed(lean_object*); @@ -357,11 +356,11 @@ static lean_object* l___auto____x40_Lean_Elab_Command___hyg_472____closed__15; LEAN_EXPORT lean_object* l_Lean_Elab_Command_instMonadLogCommandElabM___lambda__1(lean_object*, lean_object*, lean_object*); static lean_object* l_IO_FS_withIsolatedStreams___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__10___closed__5; LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabCommandTopLevel___lambda__1___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at_Lean_Elab_Command_runLinters___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Command_instToSnapshotTreeMacroExpandedSnapshot___spec__1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommandUsing___closed__5; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_3642____closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Command_instMonadRecDepthCommandElabM___lambda__2___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_withSetOptionIn___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -403,6 +402,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Command_wrapAsync___rarg___lambda__2(lean_o uint64_t lean_uint64_shift_right(uint64_t, uint64_t); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Command_0__Lean_Elab_Command_runCore___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommandUsing___closed__4; +uint64_t lean_uint64_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_instMonadOptionsCommandElabM___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Command_elabCommand___spec__2___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_TagAttribute_hasTag(lean_object*, lean_object*, lean_object*); @@ -462,7 +462,7 @@ lean_object* l_Lean_Elab_getBetterRef(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_runLinters(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_liftCommandElabM(lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__2___closed__2; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__9___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Command_liftTermElabM___spec__12(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -507,7 +507,7 @@ static lean_object* l_Lean_Elab_Command_instMonadTraceCommandElabM___closed__1; static lean_object* l_Lean_Elab_Command_instMonadLogCommandElabM___lambda__5___closed__1; static lean_object* l___auto____x40_Lean_Elab_Command___hyg_2283____closed__6; static lean_object* l___auto____x40_Lean_Elab_Command___hyg_2283____closed__14; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_getLevelNames___rarg___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_levelZero; uint8_t l_Std_DHashMap_Internal_AssocList_contains___at_Lean_addTraceAsMessages___spec__2(lean_object*, lean_object*); @@ -580,7 +580,7 @@ static lean_object* l___private_Lean_Elab_Command_0__Lean_liftCommandElabMCore__ LEAN_EXPORT lean_object* l_Lean_Elab_Command_instMonadExceptOfExceptionCommandElabM; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Elab_Command_elabCommand___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__1; extern lean_object* l_Lean_trace_profiler_threshold; LEAN_EXPORT lean_object* l_Lean_addMessageContextPartial___at_Lean_Elab_Command_instAddMessageContextCommandElabM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -613,7 +613,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Command_instTypeNameMacroExpandedSnapshot; LEAN_EXPORT lean_object* l_Lean_addTraceAsMessages___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__3___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_instMonadExceptOfExceptionCommandElabM___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_Elab_Command_liftCoreM___spec__1(lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_mkMetaContext___closed__1; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_Command_0__Lean_Elab_Command_mkTermContext___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Command_liftTermElabM___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -710,7 +710,7 @@ extern lean_object* l_Lean_NameSet_empty; LEAN_EXPORT lean_object* l_Lean_Elab_Command_instMonadOptionsCommandElabM___rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Elab_Command_runLinters___spec__6___rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabCommand___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__6; +static uint64_t l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__6; static lean_object* l_Lean_Elab_Command_instImpl____x40_Lean_Elab_Command___hyg_3742____closed__1; static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4914____closed__2; LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Elab_Command_runLinters___spec__12___boxed(lean_object*); @@ -759,7 +759,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Comma LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Command_elabCommandTopLevel___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_getMainModule(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapM___at___private_Lean_Elab_Command_0__Lean_Elab_Command_runCore___spec__1___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___auto____x40_Lean_Elab_Command___hyg_472____closed__9; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Command_runLinters___spec__9___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_liftCommandElabM___spec__1(lean_object*); @@ -791,7 +791,7 @@ LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Command_l static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4987____closed__2; uint64_t lean_uint64_xor(uint64_t, uint64_t); LEAN_EXPORT lean_object* l_Lean_Elab_Command_getScopes___rarg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_instMonadCommandElabM___closed__1; static lean_object* l_Lean_Elab_Command_elabCommand___closed__6; static lean_object* l_Lean_addTraceAsMessages___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__3___lambda__1___closed__8; @@ -800,7 +800,6 @@ LEAN_EXPORT lean_object* l_panic___at_Lean_Elab_Command_modifyScope___spec__1(le lean_object* lean_panic_fn(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_getBracketedBinderIds___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommandUsing___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Command_instMonadEnvCommandElabM___lambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_instMonadEnvCommandElabM___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); @@ -929,7 +928,7 @@ static lean_object* l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed static lean_object* l___auto____x40_Lean_Elab_Command___hyg_472____closed__7; LEAN_EXPORT lean_object* l_Lean_Elab_getInfoTrees___at_Lean_Elab_Command_elabCommandTopLevel___spec__1___boxed(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_trace_profiler_output; static lean_object* l_Lean_Elab_Command_withoutCommandIncrementality___rarg___closed__2; static lean_object* l_Lean_Elab_Command_elabCommand___lambda__3___closed__5; @@ -939,6 +938,7 @@ static lean_object* l_Lean_Elab_Command_elabCommandTopLevel___lambda__1___closed lean_object* lean_array_get_size(lean_object*); static lean_object* l_Lean_Elab_Command_runTermElabM___rarg___lambda__2___closed__1; lean_object* l_Lean_Syntax_isNatLit_x3f(lean_object*); +static lean_object* l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__9; static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_647____closed__13; LEAN_EXPORT lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_mkInfoTree___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapM___at___private_Lean_Elab_Command_0__Lean_Elab_Command_runCore___spec__1(lean_object*, lean_object*); @@ -1008,7 +1008,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Command_instMonadResolveNameCommandElabM___ static lean_object* l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___at_Lean_Elab_Command_addUnivLevel___spec__1___closed__1; lean_object* lean_dbg_trace(lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofName(lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_liftCommandElabM___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_instMonadRecDepthCommandElabM___lambda__3(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_instMonadLogCommandElabM___lambda__6___closed__1; @@ -8532,69 +8532,36 @@ x_3 = l_Float_ofScientific(x_1, x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2___closed__2() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2___closed__1; +x_15 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_15, 0, x_1); +lean_ctor_set(x_15, 1, x_3); +lean_ctor_set_float(x_15, sizeof(void*)*2, x_14); +lean_ctor_set_float(x_15, sizeof(void*)*2 + 8, x_14); +lean_ctor_set_uint8(x_15, sizeof(void*)*2 + 16, x_2); +x_16 = lean_box(0); +x_17 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__1(x_4, x_5, x_10, x_6, x_15, x_16, x_11, x_12, x_13); +return x_17; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { -_start: +else { -double x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_15 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_16 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_16, 0, x_1); -lean_ctor_set(x_16, 1, x_3); -lean_ctor_set_float(x_16, sizeof(void*)*2, x_15); -lean_ctor_set_float(x_16, sizeof(void*)*2 + 8, x_15); -lean_ctor_set_uint8(x_16, sizeof(void*)*2 + 16, x_2); -x_17 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2___closed__2; -x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_17); -if (x_18 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_19; lean_object* x_20; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_3); +lean_ctor_set_float(x_18, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); x_19 = lean_box(0); -x_20 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__1(x_4, x_5, x_11, x_6, x_16, x_19, x_12, x_13, x_14); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__1(x_4, x_5, x_10, x_6, x_18, x_19, x_11, x_12, x_13); return x_20; } -else -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; -lean_dec(x_16); -x_21 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_21, 0, x_1); -lean_ctor_set(x_21, 1, x_3); -lean_ctor_set_float(x_21, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_21, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_21, sizeof(void*)*2 + 16, x_2); -x_22 = lean_box(0); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__1(x_4, x_5, x_11, x_6, x_21, x_22, x_12, x_13, x_14); -return x_23; -} -} -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -lean_dec(x_16); -x_24 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_24, 0, x_1); -lean_ctor_set(x_24, 1, x_3); -lean_ctor_set_float(x_24, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_24, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_24, sizeof(void*)*2 + 16, x_2); -x_25 = lean_box(0); -x_26 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__1(x_4, x_5, x_11, x_6, x_24, x_25, x_12, x_13, x_14); -return x_26; -} } } static lean_object* _init_l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3___closed__1() { @@ -8614,44 +8581,44 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_15 = l_Lean_Elab_Command_getRef(x_12, x_13, x_14); -x_16 = lean_ctor_get(x_15, 0); +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = l_Lean_Elab_Command_getRef(x_11, x_12, x_13); +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_14, 1); lean_inc(x_16); -x_17 = lean_ctor_get(x_15, 1); -lean_inc(x_17); -lean_dec(x_15); -lean_inc(x_13); +lean_dec(x_14); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_18 = lean_apply_4(x_10, x_5, x_12, x_13, x_17); -if (lean_obj_tag(x_18) == 0) +x_17 = lean_apply_4(x_9, x_5, x_11, x_12, x_16); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_20); -lean_dec(x_13); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2(x_1, x_2, x_3, x_4, x_15, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_19); +lean_dec(x_12); lean_dec(x_5); -return x_21; +return x_20; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_22); -lean_dec(x_13); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2(x_1, x_2, x_3, x_4, x_15, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_21); +lean_dec(x_12); lean_dec(x_5); -return x_24; +return x_23; } } } @@ -8715,251 +8682,251 @@ x_15 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda x_16 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_15); if (x_16 == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; -x_108 = lean_io_mono_nanos_now(x_14); -x_109 = lean_ctor_get(x_108, 0); -lean_inc(x_109); -x_110 = lean_ctor_get(x_108, 1); -lean_inc(x_110); -lean_dec(x_108); +lean_object* x_17; lean_object* x_18; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; +x_112 = lean_io_mono_nanos_now(x_14); +x_113 = lean_ctor_get(x_112, 0); +lean_inc(x_113); +x_114 = lean_ctor_get(x_112, 1); +lean_inc(x_114); +lean_dec(x_112); lean_inc(x_10); lean_inc(x_9); -x_111 = lean_apply_3(x_7, x_9, x_10, x_110); -if (lean_obj_tag(x_111) == 0) +x_115 = lean_apply_3(x_7, x_9, x_10, x_114); +if (lean_obj_tag(x_115) == 0) { -uint8_t x_112; -x_112 = !lean_is_exclusive(x_111); -if (x_112 == 0) +uint8_t x_116; +x_116 = !lean_is_exclusive(x_115); +if (x_116 == 0) { -lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; uint8_t x_117; -x_113 = lean_ctor_get(x_111, 0); -x_114 = lean_ctor_get(x_111, 1); -x_115 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_115, 0, x_113); -x_116 = lean_io_mono_nanos_now(x_114); -x_117 = !lean_is_exclusive(x_116); -if (x_117 == 0) +lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; uint8_t x_121; +x_117 = lean_ctor_get(x_115, 0); +x_118 = lean_ctor_get(x_115, 1); +x_119 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_119, 0, x_117); +x_120 = lean_io_mono_nanos_now(x_118); +x_121 = !lean_is_exclusive(x_120); +if (x_121 == 0) { -lean_object* x_118; lean_object* x_119; uint8_t x_120; lean_object* x_121; double x_122; double x_123; double x_124; double x_125; double x_126; lean_object* x_127; lean_object* x_128; -x_118 = lean_ctor_get(x_116, 0); -x_119 = lean_ctor_get(x_116, 1); -x_120 = 0; -x_121 = lean_unsigned_to_nat(0u); -x_122 = l_Float_ofScientific(x_109, x_120, x_121); -lean_dec(x_109); -x_123 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; -x_124 = lean_float_div(x_122, x_123); -x_125 = l_Float_ofScientific(x_118, x_120, x_121); -lean_dec(x_118); -x_126 = lean_float_div(x_125, x_123); -x_127 = lean_box_float(x_124); -x_128 = lean_box_float(x_126); -lean_ctor_set(x_116, 1, x_128); -lean_ctor_set(x_116, 0, x_127); -lean_ctor_set(x_111, 1, x_116); -lean_ctor_set(x_111, 0, x_115); -x_17 = x_111; -x_18 = x_119; -goto block_107; +lean_object* x_122; lean_object* x_123; uint8_t x_124; lean_object* x_125; double x_126; double x_127; double x_128; double x_129; double x_130; lean_object* x_131; lean_object* x_132; +x_122 = lean_ctor_get(x_120, 0); +x_123 = lean_ctor_get(x_120, 1); +x_124 = 0; +x_125 = lean_unsigned_to_nat(0u); +x_126 = l_Float_ofScientific(x_113, x_124, x_125); +lean_dec(x_113); +x_127 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; +x_128 = lean_float_div(x_126, x_127); +x_129 = l_Float_ofScientific(x_122, x_124, x_125); +lean_dec(x_122); +x_130 = lean_float_div(x_129, x_127); +x_131 = lean_box_float(x_128); +x_132 = lean_box_float(x_130); +lean_ctor_set(x_120, 1, x_132); +lean_ctor_set(x_120, 0, x_131); +lean_ctor_set(x_115, 1, x_120); +lean_ctor_set(x_115, 0, x_119); +x_17 = x_115; +x_18 = x_123; +goto block_111; } else { -lean_object* x_129; lean_object* x_130; uint8_t x_131; lean_object* x_132; double x_133; double x_134; double x_135; double x_136; double x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; -x_129 = lean_ctor_get(x_116, 0); -x_130 = lean_ctor_get(x_116, 1); -lean_inc(x_130); -lean_inc(x_129); -lean_dec(x_116); -x_131 = 0; -x_132 = lean_unsigned_to_nat(0u); -x_133 = l_Float_ofScientific(x_109, x_131, x_132); -lean_dec(x_109); -x_134 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; -x_135 = lean_float_div(x_133, x_134); -x_136 = l_Float_ofScientific(x_129, x_131, x_132); -lean_dec(x_129); -x_137 = lean_float_div(x_136, x_134); -x_138 = lean_box_float(x_135); -x_139 = lean_box_float(x_137); -x_140 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_140, 0, x_138); -lean_ctor_set(x_140, 1, x_139); -lean_ctor_set(x_111, 1, x_140); -lean_ctor_set(x_111, 0, x_115); -x_17 = x_111; -x_18 = x_130; -goto block_107; +lean_object* x_133; lean_object* x_134; uint8_t x_135; lean_object* x_136; double x_137; double x_138; double x_139; double x_140; double x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; +x_133 = lean_ctor_get(x_120, 0); +x_134 = lean_ctor_get(x_120, 1); +lean_inc(x_134); +lean_inc(x_133); +lean_dec(x_120); +x_135 = 0; +x_136 = lean_unsigned_to_nat(0u); +x_137 = l_Float_ofScientific(x_113, x_135, x_136); +lean_dec(x_113); +x_138 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; +x_139 = lean_float_div(x_137, x_138); +x_140 = l_Float_ofScientific(x_133, x_135, x_136); +lean_dec(x_133); +x_141 = lean_float_div(x_140, x_138); +x_142 = lean_box_float(x_139); +x_143 = lean_box_float(x_141); +x_144 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_144, 0, x_142); +lean_ctor_set(x_144, 1, x_143); +lean_ctor_set(x_115, 1, x_144); +lean_ctor_set(x_115, 0, x_119); +x_17 = x_115; +x_18 = x_134; +goto block_111; } } else { -lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; uint8_t x_148; lean_object* x_149; double x_150; double x_151; double x_152; double x_153; double x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; -x_141 = lean_ctor_get(x_111, 0); -x_142 = lean_ctor_get(x_111, 1); -lean_inc(x_142); -lean_inc(x_141); -lean_dec(x_111); -x_143 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_143, 0, x_141); -x_144 = lean_io_mono_nanos_now(x_142); -x_145 = lean_ctor_get(x_144, 0); -lean_inc(x_145); -x_146 = lean_ctor_get(x_144, 1); +lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; uint8_t x_152; lean_object* x_153; double x_154; double x_155; double x_156; double x_157; double x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; +x_145 = lean_ctor_get(x_115, 0); +x_146 = lean_ctor_get(x_115, 1); lean_inc(x_146); -if (lean_is_exclusive(x_144)) { - lean_ctor_release(x_144, 0); - lean_ctor_release(x_144, 1); - x_147 = x_144; +lean_inc(x_145); +lean_dec(x_115); +x_147 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_147, 0, x_145); +x_148 = lean_io_mono_nanos_now(x_146); +x_149 = lean_ctor_get(x_148, 0); +lean_inc(x_149); +x_150 = lean_ctor_get(x_148, 1); +lean_inc(x_150); +if (lean_is_exclusive(x_148)) { + lean_ctor_release(x_148, 0); + lean_ctor_release(x_148, 1); + x_151 = x_148; } else { - lean_dec_ref(x_144); - x_147 = lean_box(0); + lean_dec_ref(x_148); + x_151 = lean_box(0); } -x_148 = 0; -x_149 = lean_unsigned_to_nat(0u); -x_150 = l_Float_ofScientific(x_109, x_148, x_149); -lean_dec(x_109); -x_151 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; -x_152 = lean_float_div(x_150, x_151); -x_153 = l_Float_ofScientific(x_145, x_148, x_149); -lean_dec(x_145); -x_154 = lean_float_div(x_153, x_151); -x_155 = lean_box_float(x_152); -x_156 = lean_box_float(x_154); -if (lean_is_scalar(x_147)) { - x_157 = lean_alloc_ctor(0, 2, 0); +x_152 = 0; +x_153 = lean_unsigned_to_nat(0u); +x_154 = l_Float_ofScientific(x_113, x_152, x_153); +lean_dec(x_113); +x_155 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; +x_156 = lean_float_div(x_154, x_155); +x_157 = l_Float_ofScientific(x_149, x_152, x_153); +lean_dec(x_149); +x_158 = lean_float_div(x_157, x_155); +x_159 = lean_box_float(x_156); +x_160 = lean_box_float(x_158); +if (lean_is_scalar(x_151)) { + x_161 = lean_alloc_ctor(0, 2, 0); } else { - x_157 = x_147; + x_161 = x_151; } -lean_ctor_set(x_157, 0, x_155); -lean_ctor_set(x_157, 1, x_156); -x_158 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_158, 0, x_143); -lean_ctor_set(x_158, 1, x_157); -x_17 = x_158; -x_18 = x_146; -goto block_107; +lean_ctor_set(x_161, 0, x_159); +lean_ctor_set(x_161, 1, x_160); +x_162 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_162, 0, x_147); +lean_ctor_set(x_162, 1, x_161); +x_17 = x_162; +x_18 = x_150; +goto block_111; } } else { -uint8_t x_159; -x_159 = !lean_is_exclusive(x_111); -if (x_159 == 0) +uint8_t x_163; +x_163 = !lean_is_exclusive(x_115); +if (x_163 == 0) { -lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; uint8_t x_164; -x_160 = lean_ctor_get(x_111, 0); -x_161 = lean_ctor_get(x_111, 1); -x_162 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_162, 0, x_160); -x_163 = lean_io_mono_nanos_now(x_161); -x_164 = !lean_is_exclusive(x_163); -if (x_164 == 0) +lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; uint8_t x_168; +x_164 = lean_ctor_get(x_115, 0); +x_165 = lean_ctor_get(x_115, 1); +x_166 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_166, 0, x_164); +x_167 = lean_io_mono_nanos_now(x_165); +x_168 = !lean_is_exclusive(x_167); +if (x_168 == 0) { -lean_object* x_165; lean_object* x_166; uint8_t x_167; lean_object* x_168; double x_169; double x_170; double x_171; double x_172; double x_173; lean_object* x_174; lean_object* x_175; -x_165 = lean_ctor_get(x_163, 0); -x_166 = lean_ctor_get(x_163, 1); -x_167 = 0; -x_168 = lean_unsigned_to_nat(0u); -x_169 = l_Float_ofScientific(x_109, x_167, x_168); -lean_dec(x_109); -x_170 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; -x_171 = lean_float_div(x_169, x_170); -x_172 = l_Float_ofScientific(x_165, x_167, x_168); -lean_dec(x_165); -x_173 = lean_float_div(x_172, x_170); -x_174 = lean_box_float(x_171); -x_175 = lean_box_float(x_173); -lean_ctor_set(x_163, 1, x_175); -lean_ctor_set(x_163, 0, x_174); -lean_ctor_set_tag(x_111, 0); -lean_ctor_set(x_111, 1, x_163); -lean_ctor_set(x_111, 0, x_162); -x_17 = x_111; -x_18 = x_166; -goto block_107; +lean_object* x_169; lean_object* x_170; uint8_t x_171; lean_object* x_172; double x_173; double x_174; double x_175; double x_176; double x_177; lean_object* x_178; lean_object* x_179; +x_169 = lean_ctor_get(x_167, 0); +x_170 = lean_ctor_get(x_167, 1); +x_171 = 0; +x_172 = lean_unsigned_to_nat(0u); +x_173 = l_Float_ofScientific(x_113, x_171, x_172); +lean_dec(x_113); +x_174 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; +x_175 = lean_float_div(x_173, x_174); +x_176 = l_Float_ofScientific(x_169, x_171, x_172); +lean_dec(x_169); +x_177 = lean_float_div(x_176, x_174); +x_178 = lean_box_float(x_175); +x_179 = lean_box_float(x_177); +lean_ctor_set(x_167, 1, x_179); +lean_ctor_set(x_167, 0, x_178); +lean_ctor_set_tag(x_115, 0); +lean_ctor_set(x_115, 1, x_167); +lean_ctor_set(x_115, 0, x_166); +x_17 = x_115; +x_18 = x_170; +goto block_111; } else { -lean_object* x_176; lean_object* x_177; uint8_t x_178; lean_object* x_179; double x_180; double x_181; double x_182; double x_183; double x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; -x_176 = lean_ctor_get(x_163, 0); -x_177 = lean_ctor_get(x_163, 1); -lean_inc(x_177); -lean_inc(x_176); -lean_dec(x_163); -x_178 = 0; -x_179 = lean_unsigned_to_nat(0u); -x_180 = l_Float_ofScientific(x_109, x_178, x_179); -lean_dec(x_109); -x_181 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; -x_182 = lean_float_div(x_180, x_181); -x_183 = l_Float_ofScientific(x_176, x_178, x_179); -lean_dec(x_176); -x_184 = lean_float_div(x_183, x_181); -x_185 = lean_box_float(x_182); -x_186 = lean_box_float(x_184); -x_187 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_187, 0, x_185); -lean_ctor_set(x_187, 1, x_186); -lean_ctor_set_tag(x_111, 0); -lean_ctor_set(x_111, 1, x_187); -lean_ctor_set(x_111, 0, x_162); -x_17 = x_111; -x_18 = x_177; -goto block_107; +lean_object* x_180; lean_object* x_181; uint8_t x_182; lean_object* x_183; double x_184; double x_185; double x_186; double x_187; double x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; +x_180 = lean_ctor_get(x_167, 0); +x_181 = lean_ctor_get(x_167, 1); +lean_inc(x_181); +lean_inc(x_180); +lean_dec(x_167); +x_182 = 0; +x_183 = lean_unsigned_to_nat(0u); +x_184 = l_Float_ofScientific(x_113, x_182, x_183); +lean_dec(x_113); +x_185 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; +x_186 = lean_float_div(x_184, x_185); +x_187 = l_Float_ofScientific(x_180, x_182, x_183); +lean_dec(x_180); +x_188 = lean_float_div(x_187, x_185); +x_189 = lean_box_float(x_186); +x_190 = lean_box_float(x_188); +x_191 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_191, 0, x_189); +lean_ctor_set(x_191, 1, x_190); +lean_ctor_set_tag(x_115, 0); +lean_ctor_set(x_115, 1, x_191); +lean_ctor_set(x_115, 0, x_166); +x_17 = x_115; +x_18 = x_181; +goto block_111; } } else { -lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; uint8_t x_195; lean_object* x_196; double x_197; double x_198; double x_199; double x_200; double x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; -x_188 = lean_ctor_get(x_111, 0); -x_189 = lean_ctor_get(x_111, 1); -lean_inc(x_189); -lean_inc(x_188); -lean_dec(x_111); -x_190 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_190, 0, x_188); -x_191 = lean_io_mono_nanos_now(x_189); -x_192 = lean_ctor_get(x_191, 0); -lean_inc(x_192); -x_193 = lean_ctor_get(x_191, 1); +lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; uint8_t x_199; lean_object* x_200; double x_201; double x_202; double x_203; double x_204; double x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; +x_192 = lean_ctor_get(x_115, 0); +x_193 = lean_ctor_get(x_115, 1); lean_inc(x_193); -if (lean_is_exclusive(x_191)) { - lean_ctor_release(x_191, 0); - lean_ctor_release(x_191, 1); - x_194 = x_191; +lean_inc(x_192); +lean_dec(x_115); +x_194 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_194, 0, x_192); +x_195 = lean_io_mono_nanos_now(x_193); +x_196 = lean_ctor_get(x_195, 0); +lean_inc(x_196); +x_197 = lean_ctor_get(x_195, 1); +lean_inc(x_197); +if (lean_is_exclusive(x_195)) { + lean_ctor_release(x_195, 0); + lean_ctor_release(x_195, 1); + x_198 = x_195; } else { - lean_dec_ref(x_191); - x_194 = lean_box(0); + lean_dec_ref(x_195); + x_198 = lean_box(0); } -x_195 = 0; -x_196 = lean_unsigned_to_nat(0u); -x_197 = l_Float_ofScientific(x_109, x_195, x_196); -lean_dec(x_109); -x_198 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; -x_199 = lean_float_div(x_197, x_198); -x_200 = l_Float_ofScientific(x_192, x_195, x_196); -lean_dec(x_192); -x_201 = lean_float_div(x_200, x_198); -x_202 = lean_box_float(x_199); -x_203 = lean_box_float(x_201); -if (lean_is_scalar(x_194)) { - x_204 = lean_alloc_ctor(0, 2, 0); +x_199 = 0; +x_200 = lean_unsigned_to_nat(0u); +x_201 = l_Float_ofScientific(x_113, x_199, x_200); +lean_dec(x_113); +x_202 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; +x_203 = lean_float_div(x_201, x_202); +x_204 = l_Float_ofScientific(x_196, x_199, x_200); +lean_dec(x_196); +x_205 = lean_float_div(x_204, x_202); +x_206 = lean_box_float(x_203); +x_207 = lean_box_float(x_205); +if (lean_is_scalar(x_198)) { + x_208 = lean_alloc_ctor(0, 2, 0); } else { - x_204 = x_194; + x_208 = x_198; } -lean_ctor_set(x_204, 0, x_202); -lean_ctor_set(x_204, 1, x_203); -x_205 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_205, 0, x_190); -lean_ctor_set(x_205, 1, x_204); -x_17 = x_205; -x_18 = x_193; -goto block_107; +lean_ctor_set(x_208, 0, x_206); +lean_ctor_set(x_208, 1, x_207); +x_209 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_209, 0, x_194); +lean_ctor_set(x_209, 1, x_208); +x_17 = x_209; +x_18 = x_197; +goto block_111; } } -block_107: +block_111: { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_93; uint8_t x_94; +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; uint8_t x_25; x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); x_20 = lean_ctor_get(x_17, 0); @@ -8970,17 +8937,33 @@ lean_inc(x_21); x_22 = lean_ctor_get(x_19, 1); lean_inc(x_22); lean_dec(x_19); -x_93 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__2; -x_94 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_93); -if (x_94 == 0) +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__2; +x_24 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_23); +if (x_24 == 0) { -uint8_t x_95; -x_95 = 0; -x_23 = x_95; -goto block_92; +if (x_6 == 0) +{ +uint8_t x_91; +x_91 = 0; +x_25 = x_91; +goto block_90; } else { +lean_object* x_92; double x_93; double x_94; lean_object* x_95; +x_92 = lean_box(0); +x_93 = lean_unbox_float(x_21); +lean_dec(x_21); +x_94 = lean_unbox_float(x_22); +lean_dec(x_22); +x_95 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_93, x_94, x_5, x_92, x_9, x_10, x_18); +return x_95; +} +} +else +{ +if (x_6 == 0) +{ double x_96; double x_97; double x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; lean_object* x_102; double x_103; double x_104; double x_105; uint8_t x_106; x_96 = lean_unbox_float(x_22); x_97 = lean_unbox_float(x_21); @@ -8994,851 +8977,863 @@ lean_dec(x_100); x_104 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__4; x_105 = lean_float_div(x_103, x_104); x_106 = lean_float_decLt(x_105, x_98); -x_23 = x_106; -goto block_92; +x_25 = x_106; +goto block_90; } -block_92: +else { -if (x_6 == 0) +lean_object* x_107; double x_108; double x_109; lean_object* x_110; +x_107 = lean_box(0); +x_108 = lean_unbox_float(x_21); +lean_dec(x_21); +x_109 = lean_unbox_float(x_22); +lean_dec(x_22); +x_110 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_108, x_109, x_5, x_107, x_9, x_10, x_18); +return x_110; +} +} +block_90: { -if (x_23 == 0) +if (x_25 == 0) { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_dec(x_22); lean_dec(x_21); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_24 = lean_st_ref_take(x_10, x_18); -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -x_26 = lean_ctor_get(x_25, 7); -lean_inc(x_26); -x_27 = lean_ctor_get(x_24, 1); +x_26 = lean_st_ref_take(x_10, x_18); +x_27 = lean_ctor_get(x_26, 0); lean_inc(x_27); -lean_dec(x_24); -x_28 = !lean_is_exclusive(x_25); -if (x_28 == 0) -{ -lean_object* x_29; uint8_t x_30; -x_29 = lean_ctor_get(x_25, 7); -lean_dec(x_29); -x_30 = !lean_is_exclusive(x_26); +x_28 = lean_ctor_get(x_27, 7); +lean_inc(x_28); +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); +lean_dec(x_26); +x_30 = !lean_is_exclusive(x_27); if (x_30 == 0) { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_31 = lean_ctor_get(x_26, 0); -x_32 = l_Lean_PersistentArray_append___rarg(x_13, x_31); +lean_object* x_31; uint8_t x_32; +x_31 = lean_ctor_get(x_27, 7); lean_dec(x_31); -lean_ctor_set(x_26, 0, x_32); -x_33 = lean_st_ref_set(x_10, x_25, x_27); -x_34 = lean_ctor_get(x_33, 1); -lean_inc(x_34); +x_32 = !lean_is_exclusive(x_28); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_33 = lean_ctor_get(x_28, 0); +x_34 = l_Lean_PersistentArray_append___rarg(x_13, x_33); lean_dec(x_33); -x_35 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__8(x_20, x_9, x_10, x_34); +lean_ctor_set(x_28, 0, x_34); +x_35 = lean_st_ref_set(x_10, x_27, x_29); +x_36 = lean_ctor_get(x_35, 1); +lean_inc(x_36); +lean_dec(x_35); +x_37 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__8(x_20, x_9, x_10, x_36); lean_dec(x_10); lean_dec(x_9); lean_dec(x_20); -if (lean_obj_tag(x_35) == 0) +if (lean_obj_tag(x_37) == 0) { -uint8_t x_36; -x_36 = !lean_is_exclusive(x_35); -if (x_36 == 0) +uint8_t x_38; +x_38 = !lean_is_exclusive(x_37); +if (x_38 == 0) { -return x_35; +return x_37; } else { -lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_37 = lean_ctor_get(x_35, 0); -x_38 = lean_ctor_get(x_35, 1); -lean_inc(x_38); -lean_inc(x_37); -lean_dec(x_35); -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_37); -lean_ctor_set(x_39, 1, x_38); -return x_39; +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_37, 0); +x_40 = lean_ctor_get(x_37, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_37); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +return x_41; } } else { -uint8_t x_40; -x_40 = !lean_is_exclusive(x_35); -if (x_40 == 0) +uint8_t x_42; +x_42 = !lean_is_exclusive(x_37); +if (x_42 == 0) { -return x_35; +return x_37; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_35, 0); -x_42 = lean_ctor_get(x_35, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_35); -x_43 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_42); -return x_43; +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_37, 0); +x_44 = lean_ctor_get(x_37, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_37); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; } } } else { -uint64_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_44 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); -x_45 = lean_ctor_get(x_26, 0); -lean_inc(x_45); -lean_dec(x_26); -x_46 = l_Lean_PersistentArray_append___rarg(x_13, x_45); -lean_dec(x_45); -x_47 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_47, 0, x_46); -lean_ctor_set_uint64(x_47, sizeof(void*)*1, x_44); -lean_ctor_set(x_25, 7, x_47); -x_48 = lean_st_ref_set(x_10, x_25, x_27); -x_49 = lean_ctor_get(x_48, 1); -lean_inc(x_49); -lean_dec(x_48); -x_50 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__8(x_20, x_9, x_10, x_49); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_20); -if (lean_obj_tag(x_50) == 0) -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_51 = lean_ctor_get(x_50, 0); +uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); +x_47 = lean_ctor_get(x_28, 0); +lean_inc(x_47); +lean_dec(x_28); +x_48 = l_Lean_PersistentArray_append___rarg(x_13, x_47); +lean_dec(x_47); +x_49 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); +lean_ctor_set(x_27, 7, x_49); +x_50 = lean_st_ref_set(x_10, x_27, x_29); +x_51 = lean_ctor_get(x_50, 1); lean_inc(x_51); -x_52 = lean_ctor_get(x_50, 1); -lean_inc(x_52); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_53 = x_50; +lean_dec(x_50); +x_52 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__8(x_20, x_9, x_10, x_51); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_20); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_52, 1); +lean_inc(x_54); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_55 = x_52; } else { - lean_dec_ref(x_50); - x_53 = lean_box(0); + lean_dec_ref(x_52); + x_55 = lean_box(0); } -if (lean_is_scalar(x_53)) { - x_54 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_55)) { + x_56 = lean_alloc_ctor(0, 2, 0); } else { - x_54 = x_53; + x_56 = x_55; } -lean_ctor_set(x_54, 0, x_51); -lean_ctor_set(x_54, 1, x_52); -return x_54; +lean_ctor_set(x_56, 0, x_53); +lean_ctor_set(x_56, 1, x_54); +return x_56; } else { -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_55 = lean_ctor_get(x_50, 0); -lean_inc(x_55); -x_56 = lean_ctor_get(x_50, 1); -lean_inc(x_56); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_57 = x_50; +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_57 = lean_ctor_get(x_52, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_52, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_59 = x_52; } else { - lean_dec_ref(x_50); - x_57 = lean_box(0); + lean_dec_ref(x_52); + x_59 = lean_box(0); } -if (lean_is_scalar(x_57)) { - x_58 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(1, 2, 0); } else { - x_58 = x_57; + x_60 = x_59; } -lean_ctor_set(x_58, 0, x_55); -lean_ctor_set(x_58, 1, x_56); -return x_58; +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_58); +return x_60; } } } else { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; uint64_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_59 = lean_ctor_get(x_25, 0); -x_60 = lean_ctor_get(x_25, 1); -x_61 = lean_ctor_get(x_25, 2); -x_62 = lean_ctor_get(x_25, 3); -x_63 = lean_ctor_get(x_25, 4); -x_64 = lean_ctor_get(x_25, 5); -x_65 = lean_ctor_get(x_25, 6); -x_66 = lean_ctor_get(x_25, 8); +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; uint64_t x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_61 = lean_ctor_get(x_27, 0); +x_62 = lean_ctor_get(x_27, 1); +x_63 = lean_ctor_get(x_27, 2); +x_64 = lean_ctor_get(x_27, 3); +x_65 = lean_ctor_get(x_27, 4); +x_66 = lean_ctor_get(x_27, 5); +x_67 = lean_ctor_get(x_27, 6); +x_68 = lean_ctor_get(x_27, 8); +lean_inc(x_68); +lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); lean_inc(x_62); lean_inc(x_61); -lean_inc(x_60); -lean_inc(x_59); -lean_dec(x_25); -x_67 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); -x_68 = lean_ctor_get(x_26, 0); -lean_inc(x_68); -if (lean_is_exclusive(x_26)) { - lean_ctor_release(x_26, 0); - x_69 = x_26; +lean_dec(x_27); +x_69 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); +x_70 = lean_ctor_get(x_28, 0); +lean_inc(x_70); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + x_71 = x_28; } else { - lean_dec_ref(x_26); - x_69 = lean_box(0); + lean_dec_ref(x_28); + x_71 = lean_box(0); } -x_70 = l_Lean_PersistentArray_append___rarg(x_13, x_68); -lean_dec(x_68); -if (lean_is_scalar(x_69)) { - x_71 = lean_alloc_ctor(0, 1, 8); +x_72 = l_Lean_PersistentArray_append___rarg(x_13, x_70); +lean_dec(x_70); +if (lean_is_scalar(x_71)) { + x_73 = lean_alloc_ctor(0, 1, 8); } else { - x_71 = x_69; + x_73 = x_71; } -lean_ctor_set(x_71, 0, x_70); -lean_ctor_set_uint64(x_71, sizeof(void*)*1, x_67); -x_72 = lean_alloc_ctor(0, 9, 0); -lean_ctor_set(x_72, 0, x_59); -lean_ctor_set(x_72, 1, x_60); -lean_ctor_set(x_72, 2, x_61); -lean_ctor_set(x_72, 3, x_62); -lean_ctor_set(x_72, 4, x_63); -lean_ctor_set(x_72, 5, x_64); -lean_ctor_set(x_72, 6, x_65); -lean_ctor_set(x_72, 7, x_71); -lean_ctor_set(x_72, 8, x_66); -x_73 = lean_st_ref_set(x_10, x_72, x_27); -x_74 = lean_ctor_get(x_73, 1); -lean_inc(x_74); -lean_dec(x_73); -x_75 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__8(x_20, x_9, x_10, x_74); +lean_ctor_set(x_73, 0, x_72); +lean_ctor_set_uint64(x_73, sizeof(void*)*1, x_69); +x_74 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_74, 0, x_61); +lean_ctor_set(x_74, 1, x_62); +lean_ctor_set(x_74, 2, x_63); +lean_ctor_set(x_74, 3, x_64); +lean_ctor_set(x_74, 4, x_65); +lean_ctor_set(x_74, 5, x_66); +lean_ctor_set(x_74, 6, x_67); +lean_ctor_set(x_74, 7, x_73); +lean_ctor_set(x_74, 8, x_68); +x_75 = lean_st_ref_set(x_10, x_74, x_29); +x_76 = lean_ctor_get(x_75, 1); +lean_inc(x_76); +lean_dec(x_75); +x_77 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__8(x_20, x_9, x_10, x_76); lean_dec(x_10); lean_dec(x_9); lean_dec(x_20); -if (lean_obj_tag(x_75) == 0) +if (lean_obj_tag(x_77) == 0) { -lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_76 = lean_ctor_get(x_75, 0); -lean_inc(x_76); -x_77 = lean_ctor_get(x_75, 1); -lean_inc(x_77); -if (lean_is_exclusive(x_75)) { - lean_ctor_release(x_75, 0); - lean_ctor_release(x_75, 1); - x_78 = x_75; +lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_78 = lean_ctor_get(x_77, 0); +lean_inc(x_78); +x_79 = lean_ctor_get(x_77, 1); +lean_inc(x_79); +if (lean_is_exclusive(x_77)) { + lean_ctor_release(x_77, 0); + lean_ctor_release(x_77, 1); + x_80 = x_77; } else { - lean_dec_ref(x_75); - x_78 = lean_box(0); + lean_dec_ref(x_77); + x_80 = lean_box(0); } -if (lean_is_scalar(x_78)) { - x_79 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_80)) { + x_81 = lean_alloc_ctor(0, 2, 0); } else { - x_79 = x_78; + x_81 = x_80; } -lean_ctor_set(x_79, 0, x_76); -lean_ctor_set(x_79, 1, x_77); -return x_79; +lean_ctor_set(x_81, 0, x_78); +lean_ctor_set(x_81, 1, x_79); +return x_81; } else { -lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; -x_80 = lean_ctor_get(x_75, 0); -lean_inc(x_80); -x_81 = lean_ctor_get(x_75, 1); -lean_inc(x_81); -if (lean_is_exclusive(x_75)) { - lean_ctor_release(x_75, 0); - lean_ctor_release(x_75, 1); - x_82 = x_75; +lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; +x_82 = lean_ctor_get(x_77, 0); +lean_inc(x_82); +x_83 = lean_ctor_get(x_77, 1); +lean_inc(x_83); +if (lean_is_exclusive(x_77)) { + lean_ctor_release(x_77, 0); + lean_ctor_release(x_77, 1); + x_84 = x_77; } else { - lean_dec_ref(x_75); - x_82 = lean_box(0); + lean_dec_ref(x_77); + x_84 = lean_box(0); } -if (lean_is_scalar(x_82)) { - x_83 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_84)) { + x_85 = lean_alloc_ctor(1, 2, 0); } else { - x_83 = x_82; + x_85 = x_84; } -lean_ctor_set(x_83, 0, x_80); -lean_ctor_set(x_83, 1, x_81); -return x_83; +lean_ctor_set(x_85, 0, x_82); +lean_ctor_set(x_85, 1, x_83); +return x_85; } } } else { -lean_object* x_84; double x_85; double x_86; lean_object* x_87; -x_84 = lean_box(0); -x_85 = lean_unbox_float(x_21); +lean_object* x_86; double x_87; double x_88; lean_object* x_89; +x_86 = lean_box(0); +x_87 = lean_unbox_float(x_21); lean_dec(x_21); -x_86 = lean_unbox_float(x_22); +x_88 = lean_unbox_float(x_22); lean_dec(x_22); -x_87 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3(x_2, x_3, x_4, x_13, x_20, x_1, x_23, x_85, x_86, x_5, x_84, x_9, x_10, x_18); -return x_87; -} -} -else -{ -lean_object* x_88; double x_89; double x_90; lean_object* x_91; -x_88 = lean_box(0); -x_89 = lean_unbox_float(x_21); -lean_dec(x_21); -x_90 = lean_unbox_float(x_22); -lean_dec(x_22); -x_91 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3(x_2, x_3, x_4, x_13, x_20, x_1, x_23, x_89, x_90, x_5, x_88, x_9, x_10, x_18); -return x_91; +x_89 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_87, x_88, x_5, x_86, x_9, x_10, x_18); +return x_89; } } } } else { -lean_object* x_206; lean_object* x_207; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_14); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_210; lean_object* x_211; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_14); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_3(x_7, x_9, x_10, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_3(x_7, x_9, x_10, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_206 = x_298; -x_207 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_206 = x_298; -x_207 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_210 = x_306; +x_211 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_206 = x_336; -x_207 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_210 = x_306; +x_211 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_206 = x_298; -x_207 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_210 = x_344; +x_211 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_206 = x_298; -x_207 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_210 = x_306; +x_211 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_210 = x_306; +x_211 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_206 = x_374; -x_207 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; uint8_t x_212; lean_object* x_282; uint8_t x_283; -x_208 = lean_ctor_get(x_206, 1); -lean_inc(x_208); -x_209 = lean_ctor_get(x_206, 0); -lean_inc(x_209); -lean_dec(x_206); -x_210 = lean_ctor_get(x_208, 0); -lean_inc(x_210); -x_211 = lean_ctor_get(x_208, 1); -lean_inc(x_211); -lean_dec(x_208); -x_282 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_212 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_211); -x_286 = lean_unbox_float(x_210); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_212 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_210 = x_382; +x_211 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; uint8_t x_217; uint8_t x_218; +x_212 = lean_ctor_get(x_210, 1); +lean_inc(x_212); +x_213 = lean_ctor_get(x_210, 0); +lean_inc(x_213); +lean_dec(x_210); +x_214 = lean_ctor_get(x_212, 0); +lean_inc(x_214); +x_215 = lean_ctor_get(x_212, 1); +lean_inc(x_215); +lean_dec(x_212); +x_216 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__2; +x_217 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_216); +if (x_217 == 0) { if (x_6 == 0) { -if (x_212 == 0) +uint8_t x_284; +x_284 = 0; +x_218 = x_284; +goto block_283; +} +else { -lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; uint8_t x_217; -lean_dec(x_211); -lean_dec(x_210); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_214); +lean_dec(x_214); +x_287 = lean_unbox_float(x_215); +lean_dec(x_215); +x_288 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3(x_2, x_3, x_4, x_13, x_213, x_217, x_286, x_287, x_5, x_285, x_9, x_10, x_211); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_215); +x_290 = lean_unbox_float(x_214); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_218 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_214); +lean_dec(x_214); +x_300 = lean_unbox_float(x_215); +lean_dec(x_215); +x_301 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3(x_2, x_3, x_4, x_13, x_213, x_217, x_299, x_300, x_5, x_298, x_9, x_10, x_211); +return x_301; +} +} +block_283: +{ +if (x_218 == 0) +{ +lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; uint8_t x_223; +lean_dec(x_215); +lean_dec(x_214); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_213 = lean_st_ref_take(x_10, x_207); -x_214 = lean_ctor_get(x_213, 0); -lean_inc(x_214); -x_215 = lean_ctor_get(x_214, 7); -lean_inc(x_215); -x_216 = lean_ctor_get(x_213, 1); -lean_inc(x_216); -lean_dec(x_213); -x_217 = !lean_is_exclusive(x_214); -if (x_217 == 0) +x_219 = lean_st_ref_take(x_10, x_211); +x_220 = lean_ctor_get(x_219, 0); +lean_inc(x_220); +x_221 = lean_ctor_get(x_220, 7); +lean_inc(x_221); +x_222 = lean_ctor_get(x_219, 1); +lean_inc(x_222); +lean_dec(x_219); +x_223 = !lean_is_exclusive(x_220); +if (x_223 == 0) { -lean_object* x_218; uint8_t x_219; -x_218 = lean_ctor_get(x_214, 7); -lean_dec(x_218); -x_219 = !lean_is_exclusive(x_215); -if (x_219 == 0) -{ -lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; -x_220 = lean_ctor_get(x_215, 0); -x_221 = l_Lean_PersistentArray_append___rarg(x_13, x_220); -lean_dec(x_220); -lean_ctor_set(x_215, 0, x_221); -x_222 = lean_st_ref_set(x_10, x_214, x_216); -x_223 = lean_ctor_get(x_222, 1); -lean_inc(x_223); -lean_dec(x_222); -x_224 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__8(x_209, x_9, x_10, x_223); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_209); -if (lean_obj_tag(x_224) == 0) -{ -uint8_t x_225; -x_225 = !lean_is_exclusive(x_224); +lean_object* x_224; uint8_t x_225; +x_224 = lean_ctor_get(x_220, 7); +lean_dec(x_224); +x_225 = !lean_is_exclusive(x_221); if (x_225 == 0) { -return x_224; -} -else -{ -lean_object* x_226; lean_object* x_227; lean_object* x_228; -x_226 = lean_ctor_get(x_224, 0); -x_227 = lean_ctor_get(x_224, 1); -lean_inc(x_227); -lean_inc(x_226); -lean_dec(x_224); -x_228 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_228, 0, x_226); -lean_ctor_set(x_228, 1, x_227); -return x_228; -} -} -else -{ -uint8_t x_229; -x_229 = !lean_is_exclusive(x_224); -if (x_229 == 0) -{ -return x_224; -} -else -{ -lean_object* x_230; lean_object* x_231; lean_object* x_232; -x_230 = lean_ctor_get(x_224, 0); -x_231 = lean_ctor_get(x_224, 1); -lean_inc(x_231); -lean_inc(x_230); -lean_dec(x_224); -x_232 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_232, 0, x_230); -lean_ctor_set(x_232, 1, x_231); -return x_232; -} -} -} -else -{ -uint64_t x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; -x_233 = lean_ctor_get_uint64(x_215, sizeof(void*)*1); -x_234 = lean_ctor_get(x_215, 0); -lean_inc(x_234); -lean_dec(x_215); -x_235 = l_Lean_PersistentArray_append___rarg(x_13, x_234); -lean_dec(x_234); -x_236 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_236, 0, x_235); -lean_ctor_set_uint64(x_236, sizeof(void*)*1, x_233); -lean_ctor_set(x_214, 7, x_236); -x_237 = lean_st_ref_set(x_10, x_214, x_216); -x_238 = lean_ctor_get(x_237, 1); -lean_inc(x_238); -lean_dec(x_237); -x_239 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__8(x_209, x_9, x_10, x_238); +lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; +x_226 = lean_ctor_get(x_221, 0); +x_227 = l_Lean_PersistentArray_append___rarg(x_13, x_226); +lean_dec(x_226); +lean_ctor_set(x_221, 0, x_227); +x_228 = lean_st_ref_set(x_10, x_220, x_222); +x_229 = lean_ctor_get(x_228, 1); +lean_inc(x_229); +lean_dec(x_228); +x_230 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__8(x_213, x_9, x_10, x_229); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_209); -if (lean_obj_tag(x_239) == 0) +lean_dec(x_213); +if (lean_obj_tag(x_230) == 0) { -lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; -x_240 = lean_ctor_get(x_239, 0); +uint8_t x_231; +x_231 = !lean_is_exclusive(x_230); +if (x_231 == 0) +{ +return x_230; +} +else +{ +lean_object* x_232; lean_object* x_233; lean_object* x_234; +x_232 = lean_ctor_get(x_230, 0); +x_233 = lean_ctor_get(x_230, 1); +lean_inc(x_233); +lean_inc(x_232); +lean_dec(x_230); +x_234 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_234, 0, x_232); +lean_ctor_set(x_234, 1, x_233); +return x_234; +} +} +else +{ +uint8_t x_235; +x_235 = !lean_is_exclusive(x_230); +if (x_235 == 0) +{ +return x_230; +} +else +{ +lean_object* x_236; lean_object* x_237; lean_object* x_238; +x_236 = lean_ctor_get(x_230, 0); +x_237 = lean_ctor_get(x_230, 1); +lean_inc(x_237); +lean_inc(x_236); +lean_dec(x_230); +x_238 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_238, 0, x_236); +lean_ctor_set(x_238, 1, x_237); +return x_238; +} +} +} +else +{ +uint64_t x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; +x_239 = lean_ctor_get_uint64(x_221, sizeof(void*)*1); +x_240 = lean_ctor_get(x_221, 0); lean_inc(x_240); -x_241 = lean_ctor_get(x_239, 1); -lean_inc(x_241); -if (lean_is_exclusive(x_239)) { - lean_ctor_release(x_239, 0); - lean_ctor_release(x_239, 1); - x_242 = x_239; -} else { - lean_dec_ref(x_239); - x_242 = lean_box(0); -} -if (lean_is_scalar(x_242)) { - x_243 = lean_alloc_ctor(0, 2, 0); -} else { - x_243 = x_242; -} -lean_ctor_set(x_243, 0, x_240); -lean_ctor_set(x_243, 1, x_241); -return x_243; -} -else -{ -lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; -x_244 = lean_ctor_get(x_239, 0); +lean_dec(x_221); +x_241 = l_Lean_PersistentArray_append___rarg(x_13, x_240); +lean_dec(x_240); +x_242 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_242, 0, x_241); +lean_ctor_set_uint64(x_242, sizeof(void*)*1, x_239); +lean_ctor_set(x_220, 7, x_242); +x_243 = lean_st_ref_set(x_10, x_220, x_222); +x_244 = lean_ctor_get(x_243, 1); lean_inc(x_244); -x_245 = lean_ctor_get(x_239, 1); -lean_inc(x_245); -if (lean_is_exclusive(x_239)) { - lean_ctor_release(x_239, 0); - lean_ctor_release(x_239, 1); - x_246 = x_239; +lean_dec(x_243); +x_245 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__8(x_213, x_9, x_10, x_244); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_213); +if (lean_obj_tag(x_245) == 0) +{ +lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; +x_246 = lean_ctor_get(x_245, 0); +lean_inc(x_246); +x_247 = lean_ctor_get(x_245, 1); +lean_inc(x_247); +if (lean_is_exclusive(x_245)) { + lean_ctor_release(x_245, 0); + lean_ctor_release(x_245, 1); + x_248 = x_245; } else { - lean_dec_ref(x_239); - x_246 = lean_box(0); + lean_dec_ref(x_245); + x_248 = lean_box(0); } -if (lean_is_scalar(x_246)) { - x_247 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_248)) { + x_249 = lean_alloc_ctor(0, 2, 0); } else { - x_247 = x_246; + x_249 = x_248; } -lean_ctor_set(x_247, 0, x_244); -lean_ctor_set(x_247, 1, x_245); -return x_247; +lean_ctor_set(x_249, 0, x_246); +lean_ctor_set(x_249, 1, x_247); +return x_249; +} +else +{ +lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; +x_250 = lean_ctor_get(x_245, 0); +lean_inc(x_250); +x_251 = lean_ctor_get(x_245, 1); +lean_inc(x_251); +if (lean_is_exclusive(x_245)) { + lean_ctor_release(x_245, 0); + lean_ctor_release(x_245, 1); + x_252 = x_245; +} else { + lean_dec_ref(x_245); + x_252 = lean_box(0); +} +if (lean_is_scalar(x_252)) { + x_253 = lean_alloc_ctor(1, 2, 0); +} else { + x_253 = x_252; +} +lean_ctor_set(x_253, 0, x_250); +lean_ctor_set(x_253, 1, x_251); +return x_253; } } } else { -lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_248 = lean_ctor_get(x_214, 0); -x_249 = lean_ctor_get(x_214, 1); -x_250 = lean_ctor_get(x_214, 2); -x_251 = lean_ctor_get(x_214, 3); -x_252 = lean_ctor_get(x_214, 4); -x_253 = lean_ctor_get(x_214, 5); -x_254 = lean_ctor_get(x_214, 6); -x_255 = lean_ctor_get(x_214, 8); +lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_254 = lean_ctor_get(x_220, 0); +x_255 = lean_ctor_get(x_220, 1); +x_256 = lean_ctor_get(x_220, 2); +x_257 = lean_ctor_get(x_220, 3); +x_258 = lean_ctor_get(x_220, 4); +x_259 = lean_ctor_get(x_220, 5); +x_260 = lean_ctor_get(x_220, 6); +x_261 = lean_ctor_get(x_220, 8); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); lean_inc(x_255); lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_inc(x_248); -lean_dec(x_214); -x_256 = lean_ctor_get_uint64(x_215, sizeof(void*)*1); -x_257 = lean_ctor_get(x_215, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_215)) { - lean_ctor_release(x_215, 0); - x_258 = x_215; -} else { - lean_dec_ref(x_215); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_13, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 9, 0); -lean_ctor_set(x_261, 0, x_248); -lean_ctor_set(x_261, 1, x_249); -lean_ctor_set(x_261, 2, x_250); -lean_ctor_set(x_261, 3, x_251); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_260); -lean_ctor_set(x_261, 8, x_255); -x_262 = lean_st_ref_set(x_10, x_261, x_216); -x_263 = lean_ctor_get(x_262, 1); +lean_dec(x_220); +x_262 = lean_ctor_get_uint64(x_221, sizeof(void*)*1); +x_263 = lean_ctor_get(x_221, 0); lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__8(x_209, x_9, x_10, x_263); +if (lean_is_exclusive(x_221)) { + lean_ctor_release(x_221, 0); + x_264 = x_221; +} else { + lean_dec_ref(x_221); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_13, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_267, 0, x_254); +lean_ctor_set(x_267, 1, x_255); +lean_ctor_set(x_267, 2, x_256); +lean_ctor_set(x_267, 3, x_257); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_266); +lean_ctor_set(x_267, 8, x_261); +x_268 = lean_st_ref_set(x_10, x_267, x_222); +x_269 = lean_ctor_get(x_268, 1); +lean_inc(x_269); +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__8(x_213, x_9, x_10, x_269); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_209); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_213); +if (lean_obj_tag(x_270) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_274 = x_273; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); -lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_277 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); } else { - x_272 = x_271; + x_278 = x_277; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_210); -lean_dec(x_210); -x_275 = lean_unbox_float(x_211); -lean_dec(x_211); -x_276 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3(x_2, x_3, x_4, x_13, x_209, x_1, x_212, x_274, x_275, x_5, x_273, x_9, x_10, x_207); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_210); -lean_dec(x_210); -x_279 = lean_unbox_float(x_211); -lean_dec(x_211); -x_280 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3(x_2, x_3, x_4, x_13, x_209, x_1, x_212, x_278, x_279, x_5, x_277, x_9, x_10, x_207); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_214); +lean_dec(x_214); +x_281 = lean_unbox_float(x_215); +lean_dec(x_215); +x_282 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3(x_2, x_3, x_4, x_13, x_213, x_217, x_280, x_281, x_5, x_279, x_9, x_10, x_211); +return x_282; } } } @@ -11711,103 +11706,78 @@ lean_dec(x_7); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -double x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_15 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_16 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_16, 0, x_1); -lean_ctor_set(x_16, 1, x_3); -lean_ctor_set_float(x_16, sizeof(void*)*2, x_15); -lean_ctor_set_float(x_16, sizeof(void*)*2 + 8, x_15); -lean_ctor_set_uint8(x_16, sizeof(void*)*2 + 16, x_2); -x_17 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2___closed__2; -x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_17); -if (x_18 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2___closed__1; +x_15 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_15, 0, x_1); +lean_ctor_set(x_15, 1, x_3); +lean_ctor_set_float(x_15, sizeof(void*)*2, x_14); +lean_ctor_set_float(x_15, sizeof(void*)*2 + 8, x_14); +lean_ctor_set_uint8(x_15, sizeof(void*)*2 + 16, x_2); +x_16 = lean_box(0); +x_17 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__1(x_4, x_5, x_10, x_6, x_15, x_16, x_11, x_12, x_13); +return x_17; +} +else { -lean_object* x_19; lean_object* x_20; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_3); +lean_ctor_set_float(x_18, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); x_19 = lean_box(0); -x_20 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__1(x_4, x_5, x_11, x_6, x_16, x_19, x_12, x_13, x_14); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__1(x_4, x_5, x_10, x_6, x_18, x_19, x_11, x_12, x_13); +return x_20; +} +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = l_Lean_Elab_Command_getRef(x_11, x_12, x_13); +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_dec(x_14); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_5); +x_17 = lean_apply_4(x_9, x_5, x_11, x_12, x_16); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); +lean_inc(x_19); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__2(x_1, x_2, x_3, x_4, x_15, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_19); +lean_dec(x_12); +lean_dec(x_5); return x_20; } else { lean_object* x_21; lean_object* x_22; lean_object* x_23; -lean_dec(x_16); -x_21 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_21, 0, x_1); -lean_ctor_set(x_21, 1, x_3); -lean_ctor_set_float(x_21, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_21, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_21, sizeof(void*)*2 + 16, x_2); -x_22 = lean_box(0); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__1(x_4, x_5, x_11, x_6, x_21, x_22, x_12, x_13, x_14); +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__2(x_1, x_2, x_3, x_4, x_15, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_21); +lean_dec(x_12); +lean_dec(x_5); return x_23; } } -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -lean_dec(x_16); -x_24 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_24, 0, x_1); -lean_ctor_set(x_24, 1, x_3); -lean_ctor_set_float(x_24, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_24, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_24, sizeof(void*)*2 + 16, x_2); -x_25 = lean_box(0); -x_26 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__1(x_4, x_5, x_11, x_6, x_24, x_25, x_12, x_13, x_14); -return x_26; -} -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { -_start: -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_15 = l_Lean_Elab_Command_getRef(x_12, x_13, x_14); -x_16 = lean_ctor_get(x_15, 0); -lean_inc(x_16); -x_17 = lean_ctor_get(x_15, 1); -lean_inc(x_17); -lean_dec(x_15); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_5); -x_18 = lean_apply_4(x_10, x_5, x_12, x_13, x_17); -if (lean_obj_tag(x_18) == 0) -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); -lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_20); -lean_dec(x_13); -lean_dec(x_5); -return x_21; -} -else -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_22); -lean_dec(x_13); -lean_dec(x_5); -return x_24; -} -} } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__4(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: @@ -11823,251 +11793,251 @@ x_15 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda x_16 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_15); if (x_16 == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; -x_108 = lean_io_mono_nanos_now(x_14); -x_109 = lean_ctor_get(x_108, 0); -lean_inc(x_109); -x_110 = lean_ctor_get(x_108, 1); -lean_inc(x_110); -lean_dec(x_108); +lean_object* x_17; lean_object* x_18; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; +x_112 = lean_io_mono_nanos_now(x_14); +x_113 = lean_ctor_get(x_112, 0); +lean_inc(x_113); +x_114 = lean_ctor_get(x_112, 1); +lean_inc(x_114); +lean_dec(x_112); lean_inc(x_10); lean_inc(x_9); -x_111 = lean_apply_3(x_7, x_9, x_10, x_110); -if (lean_obj_tag(x_111) == 0) +x_115 = lean_apply_3(x_7, x_9, x_10, x_114); +if (lean_obj_tag(x_115) == 0) { -uint8_t x_112; -x_112 = !lean_is_exclusive(x_111); -if (x_112 == 0) +uint8_t x_116; +x_116 = !lean_is_exclusive(x_115); +if (x_116 == 0) { -lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; uint8_t x_117; -x_113 = lean_ctor_get(x_111, 0); -x_114 = lean_ctor_get(x_111, 1); -x_115 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_115, 0, x_113); -x_116 = lean_io_mono_nanos_now(x_114); -x_117 = !lean_is_exclusive(x_116); -if (x_117 == 0) +lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; uint8_t x_121; +x_117 = lean_ctor_get(x_115, 0); +x_118 = lean_ctor_get(x_115, 1); +x_119 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_119, 0, x_117); +x_120 = lean_io_mono_nanos_now(x_118); +x_121 = !lean_is_exclusive(x_120); +if (x_121 == 0) { -lean_object* x_118; lean_object* x_119; uint8_t x_120; lean_object* x_121; double x_122; double x_123; double x_124; double x_125; double x_126; lean_object* x_127; lean_object* x_128; -x_118 = lean_ctor_get(x_116, 0); -x_119 = lean_ctor_get(x_116, 1); -x_120 = 0; -x_121 = lean_unsigned_to_nat(0u); -x_122 = l_Float_ofScientific(x_109, x_120, x_121); -lean_dec(x_109); -x_123 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; -x_124 = lean_float_div(x_122, x_123); -x_125 = l_Float_ofScientific(x_118, x_120, x_121); -lean_dec(x_118); -x_126 = lean_float_div(x_125, x_123); -x_127 = lean_box_float(x_124); -x_128 = lean_box_float(x_126); -lean_ctor_set(x_116, 1, x_128); -lean_ctor_set(x_116, 0, x_127); -lean_ctor_set(x_111, 1, x_116); -lean_ctor_set(x_111, 0, x_115); -x_17 = x_111; -x_18 = x_119; -goto block_107; +lean_object* x_122; lean_object* x_123; uint8_t x_124; lean_object* x_125; double x_126; double x_127; double x_128; double x_129; double x_130; lean_object* x_131; lean_object* x_132; +x_122 = lean_ctor_get(x_120, 0); +x_123 = lean_ctor_get(x_120, 1); +x_124 = 0; +x_125 = lean_unsigned_to_nat(0u); +x_126 = l_Float_ofScientific(x_113, x_124, x_125); +lean_dec(x_113); +x_127 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; +x_128 = lean_float_div(x_126, x_127); +x_129 = l_Float_ofScientific(x_122, x_124, x_125); +lean_dec(x_122); +x_130 = lean_float_div(x_129, x_127); +x_131 = lean_box_float(x_128); +x_132 = lean_box_float(x_130); +lean_ctor_set(x_120, 1, x_132); +lean_ctor_set(x_120, 0, x_131); +lean_ctor_set(x_115, 1, x_120); +lean_ctor_set(x_115, 0, x_119); +x_17 = x_115; +x_18 = x_123; +goto block_111; } else { -lean_object* x_129; lean_object* x_130; uint8_t x_131; lean_object* x_132; double x_133; double x_134; double x_135; double x_136; double x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; -x_129 = lean_ctor_get(x_116, 0); -x_130 = lean_ctor_get(x_116, 1); -lean_inc(x_130); -lean_inc(x_129); -lean_dec(x_116); -x_131 = 0; -x_132 = lean_unsigned_to_nat(0u); -x_133 = l_Float_ofScientific(x_109, x_131, x_132); -lean_dec(x_109); -x_134 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; -x_135 = lean_float_div(x_133, x_134); -x_136 = l_Float_ofScientific(x_129, x_131, x_132); -lean_dec(x_129); -x_137 = lean_float_div(x_136, x_134); -x_138 = lean_box_float(x_135); -x_139 = lean_box_float(x_137); -x_140 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_140, 0, x_138); -lean_ctor_set(x_140, 1, x_139); -lean_ctor_set(x_111, 1, x_140); -lean_ctor_set(x_111, 0, x_115); -x_17 = x_111; -x_18 = x_130; -goto block_107; +lean_object* x_133; lean_object* x_134; uint8_t x_135; lean_object* x_136; double x_137; double x_138; double x_139; double x_140; double x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; +x_133 = lean_ctor_get(x_120, 0); +x_134 = lean_ctor_get(x_120, 1); +lean_inc(x_134); +lean_inc(x_133); +lean_dec(x_120); +x_135 = 0; +x_136 = lean_unsigned_to_nat(0u); +x_137 = l_Float_ofScientific(x_113, x_135, x_136); +lean_dec(x_113); +x_138 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; +x_139 = lean_float_div(x_137, x_138); +x_140 = l_Float_ofScientific(x_133, x_135, x_136); +lean_dec(x_133); +x_141 = lean_float_div(x_140, x_138); +x_142 = lean_box_float(x_139); +x_143 = lean_box_float(x_141); +x_144 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_144, 0, x_142); +lean_ctor_set(x_144, 1, x_143); +lean_ctor_set(x_115, 1, x_144); +lean_ctor_set(x_115, 0, x_119); +x_17 = x_115; +x_18 = x_134; +goto block_111; } } else { -lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; uint8_t x_148; lean_object* x_149; double x_150; double x_151; double x_152; double x_153; double x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; -x_141 = lean_ctor_get(x_111, 0); -x_142 = lean_ctor_get(x_111, 1); -lean_inc(x_142); -lean_inc(x_141); -lean_dec(x_111); -x_143 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_143, 0, x_141); -x_144 = lean_io_mono_nanos_now(x_142); -x_145 = lean_ctor_get(x_144, 0); -lean_inc(x_145); -x_146 = lean_ctor_get(x_144, 1); +lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; uint8_t x_152; lean_object* x_153; double x_154; double x_155; double x_156; double x_157; double x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; +x_145 = lean_ctor_get(x_115, 0); +x_146 = lean_ctor_get(x_115, 1); lean_inc(x_146); -if (lean_is_exclusive(x_144)) { - lean_ctor_release(x_144, 0); - lean_ctor_release(x_144, 1); - x_147 = x_144; +lean_inc(x_145); +lean_dec(x_115); +x_147 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_147, 0, x_145); +x_148 = lean_io_mono_nanos_now(x_146); +x_149 = lean_ctor_get(x_148, 0); +lean_inc(x_149); +x_150 = lean_ctor_get(x_148, 1); +lean_inc(x_150); +if (lean_is_exclusive(x_148)) { + lean_ctor_release(x_148, 0); + lean_ctor_release(x_148, 1); + x_151 = x_148; } else { - lean_dec_ref(x_144); - x_147 = lean_box(0); + lean_dec_ref(x_148); + x_151 = lean_box(0); } -x_148 = 0; -x_149 = lean_unsigned_to_nat(0u); -x_150 = l_Float_ofScientific(x_109, x_148, x_149); -lean_dec(x_109); -x_151 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; -x_152 = lean_float_div(x_150, x_151); -x_153 = l_Float_ofScientific(x_145, x_148, x_149); -lean_dec(x_145); -x_154 = lean_float_div(x_153, x_151); -x_155 = lean_box_float(x_152); -x_156 = lean_box_float(x_154); -if (lean_is_scalar(x_147)) { - x_157 = lean_alloc_ctor(0, 2, 0); +x_152 = 0; +x_153 = lean_unsigned_to_nat(0u); +x_154 = l_Float_ofScientific(x_113, x_152, x_153); +lean_dec(x_113); +x_155 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; +x_156 = lean_float_div(x_154, x_155); +x_157 = l_Float_ofScientific(x_149, x_152, x_153); +lean_dec(x_149); +x_158 = lean_float_div(x_157, x_155); +x_159 = lean_box_float(x_156); +x_160 = lean_box_float(x_158); +if (lean_is_scalar(x_151)) { + x_161 = lean_alloc_ctor(0, 2, 0); } else { - x_157 = x_147; + x_161 = x_151; } -lean_ctor_set(x_157, 0, x_155); -lean_ctor_set(x_157, 1, x_156); -x_158 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_158, 0, x_143); -lean_ctor_set(x_158, 1, x_157); -x_17 = x_158; -x_18 = x_146; -goto block_107; +lean_ctor_set(x_161, 0, x_159); +lean_ctor_set(x_161, 1, x_160); +x_162 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_162, 0, x_147); +lean_ctor_set(x_162, 1, x_161); +x_17 = x_162; +x_18 = x_150; +goto block_111; } } else { -uint8_t x_159; -x_159 = !lean_is_exclusive(x_111); -if (x_159 == 0) +uint8_t x_163; +x_163 = !lean_is_exclusive(x_115); +if (x_163 == 0) { -lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; uint8_t x_164; -x_160 = lean_ctor_get(x_111, 0); -x_161 = lean_ctor_get(x_111, 1); -x_162 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_162, 0, x_160); -x_163 = lean_io_mono_nanos_now(x_161); -x_164 = !lean_is_exclusive(x_163); -if (x_164 == 0) +lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; uint8_t x_168; +x_164 = lean_ctor_get(x_115, 0); +x_165 = lean_ctor_get(x_115, 1); +x_166 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_166, 0, x_164); +x_167 = lean_io_mono_nanos_now(x_165); +x_168 = !lean_is_exclusive(x_167); +if (x_168 == 0) { -lean_object* x_165; lean_object* x_166; uint8_t x_167; lean_object* x_168; double x_169; double x_170; double x_171; double x_172; double x_173; lean_object* x_174; lean_object* x_175; -x_165 = lean_ctor_get(x_163, 0); -x_166 = lean_ctor_get(x_163, 1); -x_167 = 0; -x_168 = lean_unsigned_to_nat(0u); -x_169 = l_Float_ofScientific(x_109, x_167, x_168); -lean_dec(x_109); -x_170 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; -x_171 = lean_float_div(x_169, x_170); -x_172 = l_Float_ofScientific(x_165, x_167, x_168); -lean_dec(x_165); -x_173 = lean_float_div(x_172, x_170); -x_174 = lean_box_float(x_171); -x_175 = lean_box_float(x_173); -lean_ctor_set(x_163, 1, x_175); -lean_ctor_set(x_163, 0, x_174); -lean_ctor_set_tag(x_111, 0); -lean_ctor_set(x_111, 1, x_163); -lean_ctor_set(x_111, 0, x_162); -x_17 = x_111; -x_18 = x_166; -goto block_107; +lean_object* x_169; lean_object* x_170; uint8_t x_171; lean_object* x_172; double x_173; double x_174; double x_175; double x_176; double x_177; lean_object* x_178; lean_object* x_179; +x_169 = lean_ctor_get(x_167, 0); +x_170 = lean_ctor_get(x_167, 1); +x_171 = 0; +x_172 = lean_unsigned_to_nat(0u); +x_173 = l_Float_ofScientific(x_113, x_171, x_172); +lean_dec(x_113); +x_174 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; +x_175 = lean_float_div(x_173, x_174); +x_176 = l_Float_ofScientific(x_169, x_171, x_172); +lean_dec(x_169); +x_177 = lean_float_div(x_176, x_174); +x_178 = lean_box_float(x_175); +x_179 = lean_box_float(x_177); +lean_ctor_set(x_167, 1, x_179); +lean_ctor_set(x_167, 0, x_178); +lean_ctor_set_tag(x_115, 0); +lean_ctor_set(x_115, 1, x_167); +lean_ctor_set(x_115, 0, x_166); +x_17 = x_115; +x_18 = x_170; +goto block_111; } else { -lean_object* x_176; lean_object* x_177; uint8_t x_178; lean_object* x_179; double x_180; double x_181; double x_182; double x_183; double x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; -x_176 = lean_ctor_get(x_163, 0); -x_177 = lean_ctor_get(x_163, 1); -lean_inc(x_177); -lean_inc(x_176); -lean_dec(x_163); -x_178 = 0; -x_179 = lean_unsigned_to_nat(0u); -x_180 = l_Float_ofScientific(x_109, x_178, x_179); -lean_dec(x_109); -x_181 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; -x_182 = lean_float_div(x_180, x_181); -x_183 = l_Float_ofScientific(x_176, x_178, x_179); -lean_dec(x_176); -x_184 = lean_float_div(x_183, x_181); -x_185 = lean_box_float(x_182); -x_186 = lean_box_float(x_184); -x_187 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_187, 0, x_185); -lean_ctor_set(x_187, 1, x_186); -lean_ctor_set_tag(x_111, 0); -lean_ctor_set(x_111, 1, x_187); -lean_ctor_set(x_111, 0, x_162); -x_17 = x_111; -x_18 = x_177; -goto block_107; +lean_object* x_180; lean_object* x_181; uint8_t x_182; lean_object* x_183; double x_184; double x_185; double x_186; double x_187; double x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; +x_180 = lean_ctor_get(x_167, 0); +x_181 = lean_ctor_get(x_167, 1); +lean_inc(x_181); +lean_inc(x_180); +lean_dec(x_167); +x_182 = 0; +x_183 = lean_unsigned_to_nat(0u); +x_184 = l_Float_ofScientific(x_113, x_182, x_183); +lean_dec(x_113); +x_185 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; +x_186 = lean_float_div(x_184, x_185); +x_187 = l_Float_ofScientific(x_180, x_182, x_183); +lean_dec(x_180); +x_188 = lean_float_div(x_187, x_185); +x_189 = lean_box_float(x_186); +x_190 = lean_box_float(x_188); +x_191 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_191, 0, x_189); +lean_ctor_set(x_191, 1, x_190); +lean_ctor_set_tag(x_115, 0); +lean_ctor_set(x_115, 1, x_191); +lean_ctor_set(x_115, 0, x_166); +x_17 = x_115; +x_18 = x_181; +goto block_111; } } else { -lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; uint8_t x_195; lean_object* x_196; double x_197; double x_198; double x_199; double x_200; double x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; -x_188 = lean_ctor_get(x_111, 0); -x_189 = lean_ctor_get(x_111, 1); -lean_inc(x_189); -lean_inc(x_188); -lean_dec(x_111); -x_190 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_190, 0, x_188); -x_191 = lean_io_mono_nanos_now(x_189); -x_192 = lean_ctor_get(x_191, 0); -lean_inc(x_192); -x_193 = lean_ctor_get(x_191, 1); +lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; uint8_t x_199; lean_object* x_200; double x_201; double x_202; double x_203; double x_204; double x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; +x_192 = lean_ctor_get(x_115, 0); +x_193 = lean_ctor_get(x_115, 1); lean_inc(x_193); -if (lean_is_exclusive(x_191)) { - lean_ctor_release(x_191, 0); - lean_ctor_release(x_191, 1); - x_194 = x_191; +lean_inc(x_192); +lean_dec(x_115); +x_194 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_194, 0, x_192); +x_195 = lean_io_mono_nanos_now(x_193); +x_196 = lean_ctor_get(x_195, 0); +lean_inc(x_196); +x_197 = lean_ctor_get(x_195, 1); +lean_inc(x_197); +if (lean_is_exclusive(x_195)) { + lean_ctor_release(x_195, 0); + lean_ctor_release(x_195, 1); + x_198 = x_195; } else { - lean_dec_ref(x_191); - x_194 = lean_box(0); + lean_dec_ref(x_195); + x_198 = lean_box(0); } -x_195 = 0; -x_196 = lean_unsigned_to_nat(0u); -x_197 = l_Float_ofScientific(x_109, x_195, x_196); -lean_dec(x_109); -x_198 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; -x_199 = lean_float_div(x_197, x_198); -x_200 = l_Float_ofScientific(x_192, x_195, x_196); -lean_dec(x_192); -x_201 = lean_float_div(x_200, x_198); -x_202 = lean_box_float(x_199); -x_203 = lean_box_float(x_201); -if (lean_is_scalar(x_194)) { - x_204 = lean_alloc_ctor(0, 2, 0); +x_199 = 0; +x_200 = lean_unsigned_to_nat(0u); +x_201 = l_Float_ofScientific(x_113, x_199, x_200); +lean_dec(x_113); +x_202 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; +x_203 = lean_float_div(x_201, x_202); +x_204 = l_Float_ofScientific(x_196, x_199, x_200); +lean_dec(x_196); +x_205 = lean_float_div(x_204, x_202); +x_206 = lean_box_float(x_203); +x_207 = lean_box_float(x_205); +if (lean_is_scalar(x_198)) { + x_208 = lean_alloc_ctor(0, 2, 0); } else { - x_204 = x_194; + x_208 = x_198; } -lean_ctor_set(x_204, 0, x_202); -lean_ctor_set(x_204, 1, x_203); -x_205 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_205, 0, x_190); -lean_ctor_set(x_205, 1, x_204); -x_17 = x_205; -x_18 = x_193; -goto block_107; +lean_ctor_set(x_208, 0, x_206); +lean_ctor_set(x_208, 1, x_207); +x_209 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_209, 0, x_194); +lean_ctor_set(x_209, 1, x_208); +x_17 = x_209; +x_18 = x_197; +goto block_111; } } -block_107: +block_111: { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_93; uint8_t x_94; +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; uint8_t x_25; x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); x_20 = lean_ctor_get(x_17, 0); @@ -12078,17 +12048,33 @@ lean_inc(x_21); x_22 = lean_ctor_get(x_19, 1); lean_inc(x_22); lean_dec(x_19); -x_93 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__2; -x_94 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_93); -if (x_94 == 0) +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__2; +x_24 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_23); +if (x_24 == 0) { -uint8_t x_95; -x_95 = 0; -x_23 = x_95; -goto block_92; +if (x_6 == 0) +{ +uint8_t x_91; +x_91 = 0; +x_25 = x_91; +goto block_90; } else { +lean_object* x_92; double x_93; double x_94; lean_object* x_95; +x_92 = lean_box(0); +x_93 = lean_unbox_float(x_21); +lean_dec(x_21); +x_94 = lean_unbox_float(x_22); +lean_dec(x_22); +x_95 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_93, x_94, x_5, x_92, x_9, x_10, x_18); +return x_95; +} +} +else +{ +if (x_6 == 0) +{ double x_96; double x_97; double x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; lean_object* x_102; double x_103; double x_104; double x_105; uint8_t x_106; x_96 = lean_unbox_float(x_22); x_97 = lean_unbox_float(x_21); @@ -12102,851 +12088,863 @@ lean_dec(x_100); x_104 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__4; x_105 = lean_float_div(x_103, x_104); x_106 = lean_float_decLt(x_105, x_98); -x_23 = x_106; -goto block_92; +x_25 = x_106; +goto block_90; } -block_92: +else { -if (x_6 == 0) +lean_object* x_107; double x_108; double x_109; lean_object* x_110; +x_107 = lean_box(0); +x_108 = lean_unbox_float(x_21); +lean_dec(x_21); +x_109 = lean_unbox_float(x_22); +lean_dec(x_22); +x_110 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_108, x_109, x_5, x_107, x_9, x_10, x_18); +return x_110; +} +} +block_90: { -if (x_23 == 0) +if (x_25 == 0) { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_dec(x_22); lean_dec(x_21); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_24 = lean_st_ref_take(x_10, x_18); -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -x_26 = lean_ctor_get(x_25, 7); -lean_inc(x_26); -x_27 = lean_ctor_get(x_24, 1); +x_26 = lean_st_ref_take(x_10, x_18); +x_27 = lean_ctor_get(x_26, 0); lean_inc(x_27); -lean_dec(x_24); -x_28 = !lean_is_exclusive(x_25); -if (x_28 == 0) -{ -lean_object* x_29; uint8_t x_30; -x_29 = lean_ctor_get(x_25, 7); -lean_dec(x_29); -x_30 = !lean_is_exclusive(x_26); +x_28 = lean_ctor_get(x_27, 7); +lean_inc(x_28); +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); +lean_dec(x_26); +x_30 = !lean_is_exclusive(x_27); if (x_30 == 0) { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_31 = lean_ctor_get(x_26, 0); -x_32 = l_Lean_PersistentArray_append___rarg(x_13, x_31); +lean_object* x_31; uint8_t x_32; +x_31 = lean_ctor_get(x_27, 7); lean_dec(x_31); -lean_ctor_set(x_26, 0, x_32); -x_33 = lean_st_ref_set(x_10, x_25, x_27); -x_34 = lean_ctor_get(x_33, 1); -lean_inc(x_34); +x_32 = !lean_is_exclusive(x_28); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_33 = lean_ctor_get(x_28, 0); +x_34 = l_Lean_PersistentArray_append___rarg(x_13, x_33); lean_dec(x_33); -x_35 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__14(x_20, x_9, x_10, x_34); +lean_ctor_set(x_28, 0, x_34); +x_35 = lean_st_ref_set(x_10, x_27, x_29); +x_36 = lean_ctor_get(x_35, 1); +lean_inc(x_36); +lean_dec(x_35); +x_37 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__14(x_20, x_9, x_10, x_36); lean_dec(x_10); lean_dec(x_9); lean_dec(x_20); -if (lean_obj_tag(x_35) == 0) +if (lean_obj_tag(x_37) == 0) { -uint8_t x_36; -x_36 = !lean_is_exclusive(x_35); -if (x_36 == 0) +uint8_t x_38; +x_38 = !lean_is_exclusive(x_37); +if (x_38 == 0) { -return x_35; +return x_37; } else { -lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_37 = lean_ctor_get(x_35, 0); -x_38 = lean_ctor_get(x_35, 1); -lean_inc(x_38); -lean_inc(x_37); -lean_dec(x_35); -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_37); -lean_ctor_set(x_39, 1, x_38); -return x_39; +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_37, 0); +x_40 = lean_ctor_get(x_37, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_37); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +return x_41; } } else { -uint8_t x_40; -x_40 = !lean_is_exclusive(x_35); -if (x_40 == 0) +uint8_t x_42; +x_42 = !lean_is_exclusive(x_37); +if (x_42 == 0) { -return x_35; +return x_37; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_35, 0); -x_42 = lean_ctor_get(x_35, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_35); -x_43 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_42); -return x_43; +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_37, 0); +x_44 = lean_ctor_get(x_37, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_37); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; } } } else { -uint64_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_44 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); -x_45 = lean_ctor_get(x_26, 0); -lean_inc(x_45); -lean_dec(x_26); -x_46 = l_Lean_PersistentArray_append___rarg(x_13, x_45); -lean_dec(x_45); -x_47 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_47, 0, x_46); -lean_ctor_set_uint64(x_47, sizeof(void*)*1, x_44); -lean_ctor_set(x_25, 7, x_47); -x_48 = lean_st_ref_set(x_10, x_25, x_27); -x_49 = lean_ctor_get(x_48, 1); -lean_inc(x_49); -lean_dec(x_48); -x_50 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__14(x_20, x_9, x_10, x_49); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_20); -if (lean_obj_tag(x_50) == 0) -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_51 = lean_ctor_get(x_50, 0); +uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); +x_47 = lean_ctor_get(x_28, 0); +lean_inc(x_47); +lean_dec(x_28); +x_48 = l_Lean_PersistentArray_append___rarg(x_13, x_47); +lean_dec(x_47); +x_49 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); +lean_ctor_set(x_27, 7, x_49); +x_50 = lean_st_ref_set(x_10, x_27, x_29); +x_51 = lean_ctor_get(x_50, 1); lean_inc(x_51); -x_52 = lean_ctor_get(x_50, 1); -lean_inc(x_52); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_53 = x_50; +lean_dec(x_50); +x_52 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__14(x_20, x_9, x_10, x_51); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_20); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_52, 1); +lean_inc(x_54); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_55 = x_52; } else { - lean_dec_ref(x_50); - x_53 = lean_box(0); + lean_dec_ref(x_52); + x_55 = lean_box(0); } -if (lean_is_scalar(x_53)) { - x_54 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_55)) { + x_56 = lean_alloc_ctor(0, 2, 0); } else { - x_54 = x_53; + x_56 = x_55; } -lean_ctor_set(x_54, 0, x_51); -lean_ctor_set(x_54, 1, x_52); -return x_54; +lean_ctor_set(x_56, 0, x_53); +lean_ctor_set(x_56, 1, x_54); +return x_56; } else { -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_55 = lean_ctor_get(x_50, 0); -lean_inc(x_55); -x_56 = lean_ctor_get(x_50, 1); -lean_inc(x_56); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_57 = x_50; +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_57 = lean_ctor_get(x_52, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_52, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_59 = x_52; } else { - lean_dec_ref(x_50); - x_57 = lean_box(0); + lean_dec_ref(x_52); + x_59 = lean_box(0); } -if (lean_is_scalar(x_57)) { - x_58 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(1, 2, 0); } else { - x_58 = x_57; + x_60 = x_59; } -lean_ctor_set(x_58, 0, x_55); -lean_ctor_set(x_58, 1, x_56); -return x_58; +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_58); +return x_60; } } } else { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; uint64_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_59 = lean_ctor_get(x_25, 0); -x_60 = lean_ctor_get(x_25, 1); -x_61 = lean_ctor_get(x_25, 2); -x_62 = lean_ctor_get(x_25, 3); -x_63 = lean_ctor_get(x_25, 4); -x_64 = lean_ctor_get(x_25, 5); -x_65 = lean_ctor_get(x_25, 6); -x_66 = lean_ctor_get(x_25, 8); +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; uint64_t x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_61 = lean_ctor_get(x_27, 0); +x_62 = lean_ctor_get(x_27, 1); +x_63 = lean_ctor_get(x_27, 2); +x_64 = lean_ctor_get(x_27, 3); +x_65 = lean_ctor_get(x_27, 4); +x_66 = lean_ctor_get(x_27, 5); +x_67 = lean_ctor_get(x_27, 6); +x_68 = lean_ctor_get(x_27, 8); +lean_inc(x_68); +lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); lean_inc(x_62); lean_inc(x_61); -lean_inc(x_60); -lean_inc(x_59); -lean_dec(x_25); -x_67 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); -x_68 = lean_ctor_get(x_26, 0); -lean_inc(x_68); -if (lean_is_exclusive(x_26)) { - lean_ctor_release(x_26, 0); - x_69 = x_26; +lean_dec(x_27); +x_69 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); +x_70 = lean_ctor_get(x_28, 0); +lean_inc(x_70); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + x_71 = x_28; } else { - lean_dec_ref(x_26); - x_69 = lean_box(0); + lean_dec_ref(x_28); + x_71 = lean_box(0); } -x_70 = l_Lean_PersistentArray_append___rarg(x_13, x_68); -lean_dec(x_68); -if (lean_is_scalar(x_69)) { - x_71 = lean_alloc_ctor(0, 1, 8); +x_72 = l_Lean_PersistentArray_append___rarg(x_13, x_70); +lean_dec(x_70); +if (lean_is_scalar(x_71)) { + x_73 = lean_alloc_ctor(0, 1, 8); } else { - x_71 = x_69; + x_73 = x_71; } -lean_ctor_set(x_71, 0, x_70); -lean_ctor_set_uint64(x_71, sizeof(void*)*1, x_67); -x_72 = lean_alloc_ctor(0, 9, 0); -lean_ctor_set(x_72, 0, x_59); -lean_ctor_set(x_72, 1, x_60); -lean_ctor_set(x_72, 2, x_61); -lean_ctor_set(x_72, 3, x_62); -lean_ctor_set(x_72, 4, x_63); -lean_ctor_set(x_72, 5, x_64); -lean_ctor_set(x_72, 6, x_65); -lean_ctor_set(x_72, 7, x_71); -lean_ctor_set(x_72, 8, x_66); -x_73 = lean_st_ref_set(x_10, x_72, x_27); -x_74 = lean_ctor_get(x_73, 1); -lean_inc(x_74); -lean_dec(x_73); -x_75 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__14(x_20, x_9, x_10, x_74); +lean_ctor_set(x_73, 0, x_72); +lean_ctor_set_uint64(x_73, sizeof(void*)*1, x_69); +x_74 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_74, 0, x_61); +lean_ctor_set(x_74, 1, x_62); +lean_ctor_set(x_74, 2, x_63); +lean_ctor_set(x_74, 3, x_64); +lean_ctor_set(x_74, 4, x_65); +lean_ctor_set(x_74, 5, x_66); +lean_ctor_set(x_74, 6, x_67); +lean_ctor_set(x_74, 7, x_73); +lean_ctor_set(x_74, 8, x_68); +x_75 = lean_st_ref_set(x_10, x_74, x_29); +x_76 = lean_ctor_get(x_75, 1); +lean_inc(x_76); +lean_dec(x_75); +x_77 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__14(x_20, x_9, x_10, x_76); lean_dec(x_10); lean_dec(x_9); lean_dec(x_20); -if (lean_obj_tag(x_75) == 0) +if (lean_obj_tag(x_77) == 0) { -lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_76 = lean_ctor_get(x_75, 0); -lean_inc(x_76); -x_77 = lean_ctor_get(x_75, 1); -lean_inc(x_77); -if (lean_is_exclusive(x_75)) { - lean_ctor_release(x_75, 0); - lean_ctor_release(x_75, 1); - x_78 = x_75; +lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_78 = lean_ctor_get(x_77, 0); +lean_inc(x_78); +x_79 = lean_ctor_get(x_77, 1); +lean_inc(x_79); +if (lean_is_exclusive(x_77)) { + lean_ctor_release(x_77, 0); + lean_ctor_release(x_77, 1); + x_80 = x_77; } else { - lean_dec_ref(x_75); - x_78 = lean_box(0); + lean_dec_ref(x_77); + x_80 = lean_box(0); } -if (lean_is_scalar(x_78)) { - x_79 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_80)) { + x_81 = lean_alloc_ctor(0, 2, 0); } else { - x_79 = x_78; + x_81 = x_80; } -lean_ctor_set(x_79, 0, x_76); -lean_ctor_set(x_79, 1, x_77); -return x_79; +lean_ctor_set(x_81, 0, x_78); +lean_ctor_set(x_81, 1, x_79); +return x_81; } else { -lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; -x_80 = lean_ctor_get(x_75, 0); -lean_inc(x_80); -x_81 = lean_ctor_get(x_75, 1); -lean_inc(x_81); -if (lean_is_exclusive(x_75)) { - lean_ctor_release(x_75, 0); - lean_ctor_release(x_75, 1); - x_82 = x_75; +lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; +x_82 = lean_ctor_get(x_77, 0); +lean_inc(x_82); +x_83 = lean_ctor_get(x_77, 1); +lean_inc(x_83); +if (lean_is_exclusive(x_77)) { + lean_ctor_release(x_77, 0); + lean_ctor_release(x_77, 1); + x_84 = x_77; } else { - lean_dec_ref(x_75); - x_82 = lean_box(0); + lean_dec_ref(x_77); + x_84 = lean_box(0); } -if (lean_is_scalar(x_82)) { - x_83 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_84)) { + x_85 = lean_alloc_ctor(1, 2, 0); } else { - x_83 = x_82; + x_85 = x_84; } -lean_ctor_set(x_83, 0, x_80); -lean_ctor_set(x_83, 1, x_81); -return x_83; +lean_ctor_set(x_85, 0, x_82); +lean_ctor_set(x_85, 1, x_83); +return x_85; } } } else { -lean_object* x_84; double x_85; double x_86; lean_object* x_87; -x_84 = lean_box(0); -x_85 = lean_unbox_float(x_21); +lean_object* x_86; double x_87; double x_88; lean_object* x_89; +x_86 = lean_box(0); +x_87 = lean_unbox_float(x_21); lean_dec(x_21); -x_86 = lean_unbox_float(x_22); +x_88 = lean_unbox_float(x_22); lean_dec(x_22); -x_87 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__3(x_2, x_3, x_4, x_13, x_20, x_1, x_23, x_85, x_86, x_5, x_84, x_9, x_10, x_18); -return x_87; -} -} -else -{ -lean_object* x_88; double x_89; double x_90; lean_object* x_91; -x_88 = lean_box(0); -x_89 = lean_unbox_float(x_21); -lean_dec(x_21); -x_90 = lean_unbox_float(x_22); -lean_dec(x_22); -x_91 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__3(x_2, x_3, x_4, x_13, x_20, x_1, x_23, x_89, x_90, x_5, x_88, x_9, x_10, x_18); -return x_91; +x_89 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_87, x_88, x_5, x_86, x_9, x_10, x_18); +return x_89; } } } } else { -lean_object* x_206; lean_object* x_207; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_14); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_210; lean_object* x_211; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_14); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_3(x_7, x_9, x_10, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_3(x_7, x_9, x_10, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_206 = x_298; -x_207 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_206 = x_298; -x_207 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_210 = x_306; +x_211 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_206 = x_336; -x_207 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_210 = x_306; +x_211 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_206 = x_298; -x_207 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_210 = x_344; +x_211 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_206 = x_298; -x_207 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_210 = x_306; +x_211 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_210 = x_306; +x_211 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_206 = x_374; -x_207 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; uint8_t x_212; lean_object* x_282; uint8_t x_283; -x_208 = lean_ctor_get(x_206, 1); -lean_inc(x_208); -x_209 = lean_ctor_get(x_206, 0); -lean_inc(x_209); -lean_dec(x_206); -x_210 = lean_ctor_get(x_208, 0); -lean_inc(x_210); -x_211 = lean_ctor_get(x_208, 1); -lean_inc(x_211); -lean_dec(x_208); -x_282 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_212 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_211); -x_286 = lean_unbox_float(x_210); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_212 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_210 = x_382; +x_211 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; uint8_t x_217; uint8_t x_218; +x_212 = lean_ctor_get(x_210, 1); +lean_inc(x_212); +x_213 = lean_ctor_get(x_210, 0); +lean_inc(x_213); +lean_dec(x_210); +x_214 = lean_ctor_get(x_212, 0); +lean_inc(x_214); +x_215 = lean_ctor_get(x_212, 1); +lean_inc(x_215); +lean_dec(x_212); +x_216 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__2; +x_217 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_216); +if (x_217 == 0) { if (x_6 == 0) { -if (x_212 == 0) +uint8_t x_284; +x_284 = 0; +x_218 = x_284; +goto block_283; +} +else { -lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; uint8_t x_217; -lean_dec(x_211); -lean_dec(x_210); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_214); +lean_dec(x_214); +x_287 = lean_unbox_float(x_215); +lean_dec(x_215); +x_288 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__3(x_2, x_3, x_4, x_13, x_213, x_217, x_286, x_287, x_5, x_285, x_9, x_10, x_211); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_215); +x_290 = lean_unbox_float(x_214); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_218 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_214); +lean_dec(x_214); +x_300 = lean_unbox_float(x_215); +lean_dec(x_215); +x_301 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__3(x_2, x_3, x_4, x_13, x_213, x_217, x_299, x_300, x_5, x_298, x_9, x_10, x_211); +return x_301; +} +} +block_283: +{ +if (x_218 == 0) +{ +lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; uint8_t x_223; +lean_dec(x_215); +lean_dec(x_214); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_213 = lean_st_ref_take(x_10, x_207); -x_214 = lean_ctor_get(x_213, 0); -lean_inc(x_214); -x_215 = lean_ctor_get(x_214, 7); -lean_inc(x_215); -x_216 = lean_ctor_get(x_213, 1); -lean_inc(x_216); -lean_dec(x_213); -x_217 = !lean_is_exclusive(x_214); -if (x_217 == 0) +x_219 = lean_st_ref_take(x_10, x_211); +x_220 = lean_ctor_get(x_219, 0); +lean_inc(x_220); +x_221 = lean_ctor_get(x_220, 7); +lean_inc(x_221); +x_222 = lean_ctor_get(x_219, 1); +lean_inc(x_222); +lean_dec(x_219); +x_223 = !lean_is_exclusive(x_220); +if (x_223 == 0) { -lean_object* x_218; uint8_t x_219; -x_218 = lean_ctor_get(x_214, 7); -lean_dec(x_218); -x_219 = !lean_is_exclusive(x_215); -if (x_219 == 0) -{ -lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; -x_220 = lean_ctor_get(x_215, 0); -x_221 = l_Lean_PersistentArray_append___rarg(x_13, x_220); -lean_dec(x_220); -lean_ctor_set(x_215, 0, x_221); -x_222 = lean_st_ref_set(x_10, x_214, x_216); -x_223 = lean_ctor_get(x_222, 1); -lean_inc(x_223); -lean_dec(x_222); -x_224 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__14(x_209, x_9, x_10, x_223); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_209); -if (lean_obj_tag(x_224) == 0) -{ -uint8_t x_225; -x_225 = !lean_is_exclusive(x_224); +lean_object* x_224; uint8_t x_225; +x_224 = lean_ctor_get(x_220, 7); +lean_dec(x_224); +x_225 = !lean_is_exclusive(x_221); if (x_225 == 0) { -return x_224; -} -else -{ -lean_object* x_226; lean_object* x_227; lean_object* x_228; -x_226 = lean_ctor_get(x_224, 0); -x_227 = lean_ctor_get(x_224, 1); -lean_inc(x_227); -lean_inc(x_226); -lean_dec(x_224); -x_228 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_228, 0, x_226); -lean_ctor_set(x_228, 1, x_227); -return x_228; -} -} -else -{ -uint8_t x_229; -x_229 = !lean_is_exclusive(x_224); -if (x_229 == 0) -{ -return x_224; -} -else -{ -lean_object* x_230; lean_object* x_231; lean_object* x_232; -x_230 = lean_ctor_get(x_224, 0); -x_231 = lean_ctor_get(x_224, 1); -lean_inc(x_231); -lean_inc(x_230); -lean_dec(x_224); -x_232 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_232, 0, x_230); -lean_ctor_set(x_232, 1, x_231); -return x_232; -} -} -} -else -{ -uint64_t x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; -x_233 = lean_ctor_get_uint64(x_215, sizeof(void*)*1); -x_234 = lean_ctor_get(x_215, 0); -lean_inc(x_234); -lean_dec(x_215); -x_235 = l_Lean_PersistentArray_append___rarg(x_13, x_234); -lean_dec(x_234); -x_236 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_236, 0, x_235); -lean_ctor_set_uint64(x_236, sizeof(void*)*1, x_233); -lean_ctor_set(x_214, 7, x_236); -x_237 = lean_st_ref_set(x_10, x_214, x_216); -x_238 = lean_ctor_get(x_237, 1); -lean_inc(x_238); -lean_dec(x_237); -x_239 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__14(x_209, x_9, x_10, x_238); +lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; +x_226 = lean_ctor_get(x_221, 0); +x_227 = l_Lean_PersistentArray_append___rarg(x_13, x_226); +lean_dec(x_226); +lean_ctor_set(x_221, 0, x_227); +x_228 = lean_st_ref_set(x_10, x_220, x_222); +x_229 = lean_ctor_get(x_228, 1); +lean_inc(x_229); +lean_dec(x_228); +x_230 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__14(x_213, x_9, x_10, x_229); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_209); -if (lean_obj_tag(x_239) == 0) +lean_dec(x_213); +if (lean_obj_tag(x_230) == 0) { -lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; -x_240 = lean_ctor_get(x_239, 0); +uint8_t x_231; +x_231 = !lean_is_exclusive(x_230); +if (x_231 == 0) +{ +return x_230; +} +else +{ +lean_object* x_232; lean_object* x_233; lean_object* x_234; +x_232 = lean_ctor_get(x_230, 0); +x_233 = lean_ctor_get(x_230, 1); +lean_inc(x_233); +lean_inc(x_232); +lean_dec(x_230); +x_234 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_234, 0, x_232); +lean_ctor_set(x_234, 1, x_233); +return x_234; +} +} +else +{ +uint8_t x_235; +x_235 = !lean_is_exclusive(x_230); +if (x_235 == 0) +{ +return x_230; +} +else +{ +lean_object* x_236; lean_object* x_237; lean_object* x_238; +x_236 = lean_ctor_get(x_230, 0); +x_237 = lean_ctor_get(x_230, 1); +lean_inc(x_237); +lean_inc(x_236); +lean_dec(x_230); +x_238 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_238, 0, x_236); +lean_ctor_set(x_238, 1, x_237); +return x_238; +} +} +} +else +{ +uint64_t x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; +x_239 = lean_ctor_get_uint64(x_221, sizeof(void*)*1); +x_240 = lean_ctor_get(x_221, 0); lean_inc(x_240); -x_241 = lean_ctor_get(x_239, 1); -lean_inc(x_241); -if (lean_is_exclusive(x_239)) { - lean_ctor_release(x_239, 0); - lean_ctor_release(x_239, 1); - x_242 = x_239; -} else { - lean_dec_ref(x_239); - x_242 = lean_box(0); -} -if (lean_is_scalar(x_242)) { - x_243 = lean_alloc_ctor(0, 2, 0); -} else { - x_243 = x_242; -} -lean_ctor_set(x_243, 0, x_240); -lean_ctor_set(x_243, 1, x_241); -return x_243; -} -else -{ -lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; -x_244 = lean_ctor_get(x_239, 0); +lean_dec(x_221); +x_241 = l_Lean_PersistentArray_append___rarg(x_13, x_240); +lean_dec(x_240); +x_242 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_242, 0, x_241); +lean_ctor_set_uint64(x_242, sizeof(void*)*1, x_239); +lean_ctor_set(x_220, 7, x_242); +x_243 = lean_st_ref_set(x_10, x_220, x_222); +x_244 = lean_ctor_get(x_243, 1); lean_inc(x_244); -x_245 = lean_ctor_get(x_239, 1); -lean_inc(x_245); -if (lean_is_exclusive(x_239)) { - lean_ctor_release(x_239, 0); - lean_ctor_release(x_239, 1); - x_246 = x_239; +lean_dec(x_243); +x_245 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__14(x_213, x_9, x_10, x_244); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_213); +if (lean_obj_tag(x_245) == 0) +{ +lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; +x_246 = lean_ctor_get(x_245, 0); +lean_inc(x_246); +x_247 = lean_ctor_get(x_245, 1); +lean_inc(x_247); +if (lean_is_exclusive(x_245)) { + lean_ctor_release(x_245, 0); + lean_ctor_release(x_245, 1); + x_248 = x_245; } else { - lean_dec_ref(x_239); - x_246 = lean_box(0); + lean_dec_ref(x_245); + x_248 = lean_box(0); } -if (lean_is_scalar(x_246)) { - x_247 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_248)) { + x_249 = lean_alloc_ctor(0, 2, 0); } else { - x_247 = x_246; + x_249 = x_248; } -lean_ctor_set(x_247, 0, x_244); -lean_ctor_set(x_247, 1, x_245); -return x_247; +lean_ctor_set(x_249, 0, x_246); +lean_ctor_set(x_249, 1, x_247); +return x_249; +} +else +{ +lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; +x_250 = lean_ctor_get(x_245, 0); +lean_inc(x_250); +x_251 = lean_ctor_get(x_245, 1); +lean_inc(x_251); +if (lean_is_exclusive(x_245)) { + lean_ctor_release(x_245, 0); + lean_ctor_release(x_245, 1); + x_252 = x_245; +} else { + lean_dec_ref(x_245); + x_252 = lean_box(0); +} +if (lean_is_scalar(x_252)) { + x_253 = lean_alloc_ctor(1, 2, 0); +} else { + x_253 = x_252; +} +lean_ctor_set(x_253, 0, x_250); +lean_ctor_set(x_253, 1, x_251); +return x_253; } } } else { -lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_248 = lean_ctor_get(x_214, 0); -x_249 = lean_ctor_get(x_214, 1); -x_250 = lean_ctor_get(x_214, 2); -x_251 = lean_ctor_get(x_214, 3); -x_252 = lean_ctor_get(x_214, 4); -x_253 = lean_ctor_get(x_214, 5); -x_254 = lean_ctor_get(x_214, 6); -x_255 = lean_ctor_get(x_214, 8); +lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_254 = lean_ctor_get(x_220, 0); +x_255 = lean_ctor_get(x_220, 1); +x_256 = lean_ctor_get(x_220, 2); +x_257 = lean_ctor_get(x_220, 3); +x_258 = lean_ctor_get(x_220, 4); +x_259 = lean_ctor_get(x_220, 5); +x_260 = lean_ctor_get(x_220, 6); +x_261 = lean_ctor_get(x_220, 8); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); lean_inc(x_255); lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_inc(x_248); -lean_dec(x_214); -x_256 = lean_ctor_get_uint64(x_215, sizeof(void*)*1); -x_257 = lean_ctor_get(x_215, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_215)) { - lean_ctor_release(x_215, 0); - x_258 = x_215; -} else { - lean_dec_ref(x_215); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_13, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 9, 0); -lean_ctor_set(x_261, 0, x_248); -lean_ctor_set(x_261, 1, x_249); -lean_ctor_set(x_261, 2, x_250); -lean_ctor_set(x_261, 3, x_251); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_260); -lean_ctor_set(x_261, 8, x_255); -x_262 = lean_st_ref_set(x_10, x_261, x_216); -x_263 = lean_ctor_get(x_262, 1); +lean_dec(x_220); +x_262 = lean_ctor_get_uint64(x_221, sizeof(void*)*1); +x_263 = lean_ctor_get(x_221, 0); lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__14(x_209, x_9, x_10, x_263); +if (lean_is_exclusive(x_221)) { + lean_ctor_release(x_221, 0); + x_264 = x_221; +} else { + lean_dec_ref(x_221); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_13, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_267, 0, x_254); +lean_ctor_set(x_267, 1, x_255); +lean_ctor_set(x_267, 2, x_256); +lean_ctor_set(x_267, 3, x_257); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_266); +lean_ctor_set(x_267, 8, x_261); +x_268 = lean_st_ref_set(x_10, x_267, x_222); +x_269 = lean_ctor_get(x_268, 1); +lean_inc(x_269); +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_runLinters___spec__14(x_213, x_9, x_10, x_269); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_209); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_213); +if (lean_obj_tag(x_270) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_274 = x_273; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); -lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_277 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); } else { - x_272 = x_271; + x_278 = x_277; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_210); -lean_dec(x_210); -x_275 = lean_unbox_float(x_211); -lean_dec(x_211); -x_276 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__3(x_2, x_3, x_4, x_13, x_209, x_1, x_212, x_274, x_275, x_5, x_273, x_9, x_10, x_207); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_210); -lean_dec(x_210); -x_279 = lean_unbox_float(x_211); -lean_dec(x_211); -x_280 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__3(x_2, x_3, x_4, x_13, x_209, x_1, x_212, x_278, x_279, x_5, x_277, x_9, x_10, x_207); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_214); +lean_dec(x_214); +x_281 = lean_unbox_float(x_215); +lean_dec(x_215); +x_282 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__3(x_2, x_3, x_4, x_13, x_213, x_217, x_280, x_281, x_5, x_279, x_9, x_10, x_211); +return x_282; } } } @@ -13435,41 +13433,39 @@ lean_dec(x_4); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; uint8_t x_16; double x_17; double x_18; lean_object* x_19; -x_15 = lean_unbox(x_2); +uint8_t x_14; uint8_t x_15; double x_16; double x_17; lean_object* x_18; +x_14 = lean_unbox(x_2); lean_dec(x_2); -x_16 = lean_unbox(x_8); +x_15 = lean_unbox(x_7); +lean_dec(x_7); +x_16 = lean_unbox_float(x_8); lean_dec(x_8); x_17 = lean_unbox_float(x_9); lean_dec(x_9); -x_18 = lean_unbox_float(x_10); -lean_dec(x_10); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2(x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_16, x_17, x_18, x_11, x_12, x_13, x_14); -lean_dec(x_13); -lean_dec(x_7); +x_18 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2(x_1, x_14, x_3, x_4, x_5, x_6, x_15, x_16, x_17, x_10, x_11, x_12, x_13); +lean_dec(x_12); lean_dec(x_6); -return x_19; +return x_18; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; uint8_t x_16; double x_17; double x_18; lean_object* x_19; -x_15 = lean_unbox(x_2); +uint8_t x_14; uint8_t x_15; double x_16; double x_17; lean_object* x_18; +x_14 = lean_unbox(x_2); lean_dec(x_2); -x_16 = lean_unbox(x_7); +x_15 = lean_unbox(x_6); +lean_dec(x_6); +x_16 = lean_unbox_float(x_7); lean_dec(x_7); x_17 = lean_unbox_float(x_8); lean_dec(x_8); -x_18 = lean_unbox_float(x_9); -lean_dec(x_9); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3(x_1, x_15, x_3, x_4, x_5, x_6, x_16, x_17, x_18, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_11); -lean_dec(x_6); -return x_19; +x_18 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3(x_1, x_14, x_3, x_4, x_5, x_15, x_16, x_17, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_10); +return x_18; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { @@ -13591,41 +13587,39 @@ lean_dec(x_4); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; uint8_t x_16; double x_17; double x_18; lean_object* x_19; -x_15 = lean_unbox(x_2); +uint8_t x_14; uint8_t x_15; double x_16; double x_17; lean_object* x_18; +x_14 = lean_unbox(x_2); lean_dec(x_2); -x_16 = lean_unbox(x_8); +x_15 = lean_unbox(x_7); +lean_dec(x_7); +x_16 = lean_unbox_float(x_8); lean_dec(x_8); x_17 = lean_unbox_float(x_9); lean_dec(x_9); -x_18 = lean_unbox_float(x_10); -lean_dec(x_10); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__2(x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_16, x_17, x_18, x_11, x_12, x_13, x_14); -lean_dec(x_13); -lean_dec(x_7); +x_18 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__2(x_1, x_14, x_3, x_4, x_5, x_6, x_15, x_16, x_17, x_10, x_11, x_12, x_13); +lean_dec(x_12); lean_dec(x_6); -return x_19; +return x_18; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; uint8_t x_16; double x_17; double x_18; lean_object* x_19; -x_15 = lean_unbox(x_2); +uint8_t x_14; uint8_t x_15; double x_16; double x_17; lean_object* x_18; +x_14 = lean_unbox(x_2); lean_dec(x_2); -x_16 = lean_unbox(x_7); +x_15 = lean_unbox(x_6); +lean_dec(x_6); +x_16 = lean_unbox_float(x_7); lean_dec(x_7); x_17 = lean_unbox_float(x_8); lean_dec(x_8); -x_18 = lean_unbox_float(x_9); -lean_dec(x_9); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__3(x_1, x_15, x_3, x_4, x_5, x_6, x_16, x_17, x_18, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_11); -lean_dec(x_6); -return x_19; +x_18 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__3(x_1, x_14, x_3, x_4, x_5, x_15, x_16, x_17, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_10); +return x_18; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__10___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { @@ -15443,103 +15437,78 @@ lean_dec(x_7); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -double x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_15 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_16 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_16, 0, x_1); -lean_ctor_set(x_16, 1, x_3); -lean_ctor_set_float(x_16, sizeof(void*)*2, x_15); -lean_ctor_set_float(x_16, sizeof(void*)*2 + 8, x_15); -lean_ctor_set_uint8(x_16, sizeof(void*)*2 + 16, x_2); -x_17 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2___closed__2; -x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_17); -if (x_18 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2___closed__1; +x_15 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_15, 0, x_1); +lean_ctor_set(x_15, 1, x_3); +lean_ctor_set_float(x_15, sizeof(void*)*2, x_14); +lean_ctor_set_float(x_15, sizeof(void*)*2 + 8, x_14); +lean_ctor_set_uint8(x_15, sizeof(void*)*2 + 16, x_2); +x_16 = lean_box(0); +x_17 = l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_15, x_16, x_11, x_12, x_13); +return x_17; +} +else { -lean_object* x_19; lean_object* x_20; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_3); +lean_ctor_set_float(x_18, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); x_19 = lean_box(0); -x_20 = l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_16, x_19, x_12, x_13, x_14); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_18, x_19, x_11, x_12, x_13); +return x_20; +} +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = l_Lean_Elab_Command_getRef(x_11, x_12, x_13); +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_dec(x_14); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_5); +x_17 = lean_apply_4(x_9, x_5, x_11, x_12, x_16); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); +lean_inc(x_19); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_15, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_19); +lean_dec(x_12); +lean_dec(x_5); return x_20; } else { lean_object* x_21; lean_object* x_22; lean_object* x_23; -lean_dec(x_16); -x_21 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_21, 0, x_1); -lean_ctor_set(x_21, 1, x_3); -lean_ctor_set_float(x_21, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_21, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_21, sizeof(void*)*2 + 16, x_2); -x_22 = lean_box(0); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_21, x_22, x_12, x_13, x_14); +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_15, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_21); +lean_dec(x_12); +lean_dec(x_5); return x_23; } } -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -lean_dec(x_16); -x_24 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_24, 0, x_1); -lean_ctor_set(x_24, 1, x_3); -lean_ctor_set_float(x_24, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_24, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_24, sizeof(void*)*2 + 16, x_2); -x_25 = lean_box(0); -x_26 = l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_24, x_25, x_12, x_13, x_14); -return x_26; -} -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { -_start: -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_15 = l_Lean_Elab_Command_getRef(x_12, x_13, x_14); -x_16 = lean_ctor_get(x_15, 0); -lean_inc(x_16); -x_17 = lean_ctor_get(x_15, 1); -lean_inc(x_17); -lean_dec(x_15); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_5); -x_18 = lean_apply_4(x_10, x_5, x_12, x_13, x_17); -if (lean_obj_tag(x_18) == 0) -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); -lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_20); -lean_dec(x_13); -lean_dec(x_5); -return x_21; -} -else -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_22); -lean_dec(x_13); -lean_dec(x_5); -return x_24; -} -} } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__4(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: @@ -15555,251 +15524,251 @@ x_15 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda x_16 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_15); if (x_16 == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; -x_108 = lean_io_mono_nanos_now(x_14); -x_109 = lean_ctor_get(x_108, 0); -lean_inc(x_109); -x_110 = lean_ctor_get(x_108, 1); -lean_inc(x_110); -lean_dec(x_108); +lean_object* x_17; lean_object* x_18; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; +x_112 = lean_io_mono_nanos_now(x_14); +x_113 = lean_ctor_get(x_112, 0); +lean_inc(x_113); +x_114 = lean_ctor_get(x_112, 1); +lean_inc(x_114); +lean_dec(x_112); lean_inc(x_10); lean_inc(x_9); -x_111 = lean_apply_3(x_7, x_9, x_10, x_110); -if (lean_obj_tag(x_111) == 0) +x_115 = lean_apply_3(x_7, x_9, x_10, x_114); +if (lean_obj_tag(x_115) == 0) { -uint8_t x_112; -x_112 = !lean_is_exclusive(x_111); -if (x_112 == 0) +uint8_t x_116; +x_116 = !lean_is_exclusive(x_115); +if (x_116 == 0) { -lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; uint8_t x_117; -x_113 = lean_ctor_get(x_111, 0); -x_114 = lean_ctor_get(x_111, 1); -x_115 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_115, 0, x_113); -x_116 = lean_io_mono_nanos_now(x_114); -x_117 = !lean_is_exclusive(x_116); -if (x_117 == 0) +lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; uint8_t x_121; +x_117 = lean_ctor_get(x_115, 0); +x_118 = lean_ctor_get(x_115, 1); +x_119 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_119, 0, x_117); +x_120 = lean_io_mono_nanos_now(x_118); +x_121 = !lean_is_exclusive(x_120); +if (x_121 == 0) { -lean_object* x_118; lean_object* x_119; uint8_t x_120; lean_object* x_121; double x_122; double x_123; double x_124; double x_125; double x_126; lean_object* x_127; lean_object* x_128; -x_118 = lean_ctor_get(x_116, 0); -x_119 = lean_ctor_get(x_116, 1); -x_120 = 0; -x_121 = lean_unsigned_to_nat(0u); -x_122 = l_Float_ofScientific(x_109, x_120, x_121); -lean_dec(x_109); -x_123 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; -x_124 = lean_float_div(x_122, x_123); -x_125 = l_Float_ofScientific(x_118, x_120, x_121); -lean_dec(x_118); -x_126 = lean_float_div(x_125, x_123); -x_127 = lean_box_float(x_124); -x_128 = lean_box_float(x_126); -lean_ctor_set(x_116, 1, x_128); -lean_ctor_set(x_116, 0, x_127); -lean_ctor_set(x_111, 1, x_116); -lean_ctor_set(x_111, 0, x_115); -x_17 = x_111; -x_18 = x_119; -goto block_107; +lean_object* x_122; lean_object* x_123; uint8_t x_124; lean_object* x_125; double x_126; double x_127; double x_128; double x_129; double x_130; lean_object* x_131; lean_object* x_132; +x_122 = lean_ctor_get(x_120, 0); +x_123 = lean_ctor_get(x_120, 1); +x_124 = 0; +x_125 = lean_unsigned_to_nat(0u); +x_126 = l_Float_ofScientific(x_113, x_124, x_125); +lean_dec(x_113); +x_127 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; +x_128 = lean_float_div(x_126, x_127); +x_129 = l_Float_ofScientific(x_122, x_124, x_125); +lean_dec(x_122); +x_130 = lean_float_div(x_129, x_127); +x_131 = lean_box_float(x_128); +x_132 = lean_box_float(x_130); +lean_ctor_set(x_120, 1, x_132); +lean_ctor_set(x_120, 0, x_131); +lean_ctor_set(x_115, 1, x_120); +lean_ctor_set(x_115, 0, x_119); +x_17 = x_115; +x_18 = x_123; +goto block_111; } else { -lean_object* x_129; lean_object* x_130; uint8_t x_131; lean_object* x_132; double x_133; double x_134; double x_135; double x_136; double x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; -x_129 = lean_ctor_get(x_116, 0); -x_130 = lean_ctor_get(x_116, 1); -lean_inc(x_130); -lean_inc(x_129); -lean_dec(x_116); -x_131 = 0; -x_132 = lean_unsigned_to_nat(0u); -x_133 = l_Float_ofScientific(x_109, x_131, x_132); -lean_dec(x_109); -x_134 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; -x_135 = lean_float_div(x_133, x_134); -x_136 = l_Float_ofScientific(x_129, x_131, x_132); -lean_dec(x_129); -x_137 = lean_float_div(x_136, x_134); -x_138 = lean_box_float(x_135); -x_139 = lean_box_float(x_137); -x_140 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_140, 0, x_138); -lean_ctor_set(x_140, 1, x_139); -lean_ctor_set(x_111, 1, x_140); -lean_ctor_set(x_111, 0, x_115); -x_17 = x_111; -x_18 = x_130; -goto block_107; +lean_object* x_133; lean_object* x_134; uint8_t x_135; lean_object* x_136; double x_137; double x_138; double x_139; double x_140; double x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; +x_133 = lean_ctor_get(x_120, 0); +x_134 = lean_ctor_get(x_120, 1); +lean_inc(x_134); +lean_inc(x_133); +lean_dec(x_120); +x_135 = 0; +x_136 = lean_unsigned_to_nat(0u); +x_137 = l_Float_ofScientific(x_113, x_135, x_136); +lean_dec(x_113); +x_138 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; +x_139 = lean_float_div(x_137, x_138); +x_140 = l_Float_ofScientific(x_133, x_135, x_136); +lean_dec(x_133); +x_141 = lean_float_div(x_140, x_138); +x_142 = lean_box_float(x_139); +x_143 = lean_box_float(x_141); +x_144 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_144, 0, x_142); +lean_ctor_set(x_144, 1, x_143); +lean_ctor_set(x_115, 1, x_144); +lean_ctor_set(x_115, 0, x_119); +x_17 = x_115; +x_18 = x_134; +goto block_111; } } else { -lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; uint8_t x_148; lean_object* x_149; double x_150; double x_151; double x_152; double x_153; double x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; -x_141 = lean_ctor_get(x_111, 0); -x_142 = lean_ctor_get(x_111, 1); -lean_inc(x_142); -lean_inc(x_141); -lean_dec(x_111); -x_143 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_143, 0, x_141); -x_144 = lean_io_mono_nanos_now(x_142); -x_145 = lean_ctor_get(x_144, 0); -lean_inc(x_145); -x_146 = lean_ctor_get(x_144, 1); +lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; uint8_t x_152; lean_object* x_153; double x_154; double x_155; double x_156; double x_157; double x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; +x_145 = lean_ctor_get(x_115, 0); +x_146 = lean_ctor_get(x_115, 1); lean_inc(x_146); -if (lean_is_exclusive(x_144)) { - lean_ctor_release(x_144, 0); - lean_ctor_release(x_144, 1); - x_147 = x_144; +lean_inc(x_145); +lean_dec(x_115); +x_147 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_147, 0, x_145); +x_148 = lean_io_mono_nanos_now(x_146); +x_149 = lean_ctor_get(x_148, 0); +lean_inc(x_149); +x_150 = lean_ctor_get(x_148, 1); +lean_inc(x_150); +if (lean_is_exclusive(x_148)) { + lean_ctor_release(x_148, 0); + lean_ctor_release(x_148, 1); + x_151 = x_148; } else { - lean_dec_ref(x_144); - x_147 = lean_box(0); + lean_dec_ref(x_148); + x_151 = lean_box(0); } -x_148 = 0; -x_149 = lean_unsigned_to_nat(0u); -x_150 = l_Float_ofScientific(x_109, x_148, x_149); -lean_dec(x_109); -x_151 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; -x_152 = lean_float_div(x_150, x_151); -x_153 = l_Float_ofScientific(x_145, x_148, x_149); -lean_dec(x_145); -x_154 = lean_float_div(x_153, x_151); -x_155 = lean_box_float(x_152); -x_156 = lean_box_float(x_154); -if (lean_is_scalar(x_147)) { - x_157 = lean_alloc_ctor(0, 2, 0); +x_152 = 0; +x_153 = lean_unsigned_to_nat(0u); +x_154 = l_Float_ofScientific(x_113, x_152, x_153); +lean_dec(x_113); +x_155 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; +x_156 = lean_float_div(x_154, x_155); +x_157 = l_Float_ofScientific(x_149, x_152, x_153); +lean_dec(x_149); +x_158 = lean_float_div(x_157, x_155); +x_159 = lean_box_float(x_156); +x_160 = lean_box_float(x_158); +if (lean_is_scalar(x_151)) { + x_161 = lean_alloc_ctor(0, 2, 0); } else { - x_157 = x_147; + x_161 = x_151; } -lean_ctor_set(x_157, 0, x_155); -lean_ctor_set(x_157, 1, x_156); -x_158 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_158, 0, x_143); -lean_ctor_set(x_158, 1, x_157); -x_17 = x_158; -x_18 = x_146; -goto block_107; +lean_ctor_set(x_161, 0, x_159); +lean_ctor_set(x_161, 1, x_160); +x_162 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_162, 0, x_147); +lean_ctor_set(x_162, 1, x_161); +x_17 = x_162; +x_18 = x_150; +goto block_111; } } else { -uint8_t x_159; -x_159 = !lean_is_exclusive(x_111); -if (x_159 == 0) +uint8_t x_163; +x_163 = !lean_is_exclusive(x_115); +if (x_163 == 0) { -lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; uint8_t x_164; -x_160 = lean_ctor_get(x_111, 0); -x_161 = lean_ctor_get(x_111, 1); -x_162 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_162, 0, x_160); -x_163 = lean_io_mono_nanos_now(x_161); -x_164 = !lean_is_exclusive(x_163); -if (x_164 == 0) +lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; uint8_t x_168; +x_164 = lean_ctor_get(x_115, 0); +x_165 = lean_ctor_get(x_115, 1); +x_166 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_166, 0, x_164); +x_167 = lean_io_mono_nanos_now(x_165); +x_168 = !lean_is_exclusive(x_167); +if (x_168 == 0) { -lean_object* x_165; lean_object* x_166; uint8_t x_167; lean_object* x_168; double x_169; double x_170; double x_171; double x_172; double x_173; lean_object* x_174; lean_object* x_175; -x_165 = lean_ctor_get(x_163, 0); -x_166 = lean_ctor_get(x_163, 1); -x_167 = 0; -x_168 = lean_unsigned_to_nat(0u); -x_169 = l_Float_ofScientific(x_109, x_167, x_168); -lean_dec(x_109); -x_170 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; -x_171 = lean_float_div(x_169, x_170); -x_172 = l_Float_ofScientific(x_165, x_167, x_168); -lean_dec(x_165); -x_173 = lean_float_div(x_172, x_170); -x_174 = lean_box_float(x_171); -x_175 = lean_box_float(x_173); -lean_ctor_set(x_163, 1, x_175); -lean_ctor_set(x_163, 0, x_174); -lean_ctor_set_tag(x_111, 0); -lean_ctor_set(x_111, 1, x_163); -lean_ctor_set(x_111, 0, x_162); -x_17 = x_111; -x_18 = x_166; -goto block_107; +lean_object* x_169; lean_object* x_170; uint8_t x_171; lean_object* x_172; double x_173; double x_174; double x_175; double x_176; double x_177; lean_object* x_178; lean_object* x_179; +x_169 = lean_ctor_get(x_167, 0); +x_170 = lean_ctor_get(x_167, 1); +x_171 = 0; +x_172 = lean_unsigned_to_nat(0u); +x_173 = l_Float_ofScientific(x_113, x_171, x_172); +lean_dec(x_113); +x_174 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; +x_175 = lean_float_div(x_173, x_174); +x_176 = l_Float_ofScientific(x_169, x_171, x_172); +lean_dec(x_169); +x_177 = lean_float_div(x_176, x_174); +x_178 = lean_box_float(x_175); +x_179 = lean_box_float(x_177); +lean_ctor_set(x_167, 1, x_179); +lean_ctor_set(x_167, 0, x_178); +lean_ctor_set_tag(x_115, 0); +lean_ctor_set(x_115, 1, x_167); +lean_ctor_set(x_115, 0, x_166); +x_17 = x_115; +x_18 = x_170; +goto block_111; } else { -lean_object* x_176; lean_object* x_177; uint8_t x_178; lean_object* x_179; double x_180; double x_181; double x_182; double x_183; double x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; -x_176 = lean_ctor_get(x_163, 0); -x_177 = lean_ctor_get(x_163, 1); -lean_inc(x_177); -lean_inc(x_176); -lean_dec(x_163); -x_178 = 0; -x_179 = lean_unsigned_to_nat(0u); -x_180 = l_Float_ofScientific(x_109, x_178, x_179); -lean_dec(x_109); -x_181 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; -x_182 = lean_float_div(x_180, x_181); -x_183 = l_Float_ofScientific(x_176, x_178, x_179); -lean_dec(x_176); -x_184 = lean_float_div(x_183, x_181); -x_185 = lean_box_float(x_182); -x_186 = lean_box_float(x_184); -x_187 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_187, 0, x_185); -lean_ctor_set(x_187, 1, x_186); -lean_ctor_set_tag(x_111, 0); -lean_ctor_set(x_111, 1, x_187); -lean_ctor_set(x_111, 0, x_162); -x_17 = x_111; -x_18 = x_177; -goto block_107; +lean_object* x_180; lean_object* x_181; uint8_t x_182; lean_object* x_183; double x_184; double x_185; double x_186; double x_187; double x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; +x_180 = lean_ctor_get(x_167, 0); +x_181 = lean_ctor_get(x_167, 1); +lean_inc(x_181); +lean_inc(x_180); +lean_dec(x_167); +x_182 = 0; +x_183 = lean_unsigned_to_nat(0u); +x_184 = l_Float_ofScientific(x_113, x_182, x_183); +lean_dec(x_113); +x_185 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; +x_186 = lean_float_div(x_184, x_185); +x_187 = l_Float_ofScientific(x_180, x_182, x_183); +lean_dec(x_180); +x_188 = lean_float_div(x_187, x_185); +x_189 = lean_box_float(x_186); +x_190 = lean_box_float(x_188); +x_191 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_191, 0, x_189); +lean_ctor_set(x_191, 1, x_190); +lean_ctor_set_tag(x_115, 0); +lean_ctor_set(x_115, 1, x_191); +lean_ctor_set(x_115, 0, x_166); +x_17 = x_115; +x_18 = x_181; +goto block_111; } } else { -lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; uint8_t x_195; lean_object* x_196; double x_197; double x_198; double x_199; double x_200; double x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; -x_188 = lean_ctor_get(x_111, 0); -x_189 = lean_ctor_get(x_111, 1); -lean_inc(x_189); -lean_inc(x_188); -lean_dec(x_111); -x_190 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_190, 0, x_188); -x_191 = lean_io_mono_nanos_now(x_189); -x_192 = lean_ctor_get(x_191, 0); -lean_inc(x_192); -x_193 = lean_ctor_get(x_191, 1); +lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; uint8_t x_199; lean_object* x_200; double x_201; double x_202; double x_203; double x_204; double x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; +x_192 = lean_ctor_get(x_115, 0); +x_193 = lean_ctor_get(x_115, 1); lean_inc(x_193); -if (lean_is_exclusive(x_191)) { - lean_ctor_release(x_191, 0); - lean_ctor_release(x_191, 1); - x_194 = x_191; +lean_inc(x_192); +lean_dec(x_115); +x_194 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_194, 0, x_192); +x_195 = lean_io_mono_nanos_now(x_193); +x_196 = lean_ctor_get(x_195, 0); +lean_inc(x_196); +x_197 = lean_ctor_get(x_195, 1); +lean_inc(x_197); +if (lean_is_exclusive(x_195)) { + lean_ctor_release(x_195, 0); + lean_ctor_release(x_195, 1); + x_198 = x_195; } else { - lean_dec_ref(x_191); - x_194 = lean_box(0); + lean_dec_ref(x_195); + x_198 = lean_box(0); } -x_195 = 0; -x_196 = lean_unsigned_to_nat(0u); -x_197 = l_Float_ofScientific(x_109, x_195, x_196); -lean_dec(x_109); -x_198 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; -x_199 = lean_float_div(x_197, x_198); -x_200 = l_Float_ofScientific(x_192, x_195, x_196); -lean_dec(x_192); -x_201 = lean_float_div(x_200, x_198); -x_202 = lean_box_float(x_199); -x_203 = lean_box_float(x_201); -if (lean_is_scalar(x_194)) { - x_204 = lean_alloc_ctor(0, 2, 0); +x_199 = 0; +x_200 = lean_unsigned_to_nat(0u); +x_201 = l_Float_ofScientific(x_113, x_199, x_200); +lean_dec(x_113); +x_202 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__5; +x_203 = lean_float_div(x_201, x_202); +x_204 = l_Float_ofScientific(x_196, x_199, x_200); +lean_dec(x_196); +x_205 = lean_float_div(x_204, x_202); +x_206 = lean_box_float(x_203); +x_207 = lean_box_float(x_205); +if (lean_is_scalar(x_198)) { + x_208 = lean_alloc_ctor(0, 2, 0); } else { - x_204 = x_194; + x_208 = x_198; } -lean_ctor_set(x_204, 0, x_202); -lean_ctor_set(x_204, 1, x_203); -x_205 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_205, 0, x_190); -lean_ctor_set(x_205, 1, x_204); -x_17 = x_205; -x_18 = x_193; -goto block_107; +lean_ctor_set(x_208, 0, x_206); +lean_ctor_set(x_208, 1, x_207); +x_209 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_209, 0, x_194); +lean_ctor_set(x_209, 1, x_208); +x_17 = x_209; +x_18 = x_197; +goto block_111; } } -block_107: +block_111: { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_93; uint8_t x_94; +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; uint8_t x_25; x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); x_20 = lean_ctor_get(x_17, 0); @@ -15810,17 +15779,33 @@ lean_inc(x_21); x_22 = lean_ctor_get(x_19, 1); lean_inc(x_22); lean_dec(x_19); -x_93 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__2; -x_94 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_93); -if (x_94 == 0) +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__2; +x_24 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_23); +if (x_24 == 0) { -uint8_t x_95; -x_95 = 0; -x_23 = x_95; -goto block_92; +if (x_6 == 0) +{ +uint8_t x_91; +x_91 = 0; +x_25 = x_91; +goto block_90; } else { +lean_object* x_92; double x_93; double x_94; lean_object* x_95; +x_92 = lean_box(0); +x_93 = lean_unbox_float(x_21); +lean_dec(x_21); +x_94 = lean_unbox_float(x_22); +lean_dec(x_22); +x_95 = l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_93, x_94, x_5, x_92, x_9, x_10, x_18); +return x_95; +} +} +else +{ +if (x_6 == 0) +{ double x_96; double x_97; double x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; lean_object* x_102; double x_103; double x_104; double x_105; uint8_t x_106; x_96 = lean_unbox_float(x_22); x_97 = lean_unbox_float(x_21); @@ -15834,851 +15819,863 @@ lean_dec(x_100); x_104 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__4; x_105 = lean_float_div(x_103, x_104); x_106 = lean_float_decLt(x_105, x_98); -x_23 = x_106; -goto block_92; +x_25 = x_106; +goto block_90; } -block_92: +else { -if (x_6 == 0) +lean_object* x_107; double x_108; double x_109; lean_object* x_110; +x_107 = lean_box(0); +x_108 = lean_unbox_float(x_21); +lean_dec(x_21); +x_109 = lean_unbox_float(x_22); +lean_dec(x_22); +x_110 = l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_108, x_109, x_5, x_107, x_9, x_10, x_18); +return x_110; +} +} +block_90: { -if (x_23 == 0) +if (x_25 == 0) { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_dec(x_22); lean_dec(x_21); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_24 = lean_st_ref_take(x_10, x_18); -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -x_26 = lean_ctor_get(x_25, 7); -lean_inc(x_26); -x_27 = lean_ctor_get(x_24, 1); +x_26 = lean_st_ref_take(x_10, x_18); +x_27 = lean_ctor_get(x_26, 0); lean_inc(x_27); -lean_dec(x_24); -x_28 = !lean_is_exclusive(x_25); -if (x_28 == 0) -{ -lean_object* x_29; uint8_t x_30; -x_29 = lean_ctor_get(x_25, 7); -lean_dec(x_29); -x_30 = !lean_is_exclusive(x_26); +x_28 = lean_ctor_get(x_27, 7); +lean_inc(x_28); +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); +lean_dec(x_26); +x_30 = !lean_is_exclusive(x_27); if (x_30 == 0) { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_31 = lean_ctor_get(x_26, 0); -x_32 = l_Lean_PersistentArray_append___rarg(x_13, x_31); +lean_object* x_31; uint8_t x_32; +x_31 = lean_ctor_get(x_27, 7); lean_dec(x_31); -lean_ctor_set(x_26, 0, x_32); -x_33 = lean_st_ref_set(x_10, x_25, x_27); -x_34 = lean_ctor_get(x_33, 1); -lean_inc(x_34); +x_32 = !lean_is_exclusive(x_28); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_33 = lean_ctor_get(x_28, 0); +x_34 = l_Lean_PersistentArray_append___rarg(x_13, x_33); lean_dec(x_33); -x_35 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__2(x_20, x_9, x_10, x_34); +lean_ctor_set(x_28, 0, x_34); +x_35 = lean_st_ref_set(x_10, x_27, x_29); +x_36 = lean_ctor_get(x_35, 1); +lean_inc(x_36); +lean_dec(x_35); +x_37 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__2(x_20, x_9, x_10, x_36); lean_dec(x_10); lean_dec(x_9); lean_dec(x_20); -if (lean_obj_tag(x_35) == 0) +if (lean_obj_tag(x_37) == 0) { -uint8_t x_36; -x_36 = !lean_is_exclusive(x_35); -if (x_36 == 0) +uint8_t x_38; +x_38 = !lean_is_exclusive(x_37); +if (x_38 == 0) { -return x_35; +return x_37; } else { -lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_37 = lean_ctor_get(x_35, 0); -x_38 = lean_ctor_get(x_35, 1); -lean_inc(x_38); -lean_inc(x_37); -lean_dec(x_35); -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_37); -lean_ctor_set(x_39, 1, x_38); -return x_39; +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_37, 0); +x_40 = lean_ctor_get(x_37, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_37); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +return x_41; } } else { -uint8_t x_40; -x_40 = !lean_is_exclusive(x_35); -if (x_40 == 0) +uint8_t x_42; +x_42 = !lean_is_exclusive(x_37); +if (x_42 == 0) { -return x_35; +return x_37; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_35, 0); -x_42 = lean_ctor_get(x_35, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_35); -x_43 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_42); -return x_43; +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_37, 0); +x_44 = lean_ctor_get(x_37, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_37); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; } } } else { -uint64_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_44 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); -x_45 = lean_ctor_get(x_26, 0); -lean_inc(x_45); -lean_dec(x_26); -x_46 = l_Lean_PersistentArray_append___rarg(x_13, x_45); -lean_dec(x_45); -x_47 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_47, 0, x_46); -lean_ctor_set_uint64(x_47, sizeof(void*)*1, x_44); -lean_ctor_set(x_25, 7, x_47); -x_48 = lean_st_ref_set(x_10, x_25, x_27); -x_49 = lean_ctor_get(x_48, 1); -lean_inc(x_49); -lean_dec(x_48); -x_50 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__2(x_20, x_9, x_10, x_49); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_20); -if (lean_obj_tag(x_50) == 0) -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_51 = lean_ctor_get(x_50, 0); +uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); +x_47 = lean_ctor_get(x_28, 0); +lean_inc(x_47); +lean_dec(x_28); +x_48 = l_Lean_PersistentArray_append___rarg(x_13, x_47); +lean_dec(x_47); +x_49 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); +lean_ctor_set(x_27, 7, x_49); +x_50 = lean_st_ref_set(x_10, x_27, x_29); +x_51 = lean_ctor_get(x_50, 1); lean_inc(x_51); -x_52 = lean_ctor_get(x_50, 1); -lean_inc(x_52); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_53 = x_50; +lean_dec(x_50); +x_52 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__2(x_20, x_9, x_10, x_51); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_20); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_52, 1); +lean_inc(x_54); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_55 = x_52; } else { - lean_dec_ref(x_50); - x_53 = lean_box(0); + lean_dec_ref(x_52); + x_55 = lean_box(0); } -if (lean_is_scalar(x_53)) { - x_54 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_55)) { + x_56 = lean_alloc_ctor(0, 2, 0); } else { - x_54 = x_53; + x_56 = x_55; } -lean_ctor_set(x_54, 0, x_51); -lean_ctor_set(x_54, 1, x_52); -return x_54; +lean_ctor_set(x_56, 0, x_53); +lean_ctor_set(x_56, 1, x_54); +return x_56; } else { -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_55 = lean_ctor_get(x_50, 0); -lean_inc(x_55); -x_56 = lean_ctor_get(x_50, 1); -lean_inc(x_56); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_57 = x_50; +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_57 = lean_ctor_get(x_52, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_52, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_59 = x_52; } else { - lean_dec_ref(x_50); - x_57 = lean_box(0); + lean_dec_ref(x_52); + x_59 = lean_box(0); } -if (lean_is_scalar(x_57)) { - x_58 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(1, 2, 0); } else { - x_58 = x_57; + x_60 = x_59; } -lean_ctor_set(x_58, 0, x_55); -lean_ctor_set(x_58, 1, x_56); -return x_58; +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_58); +return x_60; } } } else { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; uint64_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_59 = lean_ctor_get(x_25, 0); -x_60 = lean_ctor_get(x_25, 1); -x_61 = lean_ctor_get(x_25, 2); -x_62 = lean_ctor_get(x_25, 3); -x_63 = lean_ctor_get(x_25, 4); -x_64 = lean_ctor_get(x_25, 5); -x_65 = lean_ctor_get(x_25, 6); -x_66 = lean_ctor_get(x_25, 8); +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; uint64_t x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_61 = lean_ctor_get(x_27, 0); +x_62 = lean_ctor_get(x_27, 1); +x_63 = lean_ctor_get(x_27, 2); +x_64 = lean_ctor_get(x_27, 3); +x_65 = lean_ctor_get(x_27, 4); +x_66 = lean_ctor_get(x_27, 5); +x_67 = lean_ctor_get(x_27, 6); +x_68 = lean_ctor_get(x_27, 8); +lean_inc(x_68); +lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); lean_inc(x_62); lean_inc(x_61); -lean_inc(x_60); -lean_inc(x_59); -lean_dec(x_25); -x_67 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); -x_68 = lean_ctor_get(x_26, 0); -lean_inc(x_68); -if (lean_is_exclusive(x_26)) { - lean_ctor_release(x_26, 0); - x_69 = x_26; +lean_dec(x_27); +x_69 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); +x_70 = lean_ctor_get(x_28, 0); +lean_inc(x_70); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + x_71 = x_28; } else { - lean_dec_ref(x_26); - x_69 = lean_box(0); + lean_dec_ref(x_28); + x_71 = lean_box(0); } -x_70 = l_Lean_PersistentArray_append___rarg(x_13, x_68); -lean_dec(x_68); -if (lean_is_scalar(x_69)) { - x_71 = lean_alloc_ctor(0, 1, 8); +x_72 = l_Lean_PersistentArray_append___rarg(x_13, x_70); +lean_dec(x_70); +if (lean_is_scalar(x_71)) { + x_73 = lean_alloc_ctor(0, 1, 8); } else { - x_71 = x_69; + x_73 = x_71; } -lean_ctor_set(x_71, 0, x_70); -lean_ctor_set_uint64(x_71, sizeof(void*)*1, x_67); -x_72 = lean_alloc_ctor(0, 9, 0); -lean_ctor_set(x_72, 0, x_59); -lean_ctor_set(x_72, 1, x_60); -lean_ctor_set(x_72, 2, x_61); -lean_ctor_set(x_72, 3, x_62); -lean_ctor_set(x_72, 4, x_63); -lean_ctor_set(x_72, 5, x_64); -lean_ctor_set(x_72, 6, x_65); -lean_ctor_set(x_72, 7, x_71); -lean_ctor_set(x_72, 8, x_66); -x_73 = lean_st_ref_set(x_10, x_72, x_27); -x_74 = lean_ctor_get(x_73, 1); -lean_inc(x_74); -lean_dec(x_73); -x_75 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__2(x_20, x_9, x_10, x_74); +lean_ctor_set(x_73, 0, x_72); +lean_ctor_set_uint64(x_73, sizeof(void*)*1, x_69); +x_74 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_74, 0, x_61); +lean_ctor_set(x_74, 1, x_62); +lean_ctor_set(x_74, 2, x_63); +lean_ctor_set(x_74, 3, x_64); +lean_ctor_set(x_74, 4, x_65); +lean_ctor_set(x_74, 5, x_66); +lean_ctor_set(x_74, 6, x_67); +lean_ctor_set(x_74, 7, x_73); +lean_ctor_set(x_74, 8, x_68); +x_75 = lean_st_ref_set(x_10, x_74, x_29); +x_76 = lean_ctor_get(x_75, 1); +lean_inc(x_76); +lean_dec(x_75); +x_77 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__2(x_20, x_9, x_10, x_76); lean_dec(x_10); lean_dec(x_9); lean_dec(x_20); -if (lean_obj_tag(x_75) == 0) +if (lean_obj_tag(x_77) == 0) { -lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_76 = lean_ctor_get(x_75, 0); -lean_inc(x_76); -x_77 = lean_ctor_get(x_75, 1); -lean_inc(x_77); -if (lean_is_exclusive(x_75)) { - lean_ctor_release(x_75, 0); - lean_ctor_release(x_75, 1); - x_78 = x_75; +lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_78 = lean_ctor_get(x_77, 0); +lean_inc(x_78); +x_79 = lean_ctor_get(x_77, 1); +lean_inc(x_79); +if (lean_is_exclusive(x_77)) { + lean_ctor_release(x_77, 0); + lean_ctor_release(x_77, 1); + x_80 = x_77; } else { - lean_dec_ref(x_75); - x_78 = lean_box(0); + lean_dec_ref(x_77); + x_80 = lean_box(0); } -if (lean_is_scalar(x_78)) { - x_79 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_80)) { + x_81 = lean_alloc_ctor(0, 2, 0); } else { - x_79 = x_78; + x_81 = x_80; } -lean_ctor_set(x_79, 0, x_76); -lean_ctor_set(x_79, 1, x_77); -return x_79; +lean_ctor_set(x_81, 0, x_78); +lean_ctor_set(x_81, 1, x_79); +return x_81; } else { -lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; -x_80 = lean_ctor_get(x_75, 0); -lean_inc(x_80); -x_81 = lean_ctor_get(x_75, 1); -lean_inc(x_81); -if (lean_is_exclusive(x_75)) { - lean_ctor_release(x_75, 0); - lean_ctor_release(x_75, 1); - x_82 = x_75; +lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; +x_82 = lean_ctor_get(x_77, 0); +lean_inc(x_82); +x_83 = lean_ctor_get(x_77, 1); +lean_inc(x_83); +if (lean_is_exclusive(x_77)) { + lean_ctor_release(x_77, 0); + lean_ctor_release(x_77, 1); + x_84 = x_77; } else { - lean_dec_ref(x_75); - x_82 = lean_box(0); + lean_dec_ref(x_77); + x_84 = lean_box(0); } -if (lean_is_scalar(x_82)) { - x_83 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_84)) { + x_85 = lean_alloc_ctor(1, 2, 0); } else { - x_83 = x_82; + x_85 = x_84; } -lean_ctor_set(x_83, 0, x_80); -lean_ctor_set(x_83, 1, x_81); -return x_83; +lean_ctor_set(x_85, 0, x_82); +lean_ctor_set(x_85, 1, x_83); +return x_85; } } } else { -lean_object* x_84; double x_85; double x_86; lean_object* x_87; -x_84 = lean_box(0); -x_85 = lean_unbox_float(x_21); +lean_object* x_86; double x_87; double x_88; lean_object* x_89; +x_86 = lean_box(0); +x_87 = lean_unbox_float(x_21); lean_dec(x_21); -x_86 = lean_unbox_float(x_22); +x_88 = lean_unbox_float(x_22); lean_dec(x_22); -x_87 = l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_20, x_1, x_23, x_85, x_86, x_5, x_84, x_9, x_10, x_18); -return x_87; -} -} -else -{ -lean_object* x_88; double x_89; double x_90; lean_object* x_91; -x_88 = lean_box(0); -x_89 = lean_unbox_float(x_21); -lean_dec(x_21); -x_90 = lean_unbox_float(x_22); -lean_dec(x_22); -x_91 = l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_20, x_1, x_23, x_89, x_90, x_5, x_88, x_9, x_10, x_18); -return x_91; +x_89 = l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_87, x_88, x_5, x_86, x_9, x_10, x_18); +return x_89; } } } } else { -lean_object* x_206; lean_object* x_207; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_14); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_210; lean_object* x_211; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_14); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_3(x_7, x_9, x_10, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_3(x_7, x_9, x_10, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_206 = x_298; -x_207 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_206 = x_298; -x_207 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_210 = x_306; +x_211 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_206 = x_336; -x_207 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_210 = x_306; +x_211 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_206 = x_298; -x_207 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_210 = x_344; +x_211 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_206 = x_298; -x_207 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_210 = x_306; +x_211 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_210 = x_306; +x_211 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_206 = x_374; -x_207 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; uint8_t x_212; lean_object* x_282; uint8_t x_283; -x_208 = lean_ctor_get(x_206, 1); -lean_inc(x_208); -x_209 = lean_ctor_get(x_206, 0); -lean_inc(x_209); -lean_dec(x_206); -x_210 = lean_ctor_get(x_208, 0); -lean_inc(x_210); -x_211 = lean_ctor_get(x_208, 1); -lean_inc(x_211); -lean_dec(x_208); -x_282 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_212 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_211); -x_286 = lean_unbox_float(x_210); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_212 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_210 = x_382; +x_211 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; uint8_t x_217; uint8_t x_218; +x_212 = lean_ctor_get(x_210, 1); +lean_inc(x_212); +x_213 = lean_ctor_get(x_210, 0); +lean_inc(x_213); +lean_dec(x_210); +x_214 = lean_ctor_get(x_212, 0); +lean_inc(x_214); +x_215 = lean_ctor_get(x_212, 1); +lean_inc(x_215); +lean_dec(x_212); +x_216 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__2; +x_217 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_216); +if (x_217 == 0) { if (x_6 == 0) { -if (x_212 == 0) +uint8_t x_284; +x_284 = 0; +x_218 = x_284; +goto block_283; +} +else { -lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; uint8_t x_217; -lean_dec(x_211); -lean_dec(x_210); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_214); +lean_dec(x_214); +x_287 = lean_unbox_float(x_215); +lean_dec(x_215); +x_288 = l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_213, x_217, x_286, x_287, x_5, x_285, x_9, x_10, x_211); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_215); +x_290 = lean_unbox_float(x_214); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_218 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_214); +lean_dec(x_214); +x_300 = lean_unbox_float(x_215); +lean_dec(x_215); +x_301 = l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_213, x_217, x_299, x_300, x_5, x_298, x_9, x_10, x_211); +return x_301; +} +} +block_283: +{ +if (x_218 == 0) +{ +lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; uint8_t x_223; +lean_dec(x_215); +lean_dec(x_214); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_213 = lean_st_ref_take(x_10, x_207); -x_214 = lean_ctor_get(x_213, 0); -lean_inc(x_214); -x_215 = lean_ctor_get(x_214, 7); -lean_inc(x_215); -x_216 = lean_ctor_get(x_213, 1); -lean_inc(x_216); -lean_dec(x_213); -x_217 = !lean_is_exclusive(x_214); -if (x_217 == 0) +x_219 = lean_st_ref_take(x_10, x_211); +x_220 = lean_ctor_get(x_219, 0); +lean_inc(x_220); +x_221 = lean_ctor_get(x_220, 7); +lean_inc(x_221); +x_222 = lean_ctor_get(x_219, 1); +lean_inc(x_222); +lean_dec(x_219); +x_223 = !lean_is_exclusive(x_220); +if (x_223 == 0) { -lean_object* x_218; uint8_t x_219; -x_218 = lean_ctor_get(x_214, 7); -lean_dec(x_218); -x_219 = !lean_is_exclusive(x_215); -if (x_219 == 0) -{ -lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; -x_220 = lean_ctor_get(x_215, 0); -x_221 = l_Lean_PersistentArray_append___rarg(x_13, x_220); -lean_dec(x_220); -lean_ctor_set(x_215, 0, x_221); -x_222 = lean_st_ref_set(x_10, x_214, x_216); -x_223 = lean_ctor_get(x_222, 1); -lean_inc(x_223); -lean_dec(x_222); -x_224 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__2(x_209, x_9, x_10, x_223); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_209); -if (lean_obj_tag(x_224) == 0) -{ -uint8_t x_225; -x_225 = !lean_is_exclusive(x_224); +lean_object* x_224; uint8_t x_225; +x_224 = lean_ctor_get(x_220, 7); +lean_dec(x_224); +x_225 = !lean_is_exclusive(x_221); if (x_225 == 0) { -return x_224; -} -else -{ -lean_object* x_226; lean_object* x_227; lean_object* x_228; -x_226 = lean_ctor_get(x_224, 0); -x_227 = lean_ctor_get(x_224, 1); -lean_inc(x_227); -lean_inc(x_226); -lean_dec(x_224); -x_228 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_228, 0, x_226); -lean_ctor_set(x_228, 1, x_227); -return x_228; -} -} -else -{ -uint8_t x_229; -x_229 = !lean_is_exclusive(x_224); -if (x_229 == 0) -{ -return x_224; -} -else -{ -lean_object* x_230; lean_object* x_231; lean_object* x_232; -x_230 = lean_ctor_get(x_224, 0); -x_231 = lean_ctor_get(x_224, 1); -lean_inc(x_231); -lean_inc(x_230); -lean_dec(x_224); -x_232 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_232, 0, x_230); -lean_ctor_set(x_232, 1, x_231); -return x_232; -} -} -} -else -{ -uint64_t x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; -x_233 = lean_ctor_get_uint64(x_215, sizeof(void*)*1); -x_234 = lean_ctor_get(x_215, 0); -lean_inc(x_234); -lean_dec(x_215); -x_235 = l_Lean_PersistentArray_append___rarg(x_13, x_234); -lean_dec(x_234); -x_236 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_236, 0, x_235); -lean_ctor_set_uint64(x_236, sizeof(void*)*1, x_233); -lean_ctor_set(x_214, 7, x_236); -x_237 = lean_st_ref_set(x_10, x_214, x_216); -x_238 = lean_ctor_get(x_237, 1); -lean_inc(x_238); -lean_dec(x_237); -x_239 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__2(x_209, x_9, x_10, x_238); +lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; +x_226 = lean_ctor_get(x_221, 0); +x_227 = l_Lean_PersistentArray_append___rarg(x_13, x_226); +lean_dec(x_226); +lean_ctor_set(x_221, 0, x_227); +x_228 = lean_st_ref_set(x_10, x_220, x_222); +x_229 = lean_ctor_get(x_228, 1); +lean_inc(x_229); +lean_dec(x_228); +x_230 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__2(x_213, x_9, x_10, x_229); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_209); -if (lean_obj_tag(x_239) == 0) +lean_dec(x_213); +if (lean_obj_tag(x_230) == 0) { -lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; -x_240 = lean_ctor_get(x_239, 0); +uint8_t x_231; +x_231 = !lean_is_exclusive(x_230); +if (x_231 == 0) +{ +return x_230; +} +else +{ +lean_object* x_232; lean_object* x_233; lean_object* x_234; +x_232 = lean_ctor_get(x_230, 0); +x_233 = lean_ctor_get(x_230, 1); +lean_inc(x_233); +lean_inc(x_232); +lean_dec(x_230); +x_234 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_234, 0, x_232); +lean_ctor_set(x_234, 1, x_233); +return x_234; +} +} +else +{ +uint8_t x_235; +x_235 = !lean_is_exclusive(x_230); +if (x_235 == 0) +{ +return x_230; +} +else +{ +lean_object* x_236; lean_object* x_237; lean_object* x_238; +x_236 = lean_ctor_get(x_230, 0); +x_237 = lean_ctor_get(x_230, 1); +lean_inc(x_237); +lean_inc(x_236); +lean_dec(x_230); +x_238 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_238, 0, x_236); +lean_ctor_set(x_238, 1, x_237); +return x_238; +} +} +} +else +{ +uint64_t x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; +x_239 = lean_ctor_get_uint64(x_221, sizeof(void*)*1); +x_240 = lean_ctor_get(x_221, 0); lean_inc(x_240); -x_241 = lean_ctor_get(x_239, 1); -lean_inc(x_241); -if (lean_is_exclusive(x_239)) { - lean_ctor_release(x_239, 0); - lean_ctor_release(x_239, 1); - x_242 = x_239; -} else { - lean_dec_ref(x_239); - x_242 = lean_box(0); -} -if (lean_is_scalar(x_242)) { - x_243 = lean_alloc_ctor(0, 2, 0); -} else { - x_243 = x_242; -} -lean_ctor_set(x_243, 0, x_240); -lean_ctor_set(x_243, 1, x_241); -return x_243; -} -else -{ -lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; -x_244 = lean_ctor_get(x_239, 0); +lean_dec(x_221); +x_241 = l_Lean_PersistentArray_append___rarg(x_13, x_240); +lean_dec(x_240); +x_242 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_242, 0, x_241); +lean_ctor_set_uint64(x_242, sizeof(void*)*1, x_239); +lean_ctor_set(x_220, 7, x_242); +x_243 = lean_st_ref_set(x_10, x_220, x_222); +x_244 = lean_ctor_get(x_243, 1); lean_inc(x_244); -x_245 = lean_ctor_get(x_239, 1); -lean_inc(x_245); -if (lean_is_exclusive(x_239)) { - lean_ctor_release(x_239, 0); - lean_ctor_release(x_239, 1); - x_246 = x_239; +lean_dec(x_243); +x_245 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__2(x_213, x_9, x_10, x_244); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_213); +if (lean_obj_tag(x_245) == 0) +{ +lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; +x_246 = lean_ctor_get(x_245, 0); +lean_inc(x_246); +x_247 = lean_ctor_get(x_245, 1); +lean_inc(x_247); +if (lean_is_exclusive(x_245)) { + lean_ctor_release(x_245, 0); + lean_ctor_release(x_245, 1); + x_248 = x_245; } else { - lean_dec_ref(x_239); - x_246 = lean_box(0); + lean_dec_ref(x_245); + x_248 = lean_box(0); } -if (lean_is_scalar(x_246)) { - x_247 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_248)) { + x_249 = lean_alloc_ctor(0, 2, 0); } else { - x_247 = x_246; + x_249 = x_248; } -lean_ctor_set(x_247, 0, x_244); -lean_ctor_set(x_247, 1, x_245); -return x_247; +lean_ctor_set(x_249, 0, x_246); +lean_ctor_set(x_249, 1, x_247); +return x_249; +} +else +{ +lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; +x_250 = lean_ctor_get(x_245, 0); +lean_inc(x_250); +x_251 = lean_ctor_get(x_245, 1); +lean_inc(x_251); +if (lean_is_exclusive(x_245)) { + lean_ctor_release(x_245, 0); + lean_ctor_release(x_245, 1); + x_252 = x_245; +} else { + lean_dec_ref(x_245); + x_252 = lean_box(0); +} +if (lean_is_scalar(x_252)) { + x_253 = lean_alloc_ctor(1, 2, 0); +} else { + x_253 = x_252; +} +lean_ctor_set(x_253, 0, x_250); +lean_ctor_set(x_253, 1, x_251); +return x_253; } } } else { -lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_248 = lean_ctor_get(x_214, 0); -x_249 = lean_ctor_get(x_214, 1); -x_250 = lean_ctor_get(x_214, 2); -x_251 = lean_ctor_get(x_214, 3); -x_252 = lean_ctor_get(x_214, 4); -x_253 = lean_ctor_get(x_214, 5); -x_254 = lean_ctor_get(x_214, 6); -x_255 = lean_ctor_get(x_214, 8); +lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_254 = lean_ctor_get(x_220, 0); +x_255 = lean_ctor_get(x_220, 1); +x_256 = lean_ctor_get(x_220, 2); +x_257 = lean_ctor_get(x_220, 3); +x_258 = lean_ctor_get(x_220, 4); +x_259 = lean_ctor_get(x_220, 5); +x_260 = lean_ctor_get(x_220, 6); +x_261 = lean_ctor_get(x_220, 8); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); lean_inc(x_255); lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_inc(x_248); -lean_dec(x_214); -x_256 = lean_ctor_get_uint64(x_215, sizeof(void*)*1); -x_257 = lean_ctor_get(x_215, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_215)) { - lean_ctor_release(x_215, 0); - x_258 = x_215; -} else { - lean_dec_ref(x_215); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_13, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 9, 0); -lean_ctor_set(x_261, 0, x_248); -lean_ctor_set(x_261, 1, x_249); -lean_ctor_set(x_261, 2, x_250); -lean_ctor_set(x_261, 3, x_251); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_260); -lean_ctor_set(x_261, 8, x_255); -x_262 = lean_st_ref_set(x_10, x_261, x_216); -x_263 = lean_ctor_get(x_262, 1); +lean_dec(x_220); +x_262 = lean_ctor_get_uint64(x_221, sizeof(void*)*1); +x_263 = lean_ctor_get(x_221, 0); lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__2(x_209, x_9, x_10, x_263); +if (lean_is_exclusive(x_221)) { + lean_ctor_release(x_221, 0); + x_264 = x_221; +} else { + lean_dec_ref(x_221); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_13, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_267, 0, x_254); +lean_ctor_set(x_267, 1, x_255); +lean_ctor_set(x_267, 2, x_256); +lean_ctor_set(x_267, 3, x_257); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_266); +lean_ctor_set(x_267, 8, x_261); +x_268 = lean_st_ref_set(x_10, x_267, x_222); +x_269 = lean_ctor_get(x_268, 1); +lean_inc(x_269); +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__2(x_213, x_9, x_10, x_269); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_209); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_213); +if (lean_obj_tag(x_270) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_274 = x_273; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); -lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_277 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); } else { - x_272 = x_271; + x_278 = x_277; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_210); -lean_dec(x_210); -x_275 = lean_unbox_float(x_211); -lean_dec(x_211); -x_276 = l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_209, x_1, x_212, x_274, x_275, x_5, x_273, x_9, x_10, x_207); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_210); -lean_dec(x_210); -x_279 = lean_unbox_float(x_211); -lean_dec(x_211); -x_280 = l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_209, x_1, x_212, x_278, x_279, x_5, x_277, x_9, x_10, x_207); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_214); +lean_dec(x_214); +x_281 = lean_unbox_float(x_215); +lean_dec(x_215); +x_282 = l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_213, x_217, x_280, x_281, x_5, x_279, x_9, x_10, x_211); +return x_282; } } } @@ -20294,11 +20291,20 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__6() { +static uint64_t _init_l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__6() { +_start: +{ +lean_object* x_1; uint64_t x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_uint64_of_nat(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__7() { _start: { uint64_t x_1; lean_object* x_2; lean_object* x_3; -x_1 = 0; +x_1 = l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__6; x_2 = l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__3; x_3 = lean_alloc_ctor(0, 1, 8); lean_ctor_set(x_3, 0, x_2); @@ -20306,14 +20312,14 @@ lean_ctor_set_uint64(x_3, sizeof(void*)*1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__7() { +static lean_object* _init_l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; lean_object* x_6; x_1 = lean_box(0); x_2 = l_Lean_Elab_Command_instInhabitedScope___closed__2; x_3 = l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__5; -x_4 = l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__6; +x_4 = l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__7; x_5 = 0; x_6 = lean_alloc_ctor(0, 4, 1); lean_ctor_set(x_6, 0, x_2); @@ -20324,11 +20330,11 @@ lean_ctor_set_uint8(x_6, sizeof(void*)*4, x_5); return x_6; } } -static lean_object* _init_l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__8() { +static lean_object* _init_l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__7; +x_1 = l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__8; x_2 = l_Lean_Elab_Command_instInhabitedScope___closed__1; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -20345,7 +20351,7 @@ lean_object* x_5; lean_object* x_6; lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_5 = l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__8; +x_5 = l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__9; x_6 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_6, 0, x_5); lean_ctor_set(x_6, 1, x_4); @@ -20608,41 +20614,39 @@ lean_dec(x_4); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; uint8_t x_16; double x_17; double x_18; lean_object* x_19; -x_15 = lean_unbox(x_2); +uint8_t x_14; uint8_t x_15; double x_16; double x_17; lean_object* x_18; +x_14 = lean_unbox(x_2); lean_dec(x_2); -x_16 = lean_unbox(x_8); +x_15 = lean_unbox(x_7); +lean_dec(x_7); +x_16 = lean_unbox_float(x_8); lean_dec(x_8); x_17 = lean_unbox_float(x_9); lean_dec(x_9); -x_18 = lean_unbox_float(x_10); -lean_dec(x_10); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__2(x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_16, x_17, x_18, x_11, x_12, x_13, x_14); -lean_dec(x_13); -lean_dec(x_7); +x_18 = l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__2(x_1, x_14, x_3, x_4, x_5, x_6, x_15, x_16, x_17, x_10, x_11, x_12, x_13); +lean_dec(x_12); lean_dec(x_6); -return x_19; +return x_18; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; uint8_t x_16; double x_17; double x_18; lean_object* x_19; -x_15 = lean_unbox(x_2); +uint8_t x_14; uint8_t x_15; double x_16; double x_17; lean_object* x_18; +x_14 = lean_unbox(x_2); lean_dec(x_2); -x_16 = lean_unbox(x_7); +x_15 = lean_unbox(x_6); +lean_dec(x_6); +x_16 = lean_unbox_float(x_7); lean_dec(x_7); x_17 = lean_unbox_float(x_8); lean_dec(x_8); -x_18 = lean_unbox_float(x_9); -lean_dec(x_9); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__3(x_1, x_15, x_3, x_4, x_5, x_6, x_16, x_17, x_18, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_11); -lean_dec(x_6); -return x_19; +x_18 = l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__3(x_1, x_14, x_3, x_4, x_5, x_15, x_16, x_17, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_10); +return x_18; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Command_wrapAsyncAsSnapshot___spec__1___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { @@ -43897,8 +43901,6 @@ lean_mark_persistent(l_Lean_Elab_logException___at_Lean_Elab_Command_runLinters_ l_Lean_Elab_logException___at_Lean_Elab_Command_runLinters___spec__1___closed__4 = _init_l_Lean_Elab_logException___at_Lean_Elab_Command_runLinters___spec__1___closed__4(); lean_mark_persistent(l_Lean_Elab_logException___at_Lean_Elab_Command_runLinters___spec__1___closed__4); l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2___closed__1(); -l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2___closed__2(); -lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__2___closed__2); l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3___closed__1); l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Elab_Command_runLinters___spec__4___lambda__3___closed__2(); @@ -44033,11 +44035,12 @@ lean_mark_persistent(l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___close l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__5 = _init_l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__5(); lean_mark_persistent(l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__5); l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__6 = _init_l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__6(); -lean_mark_persistent(l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__6); l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__7 = _init_l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__7(); lean_mark_persistent(l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__7); l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__8 = _init_l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__8(); lean_mark_persistent(l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__8); +l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__9 = _init_l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__9(); +lean_mark_persistent(l_Lean_Elab_Command_wrapAsyncAsSnapshot___lambda__5___closed__9); l_Lean_Elab_Command_instMonadQuotationCommandElabM___closed__1 = _init_l_Lean_Elab_Command_instMonadQuotationCommandElabM___closed__1(); lean_mark_persistent(l_Lean_Elab_Command_instMonadQuotationCommandElabM___closed__1); l_Lean_Elab_Command_instMonadQuotationCommandElabM___closed__2 = _init_l_Lean_Elab_Command_instMonadQuotationCommandElabM___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/DefView.c b/stage0/stdlib/Lean/Elab/DefView.c index cf1713176b..e8dfee60e2 100644 --- a/stage0/stdlib/Lean/Elab/DefView.c +++ b/stage0/stdlib/Lean/Elab/DefView.c @@ -57,7 +57,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Command_mkDefView LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Elab_Command_mkDefViewOfInstance___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_mkDefViewOfInstance___spec__10___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__6; +static uint64_t l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__6; size_t lean_usize_of_nat(lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_instToSnapshotTreeDefsParsedSnapshot___spec__1___lambda__1(lean_object*); @@ -98,6 +98,7 @@ lean_object* l_Lean_ResolveName_resolveNamespace(lean_object*, lean_object*, lea LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_DefView_isInstance___spec__1(lean_object*, size_t, size_t); static lean_object* l_Lean_Elab_Command_mkDefViewOfAbbrev___closed__1; lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); +uint64_t lean_uint64_of_nat(lean_object*); lean_object* l_Lean_MessageData_ofSyntax(lean_object*); LEAN_EXPORT uint8_t l_Lean_Elab_DefKind_isTheorem(uint8_t); static lean_object* l_Lean_Elab_instInhabitedDefView___closed__2; @@ -236,6 +237,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Command_mkDefView lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_addMacroStack___at_Lean_Elab_Command_instAddErrorMessageContextCommandElabM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__10; LEAN_EXPORT lean_object* l_Lean_Elab_DefKind_noConfusion___rarg___lambda__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_DefKind_isTheorem___boxed(lean_object*); lean_object* lean_array_get_size(lean_object*); @@ -626,11 +628,20 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__6() { +static uint64_t _init_l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__6() { +_start: +{ +lean_object* x_1; uint64_t x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_uint64_of_nat(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__7() { _start: { uint64_t x_1; lean_object* x_2; lean_object* x_3; -x_1 = 0; +x_1 = l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__6; x_2 = l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__3; x_3 = lean_alloc_ctor(0, 1, 8); lean_ctor_set(x_3, 0, x_2); @@ -638,7 +649,7 @@ lean_ctor_set_uint64(x_3, sizeof(void*)*1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__7() { +static lean_object* _init_l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__8() { _start: { lean_object* x_1; @@ -646,14 +657,14 @@ x_1 = lean_mk_string_unchecked("", 0, 0); return x_1; } } -static lean_object* _init_l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__8() { +static lean_object* _init_l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; lean_object* x_6; x_1 = lean_box(0); -x_2 = l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__7; +x_2 = l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__8; x_3 = l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__5; -x_4 = l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__6; +x_4 = l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__7; x_5 = 0; x_6 = lean_alloc_ctor(0, 4, 1); lean_ctor_set(x_6, 0, x_2); @@ -664,11 +675,11 @@ lean_ctor_set_uint8(x_6, sizeof(void*)*4, x_5); return x_6; } } -static lean_object* _init_l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__9() { +static lean_object* _init_l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__8; +x_1 = l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__9; x_2 = l_Lean_Elab_instInhabitedDefViewElabHeaderData___closed__1; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -682,7 +693,7 @@ _start: if (lean_obj_tag(x_1) == 0) { lean_object* x_2; -x_2 = l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__9; +x_2 = l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__10; return x_2; } else @@ -836,7 +847,7 @@ _start: if (lean_obj_tag(x_1) == 0) { lean_object* x_2; -x_2 = l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__9; +x_2 = l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__10; return x_2; } else @@ -3049,7 +3060,7 @@ static lean_object* _init_l_Lean_Elab_Command_mkDefViewOfInstance___closed__7() _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__7; +x_1 = l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__8; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } @@ -5890,13 +5901,14 @@ lean_mark_persistent(l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lam l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__5 = _init_l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__5(); lean_mark_persistent(l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__5); l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__6 = _init_l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__6(); -lean_mark_persistent(l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__6); l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__7 = _init_l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__7(); lean_mark_persistent(l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__7); l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__8 = _init_l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__8(); lean_mark_persistent(l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__8); l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__9 = _init_l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__9(); lean_mark_persistent(l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__9); +l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__10 = _init_l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__10(); +lean_mark_persistent(l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___lambda__1___closed__10); l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___closed__1 = _init_l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___closed__1(); lean_mark_persistent(l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___closed__1); l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___closed__2 = _init_l_Lean_Elab_instToSnapshotTreeHeaderProcessedSnapshot___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/MutualDef.c b/stage0/stdlib/Lean/Elab/MutualDef.c index 8f52c35df1..1a00454faf 100644 --- a/stage0/stdlib/Lean/Elab/MutualDef.c +++ b/stage0/stdlib/Lean/Elab/MutualDef.c @@ -260,7 +260,7 @@ LEAN_EXPORT lean_object* l_Lean_RBNode_fold___at___private_Lean_Elab_MutualDef_0 LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_elabMutualDef_go___spec__17(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Term_elabMutualDef_processDeriving___spec__2(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendingMVarErrorMessage___closed__2; -static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__6; +static uint64_t l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__6; static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_MutualDef___hyg_6628____closed__5; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_MutualClosure_main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Elab_Command_elabMutualDef___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -474,6 +474,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_withH LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabFunValues___spec__18___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_checkModifiers(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereStructInst___spec__4___lambda__3___closed__4; +uint64_t lean_uint64_of_nat(lean_object*); lean_object* l_List_findSome_x3f___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkLetRecClosures___spec__7___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkLetRecClosures___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Core_withRestoreOrSaveFull___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabFunValues___spec__14___boxed(lean_object**); @@ -1212,6 +1213,7 @@ LEAN_EXPORT lean_object* l_Lean_Language_withAlwaysResolvedPromises___at_Lean_El LEAN_EXPORT lean_object* l_Lean_Elab_elabTerminationHints___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_declValToTerminationHint___spec__1___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_MutualDef___hyg_6628____closed__1; static lean_object* l_Lean_addDeclarationRanges___at_Lean_Elab_Term_elabMutualDef_go___spec__10___closed__2; +static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__13; LEAN_EXPORT lean_object* l_Lean_Elab_Term_withRestoreOrSaveFull___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__4___boxed(lean_object**); static lean_object* l_Nat_foldM_loop___at_Lean_Elab_Term_MutualClosure_pushMain___spec__1___closed__3; uint8_t l_Lean_Exception_isRuntime(lean_object*); @@ -4079,11 +4081,20 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__6() { +static uint64_t _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__6() { +_start: +{ +lean_object* x_1; uint64_t x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_uint64_of_nat(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__7() { _start: { uint64_t x_1; lean_object* x_2; lean_object* x_3; -x_1 = 0; +x_1 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__6; x_2 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__3; x_3 = lean_alloc_ctor(0, 1, 8); lean_ctor_set(x_3, 0, x_2); @@ -4091,14 +4102,14 @@ lean_ctor_set_uint64(x_3, sizeof(void*)*1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__7() { +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; lean_object* x_6; x_1 = lean_box(0); x_2 = l_Lean_Elab_instantiateMVarsProfiling___closed__1; x_3 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__5; -x_4 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__6; +x_4 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__7; x_5 = 0; x_6 = lean_alloc_ctor(0, 4, 1); lean_ctor_set(x_6, 0, x_2); @@ -4109,47 +4120,47 @@ lean_ctor_set_uint8(x_6, sizeof(void*)*4, x_5); return x_6; } } -static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__8() { +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__7; +x_2 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__8; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__9() { +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__8; +x_1 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__9; x_2 = lean_task_pure(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__10() { +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__9; +x_2 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__10; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__11() { +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__7; +x_2 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__8; x_3 = lean_box(0); -x_4 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__10; +x_4 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__11; x_5 = l_Lean_Elab_instInhabitedDefViewElabHeader___closed__1; x_6 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_6, 0, x_2); @@ -4160,7 +4171,7 @@ lean_ctor_set(x_6, 4, x_5); return x_6; } } -static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__12() { +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; @@ -4175,7 +4186,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabH _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__11; +x_10 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__12; x_11 = lean_io_promise_resolve(x_10, x_1, x_9); x_12 = !lean_is_exclusive(x_11); if (x_12 == 0) @@ -4183,7 +4194,7 @@ if (x_12 == 0) lean_object* x_13; lean_object* x_14; x_13 = lean_ctor_get(x_11, 0); lean_dec(x_13); -x_14 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__12; +x_14 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__13; lean_ctor_set(x_11, 0, x_14); return x_11; } @@ -4193,7 +4204,7 @@ lean_object* x_15; lean_object* x_16; lean_object* x_17; x_15 = lean_ctor_get(x_11, 1); lean_inc(x_15); lean_dec(x_11); -x_16 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__12; +x_16 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__13; x_17 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_17, 0, x_16); lean_ctor_set(x_17, 1, x_15); @@ -53966,7 +53977,6 @@ lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeade l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__5 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__5(); lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__5); l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__6 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__6(); -lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__6); l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__7 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__7(); lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__7); l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__8 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__8(); @@ -53979,6 +53989,8 @@ l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__11); l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__12 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__12(); lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__12); +l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__13 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__13(); +lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___lambda__1___closed__13); l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___closed__1 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___closed__1(); lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___closed__1); l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___closed__2 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_mkTacTask___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/PreDefinition/Basic.c b/stage0/stdlib/Lean/Elab/PreDefinition/Basic.c index bac60eee9d..0b87689435 100644 --- a/stage0/stdlib/Lean/Elab/PreDefinition/Basic.c +++ b/stage0/stdlib/Lean/Elab/PreDefinition/Basic.c @@ -18,7 +18,6 @@ lean_object* l_Lean_Elab_Term_levelMVarToParam(lean_object*, lean_object*, lean_ LEAN_EXPORT lean_object* l_Lean_Elab_fixLevelParams___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_levelMVarToParamTypesPreDecls___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_instInhabitedPreDefinition; -extern lean_object* l_Lean_profiler; LEAN_EXPORT lean_object* l___private_Lean_Elab_PreDefinition_Basic_0__Lean_Elab_reportTheoremDiag(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_forallBoundedTelescope___at_Lean_Meta_setMVarUserNamesAt___spec__3___rarg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); @@ -86,7 +85,7 @@ static lean_object* l_Lean_Elab_fixLevelParams___closed__5; static lean_object* l___private_Lean_Elab_PreDefinition_Basic_0__Lean_Elab_addNonRecAux___lambda__4___closed__5; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_addAndCompilePartialRec___spec__2(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_get_num_heartbeats(lean_object*); lean_object* l_Lean_Name_mkStr5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_nextPowerOfTwo_go(lean_object*, lean_object*, lean_object*); @@ -153,7 +152,7 @@ LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_Elab_fixLevelParams___ uint8_t l_Lean_Elab_DefKind_isTheorem(uint8_t); LEAN_EXPORT lean_object* l_Lean_Elab_eraseRecAppSyntaxExpr___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_applyAttributesOf___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Elab_checkCodomainsLevel___spec__2___lambda__1___closed__14; static lean_object* l_Lean_Elab_fixLevelParams___closed__2; @@ -185,7 +184,7 @@ lean_object* lean_array_to_list(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_checkCodomainsLevel___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_instantiateMVarsAtPreDecls(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at_Lean_Core_wrapAsyncAsSnapshot___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_PreDefinition_Basic_0__Lean_Elab_getLevelParamsPreDecls___closed__4; lean_object* lean_io_mono_nanos_now(lean_object*); @@ -217,11 +216,10 @@ extern lean_object* l_Lean_diagnostics; static lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Elab_checkCodomainsLevel___spec__2___lambda__1___closed__5; static double l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; static lean_object* l___private_Lean_Elab_PreDefinition_Basic_0__Lean_Elab_reportTheoremDiag___closed__1; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Option_register___at_Lean_initFn____x40_Lean_Util_RecDepth___hyg_5____spec__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_PreDefinition_Basic_0__Lean_Elab_addNonRecAux___lambda__4___closed__3; static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_PreDefinition_Basic___hyg_1042____closed__6; -static lean_object* l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__2___closed__2; LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Elab_addAndCompileUnsafe___spec__3(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Elab_PreDefinition_Basic_0__Lean_Elab_containsRecFn(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_applyAttributesOf___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -294,7 +292,7 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_instantiateMVarsA lean_object* l_Lean_Expr_numApps(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_PreDefinition_Basic_0__Lean_Elab_compileDecl___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_addAsAxiom(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); static lean_object* l_Lean_Elab_ensureNoRecFn___lambda__1___closed__1; lean_object* l_Lean_Expr_getAppFn(lean_object*); @@ -317,7 +315,7 @@ lean_object* lean_array_mk(lean_object*); extern lean_object* l_Lean_diagnostics_threshold; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_PreDefinition_Basic_0__Lean_Elab_addNonRecAux___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapM___at___private_Lean_Elab_PreDefinition_Basic_0__Lean_Elab_addNonRecAux___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_numObjs(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_addAndCompileUnsafe___lambda__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_enableInfoTree___at_Lean_Elab_addAndCompilePartialRec___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1277,69 +1275,36 @@ x_3 = l_Float_ofScientific(x_1, x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__2___closed__2() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_18 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__2___closed__1; +x_19 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_19, 0, x_1); +lean_ctor_set(x_19, 1, x_3); +lean_ctor_set_float(x_19, sizeof(void*)*2, x_18); +lean_ctor_set_float(x_19, sizeof(void*)*2 + 8, x_18); +lean_ctor_set_uint8(x_19, sizeof(void*)*2 + 16, x_2); +x_20 = lean_box(0); +x_21 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__1(x_4, x_5, x_10, x_6, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +return x_21; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { -_start: +else { -double x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; -x_19 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_20 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_20, 0, x_1); -lean_ctor_set(x_20, 1, x_3); -lean_ctor_set_float(x_20, sizeof(void*)*2, x_19); -lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_19); -lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__2___closed__2; -x_22 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_21); -if (x_22 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_23; lean_object* x_24; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_22, 0, x_1); +lean_ctor_set(x_22, 1, x_3); +lean_ctor_set_float(x_22, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_22, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_22, sizeof(void*)*2 + 16, x_2); x_23 = lean_box(0); -x_24 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__1(x_4, x_5, x_11, x_6, x_20, x_23, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +x_24 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__1(x_4, x_5, x_10, x_6, x_22, x_23, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_24; } -else -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; -lean_dec(x_20); -x_25 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_25, 0, x_1); -lean_ctor_set(x_25, 1, x_3); -lean_ctor_set_float(x_25, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_25, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_25, sizeof(void*)*2 + 16, x_2); -x_26 = lean_box(0); -x_27 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__1(x_4, x_5, x_11, x_6, x_25, x_26, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -return x_27; -} -} -else -{ -lean_object* x_28; lean_object* x_29; lean_object* x_30; -lean_dec(x_20); -x_28 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_28, 0, x_1); -lean_ctor_set(x_28, 1, x_3); -lean_ctor_set_float(x_28, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_28, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_28, sizeof(void*)*2 + 16, x_2); -x_29 = lean_box(0); -x_30 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__1(x_4, x_5, x_11, x_6, x_28, x_29, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -return x_30; -} } } static lean_object* _init_l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3___closed__1() { @@ -1359,52 +1324,52 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_19; lean_object* x_20; -x_19 = lean_ctor_get(x_16, 5); -lean_inc(x_19); -lean_inc(x_17); +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_15, 5); +lean_inc(x_18); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_20 = lean_apply_8(x_10, x_5, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -if (lean_obj_tag(x_20) == 0) +x_19 = lean_apply_8(x_9, x_5, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +if (lean_obj_tag(x_19) == 0) { -lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_21 = lean_ctor_get(x_20, 0); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); -x_22 = lean_ctor_get(x_20, 1); -lean_inc(x_22); -lean_dec(x_20); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_19, x_5, x_6, x_7, x_8, x_9, x_21, x_12, x_13, x_14, x_15, x_16, x_17, x_22); -lean_dec(x_17); -lean_dec(x_15); +lean_dec(x_19); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_18, x_5, x_6, x_7, x_8, x_20, x_11, x_12, x_13, x_14, x_15, x_16, x_21); +lean_dec(x_16); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_23; +return x_22; } else { -lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_24 = lean_ctor_get(x_20, 1); -lean_inc(x_24); -lean_dec(x_20); -x_25 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3___closed__2; -x_26 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_19, x_5, x_6, x_7, x_8, x_9, x_25, x_12, x_13, x_14, x_15, x_16, x_17, x_24); -lean_dec(x_17); -lean_dec(x_15); +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_19, 1); +lean_inc(x_23); +lean_dec(x_19); +x_24 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3___closed__2; +x_25 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_18, x_5, x_6, x_7, x_8, x_24, x_11, x_12, x_13, x_14, x_15, x_16, x_23); +lean_dec(x_16); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_26; +return x_25; } } } @@ -1468,255 +1433,255 @@ x_19 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4_ x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_19); if (x_20 == 0) { -lean_object* x_21; lean_object* x_22; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; -x_111 = lean_io_mono_nanos_now(x_18); -x_112 = lean_ctor_get(x_111, 0); -lean_inc(x_112); -x_113 = lean_ctor_get(x_111, 1); -lean_inc(x_113); -lean_dec(x_111); +lean_object* x_21; lean_object* x_22; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; +x_115 = lean_io_mono_nanos_now(x_18); +x_116 = lean_ctor_get(x_115, 0); +lean_inc(x_116); +x_117 = lean_ctor_get(x_115, 1); +lean_inc(x_117); +lean_dec(x_115); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_114 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_113); -if (lean_obj_tag(x_114) == 0) +x_118 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_117); +if (lean_obj_tag(x_118) == 0) { -uint8_t x_115; -x_115 = !lean_is_exclusive(x_114); -if (x_115 == 0) +uint8_t x_119; +x_119 = !lean_is_exclusive(x_118); +if (x_119 == 0) { -lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; uint8_t x_120; -x_116 = lean_ctor_get(x_114, 0); -x_117 = lean_ctor_get(x_114, 1); -x_118 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_118, 0, x_116); -x_119 = lean_io_mono_nanos_now(x_117); -x_120 = !lean_is_exclusive(x_119); -if (x_120 == 0) +lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; uint8_t x_124; +x_120 = lean_ctor_get(x_118, 0); +x_121 = lean_ctor_get(x_118, 1); +x_122 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_122, 0, x_120); +x_123 = lean_io_mono_nanos_now(x_121); +x_124 = !lean_is_exclusive(x_123); +if (x_124 == 0) { -lean_object* x_121; lean_object* x_122; uint8_t x_123; lean_object* x_124; double x_125; double x_126; double x_127; double x_128; double x_129; lean_object* x_130; lean_object* x_131; -x_121 = lean_ctor_get(x_119, 0); -x_122 = lean_ctor_get(x_119, 1); -x_123 = 0; -x_124 = lean_unsigned_to_nat(0u); -x_125 = l_Float_ofScientific(x_112, x_123, x_124); -lean_dec(x_112); -x_126 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; -x_127 = lean_float_div(x_125, x_126); -x_128 = l_Float_ofScientific(x_121, x_123, x_124); -lean_dec(x_121); -x_129 = lean_float_div(x_128, x_126); -x_130 = lean_box_float(x_127); -x_131 = lean_box_float(x_129); -lean_ctor_set(x_119, 1, x_131); -lean_ctor_set(x_119, 0, x_130); -lean_ctor_set(x_114, 1, x_119); -lean_ctor_set(x_114, 0, x_118); -x_21 = x_114; -x_22 = x_122; -goto block_110; +lean_object* x_125; lean_object* x_126; uint8_t x_127; lean_object* x_128; double x_129; double x_130; double x_131; double x_132; double x_133; lean_object* x_134; lean_object* x_135; +x_125 = lean_ctor_get(x_123, 0); +x_126 = lean_ctor_get(x_123, 1); +x_127 = 0; +x_128 = lean_unsigned_to_nat(0u); +x_129 = l_Float_ofScientific(x_116, x_127, x_128); +lean_dec(x_116); +x_130 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; +x_131 = lean_float_div(x_129, x_130); +x_132 = l_Float_ofScientific(x_125, x_127, x_128); +lean_dec(x_125); +x_133 = lean_float_div(x_132, x_130); +x_134 = lean_box_float(x_131); +x_135 = lean_box_float(x_133); +lean_ctor_set(x_123, 1, x_135); +lean_ctor_set(x_123, 0, x_134); +lean_ctor_set(x_118, 1, x_123); +lean_ctor_set(x_118, 0, x_122); +x_21 = x_118; +x_22 = x_126; +goto block_114; } else { -lean_object* x_132; lean_object* x_133; uint8_t x_134; lean_object* x_135; double x_136; double x_137; double x_138; double x_139; double x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; -x_132 = lean_ctor_get(x_119, 0); -x_133 = lean_ctor_get(x_119, 1); -lean_inc(x_133); -lean_inc(x_132); -lean_dec(x_119); -x_134 = 0; -x_135 = lean_unsigned_to_nat(0u); -x_136 = l_Float_ofScientific(x_112, x_134, x_135); -lean_dec(x_112); -x_137 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; -x_138 = lean_float_div(x_136, x_137); -x_139 = l_Float_ofScientific(x_132, x_134, x_135); -lean_dec(x_132); -x_140 = lean_float_div(x_139, x_137); -x_141 = lean_box_float(x_138); -x_142 = lean_box_float(x_140); -x_143 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_143, 0, x_141); -lean_ctor_set(x_143, 1, x_142); -lean_ctor_set(x_114, 1, x_143); -lean_ctor_set(x_114, 0, x_118); -x_21 = x_114; -x_22 = x_133; -goto block_110; +lean_object* x_136; lean_object* x_137; uint8_t x_138; lean_object* x_139; double x_140; double x_141; double x_142; double x_143; double x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; +x_136 = lean_ctor_get(x_123, 0); +x_137 = lean_ctor_get(x_123, 1); +lean_inc(x_137); +lean_inc(x_136); +lean_dec(x_123); +x_138 = 0; +x_139 = lean_unsigned_to_nat(0u); +x_140 = l_Float_ofScientific(x_116, x_138, x_139); +lean_dec(x_116); +x_141 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; +x_142 = lean_float_div(x_140, x_141); +x_143 = l_Float_ofScientific(x_136, x_138, x_139); +lean_dec(x_136); +x_144 = lean_float_div(x_143, x_141); +x_145 = lean_box_float(x_142); +x_146 = lean_box_float(x_144); +x_147 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_147, 0, x_145); +lean_ctor_set(x_147, 1, x_146); +lean_ctor_set(x_118, 1, x_147); +lean_ctor_set(x_118, 0, x_122); +x_21 = x_118; +x_22 = x_137; +goto block_114; } } else { -lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; uint8_t x_151; lean_object* x_152; double x_153; double x_154; double x_155; double x_156; double x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; -x_144 = lean_ctor_get(x_114, 0); -x_145 = lean_ctor_get(x_114, 1); -lean_inc(x_145); -lean_inc(x_144); -lean_dec(x_114); -x_146 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_146, 0, x_144); -x_147 = lean_io_mono_nanos_now(x_145); -x_148 = lean_ctor_get(x_147, 0); -lean_inc(x_148); -x_149 = lean_ctor_get(x_147, 1); +lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; uint8_t x_155; lean_object* x_156; double x_157; double x_158; double x_159; double x_160; double x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; +x_148 = lean_ctor_get(x_118, 0); +x_149 = lean_ctor_get(x_118, 1); lean_inc(x_149); -if (lean_is_exclusive(x_147)) { - lean_ctor_release(x_147, 0); - lean_ctor_release(x_147, 1); - x_150 = x_147; +lean_inc(x_148); +lean_dec(x_118); +x_150 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_150, 0, x_148); +x_151 = lean_io_mono_nanos_now(x_149); +x_152 = lean_ctor_get(x_151, 0); +lean_inc(x_152); +x_153 = lean_ctor_get(x_151, 1); +lean_inc(x_153); +if (lean_is_exclusive(x_151)) { + lean_ctor_release(x_151, 0); + lean_ctor_release(x_151, 1); + x_154 = x_151; } else { - lean_dec_ref(x_147); - x_150 = lean_box(0); + lean_dec_ref(x_151); + x_154 = lean_box(0); } -x_151 = 0; -x_152 = lean_unsigned_to_nat(0u); -x_153 = l_Float_ofScientific(x_112, x_151, x_152); -lean_dec(x_112); -x_154 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; -x_155 = lean_float_div(x_153, x_154); -x_156 = l_Float_ofScientific(x_148, x_151, x_152); -lean_dec(x_148); -x_157 = lean_float_div(x_156, x_154); -x_158 = lean_box_float(x_155); -x_159 = lean_box_float(x_157); -if (lean_is_scalar(x_150)) { - x_160 = lean_alloc_ctor(0, 2, 0); +x_155 = 0; +x_156 = lean_unsigned_to_nat(0u); +x_157 = l_Float_ofScientific(x_116, x_155, x_156); +lean_dec(x_116); +x_158 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; +x_159 = lean_float_div(x_157, x_158); +x_160 = l_Float_ofScientific(x_152, x_155, x_156); +lean_dec(x_152); +x_161 = lean_float_div(x_160, x_158); +x_162 = lean_box_float(x_159); +x_163 = lean_box_float(x_161); +if (lean_is_scalar(x_154)) { + x_164 = lean_alloc_ctor(0, 2, 0); } else { - x_160 = x_150; + x_164 = x_154; } -lean_ctor_set(x_160, 0, x_158); -lean_ctor_set(x_160, 1, x_159); -x_161 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_161, 0, x_146); -lean_ctor_set(x_161, 1, x_160); -x_21 = x_161; -x_22 = x_149; -goto block_110; +lean_ctor_set(x_164, 0, x_162); +lean_ctor_set(x_164, 1, x_163); +x_165 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_165, 0, x_150); +lean_ctor_set(x_165, 1, x_164); +x_21 = x_165; +x_22 = x_153; +goto block_114; } } else { -uint8_t x_162; -x_162 = !lean_is_exclusive(x_114); -if (x_162 == 0) +uint8_t x_166; +x_166 = !lean_is_exclusive(x_118); +if (x_166 == 0) { -lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; uint8_t x_167; -x_163 = lean_ctor_get(x_114, 0); -x_164 = lean_ctor_get(x_114, 1); -x_165 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_165, 0, x_163); -x_166 = lean_io_mono_nanos_now(x_164); -x_167 = !lean_is_exclusive(x_166); -if (x_167 == 0) +lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; uint8_t x_171; +x_167 = lean_ctor_get(x_118, 0); +x_168 = lean_ctor_get(x_118, 1); +x_169 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_169, 0, x_167); +x_170 = lean_io_mono_nanos_now(x_168); +x_171 = !lean_is_exclusive(x_170); +if (x_171 == 0) { -lean_object* x_168; lean_object* x_169; uint8_t x_170; lean_object* x_171; double x_172; double x_173; double x_174; double x_175; double x_176; lean_object* x_177; lean_object* x_178; -x_168 = lean_ctor_get(x_166, 0); -x_169 = lean_ctor_get(x_166, 1); -x_170 = 0; -x_171 = lean_unsigned_to_nat(0u); -x_172 = l_Float_ofScientific(x_112, x_170, x_171); -lean_dec(x_112); -x_173 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; -x_174 = lean_float_div(x_172, x_173); -x_175 = l_Float_ofScientific(x_168, x_170, x_171); -lean_dec(x_168); -x_176 = lean_float_div(x_175, x_173); -x_177 = lean_box_float(x_174); -x_178 = lean_box_float(x_176); -lean_ctor_set(x_166, 1, x_178); -lean_ctor_set(x_166, 0, x_177); -lean_ctor_set_tag(x_114, 0); -lean_ctor_set(x_114, 1, x_166); -lean_ctor_set(x_114, 0, x_165); -x_21 = x_114; -x_22 = x_169; -goto block_110; +lean_object* x_172; lean_object* x_173; uint8_t x_174; lean_object* x_175; double x_176; double x_177; double x_178; double x_179; double x_180; lean_object* x_181; lean_object* x_182; +x_172 = lean_ctor_get(x_170, 0); +x_173 = lean_ctor_get(x_170, 1); +x_174 = 0; +x_175 = lean_unsigned_to_nat(0u); +x_176 = l_Float_ofScientific(x_116, x_174, x_175); +lean_dec(x_116); +x_177 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; +x_178 = lean_float_div(x_176, x_177); +x_179 = l_Float_ofScientific(x_172, x_174, x_175); +lean_dec(x_172); +x_180 = lean_float_div(x_179, x_177); +x_181 = lean_box_float(x_178); +x_182 = lean_box_float(x_180); +lean_ctor_set(x_170, 1, x_182); +lean_ctor_set(x_170, 0, x_181); +lean_ctor_set_tag(x_118, 0); +lean_ctor_set(x_118, 1, x_170); +lean_ctor_set(x_118, 0, x_169); +x_21 = x_118; +x_22 = x_173; +goto block_114; } else { -lean_object* x_179; lean_object* x_180; uint8_t x_181; lean_object* x_182; double x_183; double x_184; double x_185; double x_186; double x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; -x_179 = lean_ctor_get(x_166, 0); -x_180 = lean_ctor_get(x_166, 1); -lean_inc(x_180); -lean_inc(x_179); -lean_dec(x_166); -x_181 = 0; -x_182 = lean_unsigned_to_nat(0u); -x_183 = l_Float_ofScientific(x_112, x_181, x_182); -lean_dec(x_112); -x_184 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; -x_185 = lean_float_div(x_183, x_184); -x_186 = l_Float_ofScientific(x_179, x_181, x_182); -lean_dec(x_179); -x_187 = lean_float_div(x_186, x_184); -x_188 = lean_box_float(x_185); -x_189 = lean_box_float(x_187); -x_190 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_190, 0, x_188); -lean_ctor_set(x_190, 1, x_189); -lean_ctor_set_tag(x_114, 0); -lean_ctor_set(x_114, 1, x_190); -lean_ctor_set(x_114, 0, x_165); -x_21 = x_114; -x_22 = x_180; -goto block_110; +lean_object* x_183; lean_object* x_184; uint8_t x_185; lean_object* x_186; double x_187; double x_188; double x_189; double x_190; double x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; +x_183 = lean_ctor_get(x_170, 0); +x_184 = lean_ctor_get(x_170, 1); +lean_inc(x_184); +lean_inc(x_183); +lean_dec(x_170); +x_185 = 0; +x_186 = lean_unsigned_to_nat(0u); +x_187 = l_Float_ofScientific(x_116, x_185, x_186); +lean_dec(x_116); +x_188 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; +x_189 = lean_float_div(x_187, x_188); +x_190 = l_Float_ofScientific(x_183, x_185, x_186); +lean_dec(x_183); +x_191 = lean_float_div(x_190, x_188); +x_192 = lean_box_float(x_189); +x_193 = lean_box_float(x_191); +x_194 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_194, 0, x_192); +lean_ctor_set(x_194, 1, x_193); +lean_ctor_set_tag(x_118, 0); +lean_ctor_set(x_118, 1, x_194); +lean_ctor_set(x_118, 0, x_169); +x_21 = x_118; +x_22 = x_184; +goto block_114; } } else { -lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; uint8_t x_198; lean_object* x_199; double x_200; double x_201; double x_202; double x_203; double x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; -x_191 = lean_ctor_get(x_114, 0); -x_192 = lean_ctor_get(x_114, 1); -lean_inc(x_192); -lean_inc(x_191); -lean_dec(x_114); -x_193 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_193, 0, x_191); -x_194 = lean_io_mono_nanos_now(x_192); -x_195 = lean_ctor_get(x_194, 0); -lean_inc(x_195); -x_196 = lean_ctor_get(x_194, 1); +lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; uint8_t x_202; lean_object* x_203; double x_204; double x_205; double x_206; double x_207; double x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; +x_195 = lean_ctor_get(x_118, 0); +x_196 = lean_ctor_get(x_118, 1); lean_inc(x_196); -if (lean_is_exclusive(x_194)) { - lean_ctor_release(x_194, 0); - lean_ctor_release(x_194, 1); - x_197 = x_194; +lean_inc(x_195); +lean_dec(x_118); +x_197 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_197, 0, x_195); +x_198 = lean_io_mono_nanos_now(x_196); +x_199 = lean_ctor_get(x_198, 0); +lean_inc(x_199); +x_200 = lean_ctor_get(x_198, 1); +lean_inc(x_200); +if (lean_is_exclusive(x_198)) { + lean_ctor_release(x_198, 0); + lean_ctor_release(x_198, 1); + x_201 = x_198; } else { - lean_dec_ref(x_194); - x_197 = lean_box(0); + lean_dec_ref(x_198); + x_201 = lean_box(0); } -x_198 = 0; -x_199 = lean_unsigned_to_nat(0u); -x_200 = l_Float_ofScientific(x_112, x_198, x_199); -lean_dec(x_112); -x_201 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; -x_202 = lean_float_div(x_200, x_201); -x_203 = l_Float_ofScientific(x_195, x_198, x_199); -lean_dec(x_195); -x_204 = lean_float_div(x_203, x_201); -x_205 = lean_box_float(x_202); -x_206 = lean_box_float(x_204); -if (lean_is_scalar(x_197)) { - x_207 = lean_alloc_ctor(0, 2, 0); +x_202 = 0; +x_203 = lean_unsigned_to_nat(0u); +x_204 = l_Float_ofScientific(x_116, x_202, x_203); +lean_dec(x_116); +x_205 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; +x_206 = lean_float_div(x_204, x_205); +x_207 = l_Float_ofScientific(x_199, x_202, x_203); +lean_dec(x_199); +x_208 = lean_float_div(x_207, x_205); +x_209 = lean_box_float(x_206); +x_210 = lean_box_float(x_208); +if (lean_is_scalar(x_201)) { + x_211 = lean_alloc_ctor(0, 2, 0); } else { - x_207 = x_197; + x_211 = x_201; } -lean_ctor_set(x_207, 0, x_205); -lean_ctor_set(x_207, 1, x_206); -x_208 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_208, 0, x_193); -lean_ctor_set(x_208, 1, x_207); -x_21 = x_208; -x_22 = x_196; -goto block_110; +lean_ctor_set(x_211, 0, x_209); +lean_ctor_set(x_211, 1, x_210); +x_212 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_212, 0, x_197); +lean_ctor_set(x_212, 1, x_211); +x_21 = x_212; +x_22 = x_200; +goto block_114; } } -block_110: +block_114: { -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_96; uint8_t x_97; +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; uint8_t x_29; x_23 = lean_ctor_get(x_21, 1); lean_inc(x_23); x_24 = lean_ctor_get(x_21, 0); @@ -1727,17 +1692,33 @@ lean_inc(x_25); x_26 = lean_ctor_get(x_23, 1); lean_inc(x_26); lean_dec(x_23); -x_96 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__2; -x_97 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_96); -if (x_97 == 0) +x_27 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__2; +x_28 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_27); +if (x_28 == 0) { -uint8_t x_98; -x_98 = 0; -x_27 = x_98; -goto block_95; +if (x_6 == 0) +{ +uint8_t x_94; +x_94 = 0; +x_29 = x_94; +goto block_93; } else { +lean_object* x_95; double x_96; double x_97; lean_object* x_98; +x_95 = lean_box(0); +x_96 = lean_unbox_float(x_25); +lean_dec(x_25); +x_97 = lean_unbox_float(x_26); +lean_dec(x_26); +x_98 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3(x_2, x_3, x_4, x_17, x_24, x_28, x_96, x_97, x_5, x_95, x_9, x_10, x_11, x_12, x_13, x_14, x_22); +return x_98; +} +} +else +{ +if (x_6 == 0) +{ double x_99; double x_100; double x_101; lean_object* x_102; lean_object* x_103; uint8_t x_104; lean_object* x_105; double x_106; double x_107; double x_108; uint8_t x_109; x_99 = lean_unbox_float(x_26); x_100 = lean_unbox_float(x_25); @@ -1751,48 +1732,58 @@ lean_dec(x_103); x_107 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__4; x_108 = lean_float_div(x_106, x_107); x_109 = lean_float_decLt(x_108, x_101); -x_27 = x_109; -goto block_95; +x_29 = x_109; +goto block_93; } -block_95: +else { -if (x_6 == 0) +lean_object* x_110; double x_111; double x_112; lean_object* x_113; +x_110 = lean_box(0); +x_111 = lean_unbox_float(x_25); +lean_dec(x_25); +x_112 = lean_unbox_float(x_26); +lean_dec(x_26); +x_113 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3(x_2, x_3, x_4, x_17, x_24, x_28, x_111, x_112, x_5, x_110, x_9, x_10, x_11, x_12, x_13, x_14, x_22); +return x_113; +} +} +block_93: { -if (x_27 == 0) +if (x_29 == 0) { -lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; lean_dec(x_26); lean_dec(x_25); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_28 = lean_st_ref_take(x_14, x_22); -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -x_30 = lean_ctor_get(x_29, 3); -lean_inc(x_30); -x_31 = lean_ctor_get(x_28, 1); +x_30 = lean_st_ref_take(x_14, x_22); +x_31 = lean_ctor_get(x_30, 0); lean_inc(x_31); -lean_dec(x_28); -x_32 = !lean_is_exclusive(x_29); -if (x_32 == 0) -{ -lean_object* x_33; uint8_t x_34; -x_33 = lean_ctor_get(x_29, 3); -lean_dec(x_33); -x_34 = !lean_is_exclusive(x_30); +x_32 = lean_ctor_get(x_31, 3); +lean_inc(x_32); +x_33 = lean_ctor_get(x_30, 1); +lean_inc(x_33); +lean_dec(x_30); +x_34 = !lean_is_exclusive(x_31); if (x_34 == 0) { -lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_35 = lean_ctor_get(x_30, 0); -x_36 = l_Lean_PersistentArray_append___rarg(x_17, x_35); +lean_object* x_35; uint8_t x_36; +x_35 = lean_ctor_get(x_31, 3); lean_dec(x_35); -lean_ctor_set(x_30, 0, x_36); -x_37 = lean_st_ref_set(x_14, x_29, x_31); -x_38 = lean_ctor_get(x_37, 1); -lean_inc(x_38); +x_36 = !lean_is_exclusive(x_32); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_37 = lean_ctor_get(x_32, 0); +x_38 = l_Lean_PersistentArray_append___rarg(x_17, x_37); lean_dec(x_37); -x_39 = l_MonadExcept_ofExcept___at_Lean_Elab_fixLevelParams___spec__4(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_38); +lean_ctor_set(x_32, 0, x_38); +x_39 = lean_st_ref_set(x_14, x_31, x_33); +x_40 = lean_ctor_get(x_39, 1); +lean_inc(x_40); +lean_dec(x_39); +x_41 = l_MonadExcept_ofExcept___at_Lean_Elab_fixLevelParams___spec__4(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_40); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); @@ -1800,177 +1791,177 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_24); -if (lean_obj_tag(x_39) == 0) +if (lean_obj_tag(x_41) == 0) { -uint8_t x_40; -x_40 = !lean_is_exclusive(x_39); -if (x_40 == 0) +uint8_t x_42; +x_42 = !lean_is_exclusive(x_41); +if (x_42 == 0) { -return x_39; +return x_41; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_39, 0); -x_42 = lean_ctor_get(x_39, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_39); -x_43 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_42); -return x_43; +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_41, 0); +x_44 = lean_ctor_get(x_41, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_41); +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; } } else { -uint8_t x_44; -x_44 = !lean_is_exclusive(x_39); -if (x_44 == 0) +uint8_t x_46; +x_46 = !lean_is_exclusive(x_41); +if (x_46 == 0) { -return x_39; +return x_41; } else { -lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_45 = lean_ctor_get(x_39, 0); -x_46 = lean_ctor_get(x_39, 1); -lean_inc(x_46); -lean_inc(x_45); -lean_dec(x_39); -x_47 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_47, 0, x_45); -lean_ctor_set(x_47, 1, x_46); -return x_47; +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_41, 0); +x_48 = lean_ctor_get(x_41, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_41); +x_49 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set(x_49, 1, x_48); +return x_49; } } } else { -uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); -x_49 = lean_ctor_get(x_30, 0); -lean_inc(x_49); -lean_dec(x_30); -x_50 = l_Lean_PersistentArray_append___rarg(x_17, x_49); -lean_dec(x_49); -x_51 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_51, 0, x_50); -lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); -lean_ctor_set(x_29, 3, x_51); -x_52 = lean_st_ref_set(x_14, x_29, x_31); -x_53 = lean_ctor_get(x_52, 1); -lean_inc(x_53); -lean_dec(x_52); -x_54 = l_MonadExcept_ofExcept___at_Lean_Elab_fixLevelParams___spec__4(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_53); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_24); -if (lean_obj_tag(x_54) == 0) -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_55 = lean_ctor_get(x_54, 0); +uint64_t x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_50 = lean_ctor_get_uint64(x_32, sizeof(void*)*1); +x_51 = lean_ctor_get(x_32, 0); +lean_inc(x_51); +lean_dec(x_32); +x_52 = l_Lean_PersistentArray_append___rarg(x_17, x_51); +lean_dec(x_51); +x_53 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_53, 0, x_52); +lean_ctor_set_uint64(x_53, sizeof(void*)*1, x_50); +lean_ctor_set(x_31, 3, x_53); +x_54 = lean_st_ref_set(x_14, x_31, x_33); +x_55 = lean_ctor_get(x_54, 1); lean_inc(x_55); -x_56 = lean_ctor_get(x_54, 1); -lean_inc(x_56); -if (lean_is_exclusive(x_54)) { - lean_ctor_release(x_54, 0); - lean_ctor_release(x_54, 1); - x_57 = x_54; +lean_dec(x_54); +x_56 = l_MonadExcept_ofExcept___at_Lean_Elab_fixLevelParams___spec__4(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_55); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_24); +if (lean_obj_tag(x_56) == 0) +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_57 = lean_ctor_get(x_56, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_56, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_56)) { + lean_ctor_release(x_56, 0); + lean_ctor_release(x_56, 1); + x_59 = x_56; } else { - lean_dec_ref(x_54); - x_57 = lean_box(0); + lean_dec_ref(x_56); + x_59 = lean_box(0); } -if (lean_is_scalar(x_57)) { - x_58 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(0, 2, 0); } else { - x_58 = x_57; + x_60 = x_59; } -lean_ctor_set(x_58, 0, x_55); -lean_ctor_set(x_58, 1, x_56); -return x_58; +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_58); +return x_60; } else { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; -x_59 = lean_ctor_get(x_54, 0); -lean_inc(x_59); -x_60 = lean_ctor_get(x_54, 1); -lean_inc(x_60); -if (lean_is_exclusive(x_54)) { - lean_ctor_release(x_54, 0); - lean_ctor_release(x_54, 1); - x_61 = x_54; +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_61 = lean_ctor_get(x_56, 0); +lean_inc(x_61); +x_62 = lean_ctor_get(x_56, 1); +lean_inc(x_62); +if (lean_is_exclusive(x_56)) { + lean_ctor_release(x_56, 0); + lean_ctor_release(x_56, 1); + x_63 = x_56; } else { - lean_dec_ref(x_54); - x_61 = lean_box(0); + lean_dec_ref(x_56); + x_63 = lean_box(0); } -if (lean_is_scalar(x_61)) { - x_62 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_63)) { + x_64 = lean_alloc_ctor(1, 2, 0); } else { - x_62 = x_61; + x_64 = x_63; } -lean_ctor_set(x_62, 0, x_59); -lean_ctor_set(x_62, 1, x_60); -return x_62; +lean_ctor_set(x_64, 0, x_61); +lean_ctor_set(x_64, 1, x_62); +return x_64; } } } else { -lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_63 = lean_ctor_get(x_29, 0); -x_64 = lean_ctor_get(x_29, 1); -x_65 = lean_ctor_get(x_29, 2); -x_66 = lean_ctor_get(x_29, 4); -x_67 = lean_ctor_get(x_29, 5); -x_68 = lean_ctor_get(x_29, 6); -x_69 = lean_ctor_get(x_29, 7); +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; uint64_t x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_65 = lean_ctor_get(x_31, 0); +x_66 = lean_ctor_get(x_31, 1); +x_67 = lean_ctor_get(x_31, 2); +x_68 = lean_ctor_get(x_31, 4); +x_69 = lean_ctor_get(x_31, 5); +x_70 = lean_ctor_get(x_31, 6); +x_71 = lean_ctor_get(x_31, 7); +lean_inc(x_71); +lean_inc(x_70); lean_inc(x_69); lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); -lean_inc(x_64); -lean_inc(x_63); -lean_dec(x_29); -x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); -x_71 = lean_ctor_get(x_30, 0); -lean_inc(x_71); -if (lean_is_exclusive(x_30)) { - lean_ctor_release(x_30, 0); - x_72 = x_30; +lean_dec(x_31); +x_72 = lean_ctor_get_uint64(x_32, sizeof(void*)*1); +x_73 = lean_ctor_get(x_32, 0); +lean_inc(x_73); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + x_74 = x_32; } else { - lean_dec_ref(x_30); - x_72 = lean_box(0); + lean_dec_ref(x_32); + x_74 = lean_box(0); } -x_73 = l_Lean_PersistentArray_append___rarg(x_17, x_71); -lean_dec(x_71); -if (lean_is_scalar(x_72)) { - x_74 = lean_alloc_ctor(0, 1, 8); +x_75 = l_Lean_PersistentArray_append___rarg(x_17, x_73); +lean_dec(x_73); +if (lean_is_scalar(x_74)) { + x_76 = lean_alloc_ctor(0, 1, 8); } else { - x_74 = x_72; + x_76 = x_74; } -lean_ctor_set(x_74, 0, x_73); -lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); -x_75 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_75, 0, x_63); -lean_ctor_set(x_75, 1, x_64); -lean_ctor_set(x_75, 2, x_65); -lean_ctor_set(x_75, 3, x_74); -lean_ctor_set(x_75, 4, x_66); -lean_ctor_set(x_75, 5, x_67); -lean_ctor_set(x_75, 6, x_68); -lean_ctor_set(x_75, 7, x_69); -x_76 = lean_st_ref_set(x_14, x_75, x_31); -x_77 = lean_ctor_get(x_76, 1); -lean_inc(x_77); -lean_dec(x_76); -x_78 = l_MonadExcept_ofExcept___at_Lean_Elab_fixLevelParams___spec__4(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_77); +lean_ctor_set(x_76, 0, x_75); +lean_ctor_set_uint64(x_76, sizeof(void*)*1, x_72); +x_77 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_77, 0, x_65); +lean_ctor_set(x_77, 1, x_66); +lean_ctor_set(x_77, 2, x_67); +lean_ctor_set(x_77, 3, x_76); +lean_ctor_set(x_77, 4, x_68); +lean_ctor_set(x_77, 5, x_69); +lean_ctor_set(x_77, 6, x_70); +lean_ctor_set(x_77, 7, x_71); +x_78 = lean_st_ref_set(x_14, x_77, x_33); +x_79 = lean_ctor_get(x_78, 1); +lean_inc(x_79); +lean_dec(x_78); +x_80 = l_MonadExcept_ofExcept___at_Lean_Elab_fixLevelParams___spec__4(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_79); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); @@ -1978,646 +1969,648 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_24); -if (lean_obj_tag(x_78) == 0) +if (lean_obj_tag(x_80) == 0) { -lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_79 = lean_ctor_get(x_78, 0); -lean_inc(x_79); -x_80 = lean_ctor_get(x_78, 1); -lean_inc(x_80); -if (lean_is_exclusive(x_78)) { - lean_ctor_release(x_78, 0); - lean_ctor_release(x_78, 1); - x_81 = x_78; +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_81 = lean_ctor_get(x_80, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_80, 1); +lean_inc(x_82); +if (lean_is_exclusive(x_80)) { + lean_ctor_release(x_80, 0); + lean_ctor_release(x_80, 1); + x_83 = x_80; } else { - lean_dec_ref(x_78); - x_81 = lean_box(0); + lean_dec_ref(x_80); + x_83 = lean_box(0); } -if (lean_is_scalar(x_81)) { - x_82 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_83)) { + x_84 = lean_alloc_ctor(0, 2, 0); } else { - x_82 = x_81; + x_84 = x_83; } -lean_ctor_set(x_82, 0, x_79); -lean_ctor_set(x_82, 1, x_80); -return x_82; +lean_ctor_set(x_84, 0, x_81); +lean_ctor_set(x_84, 1, x_82); +return x_84; } else { -lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; -x_83 = lean_ctor_get(x_78, 0); -lean_inc(x_83); -x_84 = lean_ctor_get(x_78, 1); -lean_inc(x_84); -if (lean_is_exclusive(x_78)) { - lean_ctor_release(x_78, 0); - lean_ctor_release(x_78, 1); - x_85 = x_78; +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_85 = lean_ctor_get(x_80, 0); +lean_inc(x_85); +x_86 = lean_ctor_get(x_80, 1); +lean_inc(x_86); +if (lean_is_exclusive(x_80)) { + lean_ctor_release(x_80, 0); + lean_ctor_release(x_80, 1); + x_87 = x_80; } else { - lean_dec_ref(x_78); - x_85 = lean_box(0); + lean_dec_ref(x_80); + x_87 = lean_box(0); } -if (lean_is_scalar(x_85)) { - x_86 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_87)) { + x_88 = lean_alloc_ctor(1, 2, 0); } else { - x_86 = x_85; + x_88 = x_87; } -lean_ctor_set(x_86, 0, x_83); -lean_ctor_set(x_86, 1, x_84); -return x_86; +lean_ctor_set(x_88, 0, x_85); +lean_ctor_set(x_88, 1, x_86); +return x_88; } } } else { -lean_object* x_87; double x_88; double x_89; lean_object* x_90; -x_87 = lean_box(0); -x_88 = lean_unbox_float(x_25); +lean_object* x_89; double x_90; double x_91; lean_object* x_92; +x_89 = lean_box(0); +x_90 = lean_unbox_float(x_25); lean_dec(x_25); -x_89 = lean_unbox_float(x_26); +x_91 = lean_unbox_float(x_26); lean_dec(x_26); -x_90 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3(x_2, x_3, x_4, x_17, x_24, x_1, x_27, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_13, x_14, x_22); -return x_90; -} -} -else -{ -lean_object* x_91; double x_92; double x_93; lean_object* x_94; -x_91 = lean_box(0); -x_92 = lean_unbox_float(x_25); -lean_dec(x_25); -x_93 = lean_unbox_float(x_26); -lean_dec(x_26); -x_94 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3(x_2, x_3, x_4, x_17, x_24, x_1, x_27, x_92, x_93, x_5, x_91, x_9, x_10, x_11, x_12, x_13, x_14, x_22); -return x_94; +x_92 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3(x_2, x_3, x_4, x_17, x_24, x_28, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_13, x_14, x_22); +return x_92; } } } } else { -lean_object* x_209; lean_object* x_210; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; -x_297 = lean_io_get_num_heartbeats(x_18); -x_298 = lean_ctor_get(x_297, 0); -lean_inc(x_298); -x_299 = lean_ctor_get(x_297, 1); -lean_inc(x_299); -lean_dec(x_297); +lean_object* x_213; lean_object* x_214; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; +x_305 = lean_io_get_num_heartbeats(x_18); +x_306 = lean_ctor_get(x_305, 0); +lean_inc(x_306); +x_307 = lean_ctor_get(x_305, 1); +lean_inc(x_307); +lean_dec(x_305); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_300 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_299); -if (lean_obj_tag(x_300) == 0) +x_308 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_307); +if (lean_obj_tag(x_308) == 0) { -uint8_t x_301; -x_301 = !lean_is_exclusive(x_300); -if (x_301 == 0) +uint8_t x_309; +x_309 = !lean_is_exclusive(x_308); +if (x_309 == 0) { -lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; uint8_t x_306; -x_302 = lean_ctor_get(x_300, 0); -x_303 = lean_ctor_get(x_300, 1); -x_304 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_304, 0, x_302); -x_305 = lean_io_get_num_heartbeats(x_303); -x_306 = !lean_is_exclusive(x_305); -if (x_306 == 0) +lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; uint8_t x_314; +x_310 = lean_ctor_get(x_308, 0); +x_311 = lean_ctor_get(x_308, 1); +x_312 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_312, 0, x_310); +x_313 = lean_io_get_num_heartbeats(x_311); +x_314 = !lean_is_exclusive(x_313); +if (x_314 == 0) { -lean_object* x_307; lean_object* x_308; uint8_t x_309; lean_object* x_310; double x_311; double x_312; lean_object* x_313; lean_object* x_314; -x_307 = lean_ctor_get(x_305, 0); -x_308 = lean_ctor_get(x_305, 1); -x_309 = 0; -x_310 = lean_unsigned_to_nat(0u); -x_311 = l_Float_ofScientific(x_298, x_309, x_310); -lean_dec(x_298); -x_312 = l_Float_ofScientific(x_307, x_309, x_310); -lean_dec(x_307); -x_313 = lean_box_float(x_311); -x_314 = lean_box_float(x_312); -lean_ctor_set(x_305, 1, x_314); -lean_ctor_set(x_305, 0, x_313); -lean_ctor_set(x_300, 1, x_305); -lean_ctor_set(x_300, 0, x_304); -x_209 = x_300; -x_210 = x_308; -goto block_296; -} -else -{ -lean_object* x_315; lean_object* x_316; uint8_t x_317; lean_object* x_318; double x_319; double x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; -x_315 = lean_ctor_get(x_305, 0); -x_316 = lean_ctor_get(x_305, 1); -lean_inc(x_316); -lean_inc(x_315); -lean_dec(x_305); +lean_object* x_315; lean_object* x_316; uint8_t x_317; lean_object* x_318; double x_319; double x_320; lean_object* x_321; lean_object* x_322; +x_315 = lean_ctor_get(x_313, 0); +x_316 = lean_ctor_get(x_313, 1); x_317 = 0; x_318 = lean_unsigned_to_nat(0u); -x_319 = l_Float_ofScientific(x_298, x_317, x_318); -lean_dec(x_298); +x_319 = l_Float_ofScientific(x_306, x_317, x_318); +lean_dec(x_306); x_320 = l_Float_ofScientific(x_315, x_317, x_318); lean_dec(x_315); x_321 = lean_box_float(x_319); x_322 = lean_box_float(x_320); -x_323 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_323, 0, x_321); -lean_ctor_set(x_323, 1, x_322); -lean_ctor_set(x_300, 1, x_323); -lean_ctor_set(x_300, 0, x_304); -x_209 = x_300; -x_210 = x_316; -goto block_296; -} +lean_ctor_set(x_313, 1, x_322); +lean_ctor_set(x_313, 0, x_321); +lean_ctor_set(x_308, 1, x_313); +lean_ctor_set(x_308, 0, x_312); +x_213 = x_308; +x_214 = x_316; +goto block_304; } else { -lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; uint8_t x_331; lean_object* x_332; double x_333; double x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; -x_324 = lean_ctor_get(x_300, 0); -x_325 = lean_ctor_get(x_300, 1); -lean_inc(x_325); +lean_object* x_323; lean_object* x_324; uint8_t x_325; lean_object* x_326; double x_327; double x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; +x_323 = lean_ctor_get(x_313, 0); +x_324 = lean_ctor_get(x_313, 1); lean_inc(x_324); -lean_dec(x_300); -x_326 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_326, 0, x_324); -x_327 = lean_io_get_num_heartbeats(x_325); -x_328 = lean_ctor_get(x_327, 0); -lean_inc(x_328); -x_329 = lean_ctor_get(x_327, 1); -lean_inc(x_329); -if (lean_is_exclusive(x_327)) { - lean_ctor_release(x_327, 0); - lean_ctor_release(x_327, 1); - x_330 = x_327; -} else { - lean_dec_ref(x_327); - x_330 = lean_box(0); -} -x_331 = 0; -x_332 = lean_unsigned_to_nat(0u); -x_333 = l_Float_ofScientific(x_298, x_331, x_332); -lean_dec(x_298); -x_334 = l_Float_ofScientific(x_328, x_331, x_332); -lean_dec(x_328); -x_335 = lean_box_float(x_333); -x_336 = lean_box_float(x_334); -if (lean_is_scalar(x_330)) { - x_337 = lean_alloc_ctor(0, 2, 0); -} else { - x_337 = x_330; -} -lean_ctor_set(x_337, 0, x_335); -lean_ctor_set(x_337, 1, x_336); -x_338 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_338, 0, x_326); -lean_ctor_set(x_338, 1, x_337); -x_209 = x_338; -x_210 = x_329; -goto block_296; +lean_inc(x_323); +lean_dec(x_313); +x_325 = 0; +x_326 = lean_unsigned_to_nat(0u); +x_327 = l_Float_ofScientific(x_306, x_325, x_326); +lean_dec(x_306); +x_328 = l_Float_ofScientific(x_323, x_325, x_326); +lean_dec(x_323); +x_329 = lean_box_float(x_327); +x_330 = lean_box_float(x_328); +x_331 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_331, 0, x_329); +lean_ctor_set(x_331, 1, x_330); +lean_ctor_set(x_308, 1, x_331); +lean_ctor_set(x_308, 0, x_312); +x_213 = x_308; +x_214 = x_324; +goto block_304; } } else { -uint8_t x_339; -x_339 = !lean_is_exclusive(x_300); -if (x_339 == 0) -{ -lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; uint8_t x_344; -x_340 = lean_ctor_get(x_300, 0); -x_341 = lean_ctor_get(x_300, 1); -x_342 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_342, 0, x_340); -x_343 = lean_io_get_num_heartbeats(x_341); -x_344 = !lean_is_exclusive(x_343); -if (x_344 == 0) -{ -lean_object* x_345; lean_object* x_346; uint8_t x_347; lean_object* x_348; double x_349; double x_350; lean_object* x_351; lean_object* x_352; -x_345 = lean_ctor_get(x_343, 0); -x_346 = lean_ctor_get(x_343, 1); -x_347 = 0; -x_348 = lean_unsigned_to_nat(0u); -x_349 = l_Float_ofScientific(x_298, x_347, x_348); -lean_dec(x_298); -x_350 = l_Float_ofScientific(x_345, x_347, x_348); -lean_dec(x_345); -x_351 = lean_box_float(x_349); -x_352 = lean_box_float(x_350); -lean_ctor_set(x_343, 1, x_352); -lean_ctor_set(x_343, 0, x_351); -lean_ctor_set_tag(x_300, 0); -lean_ctor_set(x_300, 1, x_343); -lean_ctor_set(x_300, 0, x_342); -x_209 = x_300; -x_210 = x_346; -goto block_296; +lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; uint8_t x_339; lean_object* x_340; double x_341; double x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; +x_332 = lean_ctor_get(x_308, 0); +x_333 = lean_ctor_get(x_308, 1); +lean_inc(x_333); +lean_inc(x_332); +lean_dec(x_308); +x_334 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_334, 0, x_332); +x_335 = lean_io_get_num_heartbeats(x_333); +x_336 = lean_ctor_get(x_335, 0); +lean_inc(x_336); +x_337 = lean_ctor_get(x_335, 1); +lean_inc(x_337); +if (lean_is_exclusive(x_335)) { + lean_ctor_release(x_335, 0); + lean_ctor_release(x_335, 1); + x_338 = x_335; +} else { + lean_dec_ref(x_335); + x_338 = lean_box(0); +} +x_339 = 0; +x_340 = lean_unsigned_to_nat(0u); +x_341 = l_Float_ofScientific(x_306, x_339, x_340); +lean_dec(x_306); +x_342 = l_Float_ofScientific(x_336, x_339, x_340); +lean_dec(x_336); +x_343 = lean_box_float(x_341); +x_344 = lean_box_float(x_342); +if (lean_is_scalar(x_338)) { + x_345 = lean_alloc_ctor(0, 2, 0); +} else { + x_345 = x_338; +} +lean_ctor_set(x_345, 0, x_343); +lean_ctor_set(x_345, 1, x_344); +x_346 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_346, 0, x_334); +lean_ctor_set(x_346, 1, x_345); +x_213 = x_346; +x_214 = x_337; +goto block_304; +} } else { -lean_object* x_353; lean_object* x_354; uint8_t x_355; lean_object* x_356; double x_357; double x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; -x_353 = lean_ctor_get(x_343, 0); -x_354 = lean_ctor_get(x_343, 1); -lean_inc(x_354); -lean_inc(x_353); -lean_dec(x_343); +uint8_t x_347; +x_347 = !lean_is_exclusive(x_308); +if (x_347 == 0) +{ +lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; uint8_t x_352; +x_348 = lean_ctor_get(x_308, 0); +x_349 = lean_ctor_get(x_308, 1); +x_350 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_350, 0, x_348); +x_351 = lean_io_get_num_heartbeats(x_349); +x_352 = !lean_is_exclusive(x_351); +if (x_352 == 0) +{ +lean_object* x_353; lean_object* x_354; uint8_t x_355; lean_object* x_356; double x_357; double x_358; lean_object* x_359; lean_object* x_360; +x_353 = lean_ctor_get(x_351, 0); +x_354 = lean_ctor_get(x_351, 1); x_355 = 0; x_356 = lean_unsigned_to_nat(0u); -x_357 = l_Float_ofScientific(x_298, x_355, x_356); -lean_dec(x_298); +x_357 = l_Float_ofScientific(x_306, x_355, x_356); +lean_dec(x_306); x_358 = l_Float_ofScientific(x_353, x_355, x_356); lean_dec(x_353); x_359 = lean_box_float(x_357); x_360 = lean_box_float(x_358); -x_361 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_361, 0, x_359); -lean_ctor_set(x_361, 1, x_360); -lean_ctor_set_tag(x_300, 0); -lean_ctor_set(x_300, 1, x_361); -lean_ctor_set(x_300, 0, x_342); -x_209 = x_300; -x_210 = x_354; -goto block_296; -} +lean_ctor_set(x_351, 1, x_360); +lean_ctor_set(x_351, 0, x_359); +lean_ctor_set_tag(x_308, 0); +lean_ctor_set(x_308, 1, x_351); +lean_ctor_set(x_308, 0, x_350); +x_213 = x_308; +x_214 = x_354; +goto block_304; } else { -lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; uint8_t x_369; lean_object* x_370; double x_371; double x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; -x_362 = lean_ctor_get(x_300, 0); -x_363 = lean_ctor_get(x_300, 1); -lean_inc(x_363); +lean_object* x_361; lean_object* x_362; uint8_t x_363; lean_object* x_364; double x_365; double x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; +x_361 = lean_ctor_get(x_351, 0); +x_362 = lean_ctor_get(x_351, 1); lean_inc(x_362); -lean_dec(x_300); -x_364 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_364, 0, x_362); -x_365 = lean_io_get_num_heartbeats(x_363); -x_366 = lean_ctor_get(x_365, 0); -lean_inc(x_366); -x_367 = lean_ctor_get(x_365, 1); -lean_inc(x_367); -if (lean_is_exclusive(x_365)) { - lean_ctor_release(x_365, 0); - lean_ctor_release(x_365, 1); - x_368 = x_365; -} else { - lean_dec_ref(x_365); - x_368 = lean_box(0); +lean_inc(x_361); +lean_dec(x_351); +x_363 = 0; +x_364 = lean_unsigned_to_nat(0u); +x_365 = l_Float_ofScientific(x_306, x_363, x_364); +lean_dec(x_306); +x_366 = l_Float_ofScientific(x_361, x_363, x_364); +lean_dec(x_361); +x_367 = lean_box_float(x_365); +x_368 = lean_box_float(x_366); +x_369 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_369, 0, x_367); +lean_ctor_set(x_369, 1, x_368); +lean_ctor_set_tag(x_308, 0); +lean_ctor_set(x_308, 1, x_369); +lean_ctor_set(x_308, 0, x_350); +x_213 = x_308; +x_214 = x_362; +goto block_304; } -x_369 = 0; -x_370 = lean_unsigned_to_nat(0u); -x_371 = l_Float_ofScientific(x_298, x_369, x_370); -lean_dec(x_298); -x_372 = l_Float_ofScientific(x_366, x_369, x_370); -lean_dec(x_366); -x_373 = lean_box_float(x_371); -x_374 = lean_box_float(x_372); -if (lean_is_scalar(x_368)) { - x_375 = lean_alloc_ctor(0, 2, 0); -} else { - x_375 = x_368; -} -lean_ctor_set(x_375, 0, x_373); -lean_ctor_set(x_375, 1, x_374); -x_376 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_376, 0, x_364); -lean_ctor_set(x_376, 1, x_375); -x_209 = x_376; -x_210 = x_367; -goto block_296; -} -} -block_296: -{ -lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; uint8_t x_215; lean_object* x_284; uint8_t x_285; -x_211 = lean_ctor_get(x_209, 1); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 0); -lean_inc(x_212); -lean_dec(x_209); -x_213 = lean_ctor_get(x_211, 0); -lean_inc(x_213); -x_214 = lean_ctor_get(x_211, 1); -lean_inc(x_214); -lean_dec(x_211); -x_284 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__2; -x_285 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_284); -if (x_285 == 0) -{ -uint8_t x_286; -x_286 = 0; -x_215 = x_286; -goto block_283; } else { -double x_287; double x_288; double x_289; lean_object* x_290; lean_object* x_291; uint8_t x_292; lean_object* x_293; double x_294; uint8_t x_295; -x_287 = lean_unbox_float(x_214); -x_288 = lean_unbox_float(x_213); -x_289 = lean_float_sub(x_287, x_288); -x_290 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__3; -x_291 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_290); -x_292 = 0; -x_293 = lean_unsigned_to_nat(0u); -x_294 = l_Float_ofScientific(x_291, x_292, x_293); -lean_dec(x_291); -x_295 = lean_float_decLt(x_294, x_289); -x_215 = x_295; -goto block_283; +lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; uint8_t x_377; lean_object* x_378; double x_379; double x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; +x_370 = lean_ctor_get(x_308, 0); +x_371 = lean_ctor_get(x_308, 1); +lean_inc(x_371); +lean_inc(x_370); +lean_dec(x_308); +x_372 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_372, 0, x_370); +x_373 = lean_io_get_num_heartbeats(x_371); +x_374 = lean_ctor_get(x_373, 0); +lean_inc(x_374); +x_375 = lean_ctor_get(x_373, 1); +lean_inc(x_375); +if (lean_is_exclusive(x_373)) { + lean_ctor_release(x_373, 0); + lean_ctor_release(x_373, 1); + x_376 = x_373; +} else { + lean_dec_ref(x_373); + x_376 = lean_box(0); } -block_283: +x_377 = 0; +x_378 = lean_unsigned_to_nat(0u); +x_379 = l_Float_ofScientific(x_306, x_377, x_378); +lean_dec(x_306); +x_380 = l_Float_ofScientific(x_374, x_377, x_378); +lean_dec(x_374); +x_381 = lean_box_float(x_379); +x_382 = lean_box_float(x_380); +if (lean_is_scalar(x_376)) { + x_383 = lean_alloc_ctor(0, 2, 0); +} else { + x_383 = x_376; +} +lean_ctor_set(x_383, 0, x_381); +lean_ctor_set(x_383, 1, x_382); +x_384 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_384, 0, x_372); +lean_ctor_set(x_384, 1, x_383); +x_213 = x_384; +x_214 = x_375; +goto block_304; +} +} +block_304: +{ +lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; uint8_t x_220; uint8_t x_221; +x_215 = lean_ctor_get(x_213, 1); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 0); +lean_inc(x_216); +lean_dec(x_213); +x_217 = lean_ctor_get(x_215, 0); +lean_inc(x_217); +x_218 = lean_ctor_get(x_215, 1); +lean_inc(x_218); +lean_dec(x_215); +x_219 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__2; +x_220 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_219); +if (x_220 == 0) { if (x_6 == 0) { -if (x_215 == 0) +uint8_t x_286; +x_286 = 0; +x_221 = x_286; +goto block_285; +} +else { -lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; uint8_t x_220; -lean_dec(x_214); -lean_dec(x_213); +lean_object* x_287; double x_288; double x_289; lean_object* x_290; +x_287 = lean_box(0); +x_288 = lean_unbox_float(x_217); +lean_dec(x_217); +x_289 = lean_unbox_float(x_218); +lean_dec(x_218); +x_290 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3(x_2, x_3, x_4, x_17, x_216, x_220, x_288, x_289, x_5, x_287, x_9, x_10, x_11, x_12, x_13, x_14, x_214); +return x_290; +} +} +else +{ +if (x_6 == 0) +{ +double x_291; double x_292; double x_293; lean_object* x_294; lean_object* x_295; uint8_t x_296; lean_object* x_297; double x_298; uint8_t x_299; +x_291 = lean_unbox_float(x_218); +x_292 = lean_unbox_float(x_217); +x_293 = lean_float_sub(x_291, x_292); +x_294 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__3; +x_295 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_294); +x_296 = 0; +x_297 = lean_unsigned_to_nat(0u); +x_298 = l_Float_ofScientific(x_295, x_296, x_297); +lean_dec(x_295); +x_299 = lean_float_decLt(x_298, x_293); +x_221 = x_299; +goto block_285; +} +else +{ +lean_object* x_300; double x_301; double x_302; lean_object* x_303; +x_300 = lean_box(0); +x_301 = lean_unbox_float(x_217); +lean_dec(x_217); +x_302 = lean_unbox_float(x_218); +lean_dec(x_218); +x_303 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3(x_2, x_3, x_4, x_17, x_216, x_220, x_301, x_302, x_5, x_300, x_9, x_10, x_11, x_12, x_13, x_14, x_214); +return x_303; +} +} +block_285: +{ +if (x_221 == 0) +{ +lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; uint8_t x_226; +lean_dec(x_218); +lean_dec(x_217); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_216 = lean_st_ref_take(x_14, x_210); -x_217 = lean_ctor_get(x_216, 0); -lean_inc(x_217); -x_218 = lean_ctor_get(x_217, 3); -lean_inc(x_218); -x_219 = lean_ctor_get(x_216, 1); -lean_inc(x_219); -lean_dec(x_216); -x_220 = !lean_is_exclusive(x_217); -if (x_220 == 0) +x_222 = lean_st_ref_take(x_14, x_214); +x_223 = lean_ctor_get(x_222, 0); +lean_inc(x_223); +x_224 = lean_ctor_get(x_223, 3); +lean_inc(x_224); +x_225 = lean_ctor_get(x_222, 1); +lean_inc(x_225); +lean_dec(x_222); +x_226 = !lean_is_exclusive(x_223); +if (x_226 == 0) { -lean_object* x_221; uint8_t x_222; -x_221 = lean_ctor_get(x_217, 3); -lean_dec(x_221); -x_222 = !lean_is_exclusive(x_218); -if (x_222 == 0) -{ -lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; -x_223 = lean_ctor_get(x_218, 0); -x_224 = l_Lean_PersistentArray_append___rarg(x_17, x_223); -lean_dec(x_223); -lean_ctor_set(x_218, 0, x_224); -x_225 = lean_st_ref_set(x_14, x_217, x_219); -x_226 = lean_ctor_get(x_225, 1); -lean_inc(x_226); -lean_dec(x_225); -x_227 = l_MonadExcept_ofExcept___at_Lean_Elab_fixLevelParams___spec__4(x_212, x_9, x_10, x_11, x_12, x_13, x_14, x_226); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_212); -if (lean_obj_tag(x_227) == 0) -{ -uint8_t x_228; -x_228 = !lean_is_exclusive(x_227); +lean_object* x_227; uint8_t x_228; +x_227 = lean_ctor_get(x_223, 3); +lean_dec(x_227); +x_228 = !lean_is_exclusive(x_224); if (x_228 == 0) { -return x_227; -} -else -{ -lean_object* x_229; lean_object* x_230; lean_object* x_231; -x_229 = lean_ctor_get(x_227, 0); -x_230 = lean_ctor_get(x_227, 1); -lean_inc(x_230); -lean_inc(x_229); -lean_dec(x_227); -x_231 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_231, 0, x_229); -lean_ctor_set(x_231, 1, x_230); -return x_231; -} -} -else -{ -uint8_t x_232; -x_232 = !lean_is_exclusive(x_227); -if (x_232 == 0) -{ -return x_227; -} -else -{ -lean_object* x_233; lean_object* x_234; lean_object* x_235; -x_233 = lean_ctor_get(x_227, 0); -x_234 = lean_ctor_get(x_227, 1); -lean_inc(x_234); -lean_inc(x_233); -lean_dec(x_227); -x_235 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_235, 0, x_233); -lean_ctor_set(x_235, 1, x_234); -return x_235; -} -} -} -else -{ -uint64_t x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; -x_236 = lean_ctor_get_uint64(x_218, sizeof(void*)*1); -x_237 = lean_ctor_get(x_218, 0); -lean_inc(x_237); -lean_dec(x_218); -x_238 = l_Lean_PersistentArray_append___rarg(x_17, x_237); -lean_dec(x_237); -x_239 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_239, 0, x_238); -lean_ctor_set_uint64(x_239, sizeof(void*)*1, x_236); -lean_ctor_set(x_217, 3, x_239); -x_240 = lean_st_ref_set(x_14, x_217, x_219); -x_241 = lean_ctor_get(x_240, 1); -lean_inc(x_241); -lean_dec(x_240); -x_242 = l_MonadExcept_ofExcept___at_Lean_Elab_fixLevelParams___spec__4(x_212, x_9, x_10, x_11, x_12, x_13, x_14, x_241); +lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; +x_229 = lean_ctor_get(x_224, 0); +x_230 = l_Lean_PersistentArray_append___rarg(x_17, x_229); +lean_dec(x_229); +lean_ctor_set(x_224, 0, x_230); +x_231 = lean_st_ref_set(x_14, x_223, x_225); +x_232 = lean_ctor_get(x_231, 1); +lean_inc(x_232); +lean_dec(x_231); +x_233 = l_MonadExcept_ofExcept___at_Lean_Elab_fixLevelParams___spec__4(x_216, x_9, x_10, x_11, x_12, x_13, x_14, x_232); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_212); -if (lean_obj_tag(x_242) == 0) +lean_dec(x_216); +if (lean_obj_tag(x_233) == 0) { -lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; -x_243 = lean_ctor_get(x_242, 0); +uint8_t x_234; +x_234 = !lean_is_exclusive(x_233); +if (x_234 == 0) +{ +return x_233; +} +else +{ +lean_object* x_235; lean_object* x_236; lean_object* x_237; +x_235 = lean_ctor_get(x_233, 0); +x_236 = lean_ctor_get(x_233, 1); +lean_inc(x_236); +lean_inc(x_235); +lean_dec(x_233); +x_237 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_237, 0, x_235); +lean_ctor_set(x_237, 1, x_236); +return x_237; +} +} +else +{ +uint8_t x_238; +x_238 = !lean_is_exclusive(x_233); +if (x_238 == 0) +{ +return x_233; +} +else +{ +lean_object* x_239; lean_object* x_240; lean_object* x_241; +x_239 = lean_ctor_get(x_233, 0); +x_240 = lean_ctor_get(x_233, 1); +lean_inc(x_240); +lean_inc(x_239); +lean_dec(x_233); +x_241 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_241, 0, x_239); +lean_ctor_set(x_241, 1, x_240); +return x_241; +} +} +} +else +{ +uint64_t x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; +x_242 = lean_ctor_get_uint64(x_224, sizeof(void*)*1); +x_243 = lean_ctor_get(x_224, 0); lean_inc(x_243); -x_244 = lean_ctor_get(x_242, 1); -lean_inc(x_244); -if (lean_is_exclusive(x_242)) { - lean_ctor_release(x_242, 0); - lean_ctor_release(x_242, 1); - x_245 = x_242; -} else { - lean_dec_ref(x_242); - x_245 = lean_box(0); -} -if (lean_is_scalar(x_245)) { - x_246 = lean_alloc_ctor(0, 2, 0); -} else { - x_246 = x_245; -} -lean_ctor_set(x_246, 0, x_243); -lean_ctor_set(x_246, 1, x_244); -return x_246; -} -else -{ -lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; -x_247 = lean_ctor_get(x_242, 0); +lean_dec(x_224); +x_244 = l_Lean_PersistentArray_append___rarg(x_17, x_243); +lean_dec(x_243); +x_245 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_245, 0, x_244); +lean_ctor_set_uint64(x_245, sizeof(void*)*1, x_242); +lean_ctor_set(x_223, 3, x_245); +x_246 = lean_st_ref_set(x_14, x_223, x_225); +x_247 = lean_ctor_get(x_246, 1); lean_inc(x_247); -x_248 = lean_ctor_get(x_242, 1); -lean_inc(x_248); -if (lean_is_exclusive(x_242)) { - lean_ctor_release(x_242, 0); - lean_ctor_release(x_242, 1); - x_249 = x_242; -} else { - lean_dec_ref(x_242); - x_249 = lean_box(0); -} -if (lean_is_scalar(x_249)) { - x_250 = lean_alloc_ctor(1, 2, 0); -} else { - x_250 = x_249; -} -lean_ctor_set(x_250, 0, x_247); -lean_ctor_set(x_250, 1, x_248); -return x_250; -} -} -} -else -{ -lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; uint64_t x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; -x_251 = lean_ctor_get(x_217, 0); -x_252 = lean_ctor_get(x_217, 1); -x_253 = lean_ctor_get(x_217, 2); -x_254 = lean_ctor_get(x_217, 4); -x_255 = lean_ctor_get(x_217, 5); -x_256 = lean_ctor_get(x_217, 6); -x_257 = lean_ctor_get(x_217, 7); -lean_inc(x_257); -lean_inc(x_256); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_dec(x_217); -x_258 = lean_ctor_get_uint64(x_218, sizeof(void*)*1); -x_259 = lean_ctor_get(x_218, 0); -lean_inc(x_259); -if (lean_is_exclusive(x_218)) { - lean_ctor_release(x_218, 0); - x_260 = x_218; -} else { - lean_dec_ref(x_218); - x_260 = lean_box(0); -} -x_261 = l_Lean_PersistentArray_append___rarg(x_17, x_259); -lean_dec(x_259); -if (lean_is_scalar(x_260)) { - x_262 = lean_alloc_ctor(0, 1, 8); -} else { - x_262 = x_260; -} -lean_ctor_set(x_262, 0, x_261); -lean_ctor_set_uint64(x_262, sizeof(void*)*1, x_258); -x_263 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_263, 0, x_251); -lean_ctor_set(x_263, 1, x_252); -lean_ctor_set(x_263, 2, x_253); -lean_ctor_set(x_263, 3, x_262); -lean_ctor_set(x_263, 4, x_254); -lean_ctor_set(x_263, 5, x_255); -lean_ctor_set(x_263, 6, x_256); -lean_ctor_set(x_263, 7, x_257); -x_264 = lean_st_ref_set(x_14, x_263, x_219); -x_265 = lean_ctor_get(x_264, 1); -lean_inc(x_265); -lean_dec(x_264); -x_266 = l_MonadExcept_ofExcept___at_Lean_Elab_fixLevelParams___spec__4(x_212, x_9, x_10, x_11, x_12, x_13, x_14, x_265); +lean_dec(x_246); +x_248 = l_MonadExcept_ofExcept___at_Lean_Elab_fixLevelParams___spec__4(x_216, x_9, x_10, x_11, x_12, x_13, x_14, x_247); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_212); -if (lean_obj_tag(x_266) == 0) +lean_dec(x_216); +if (lean_obj_tag(x_248) == 0) { -lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; -x_267 = lean_ctor_get(x_266, 0); -lean_inc(x_267); -x_268 = lean_ctor_get(x_266, 1); -lean_inc(x_268); -if (lean_is_exclusive(x_266)) { - lean_ctor_release(x_266, 0); - lean_ctor_release(x_266, 1); - x_269 = x_266; +lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; +x_249 = lean_ctor_get(x_248, 0); +lean_inc(x_249); +x_250 = lean_ctor_get(x_248, 1); +lean_inc(x_250); +if (lean_is_exclusive(x_248)) { + lean_ctor_release(x_248, 0); + lean_ctor_release(x_248, 1); + x_251 = x_248; } else { - lean_dec_ref(x_266); - x_269 = lean_box(0); + lean_dec_ref(x_248); + x_251 = lean_box(0); } -if (lean_is_scalar(x_269)) { - x_270 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_251)) { + x_252 = lean_alloc_ctor(0, 2, 0); } else { - x_270 = x_269; + x_252 = x_251; } -lean_ctor_set(x_270, 0, x_267); -lean_ctor_set(x_270, 1, x_268); -return x_270; +lean_ctor_set(x_252, 0, x_249); +lean_ctor_set(x_252, 1, x_250); +return x_252; } else { -lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; -x_271 = lean_ctor_get(x_266, 0); +lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; +x_253 = lean_ctor_get(x_248, 0); +lean_inc(x_253); +x_254 = lean_ctor_get(x_248, 1); +lean_inc(x_254); +if (lean_is_exclusive(x_248)) { + lean_ctor_release(x_248, 0); + lean_ctor_release(x_248, 1); + x_255 = x_248; +} else { + lean_dec_ref(x_248); + x_255 = lean_box(0); +} +if (lean_is_scalar(x_255)) { + x_256 = lean_alloc_ctor(1, 2, 0); +} else { + x_256 = x_255; +} +lean_ctor_set(x_256, 0, x_253); +lean_ctor_set(x_256, 1, x_254); +return x_256; +} +} +} +else +{ +lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; uint64_t x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; +x_257 = lean_ctor_get(x_223, 0); +x_258 = lean_ctor_get(x_223, 1); +x_259 = lean_ctor_get(x_223, 2); +x_260 = lean_ctor_get(x_223, 4); +x_261 = lean_ctor_get(x_223, 5); +x_262 = lean_ctor_get(x_223, 6); +x_263 = lean_ctor_get(x_223, 7); +lean_inc(x_263); +lean_inc(x_262); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_dec(x_223); +x_264 = lean_ctor_get_uint64(x_224, sizeof(void*)*1); +x_265 = lean_ctor_get(x_224, 0); +lean_inc(x_265); +if (lean_is_exclusive(x_224)) { + lean_ctor_release(x_224, 0); + x_266 = x_224; +} else { + lean_dec_ref(x_224); + x_266 = lean_box(0); +} +x_267 = l_Lean_PersistentArray_append___rarg(x_17, x_265); +lean_dec(x_265); +if (lean_is_scalar(x_266)) { + x_268 = lean_alloc_ctor(0, 1, 8); +} else { + x_268 = x_266; +} +lean_ctor_set(x_268, 0, x_267); +lean_ctor_set_uint64(x_268, sizeof(void*)*1, x_264); +x_269 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_269, 0, x_257); +lean_ctor_set(x_269, 1, x_258); +lean_ctor_set(x_269, 2, x_259); +lean_ctor_set(x_269, 3, x_268); +lean_ctor_set(x_269, 4, x_260); +lean_ctor_set(x_269, 5, x_261); +lean_ctor_set(x_269, 6, x_262); +lean_ctor_set(x_269, 7, x_263); +x_270 = lean_st_ref_set(x_14, x_269, x_225); +x_271 = lean_ctor_get(x_270, 1); lean_inc(x_271); -x_272 = lean_ctor_get(x_266, 1); -lean_inc(x_272); -if (lean_is_exclusive(x_266)) { - lean_ctor_release(x_266, 0); - lean_ctor_release(x_266, 1); - x_273 = x_266; +lean_dec(x_270); +x_272 = l_MonadExcept_ofExcept___at_Lean_Elab_fixLevelParams___spec__4(x_216, x_9, x_10, x_11, x_12, x_13, x_14, x_271); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_216); +if (lean_obj_tag(x_272) == 0) +{ +lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; +x_273 = lean_ctor_get(x_272, 0); +lean_inc(x_273); +x_274 = lean_ctor_get(x_272, 1); +lean_inc(x_274); +if (lean_is_exclusive(x_272)) { + lean_ctor_release(x_272, 0); + lean_ctor_release(x_272, 1); + x_275 = x_272; } else { - lean_dec_ref(x_266); - x_273 = lean_box(0); + lean_dec_ref(x_272); + x_275 = lean_box(0); } -if (lean_is_scalar(x_273)) { - x_274 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_275)) { + x_276 = lean_alloc_ctor(0, 2, 0); } else { - x_274 = x_273; + x_276 = x_275; } -lean_ctor_set(x_274, 0, x_271); -lean_ctor_set(x_274, 1, x_272); -return x_274; +lean_ctor_set(x_276, 0, x_273); +lean_ctor_set(x_276, 1, x_274); +return x_276; +} +else +{ +lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; +x_277 = lean_ctor_get(x_272, 0); +lean_inc(x_277); +x_278 = lean_ctor_get(x_272, 1); +lean_inc(x_278); +if (lean_is_exclusive(x_272)) { + lean_ctor_release(x_272, 0); + lean_ctor_release(x_272, 1); + x_279 = x_272; +} else { + lean_dec_ref(x_272); + x_279 = lean_box(0); +} +if (lean_is_scalar(x_279)) { + x_280 = lean_alloc_ctor(1, 2, 0); +} else { + x_280 = x_279; +} +lean_ctor_set(x_280, 0, x_277); +lean_ctor_set(x_280, 1, x_278); +return x_280; } } } else { -lean_object* x_275; double x_276; double x_277; lean_object* x_278; -x_275 = lean_box(0); -x_276 = lean_unbox_float(x_213); -lean_dec(x_213); -x_277 = lean_unbox_float(x_214); -lean_dec(x_214); -x_278 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3(x_2, x_3, x_4, x_17, x_212, x_1, x_215, x_276, x_277, x_5, x_275, x_9, x_10, x_11, x_12, x_13, x_14, x_210); -return x_278; -} -} -else -{ -lean_object* x_279; double x_280; double x_281; lean_object* x_282; -x_279 = lean_box(0); -x_280 = lean_unbox_float(x_213); -lean_dec(x_213); -x_281 = lean_unbox_float(x_214); -lean_dec(x_214); -x_282 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3(x_2, x_3, x_4, x_17, x_212, x_1, x_215, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_13, x_14, x_210); -return x_282; +lean_object* x_281; double x_282; double x_283; lean_object* x_284; +x_281 = lean_box(0); +x_282 = lean_unbox_float(x_217); +lean_dec(x_217); +x_283 = lean_unbox_float(x_218); +lean_dec(x_218); +x_284 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3(x_2, x_3, x_4, x_17, x_216, x_220, x_282, x_283, x_5, x_281, x_9, x_10, x_11, x_12, x_13, x_14, x_214); +return x_284; } } } @@ -2983,27 +2976,25 @@ lean_object* x_14 = _args[13]; lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; _start: { -uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; -x_19 = lean_unbox(x_2); +uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; +x_18 = lean_unbox(x_2); lean_dec(x_2); -x_20 = lean_unbox(x_8); +x_19 = lean_unbox(x_7); +lean_dec(x_7); +x_20 = lean_unbox_float(x_8); lean_dec(x_8); x_21 = lean_unbox_float(x_9); lean_dec(x_9); -x_22 = lean_unbox_float(x_10); -lean_dec(x_10); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__2(x_1, x_19, x_3, x_4, x_5, x_6, x_7, x_20, x_21, x_22, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -lean_dec(x_17); -lean_dec(x_15); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__2(x_1, x_18, x_3, x_4, x_5, x_6, x_19, x_20, x_21, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +lean_dec(x_16); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_23; +return x_22; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3___boxed(lean_object** _args) { @@ -3024,22 +3015,20 @@ lean_object* x_14 = _args[13]; lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; _start: { -uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; -x_19 = lean_unbox(x_2); +uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; +x_18 = lean_unbox(x_2); lean_dec(x_2); -x_20 = lean_unbox(x_7); +x_19 = lean_unbox(x_6); +lean_dec(x_6); +x_20 = lean_unbox_float(x_7); lean_dec(x_7); x_21 = lean_unbox_float(x_8); lean_dec(x_8); -x_22 = lean_unbox_float(x_9); -lean_dec(x_9); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3(x_1, x_19, x_3, x_4, x_5, x_6, x_20, x_21, x_22, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -lean_dec(x_11); -lean_dec(x_6); -return x_23; +x_22 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3(x_1, x_18, x_3, x_4, x_5, x_19, x_20, x_21, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +lean_dec(x_10); +return x_22; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { @@ -12192,97 +12181,72 @@ lean_dec(x_7); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -double x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_15 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_16 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_16, 0, x_1); -lean_ctor_set(x_16, 1, x_3); -lean_ctor_set_float(x_16, sizeof(void*)*2, x_15); -lean_ctor_set_float(x_16, sizeof(void*)*2 + 8, x_15); -lean_ctor_set_uint8(x_16, sizeof(void*)*2 + 16, x_2); -x_17 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__2___closed__2; -x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_17); -if (x_18 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__2___closed__1; +x_15 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_15, 0, x_1); +lean_ctor_set(x_15, 1, x_3); +lean_ctor_set_float(x_15, sizeof(void*)*2, x_14); +lean_ctor_set_float(x_15, sizeof(void*)*2 + 8, x_14); +lean_ctor_set_uint8(x_15, sizeof(void*)*2 + 16, x_2); +x_16 = lean_box(0); +x_17 = l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__1(x_4, x_5, x_10, x_6, x_15, x_16, x_11, x_12, x_13); +return x_17; +} +else { -lean_object* x_19; lean_object* x_20; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_3); +lean_ctor_set_float(x_18, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); x_19 = lean_box(0); -x_20 = l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__1(x_4, x_5, x_11, x_6, x_16, x_19, x_12, x_13, x_14); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__1(x_4, x_5, x_10, x_6, x_18, x_19, x_11, x_12, x_13); return x_20; } -else -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; -lean_dec(x_16); -x_21 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_21, 0, x_1); -lean_ctor_set(x_21, 1, x_3); -lean_ctor_set_float(x_21, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_21, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_21, sizeof(void*)*2 + 16, x_2); -x_22 = lean_box(0); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__1(x_4, x_5, x_11, x_6, x_21, x_22, x_12, x_13, x_14); -return x_23; } } -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -lean_dec(x_16); -x_24 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_24, 0, x_1); -lean_ctor_set(x_24, 1, x_3); -lean_ctor_set_float(x_24, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_24, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_24, sizeof(void*)*2 + 16, x_2); -x_25 = lean_box(0); -x_26 = l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__1(x_4, x_5, x_11, x_6, x_24, x_25, x_12, x_13, x_14); -return x_26; -} -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_15; lean_object* x_16; -x_15 = lean_ctor_get(x_12, 5); -lean_inc(x_15); -lean_inc(x_13); +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_11, 5); +lean_inc(x_14); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_16 = lean_apply_4(x_10, x_5, x_12, x_13, x_14); -if (lean_obj_tag(x_16) == 0) +x_15 = lean_apply_4(x_9, x_5, x_11, x_12, x_13); +if (lean_obj_tag(x_15) == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_ctor_get(x_16, 0); +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); lean_inc(x_17); -x_18 = lean_ctor_get(x_16, 1); -lean_inc(x_18); -lean_dec(x_16); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_15, x_5, x_6, x_7, x_8, x_9, x_17, x_12, x_13, x_18); -lean_dec(x_13); +lean_dec(x_15); +x_18 = l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_14, x_5, x_6, x_7, x_8, x_16, x_11, x_12, x_17); +lean_dec(x_12); lean_dec(x_5); -return x_19; +return x_18; } else { -lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_20 = lean_ctor_get(x_16, 1); -lean_inc(x_20); -lean_dec(x_16); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3___closed__2; -x_22 = l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_15, x_5, x_6, x_7, x_8, x_9, x_21, x_12, x_13, x_20); -lean_dec(x_13); +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_15, 1); +lean_inc(x_19); +lean_dec(x_15); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3___closed__2; +x_21 = l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_14, x_5, x_6, x_7, x_8, x_20, x_11, x_12, x_19); +lean_dec(x_12); lean_dec(x_5); -return x_22; +return x_21; } } } @@ -12300,251 +12264,251 @@ x_15 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4_ x_16 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_15); if (x_16 == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; -x_107 = lean_io_mono_nanos_now(x_14); -x_108 = lean_ctor_get(x_107, 0); -lean_inc(x_108); -x_109 = lean_ctor_get(x_107, 1); -lean_inc(x_109); -lean_dec(x_107); +lean_object* x_17; lean_object* x_18; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; +x_111 = lean_io_mono_nanos_now(x_14); +x_112 = lean_ctor_get(x_111, 0); +lean_inc(x_112); +x_113 = lean_ctor_get(x_111, 1); +lean_inc(x_113); +lean_dec(x_111); lean_inc(x_10); lean_inc(x_9); -x_110 = lean_apply_3(x_7, x_9, x_10, x_109); -if (lean_obj_tag(x_110) == 0) +x_114 = lean_apply_3(x_7, x_9, x_10, x_113); +if (lean_obj_tag(x_114) == 0) { -uint8_t x_111; -x_111 = !lean_is_exclusive(x_110); -if (x_111 == 0) +uint8_t x_115; +x_115 = !lean_is_exclusive(x_114); +if (x_115 == 0) { -lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; uint8_t x_116; -x_112 = lean_ctor_get(x_110, 0); -x_113 = lean_ctor_get(x_110, 1); -x_114 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_114, 0, x_112); -x_115 = lean_io_mono_nanos_now(x_113); -x_116 = !lean_is_exclusive(x_115); -if (x_116 == 0) +lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; uint8_t x_120; +x_116 = lean_ctor_get(x_114, 0); +x_117 = lean_ctor_get(x_114, 1); +x_118 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_118, 0, x_116); +x_119 = lean_io_mono_nanos_now(x_117); +x_120 = !lean_is_exclusive(x_119); +if (x_120 == 0) { -lean_object* x_117; lean_object* x_118; uint8_t x_119; lean_object* x_120; double x_121; double x_122; double x_123; double x_124; double x_125; lean_object* x_126; lean_object* x_127; -x_117 = lean_ctor_get(x_115, 0); -x_118 = lean_ctor_get(x_115, 1); -x_119 = 0; -x_120 = lean_unsigned_to_nat(0u); -x_121 = l_Float_ofScientific(x_108, x_119, x_120); -lean_dec(x_108); -x_122 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; -x_123 = lean_float_div(x_121, x_122); -x_124 = l_Float_ofScientific(x_117, x_119, x_120); -lean_dec(x_117); -x_125 = lean_float_div(x_124, x_122); -x_126 = lean_box_float(x_123); -x_127 = lean_box_float(x_125); -lean_ctor_set(x_115, 1, x_127); -lean_ctor_set(x_115, 0, x_126); -lean_ctor_set(x_110, 1, x_115); -lean_ctor_set(x_110, 0, x_114); -x_17 = x_110; -x_18 = x_118; -goto block_106; +lean_object* x_121; lean_object* x_122; uint8_t x_123; lean_object* x_124; double x_125; double x_126; double x_127; double x_128; double x_129; lean_object* x_130; lean_object* x_131; +x_121 = lean_ctor_get(x_119, 0); +x_122 = lean_ctor_get(x_119, 1); +x_123 = 0; +x_124 = lean_unsigned_to_nat(0u); +x_125 = l_Float_ofScientific(x_112, x_123, x_124); +lean_dec(x_112); +x_126 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; +x_127 = lean_float_div(x_125, x_126); +x_128 = l_Float_ofScientific(x_121, x_123, x_124); +lean_dec(x_121); +x_129 = lean_float_div(x_128, x_126); +x_130 = lean_box_float(x_127); +x_131 = lean_box_float(x_129); +lean_ctor_set(x_119, 1, x_131); +lean_ctor_set(x_119, 0, x_130); +lean_ctor_set(x_114, 1, x_119); +lean_ctor_set(x_114, 0, x_118); +x_17 = x_114; +x_18 = x_122; +goto block_110; } else { -lean_object* x_128; lean_object* x_129; uint8_t x_130; lean_object* x_131; double x_132; double x_133; double x_134; double x_135; double x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; -x_128 = lean_ctor_get(x_115, 0); -x_129 = lean_ctor_get(x_115, 1); -lean_inc(x_129); -lean_inc(x_128); -lean_dec(x_115); -x_130 = 0; -x_131 = lean_unsigned_to_nat(0u); -x_132 = l_Float_ofScientific(x_108, x_130, x_131); -lean_dec(x_108); -x_133 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; -x_134 = lean_float_div(x_132, x_133); -x_135 = l_Float_ofScientific(x_128, x_130, x_131); -lean_dec(x_128); -x_136 = lean_float_div(x_135, x_133); -x_137 = lean_box_float(x_134); -x_138 = lean_box_float(x_136); -x_139 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_139, 0, x_137); -lean_ctor_set(x_139, 1, x_138); -lean_ctor_set(x_110, 1, x_139); -lean_ctor_set(x_110, 0, x_114); -x_17 = x_110; -x_18 = x_129; -goto block_106; +lean_object* x_132; lean_object* x_133; uint8_t x_134; lean_object* x_135; double x_136; double x_137; double x_138; double x_139; double x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; +x_132 = lean_ctor_get(x_119, 0); +x_133 = lean_ctor_get(x_119, 1); +lean_inc(x_133); +lean_inc(x_132); +lean_dec(x_119); +x_134 = 0; +x_135 = lean_unsigned_to_nat(0u); +x_136 = l_Float_ofScientific(x_112, x_134, x_135); +lean_dec(x_112); +x_137 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; +x_138 = lean_float_div(x_136, x_137); +x_139 = l_Float_ofScientific(x_132, x_134, x_135); +lean_dec(x_132); +x_140 = lean_float_div(x_139, x_137); +x_141 = lean_box_float(x_138); +x_142 = lean_box_float(x_140); +x_143 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_143, 0, x_141); +lean_ctor_set(x_143, 1, x_142); +lean_ctor_set(x_114, 1, x_143); +lean_ctor_set(x_114, 0, x_118); +x_17 = x_114; +x_18 = x_133; +goto block_110; } } else { -lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; uint8_t x_147; lean_object* x_148; double x_149; double x_150; double x_151; double x_152; double x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; -x_140 = lean_ctor_get(x_110, 0); -x_141 = lean_ctor_get(x_110, 1); -lean_inc(x_141); -lean_inc(x_140); -lean_dec(x_110); -x_142 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_142, 0, x_140); -x_143 = lean_io_mono_nanos_now(x_141); -x_144 = lean_ctor_get(x_143, 0); -lean_inc(x_144); -x_145 = lean_ctor_get(x_143, 1); +lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; uint8_t x_151; lean_object* x_152; double x_153; double x_154; double x_155; double x_156; double x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; +x_144 = lean_ctor_get(x_114, 0); +x_145 = lean_ctor_get(x_114, 1); lean_inc(x_145); -if (lean_is_exclusive(x_143)) { - lean_ctor_release(x_143, 0); - lean_ctor_release(x_143, 1); - x_146 = x_143; +lean_inc(x_144); +lean_dec(x_114); +x_146 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_146, 0, x_144); +x_147 = lean_io_mono_nanos_now(x_145); +x_148 = lean_ctor_get(x_147, 0); +lean_inc(x_148); +x_149 = lean_ctor_get(x_147, 1); +lean_inc(x_149); +if (lean_is_exclusive(x_147)) { + lean_ctor_release(x_147, 0); + lean_ctor_release(x_147, 1); + x_150 = x_147; } else { - lean_dec_ref(x_143); - x_146 = lean_box(0); + lean_dec_ref(x_147); + x_150 = lean_box(0); } -x_147 = 0; -x_148 = lean_unsigned_to_nat(0u); -x_149 = l_Float_ofScientific(x_108, x_147, x_148); -lean_dec(x_108); -x_150 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; -x_151 = lean_float_div(x_149, x_150); -x_152 = l_Float_ofScientific(x_144, x_147, x_148); -lean_dec(x_144); -x_153 = lean_float_div(x_152, x_150); -x_154 = lean_box_float(x_151); -x_155 = lean_box_float(x_153); -if (lean_is_scalar(x_146)) { - x_156 = lean_alloc_ctor(0, 2, 0); +x_151 = 0; +x_152 = lean_unsigned_to_nat(0u); +x_153 = l_Float_ofScientific(x_112, x_151, x_152); +lean_dec(x_112); +x_154 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; +x_155 = lean_float_div(x_153, x_154); +x_156 = l_Float_ofScientific(x_148, x_151, x_152); +lean_dec(x_148); +x_157 = lean_float_div(x_156, x_154); +x_158 = lean_box_float(x_155); +x_159 = lean_box_float(x_157); +if (lean_is_scalar(x_150)) { + x_160 = lean_alloc_ctor(0, 2, 0); } else { - x_156 = x_146; + x_160 = x_150; } -lean_ctor_set(x_156, 0, x_154); -lean_ctor_set(x_156, 1, x_155); -x_157 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_157, 0, x_142); -lean_ctor_set(x_157, 1, x_156); -x_17 = x_157; -x_18 = x_145; -goto block_106; +lean_ctor_set(x_160, 0, x_158); +lean_ctor_set(x_160, 1, x_159); +x_161 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_161, 0, x_146); +lean_ctor_set(x_161, 1, x_160); +x_17 = x_161; +x_18 = x_149; +goto block_110; } } else { -uint8_t x_158; -x_158 = !lean_is_exclusive(x_110); -if (x_158 == 0) +uint8_t x_162; +x_162 = !lean_is_exclusive(x_114); +if (x_162 == 0) { -lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; uint8_t x_163; -x_159 = lean_ctor_get(x_110, 0); -x_160 = lean_ctor_get(x_110, 1); -x_161 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_161, 0, x_159); -x_162 = lean_io_mono_nanos_now(x_160); -x_163 = !lean_is_exclusive(x_162); -if (x_163 == 0) +lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; uint8_t x_167; +x_163 = lean_ctor_get(x_114, 0); +x_164 = lean_ctor_get(x_114, 1); +x_165 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_165, 0, x_163); +x_166 = lean_io_mono_nanos_now(x_164); +x_167 = !lean_is_exclusive(x_166); +if (x_167 == 0) { -lean_object* x_164; lean_object* x_165; uint8_t x_166; lean_object* x_167; double x_168; double x_169; double x_170; double x_171; double x_172; lean_object* x_173; lean_object* x_174; -x_164 = lean_ctor_get(x_162, 0); -x_165 = lean_ctor_get(x_162, 1); -x_166 = 0; -x_167 = lean_unsigned_to_nat(0u); -x_168 = l_Float_ofScientific(x_108, x_166, x_167); -lean_dec(x_108); -x_169 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; -x_170 = lean_float_div(x_168, x_169); -x_171 = l_Float_ofScientific(x_164, x_166, x_167); -lean_dec(x_164); -x_172 = lean_float_div(x_171, x_169); -x_173 = lean_box_float(x_170); -x_174 = lean_box_float(x_172); -lean_ctor_set(x_162, 1, x_174); -lean_ctor_set(x_162, 0, x_173); -lean_ctor_set_tag(x_110, 0); -lean_ctor_set(x_110, 1, x_162); -lean_ctor_set(x_110, 0, x_161); -x_17 = x_110; -x_18 = x_165; -goto block_106; +lean_object* x_168; lean_object* x_169; uint8_t x_170; lean_object* x_171; double x_172; double x_173; double x_174; double x_175; double x_176; lean_object* x_177; lean_object* x_178; +x_168 = lean_ctor_get(x_166, 0); +x_169 = lean_ctor_get(x_166, 1); +x_170 = 0; +x_171 = lean_unsigned_to_nat(0u); +x_172 = l_Float_ofScientific(x_112, x_170, x_171); +lean_dec(x_112); +x_173 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; +x_174 = lean_float_div(x_172, x_173); +x_175 = l_Float_ofScientific(x_168, x_170, x_171); +lean_dec(x_168); +x_176 = lean_float_div(x_175, x_173); +x_177 = lean_box_float(x_174); +x_178 = lean_box_float(x_176); +lean_ctor_set(x_166, 1, x_178); +lean_ctor_set(x_166, 0, x_177); +lean_ctor_set_tag(x_114, 0); +lean_ctor_set(x_114, 1, x_166); +lean_ctor_set(x_114, 0, x_165); +x_17 = x_114; +x_18 = x_169; +goto block_110; } else { -lean_object* x_175; lean_object* x_176; uint8_t x_177; lean_object* x_178; double x_179; double x_180; double x_181; double x_182; double x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; -x_175 = lean_ctor_get(x_162, 0); -x_176 = lean_ctor_get(x_162, 1); -lean_inc(x_176); -lean_inc(x_175); -lean_dec(x_162); -x_177 = 0; -x_178 = lean_unsigned_to_nat(0u); -x_179 = l_Float_ofScientific(x_108, x_177, x_178); -lean_dec(x_108); -x_180 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; -x_181 = lean_float_div(x_179, x_180); -x_182 = l_Float_ofScientific(x_175, x_177, x_178); -lean_dec(x_175); -x_183 = lean_float_div(x_182, x_180); -x_184 = lean_box_float(x_181); -x_185 = lean_box_float(x_183); -x_186 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_186, 0, x_184); -lean_ctor_set(x_186, 1, x_185); -lean_ctor_set_tag(x_110, 0); -lean_ctor_set(x_110, 1, x_186); -lean_ctor_set(x_110, 0, x_161); -x_17 = x_110; -x_18 = x_176; -goto block_106; +lean_object* x_179; lean_object* x_180; uint8_t x_181; lean_object* x_182; double x_183; double x_184; double x_185; double x_186; double x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; +x_179 = lean_ctor_get(x_166, 0); +x_180 = lean_ctor_get(x_166, 1); +lean_inc(x_180); +lean_inc(x_179); +lean_dec(x_166); +x_181 = 0; +x_182 = lean_unsigned_to_nat(0u); +x_183 = l_Float_ofScientific(x_112, x_181, x_182); +lean_dec(x_112); +x_184 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; +x_185 = lean_float_div(x_183, x_184); +x_186 = l_Float_ofScientific(x_179, x_181, x_182); +lean_dec(x_179); +x_187 = lean_float_div(x_186, x_184); +x_188 = lean_box_float(x_185); +x_189 = lean_box_float(x_187); +x_190 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_190, 0, x_188); +lean_ctor_set(x_190, 1, x_189); +lean_ctor_set_tag(x_114, 0); +lean_ctor_set(x_114, 1, x_190); +lean_ctor_set(x_114, 0, x_165); +x_17 = x_114; +x_18 = x_180; +goto block_110; } } else { -lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; uint8_t x_194; lean_object* x_195; double x_196; double x_197; double x_198; double x_199; double x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; -x_187 = lean_ctor_get(x_110, 0); -x_188 = lean_ctor_get(x_110, 1); -lean_inc(x_188); -lean_inc(x_187); -lean_dec(x_110); -x_189 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_189, 0, x_187); -x_190 = lean_io_mono_nanos_now(x_188); -x_191 = lean_ctor_get(x_190, 0); -lean_inc(x_191); -x_192 = lean_ctor_get(x_190, 1); +lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; uint8_t x_198; lean_object* x_199; double x_200; double x_201; double x_202; double x_203; double x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; +x_191 = lean_ctor_get(x_114, 0); +x_192 = lean_ctor_get(x_114, 1); lean_inc(x_192); -if (lean_is_exclusive(x_190)) { - lean_ctor_release(x_190, 0); - lean_ctor_release(x_190, 1); - x_193 = x_190; +lean_inc(x_191); +lean_dec(x_114); +x_193 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_193, 0, x_191); +x_194 = lean_io_mono_nanos_now(x_192); +x_195 = lean_ctor_get(x_194, 0); +lean_inc(x_195); +x_196 = lean_ctor_get(x_194, 1); +lean_inc(x_196); +if (lean_is_exclusive(x_194)) { + lean_ctor_release(x_194, 0); + lean_ctor_release(x_194, 1); + x_197 = x_194; } else { - lean_dec_ref(x_190); - x_193 = lean_box(0); + lean_dec_ref(x_194); + x_197 = lean_box(0); } -x_194 = 0; -x_195 = lean_unsigned_to_nat(0u); -x_196 = l_Float_ofScientific(x_108, x_194, x_195); -lean_dec(x_108); -x_197 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; -x_198 = lean_float_div(x_196, x_197); -x_199 = l_Float_ofScientific(x_191, x_194, x_195); -lean_dec(x_191); -x_200 = lean_float_div(x_199, x_197); -x_201 = lean_box_float(x_198); -x_202 = lean_box_float(x_200); -if (lean_is_scalar(x_193)) { - x_203 = lean_alloc_ctor(0, 2, 0); +x_198 = 0; +x_199 = lean_unsigned_to_nat(0u); +x_200 = l_Float_ofScientific(x_112, x_198, x_199); +lean_dec(x_112); +x_201 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__5; +x_202 = lean_float_div(x_200, x_201); +x_203 = l_Float_ofScientific(x_195, x_198, x_199); +lean_dec(x_195); +x_204 = lean_float_div(x_203, x_201); +x_205 = lean_box_float(x_202); +x_206 = lean_box_float(x_204); +if (lean_is_scalar(x_197)) { + x_207 = lean_alloc_ctor(0, 2, 0); } else { - x_203 = x_193; + x_207 = x_197; } -lean_ctor_set(x_203, 0, x_201); -lean_ctor_set(x_203, 1, x_202); -x_204 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_204, 0, x_189); -lean_ctor_set(x_204, 1, x_203); -x_17 = x_204; -x_18 = x_192; -goto block_106; +lean_ctor_set(x_207, 0, x_205); +lean_ctor_set(x_207, 1, x_206); +x_208 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_208, 0, x_193); +lean_ctor_set(x_208, 1, x_207); +x_17 = x_208; +x_18 = x_196; +goto block_110; } } -block_106: +block_110: { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_92; uint8_t x_93; +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; uint8_t x_25; x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); x_20 = lean_ctor_get(x_17, 0); @@ -12555,17 +12519,33 @@ lean_inc(x_21); x_22 = lean_ctor_get(x_19, 1); lean_inc(x_22); lean_dec(x_19); -x_92 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__2; -x_93 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_92); -if (x_93 == 0) +x_23 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__2; +x_24 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_23); +if (x_24 == 0) { -uint8_t x_94; -x_94 = 0; -x_23 = x_94; -goto block_91; +if (x_6 == 0) +{ +uint8_t x_90; +x_90 = 0; +x_25 = x_90; +goto block_89; } else { +lean_object* x_91; double x_92; double x_93; lean_object* x_94; +x_91 = lean_box(0); +x_92 = lean_unbox_float(x_21); +lean_dec(x_21); +x_93 = lean_unbox_float(x_22); +lean_dec(x_22); +x_94 = l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_92, x_93, x_5, x_91, x_9, x_10, x_18); +return x_94; +} +} +else +{ +if (x_6 == 0) +{ double x_95; double x_96; double x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; lean_object* x_101; double x_102; double x_103; double x_104; uint8_t x_105; x_95 = lean_unbox_float(x_22); x_96 = lean_unbox_float(x_21); @@ -12579,845 +12559,857 @@ lean_dec(x_99); x_103 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__4; x_104 = lean_float_div(x_102, x_103); x_105 = lean_float_decLt(x_104, x_97); -x_23 = x_105; -goto block_91; +x_25 = x_105; +goto block_89; } -block_91: +else { -if (x_6 == 0) +lean_object* x_106; double x_107; double x_108; lean_object* x_109; +x_106 = lean_box(0); +x_107 = lean_unbox_float(x_21); +lean_dec(x_21); +x_108 = lean_unbox_float(x_22); +lean_dec(x_22); +x_109 = l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_107, x_108, x_5, x_106, x_9, x_10, x_18); +return x_109; +} +} +block_89: { -if (x_23 == 0) +if (x_25 == 0) { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_dec(x_22); lean_dec(x_21); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_24 = lean_st_ref_take(x_10, x_18); -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -x_26 = lean_ctor_get(x_25, 3); -lean_inc(x_26); -x_27 = lean_ctor_get(x_24, 1); +x_26 = lean_st_ref_take(x_10, x_18); +x_27 = lean_ctor_get(x_26, 0); lean_inc(x_27); -lean_dec(x_24); -x_28 = !lean_is_exclusive(x_25); -if (x_28 == 0) -{ -lean_object* x_29; uint8_t x_30; -x_29 = lean_ctor_get(x_25, 3); -lean_dec(x_29); -x_30 = !lean_is_exclusive(x_26); +x_28 = lean_ctor_get(x_27, 3); +lean_inc(x_28); +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); +lean_dec(x_26); +x_30 = !lean_is_exclusive(x_27); if (x_30 == 0) { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_31 = lean_ctor_get(x_26, 0); -x_32 = l_Lean_PersistentArray_append___rarg(x_13, x_31); +lean_object* x_31; uint8_t x_32; +x_31 = lean_ctor_get(x_27, 3); lean_dec(x_31); -lean_ctor_set(x_26, 0, x_32); -x_33 = lean_st_ref_set(x_10, x_25, x_27); -x_34 = lean_ctor_get(x_33, 1); -lean_inc(x_34); +x_32 = !lean_is_exclusive(x_28); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_33 = lean_ctor_get(x_28, 0); +x_34 = l_Lean_PersistentArray_append___rarg(x_13, x_33); lean_dec(x_33); -x_35 = l_MonadExcept_ofExcept___at_Lean_Elab_shareCommonPreDefs___spec__4(x_20, x_9, x_10, x_34); +lean_ctor_set(x_28, 0, x_34); +x_35 = lean_st_ref_set(x_10, x_27, x_29); +x_36 = lean_ctor_get(x_35, 1); +lean_inc(x_36); +lean_dec(x_35); +x_37 = l_MonadExcept_ofExcept___at_Lean_Elab_shareCommonPreDefs___spec__4(x_20, x_9, x_10, x_36); lean_dec(x_10); lean_dec(x_9); lean_dec(x_20); -if (lean_obj_tag(x_35) == 0) +if (lean_obj_tag(x_37) == 0) { -uint8_t x_36; -x_36 = !lean_is_exclusive(x_35); -if (x_36 == 0) +uint8_t x_38; +x_38 = !lean_is_exclusive(x_37); +if (x_38 == 0) { -return x_35; +return x_37; } else { -lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_37 = lean_ctor_get(x_35, 0); -x_38 = lean_ctor_get(x_35, 1); -lean_inc(x_38); -lean_inc(x_37); -lean_dec(x_35); -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_37); -lean_ctor_set(x_39, 1, x_38); -return x_39; +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_37, 0); +x_40 = lean_ctor_get(x_37, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_37); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +return x_41; } } else { -uint8_t x_40; -x_40 = !lean_is_exclusive(x_35); -if (x_40 == 0) +uint8_t x_42; +x_42 = !lean_is_exclusive(x_37); +if (x_42 == 0) { -return x_35; +return x_37; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_35, 0); -x_42 = lean_ctor_get(x_35, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_35); -x_43 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_42); -return x_43; +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_37, 0); +x_44 = lean_ctor_get(x_37, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_37); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; } } } else { -uint64_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_44 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); -x_45 = lean_ctor_get(x_26, 0); -lean_inc(x_45); -lean_dec(x_26); -x_46 = l_Lean_PersistentArray_append___rarg(x_13, x_45); -lean_dec(x_45); -x_47 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_47, 0, x_46); -lean_ctor_set_uint64(x_47, sizeof(void*)*1, x_44); -lean_ctor_set(x_25, 3, x_47); -x_48 = lean_st_ref_set(x_10, x_25, x_27); -x_49 = lean_ctor_get(x_48, 1); -lean_inc(x_49); -lean_dec(x_48); -x_50 = l_MonadExcept_ofExcept___at_Lean_Elab_shareCommonPreDefs___spec__4(x_20, x_9, x_10, x_49); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_20); -if (lean_obj_tag(x_50) == 0) -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_51 = lean_ctor_get(x_50, 0); +uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); +x_47 = lean_ctor_get(x_28, 0); +lean_inc(x_47); +lean_dec(x_28); +x_48 = l_Lean_PersistentArray_append___rarg(x_13, x_47); +lean_dec(x_47); +x_49 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); +lean_ctor_set(x_27, 3, x_49); +x_50 = lean_st_ref_set(x_10, x_27, x_29); +x_51 = lean_ctor_get(x_50, 1); lean_inc(x_51); -x_52 = lean_ctor_get(x_50, 1); -lean_inc(x_52); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_53 = x_50; +lean_dec(x_50); +x_52 = l_MonadExcept_ofExcept___at_Lean_Elab_shareCommonPreDefs___spec__4(x_20, x_9, x_10, x_51); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_20); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_52, 1); +lean_inc(x_54); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_55 = x_52; } else { - lean_dec_ref(x_50); - x_53 = lean_box(0); + lean_dec_ref(x_52); + x_55 = lean_box(0); } -if (lean_is_scalar(x_53)) { - x_54 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_55)) { + x_56 = lean_alloc_ctor(0, 2, 0); } else { - x_54 = x_53; + x_56 = x_55; } -lean_ctor_set(x_54, 0, x_51); -lean_ctor_set(x_54, 1, x_52); -return x_54; +lean_ctor_set(x_56, 0, x_53); +lean_ctor_set(x_56, 1, x_54); +return x_56; } else { -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_55 = lean_ctor_get(x_50, 0); -lean_inc(x_55); -x_56 = lean_ctor_get(x_50, 1); -lean_inc(x_56); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_57 = x_50; +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_57 = lean_ctor_get(x_52, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_52, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_59 = x_52; } else { - lean_dec_ref(x_50); - x_57 = lean_box(0); + lean_dec_ref(x_52); + x_59 = lean_box(0); } -if (lean_is_scalar(x_57)) { - x_58 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(1, 2, 0); } else { - x_58 = x_57; + x_60 = x_59; } -lean_ctor_set(x_58, 0, x_55); -lean_ctor_set(x_58, 1, x_56); -return x_58; +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_58); +return x_60; } } } else { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint64_t x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_59 = lean_ctor_get(x_25, 0); -x_60 = lean_ctor_get(x_25, 1); -x_61 = lean_ctor_get(x_25, 2); -x_62 = lean_ctor_get(x_25, 4); -x_63 = lean_ctor_get(x_25, 5); -x_64 = lean_ctor_get(x_25, 6); -x_65 = lean_ctor_get(x_25, 7); +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_61 = lean_ctor_get(x_27, 0); +x_62 = lean_ctor_get(x_27, 1); +x_63 = lean_ctor_get(x_27, 2); +x_64 = lean_ctor_get(x_27, 4); +x_65 = lean_ctor_get(x_27, 5); +x_66 = lean_ctor_get(x_27, 6); +x_67 = lean_ctor_get(x_27, 7); +lean_inc(x_67); +lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); lean_inc(x_62); lean_inc(x_61); -lean_inc(x_60); -lean_inc(x_59); -lean_dec(x_25); -x_66 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); -x_67 = lean_ctor_get(x_26, 0); -lean_inc(x_67); -if (lean_is_exclusive(x_26)) { - lean_ctor_release(x_26, 0); - x_68 = x_26; +lean_dec(x_27); +x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); +x_69 = lean_ctor_get(x_28, 0); +lean_inc(x_69); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + x_70 = x_28; } else { - lean_dec_ref(x_26); - x_68 = lean_box(0); + lean_dec_ref(x_28); + x_70 = lean_box(0); } -x_69 = l_Lean_PersistentArray_append___rarg(x_13, x_67); -lean_dec(x_67); -if (lean_is_scalar(x_68)) { - x_70 = lean_alloc_ctor(0, 1, 8); +x_71 = l_Lean_PersistentArray_append___rarg(x_13, x_69); +lean_dec(x_69); +if (lean_is_scalar(x_70)) { + x_72 = lean_alloc_ctor(0, 1, 8); } else { - x_70 = x_68; + x_72 = x_70; } -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set_uint64(x_70, sizeof(void*)*1, x_66); -x_71 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_71, 0, x_59); -lean_ctor_set(x_71, 1, x_60); -lean_ctor_set(x_71, 2, x_61); -lean_ctor_set(x_71, 3, x_70); -lean_ctor_set(x_71, 4, x_62); -lean_ctor_set(x_71, 5, x_63); -lean_ctor_set(x_71, 6, x_64); -lean_ctor_set(x_71, 7, x_65); -x_72 = lean_st_ref_set(x_10, x_71, x_27); -x_73 = lean_ctor_get(x_72, 1); -lean_inc(x_73); -lean_dec(x_72); -x_74 = l_MonadExcept_ofExcept___at_Lean_Elab_shareCommonPreDefs___spec__4(x_20, x_9, x_10, x_73); +lean_ctor_set(x_72, 0, x_71); +lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); +x_73 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_73, 0, x_61); +lean_ctor_set(x_73, 1, x_62); +lean_ctor_set(x_73, 2, x_63); +lean_ctor_set(x_73, 3, x_72); +lean_ctor_set(x_73, 4, x_64); +lean_ctor_set(x_73, 5, x_65); +lean_ctor_set(x_73, 6, x_66); +lean_ctor_set(x_73, 7, x_67); +x_74 = lean_st_ref_set(x_10, x_73, x_29); +x_75 = lean_ctor_get(x_74, 1); +lean_inc(x_75); +lean_dec(x_74); +x_76 = l_MonadExcept_ofExcept___at_Lean_Elab_shareCommonPreDefs___spec__4(x_20, x_9, x_10, x_75); lean_dec(x_10); lean_dec(x_9); lean_dec(x_20); -if (lean_obj_tag(x_74) == 0) +if (lean_obj_tag(x_76) == 0) { -lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_75 = lean_ctor_get(x_74, 0); -lean_inc(x_75); -x_76 = lean_ctor_get(x_74, 1); -lean_inc(x_76); -if (lean_is_exclusive(x_74)) { - lean_ctor_release(x_74, 0); - lean_ctor_release(x_74, 1); - x_77 = x_74; +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_77 = lean_ctor_get(x_76, 0); +lean_inc(x_77); +x_78 = lean_ctor_get(x_76, 1); +lean_inc(x_78); +if (lean_is_exclusive(x_76)) { + lean_ctor_release(x_76, 0); + lean_ctor_release(x_76, 1); + x_79 = x_76; } else { - lean_dec_ref(x_74); - x_77 = lean_box(0); + lean_dec_ref(x_76); + x_79 = lean_box(0); } -if (lean_is_scalar(x_77)) { - x_78 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_79)) { + x_80 = lean_alloc_ctor(0, 2, 0); } else { - x_78 = x_77; + x_80 = x_79; } -lean_ctor_set(x_78, 0, x_75); -lean_ctor_set(x_78, 1, x_76); -return x_78; +lean_ctor_set(x_80, 0, x_77); +lean_ctor_set(x_80, 1, x_78); +return x_80; } else { -lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_79 = lean_ctor_get(x_74, 0); -lean_inc(x_79); -x_80 = lean_ctor_get(x_74, 1); -lean_inc(x_80); -if (lean_is_exclusive(x_74)) { - lean_ctor_release(x_74, 0); - lean_ctor_release(x_74, 1); - x_81 = x_74; +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_81 = lean_ctor_get(x_76, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_76, 1); +lean_inc(x_82); +if (lean_is_exclusive(x_76)) { + lean_ctor_release(x_76, 0); + lean_ctor_release(x_76, 1); + x_83 = x_76; } else { - lean_dec_ref(x_74); - x_81 = lean_box(0); + lean_dec_ref(x_76); + x_83 = lean_box(0); } -if (lean_is_scalar(x_81)) { - x_82 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_83)) { + x_84 = lean_alloc_ctor(1, 2, 0); } else { - x_82 = x_81; + x_84 = x_83; } -lean_ctor_set(x_82, 0, x_79); -lean_ctor_set(x_82, 1, x_80); -return x_82; +lean_ctor_set(x_84, 0, x_81); +lean_ctor_set(x_84, 1, x_82); +return x_84; } } } else { -lean_object* x_83; double x_84; double x_85; lean_object* x_86; -x_83 = lean_box(0); -x_84 = lean_unbox_float(x_21); +lean_object* x_85; double x_86; double x_87; lean_object* x_88; +x_85 = lean_box(0); +x_86 = lean_unbox_float(x_21); lean_dec(x_21); -x_85 = lean_unbox_float(x_22); +x_87 = lean_unbox_float(x_22); lean_dec(x_22); -x_86 = l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__3(x_2, x_3, x_4, x_13, x_20, x_1, x_23, x_84, x_85, x_5, x_83, x_9, x_10, x_18); -return x_86; -} -} -else -{ -lean_object* x_87; double x_88; double x_89; lean_object* x_90; -x_87 = lean_box(0); -x_88 = lean_unbox_float(x_21); -lean_dec(x_21); -x_89 = lean_unbox_float(x_22); -lean_dec(x_22); -x_90 = l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__3(x_2, x_3, x_4, x_13, x_20, x_1, x_23, x_88, x_89, x_5, x_87, x_9, x_10, x_18); -return x_90; +x_88 = l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_86, x_87, x_5, x_85, x_9, x_10, x_18); +return x_88; } } } } else { -lean_object* x_205; lean_object* x_206; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; -x_293 = lean_io_get_num_heartbeats(x_14); -x_294 = lean_ctor_get(x_293, 0); -lean_inc(x_294); -x_295 = lean_ctor_get(x_293, 1); -lean_inc(x_295); -lean_dec(x_293); +lean_object* x_209; lean_object* x_210; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; +x_301 = lean_io_get_num_heartbeats(x_14); +x_302 = lean_ctor_get(x_301, 0); +lean_inc(x_302); +x_303 = lean_ctor_get(x_301, 1); +lean_inc(x_303); +lean_dec(x_301); lean_inc(x_10); lean_inc(x_9); -x_296 = lean_apply_3(x_7, x_9, x_10, x_295); -if (lean_obj_tag(x_296) == 0) +x_304 = lean_apply_3(x_7, x_9, x_10, x_303); +if (lean_obj_tag(x_304) == 0) { -uint8_t x_297; -x_297 = !lean_is_exclusive(x_296); -if (x_297 == 0) +uint8_t x_305; +x_305 = !lean_is_exclusive(x_304); +if (x_305 == 0) { -lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; uint8_t x_302; -x_298 = lean_ctor_get(x_296, 0); -x_299 = lean_ctor_get(x_296, 1); -x_300 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_300, 0, x_298); -x_301 = lean_io_get_num_heartbeats(x_299); -x_302 = !lean_is_exclusive(x_301); -if (x_302 == 0) +lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; uint8_t x_310; +x_306 = lean_ctor_get(x_304, 0); +x_307 = lean_ctor_get(x_304, 1); +x_308 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_308, 0, x_306); +x_309 = lean_io_get_num_heartbeats(x_307); +x_310 = !lean_is_exclusive(x_309); +if (x_310 == 0) { -lean_object* x_303; lean_object* x_304; uint8_t x_305; lean_object* x_306; double x_307; double x_308; lean_object* x_309; lean_object* x_310; -x_303 = lean_ctor_get(x_301, 0); -x_304 = lean_ctor_get(x_301, 1); -x_305 = 0; -x_306 = lean_unsigned_to_nat(0u); -x_307 = l_Float_ofScientific(x_294, x_305, x_306); -lean_dec(x_294); -x_308 = l_Float_ofScientific(x_303, x_305, x_306); -lean_dec(x_303); -x_309 = lean_box_float(x_307); -x_310 = lean_box_float(x_308); -lean_ctor_set(x_301, 1, x_310); -lean_ctor_set(x_301, 0, x_309); -lean_ctor_set(x_296, 1, x_301); -lean_ctor_set(x_296, 0, x_300); -x_205 = x_296; -x_206 = x_304; -goto block_292; -} -else -{ -lean_object* x_311; lean_object* x_312; uint8_t x_313; lean_object* x_314; double x_315; double x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; -x_311 = lean_ctor_get(x_301, 0); -x_312 = lean_ctor_get(x_301, 1); -lean_inc(x_312); -lean_inc(x_311); -lean_dec(x_301); +lean_object* x_311; lean_object* x_312; uint8_t x_313; lean_object* x_314; double x_315; double x_316; lean_object* x_317; lean_object* x_318; +x_311 = lean_ctor_get(x_309, 0); +x_312 = lean_ctor_get(x_309, 1); x_313 = 0; x_314 = lean_unsigned_to_nat(0u); -x_315 = l_Float_ofScientific(x_294, x_313, x_314); -lean_dec(x_294); +x_315 = l_Float_ofScientific(x_302, x_313, x_314); +lean_dec(x_302); x_316 = l_Float_ofScientific(x_311, x_313, x_314); lean_dec(x_311); x_317 = lean_box_float(x_315); x_318 = lean_box_float(x_316); -x_319 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_319, 0, x_317); -lean_ctor_set(x_319, 1, x_318); -lean_ctor_set(x_296, 1, x_319); -lean_ctor_set(x_296, 0, x_300); -x_205 = x_296; -x_206 = x_312; -goto block_292; -} +lean_ctor_set(x_309, 1, x_318); +lean_ctor_set(x_309, 0, x_317); +lean_ctor_set(x_304, 1, x_309); +lean_ctor_set(x_304, 0, x_308); +x_209 = x_304; +x_210 = x_312; +goto block_300; } else { -lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; uint8_t x_327; lean_object* x_328; double x_329; double x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; -x_320 = lean_ctor_get(x_296, 0); -x_321 = lean_ctor_get(x_296, 1); -lean_inc(x_321); +lean_object* x_319; lean_object* x_320; uint8_t x_321; lean_object* x_322; double x_323; double x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; +x_319 = lean_ctor_get(x_309, 0); +x_320 = lean_ctor_get(x_309, 1); lean_inc(x_320); -lean_dec(x_296); -x_322 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_322, 0, x_320); -x_323 = lean_io_get_num_heartbeats(x_321); -x_324 = lean_ctor_get(x_323, 0); -lean_inc(x_324); -x_325 = lean_ctor_get(x_323, 1); -lean_inc(x_325); -if (lean_is_exclusive(x_323)) { - lean_ctor_release(x_323, 0); - lean_ctor_release(x_323, 1); - x_326 = x_323; -} else { - lean_dec_ref(x_323); - x_326 = lean_box(0); -} -x_327 = 0; -x_328 = lean_unsigned_to_nat(0u); -x_329 = l_Float_ofScientific(x_294, x_327, x_328); -lean_dec(x_294); -x_330 = l_Float_ofScientific(x_324, x_327, x_328); -lean_dec(x_324); -x_331 = lean_box_float(x_329); -x_332 = lean_box_float(x_330); -if (lean_is_scalar(x_326)) { - x_333 = lean_alloc_ctor(0, 2, 0); -} else { - x_333 = x_326; -} -lean_ctor_set(x_333, 0, x_331); -lean_ctor_set(x_333, 1, x_332); -x_334 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_334, 0, x_322); -lean_ctor_set(x_334, 1, x_333); -x_205 = x_334; -x_206 = x_325; -goto block_292; +lean_inc(x_319); +lean_dec(x_309); +x_321 = 0; +x_322 = lean_unsigned_to_nat(0u); +x_323 = l_Float_ofScientific(x_302, x_321, x_322); +lean_dec(x_302); +x_324 = l_Float_ofScientific(x_319, x_321, x_322); +lean_dec(x_319); +x_325 = lean_box_float(x_323); +x_326 = lean_box_float(x_324); +x_327 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_327, 0, x_325); +lean_ctor_set(x_327, 1, x_326); +lean_ctor_set(x_304, 1, x_327); +lean_ctor_set(x_304, 0, x_308); +x_209 = x_304; +x_210 = x_320; +goto block_300; } } else { -uint8_t x_335; -x_335 = !lean_is_exclusive(x_296); -if (x_335 == 0) -{ -lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; uint8_t x_340; -x_336 = lean_ctor_get(x_296, 0); -x_337 = lean_ctor_get(x_296, 1); -x_338 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_338, 0, x_336); -x_339 = lean_io_get_num_heartbeats(x_337); -x_340 = !lean_is_exclusive(x_339); -if (x_340 == 0) -{ -lean_object* x_341; lean_object* x_342; uint8_t x_343; lean_object* x_344; double x_345; double x_346; lean_object* x_347; lean_object* x_348; -x_341 = lean_ctor_get(x_339, 0); -x_342 = lean_ctor_get(x_339, 1); -x_343 = 0; -x_344 = lean_unsigned_to_nat(0u); -x_345 = l_Float_ofScientific(x_294, x_343, x_344); -lean_dec(x_294); -x_346 = l_Float_ofScientific(x_341, x_343, x_344); -lean_dec(x_341); -x_347 = lean_box_float(x_345); -x_348 = lean_box_float(x_346); -lean_ctor_set(x_339, 1, x_348); -lean_ctor_set(x_339, 0, x_347); -lean_ctor_set_tag(x_296, 0); -lean_ctor_set(x_296, 1, x_339); -lean_ctor_set(x_296, 0, x_338); -x_205 = x_296; -x_206 = x_342; -goto block_292; +lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; uint8_t x_335; lean_object* x_336; double x_337; double x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; +x_328 = lean_ctor_get(x_304, 0); +x_329 = lean_ctor_get(x_304, 1); +lean_inc(x_329); +lean_inc(x_328); +lean_dec(x_304); +x_330 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_330, 0, x_328); +x_331 = lean_io_get_num_heartbeats(x_329); +x_332 = lean_ctor_get(x_331, 0); +lean_inc(x_332); +x_333 = lean_ctor_get(x_331, 1); +lean_inc(x_333); +if (lean_is_exclusive(x_331)) { + lean_ctor_release(x_331, 0); + lean_ctor_release(x_331, 1); + x_334 = x_331; +} else { + lean_dec_ref(x_331); + x_334 = lean_box(0); +} +x_335 = 0; +x_336 = lean_unsigned_to_nat(0u); +x_337 = l_Float_ofScientific(x_302, x_335, x_336); +lean_dec(x_302); +x_338 = l_Float_ofScientific(x_332, x_335, x_336); +lean_dec(x_332); +x_339 = lean_box_float(x_337); +x_340 = lean_box_float(x_338); +if (lean_is_scalar(x_334)) { + x_341 = lean_alloc_ctor(0, 2, 0); +} else { + x_341 = x_334; +} +lean_ctor_set(x_341, 0, x_339); +lean_ctor_set(x_341, 1, x_340); +x_342 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_342, 0, x_330); +lean_ctor_set(x_342, 1, x_341); +x_209 = x_342; +x_210 = x_333; +goto block_300; +} } else { -lean_object* x_349; lean_object* x_350; uint8_t x_351; lean_object* x_352; double x_353; double x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; -x_349 = lean_ctor_get(x_339, 0); -x_350 = lean_ctor_get(x_339, 1); -lean_inc(x_350); -lean_inc(x_349); -lean_dec(x_339); +uint8_t x_343; +x_343 = !lean_is_exclusive(x_304); +if (x_343 == 0) +{ +lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; uint8_t x_348; +x_344 = lean_ctor_get(x_304, 0); +x_345 = lean_ctor_get(x_304, 1); +x_346 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_346, 0, x_344); +x_347 = lean_io_get_num_heartbeats(x_345); +x_348 = !lean_is_exclusive(x_347); +if (x_348 == 0) +{ +lean_object* x_349; lean_object* x_350; uint8_t x_351; lean_object* x_352; double x_353; double x_354; lean_object* x_355; lean_object* x_356; +x_349 = lean_ctor_get(x_347, 0); +x_350 = lean_ctor_get(x_347, 1); x_351 = 0; x_352 = lean_unsigned_to_nat(0u); -x_353 = l_Float_ofScientific(x_294, x_351, x_352); -lean_dec(x_294); +x_353 = l_Float_ofScientific(x_302, x_351, x_352); +lean_dec(x_302); x_354 = l_Float_ofScientific(x_349, x_351, x_352); lean_dec(x_349); x_355 = lean_box_float(x_353); x_356 = lean_box_float(x_354); -x_357 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_357, 0, x_355); -lean_ctor_set(x_357, 1, x_356); -lean_ctor_set_tag(x_296, 0); -lean_ctor_set(x_296, 1, x_357); -lean_ctor_set(x_296, 0, x_338); -x_205 = x_296; -x_206 = x_350; -goto block_292; -} +lean_ctor_set(x_347, 1, x_356); +lean_ctor_set(x_347, 0, x_355); +lean_ctor_set_tag(x_304, 0); +lean_ctor_set(x_304, 1, x_347); +lean_ctor_set(x_304, 0, x_346); +x_209 = x_304; +x_210 = x_350; +goto block_300; } else { -lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; uint8_t x_365; lean_object* x_366; double x_367; double x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; -x_358 = lean_ctor_get(x_296, 0); -x_359 = lean_ctor_get(x_296, 1); -lean_inc(x_359); +lean_object* x_357; lean_object* x_358; uint8_t x_359; lean_object* x_360; double x_361; double x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; +x_357 = lean_ctor_get(x_347, 0); +x_358 = lean_ctor_get(x_347, 1); lean_inc(x_358); -lean_dec(x_296); -x_360 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_360, 0, x_358); -x_361 = lean_io_get_num_heartbeats(x_359); -x_362 = lean_ctor_get(x_361, 0); -lean_inc(x_362); -x_363 = lean_ctor_get(x_361, 1); -lean_inc(x_363); -if (lean_is_exclusive(x_361)) { - lean_ctor_release(x_361, 0); - lean_ctor_release(x_361, 1); - x_364 = x_361; -} else { - lean_dec_ref(x_361); - x_364 = lean_box(0); +lean_inc(x_357); +lean_dec(x_347); +x_359 = 0; +x_360 = lean_unsigned_to_nat(0u); +x_361 = l_Float_ofScientific(x_302, x_359, x_360); +lean_dec(x_302); +x_362 = l_Float_ofScientific(x_357, x_359, x_360); +lean_dec(x_357); +x_363 = lean_box_float(x_361); +x_364 = lean_box_float(x_362); +x_365 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_365, 0, x_363); +lean_ctor_set(x_365, 1, x_364); +lean_ctor_set_tag(x_304, 0); +lean_ctor_set(x_304, 1, x_365); +lean_ctor_set(x_304, 0, x_346); +x_209 = x_304; +x_210 = x_358; +goto block_300; } -x_365 = 0; -x_366 = lean_unsigned_to_nat(0u); -x_367 = l_Float_ofScientific(x_294, x_365, x_366); -lean_dec(x_294); -x_368 = l_Float_ofScientific(x_362, x_365, x_366); -lean_dec(x_362); -x_369 = lean_box_float(x_367); -x_370 = lean_box_float(x_368); -if (lean_is_scalar(x_364)) { - x_371 = lean_alloc_ctor(0, 2, 0); -} else { - x_371 = x_364; -} -lean_ctor_set(x_371, 0, x_369); -lean_ctor_set(x_371, 1, x_370); -x_372 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_372, 0, x_360); -lean_ctor_set(x_372, 1, x_371); -x_205 = x_372; -x_206 = x_363; -goto block_292; -} -} -block_292: -{ -lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; uint8_t x_211; lean_object* x_280; uint8_t x_281; -x_207 = lean_ctor_get(x_205, 1); -lean_inc(x_207); -x_208 = lean_ctor_get(x_205, 0); -lean_inc(x_208); -lean_dec(x_205); -x_209 = lean_ctor_get(x_207, 0); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 1); -lean_inc(x_210); -lean_dec(x_207); -x_280 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__2; -x_281 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_280); -if (x_281 == 0) -{ -uint8_t x_282; -x_282 = 0; -x_211 = x_282; -goto block_279; } else { -double x_283; double x_284; double x_285; lean_object* x_286; lean_object* x_287; uint8_t x_288; lean_object* x_289; double x_290; uint8_t x_291; -x_283 = lean_unbox_float(x_210); -x_284 = lean_unbox_float(x_209); -x_285 = lean_float_sub(x_283, x_284); -x_286 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__3; -x_287 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_286); -x_288 = 0; -x_289 = lean_unsigned_to_nat(0u); -x_290 = l_Float_ofScientific(x_287, x_288, x_289); -lean_dec(x_287); -x_291 = lean_float_decLt(x_290, x_285); -x_211 = x_291; -goto block_279; +lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; uint8_t x_373; lean_object* x_374; double x_375; double x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; +x_366 = lean_ctor_get(x_304, 0); +x_367 = lean_ctor_get(x_304, 1); +lean_inc(x_367); +lean_inc(x_366); +lean_dec(x_304); +x_368 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_368, 0, x_366); +x_369 = lean_io_get_num_heartbeats(x_367); +x_370 = lean_ctor_get(x_369, 0); +lean_inc(x_370); +x_371 = lean_ctor_get(x_369, 1); +lean_inc(x_371); +if (lean_is_exclusive(x_369)) { + lean_ctor_release(x_369, 0); + lean_ctor_release(x_369, 1); + x_372 = x_369; +} else { + lean_dec_ref(x_369); + x_372 = lean_box(0); } -block_279: +x_373 = 0; +x_374 = lean_unsigned_to_nat(0u); +x_375 = l_Float_ofScientific(x_302, x_373, x_374); +lean_dec(x_302); +x_376 = l_Float_ofScientific(x_370, x_373, x_374); +lean_dec(x_370); +x_377 = lean_box_float(x_375); +x_378 = lean_box_float(x_376); +if (lean_is_scalar(x_372)) { + x_379 = lean_alloc_ctor(0, 2, 0); +} else { + x_379 = x_372; +} +lean_ctor_set(x_379, 0, x_377); +lean_ctor_set(x_379, 1, x_378); +x_380 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_380, 0, x_368); +lean_ctor_set(x_380, 1, x_379); +x_209 = x_380; +x_210 = x_371; +goto block_300; +} +} +block_300: +{ +lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; uint8_t x_217; +x_211 = lean_ctor_get(x_209, 1); +lean_inc(x_211); +x_212 = lean_ctor_get(x_209, 0); +lean_inc(x_212); +lean_dec(x_209); +x_213 = lean_ctor_get(x_211, 0); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 1); +lean_inc(x_214); +lean_dec(x_211); +x_215 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__2; +x_216 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_215); +if (x_216 == 0) { if (x_6 == 0) { -if (x_211 == 0) +uint8_t x_282; +x_282 = 0; +x_217 = x_282; +goto block_281; +} +else { -lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; -lean_dec(x_210); -lean_dec(x_209); +lean_object* x_283; double x_284; double x_285; lean_object* x_286; +x_283 = lean_box(0); +x_284 = lean_unbox_float(x_213); +lean_dec(x_213); +x_285 = lean_unbox_float(x_214); +lean_dec(x_214); +x_286 = l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_284, x_285, x_5, x_283, x_9, x_10, x_210); +return x_286; +} +} +else +{ +if (x_6 == 0) +{ +double x_287; double x_288; double x_289; lean_object* x_290; lean_object* x_291; uint8_t x_292; lean_object* x_293; double x_294; uint8_t x_295; +x_287 = lean_unbox_float(x_214); +x_288 = lean_unbox_float(x_213); +x_289 = lean_float_sub(x_287, x_288); +x_290 = l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__4___closed__3; +x_291 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_290); +x_292 = 0; +x_293 = lean_unsigned_to_nat(0u); +x_294 = l_Float_ofScientific(x_291, x_292, x_293); +lean_dec(x_291); +x_295 = lean_float_decLt(x_294, x_289); +x_217 = x_295; +goto block_281; +} +else +{ +lean_object* x_296; double x_297; double x_298; lean_object* x_299; +x_296 = lean_box(0); +x_297 = lean_unbox_float(x_213); +lean_dec(x_213); +x_298 = lean_unbox_float(x_214); +lean_dec(x_214); +x_299 = l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_297, x_298, x_5, x_296, x_9, x_10, x_210); +return x_299; +} +} +block_281: +{ +if (x_217 == 0) +{ +lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; uint8_t x_222; +lean_dec(x_214); +lean_dec(x_213); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_212 = lean_st_ref_take(x_10, x_206); -x_213 = lean_ctor_get(x_212, 0); -lean_inc(x_213); -x_214 = lean_ctor_get(x_213, 3); -lean_inc(x_214); -x_215 = lean_ctor_get(x_212, 1); -lean_inc(x_215); -lean_dec(x_212); -x_216 = !lean_is_exclusive(x_213); -if (x_216 == 0) +x_218 = lean_st_ref_take(x_10, x_210); +x_219 = lean_ctor_get(x_218, 0); +lean_inc(x_219); +x_220 = lean_ctor_get(x_219, 3); +lean_inc(x_220); +x_221 = lean_ctor_get(x_218, 1); +lean_inc(x_221); +lean_dec(x_218); +x_222 = !lean_is_exclusive(x_219); +if (x_222 == 0) { -lean_object* x_217; uint8_t x_218; -x_217 = lean_ctor_get(x_213, 3); -lean_dec(x_217); -x_218 = !lean_is_exclusive(x_214); -if (x_218 == 0) -{ -lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; -x_219 = lean_ctor_get(x_214, 0); -x_220 = l_Lean_PersistentArray_append___rarg(x_13, x_219); -lean_dec(x_219); -lean_ctor_set(x_214, 0, x_220); -x_221 = lean_st_ref_set(x_10, x_213, x_215); -x_222 = lean_ctor_get(x_221, 1); -lean_inc(x_222); -lean_dec(x_221); -x_223 = l_MonadExcept_ofExcept___at_Lean_Elab_shareCommonPreDefs___spec__4(x_208, x_9, x_10, x_222); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_223) == 0) -{ -uint8_t x_224; -x_224 = !lean_is_exclusive(x_223); +lean_object* x_223; uint8_t x_224; +x_223 = lean_ctor_get(x_219, 3); +lean_dec(x_223); +x_224 = !lean_is_exclusive(x_220); if (x_224 == 0) { -return x_223; -} -else -{ -lean_object* x_225; lean_object* x_226; lean_object* x_227; -x_225 = lean_ctor_get(x_223, 0); -x_226 = lean_ctor_get(x_223, 1); -lean_inc(x_226); -lean_inc(x_225); -lean_dec(x_223); -x_227 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_227, 0, x_225); -lean_ctor_set(x_227, 1, x_226); -return x_227; -} -} -else -{ -uint8_t x_228; -x_228 = !lean_is_exclusive(x_223); -if (x_228 == 0) -{ -return x_223; -} -else -{ -lean_object* x_229; lean_object* x_230; lean_object* x_231; -x_229 = lean_ctor_get(x_223, 0); -x_230 = lean_ctor_get(x_223, 1); -lean_inc(x_230); -lean_inc(x_229); -lean_dec(x_223); -x_231 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_231, 0, x_229); -lean_ctor_set(x_231, 1, x_230); -return x_231; -} -} -} -else -{ -uint64_t x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; -x_232 = lean_ctor_get_uint64(x_214, sizeof(void*)*1); -x_233 = lean_ctor_get(x_214, 0); -lean_inc(x_233); -lean_dec(x_214); -x_234 = l_Lean_PersistentArray_append___rarg(x_13, x_233); -lean_dec(x_233); -x_235 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_235, 0, x_234); -lean_ctor_set_uint64(x_235, sizeof(void*)*1, x_232); -lean_ctor_set(x_213, 3, x_235); -x_236 = lean_st_ref_set(x_10, x_213, x_215); -x_237 = lean_ctor_get(x_236, 1); -lean_inc(x_237); -lean_dec(x_236); -x_238 = l_MonadExcept_ofExcept___at_Lean_Elab_shareCommonPreDefs___spec__4(x_208, x_9, x_10, x_237); +lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; +x_225 = lean_ctor_get(x_220, 0); +x_226 = l_Lean_PersistentArray_append___rarg(x_13, x_225); +lean_dec(x_225); +lean_ctor_set(x_220, 0, x_226); +x_227 = lean_st_ref_set(x_10, x_219, x_221); +x_228 = lean_ctor_get(x_227, 1); +lean_inc(x_228); +lean_dec(x_227); +x_229 = l_MonadExcept_ofExcept___at_Lean_Elab_shareCommonPreDefs___spec__4(x_212, x_9, x_10, x_228); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_238) == 0) +lean_dec(x_212); +if (lean_obj_tag(x_229) == 0) { -lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; -x_239 = lean_ctor_get(x_238, 0); +uint8_t x_230; +x_230 = !lean_is_exclusive(x_229); +if (x_230 == 0) +{ +return x_229; +} +else +{ +lean_object* x_231; lean_object* x_232; lean_object* x_233; +x_231 = lean_ctor_get(x_229, 0); +x_232 = lean_ctor_get(x_229, 1); +lean_inc(x_232); +lean_inc(x_231); +lean_dec(x_229); +x_233 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_233, 0, x_231); +lean_ctor_set(x_233, 1, x_232); +return x_233; +} +} +else +{ +uint8_t x_234; +x_234 = !lean_is_exclusive(x_229); +if (x_234 == 0) +{ +return x_229; +} +else +{ +lean_object* x_235; lean_object* x_236; lean_object* x_237; +x_235 = lean_ctor_get(x_229, 0); +x_236 = lean_ctor_get(x_229, 1); +lean_inc(x_236); +lean_inc(x_235); +lean_dec(x_229); +x_237 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_237, 0, x_235); +lean_ctor_set(x_237, 1, x_236); +return x_237; +} +} +} +else +{ +uint64_t x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; +x_238 = lean_ctor_get_uint64(x_220, sizeof(void*)*1); +x_239 = lean_ctor_get(x_220, 0); lean_inc(x_239); -x_240 = lean_ctor_get(x_238, 1); -lean_inc(x_240); -if (lean_is_exclusive(x_238)) { - lean_ctor_release(x_238, 0); - lean_ctor_release(x_238, 1); - x_241 = x_238; -} else { - lean_dec_ref(x_238); - x_241 = lean_box(0); -} -if (lean_is_scalar(x_241)) { - x_242 = lean_alloc_ctor(0, 2, 0); -} else { - x_242 = x_241; -} -lean_ctor_set(x_242, 0, x_239); -lean_ctor_set(x_242, 1, x_240); -return x_242; -} -else -{ -lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; -x_243 = lean_ctor_get(x_238, 0); +lean_dec(x_220); +x_240 = l_Lean_PersistentArray_append___rarg(x_13, x_239); +lean_dec(x_239); +x_241 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_241, 0, x_240); +lean_ctor_set_uint64(x_241, sizeof(void*)*1, x_238); +lean_ctor_set(x_219, 3, x_241); +x_242 = lean_st_ref_set(x_10, x_219, x_221); +x_243 = lean_ctor_get(x_242, 1); lean_inc(x_243); -x_244 = lean_ctor_get(x_238, 1); -lean_inc(x_244); -if (lean_is_exclusive(x_238)) { - lean_ctor_release(x_238, 0); - lean_ctor_release(x_238, 1); - x_245 = x_238; -} else { - lean_dec_ref(x_238); - x_245 = lean_box(0); -} -if (lean_is_scalar(x_245)) { - x_246 = lean_alloc_ctor(1, 2, 0); -} else { - x_246 = x_245; -} -lean_ctor_set(x_246, 0, x_243); -lean_ctor_set(x_246, 1, x_244); -return x_246; -} -} -} -else -{ -lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; uint64_t x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; -x_247 = lean_ctor_get(x_213, 0); -x_248 = lean_ctor_get(x_213, 1); -x_249 = lean_ctor_get(x_213, 2); -x_250 = lean_ctor_get(x_213, 4); -x_251 = lean_ctor_get(x_213, 5); -x_252 = lean_ctor_get(x_213, 6); -x_253 = lean_ctor_get(x_213, 7); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_inc(x_248); -lean_inc(x_247); -lean_dec(x_213); -x_254 = lean_ctor_get_uint64(x_214, sizeof(void*)*1); -x_255 = lean_ctor_get(x_214, 0); -lean_inc(x_255); -if (lean_is_exclusive(x_214)) { - lean_ctor_release(x_214, 0); - x_256 = x_214; -} else { - lean_dec_ref(x_214); - x_256 = lean_box(0); -} -x_257 = l_Lean_PersistentArray_append___rarg(x_13, x_255); -lean_dec(x_255); -if (lean_is_scalar(x_256)) { - x_258 = lean_alloc_ctor(0, 1, 8); -} else { - x_258 = x_256; -} -lean_ctor_set(x_258, 0, x_257); -lean_ctor_set_uint64(x_258, sizeof(void*)*1, x_254); -x_259 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_259, 0, x_247); -lean_ctor_set(x_259, 1, x_248); -lean_ctor_set(x_259, 2, x_249); -lean_ctor_set(x_259, 3, x_258); -lean_ctor_set(x_259, 4, x_250); -lean_ctor_set(x_259, 5, x_251); -lean_ctor_set(x_259, 6, x_252); -lean_ctor_set(x_259, 7, x_253); -x_260 = lean_st_ref_set(x_10, x_259, x_215); -x_261 = lean_ctor_get(x_260, 1); -lean_inc(x_261); -lean_dec(x_260); -x_262 = l_MonadExcept_ofExcept___at_Lean_Elab_shareCommonPreDefs___spec__4(x_208, x_9, x_10, x_261); +lean_dec(x_242); +x_244 = l_MonadExcept_ofExcept___at_Lean_Elab_shareCommonPreDefs___spec__4(x_212, x_9, x_10, x_243); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_262) == 0) +lean_dec(x_212); +if (lean_obj_tag(x_244) == 0) { -lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; -x_263 = lean_ctor_get(x_262, 0); -lean_inc(x_263); -x_264 = lean_ctor_get(x_262, 1); -lean_inc(x_264); -if (lean_is_exclusive(x_262)) { - lean_ctor_release(x_262, 0); - lean_ctor_release(x_262, 1); - x_265 = x_262; +lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; +x_245 = lean_ctor_get(x_244, 0); +lean_inc(x_245); +x_246 = lean_ctor_get(x_244, 1); +lean_inc(x_246); +if (lean_is_exclusive(x_244)) { + lean_ctor_release(x_244, 0); + lean_ctor_release(x_244, 1); + x_247 = x_244; } else { - lean_dec_ref(x_262); - x_265 = lean_box(0); + lean_dec_ref(x_244); + x_247 = lean_box(0); } -if (lean_is_scalar(x_265)) { - x_266 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_247)) { + x_248 = lean_alloc_ctor(0, 2, 0); } else { - x_266 = x_265; + x_248 = x_247; } -lean_ctor_set(x_266, 0, x_263); -lean_ctor_set(x_266, 1, x_264); -return x_266; +lean_ctor_set(x_248, 0, x_245); +lean_ctor_set(x_248, 1, x_246); +return x_248; } else { -lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; -x_267 = lean_ctor_get(x_262, 0); +lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; +x_249 = lean_ctor_get(x_244, 0); +lean_inc(x_249); +x_250 = lean_ctor_get(x_244, 1); +lean_inc(x_250); +if (lean_is_exclusive(x_244)) { + lean_ctor_release(x_244, 0); + lean_ctor_release(x_244, 1); + x_251 = x_244; +} else { + lean_dec_ref(x_244); + x_251 = lean_box(0); +} +if (lean_is_scalar(x_251)) { + x_252 = lean_alloc_ctor(1, 2, 0); +} else { + x_252 = x_251; +} +lean_ctor_set(x_252, 0, x_249); +lean_ctor_set(x_252, 1, x_250); +return x_252; +} +} +} +else +{ +lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; uint64_t x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; +x_253 = lean_ctor_get(x_219, 0); +x_254 = lean_ctor_get(x_219, 1); +x_255 = lean_ctor_get(x_219, 2); +x_256 = lean_ctor_get(x_219, 4); +x_257 = lean_ctor_get(x_219, 5); +x_258 = lean_ctor_get(x_219, 6); +x_259 = lean_ctor_get(x_219, 7); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_inc(x_254); +lean_inc(x_253); +lean_dec(x_219); +x_260 = lean_ctor_get_uint64(x_220, sizeof(void*)*1); +x_261 = lean_ctor_get(x_220, 0); +lean_inc(x_261); +if (lean_is_exclusive(x_220)) { + lean_ctor_release(x_220, 0); + x_262 = x_220; +} else { + lean_dec_ref(x_220); + x_262 = lean_box(0); +} +x_263 = l_Lean_PersistentArray_append___rarg(x_13, x_261); +lean_dec(x_261); +if (lean_is_scalar(x_262)) { + x_264 = lean_alloc_ctor(0, 1, 8); +} else { + x_264 = x_262; +} +lean_ctor_set(x_264, 0, x_263); +lean_ctor_set_uint64(x_264, sizeof(void*)*1, x_260); +x_265 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_265, 0, x_253); +lean_ctor_set(x_265, 1, x_254); +lean_ctor_set(x_265, 2, x_255); +lean_ctor_set(x_265, 3, x_264); +lean_ctor_set(x_265, 4, x_256); +lean_ctor_set(x_265, 5, x_257); +lean_ctor_set(x_265, 6, x_258); +lean_ctor_set(x_265, 7, x_259); +x_266 = lean_st_ref_set(x_10, x_265, x_221); +x_267 = lean_ctor_get(x_266, 1); lean_inc(x_267); -x_268 = lean_ctor_get(x_262, 1); -lean_inc(x_268); -if (lean_is_exclusive(x_262)) { - lean_ctor_release(x_262, 0); - lean_ctor_release(x_262, 1); - x_269 = x_262; +lean_dec(x_266); +x_268 = l_MonadExcept_ofExcept___at_Lean_Elab_shareCommonPreDefs___spec__4(x_212, x_9, x_10, x_267); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_212); +if (lean_obj_tag(x_268) == 0) +{ +lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; +x_269 = lean_ctor_get(x_268, 0); +lean_inc(x_269); +x_270 = lean_ctor_get(x_268, 1); +lean_inc(x_270); +if (lean_is_exclusive(x_268)) { + lean_ctor_release(x_268, 0); + lean_ctor_release(x_268, 1); + x_271 = x_268; } else { - lean_dec_ref(x_262); - x_269 = lean_box(0); + lean_dec_ref(x_268); + x_271 = lean_box(0); } -if (lean_is_scalar(x_269)) { - x_270 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_271)) { + x_272 = lean_alloc_ctor(0, 2, 0); } else { - x_270 = x_269; + x_272 = x_271; } -lean_ctor_set(x_270, 0, x_267); -lean_ctor_set(x_270, 1, x_268); -return x_270; +lean_ctor_set(x_272, 0, x_269); +lean_ctor_set(x_272, 1, x_270); +return x_272; +} +else +{ +lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; +x_273 = lean_ctor_get(x_268, 0); +lean_inc(x_273); +x_274 = lean_ctor_get(x_268, 1); +lean_inc(x_274); +if (lean_is_exclusive(x_268)) { + lean_ctor_release(x_268, 0); + lean_ctor_release(x_268, 1); + x_275 = x_268; +} else { + lean_dec_ref(x_268); + x_275 = lean_box(0); +} +if (lean_is_scalar(x_275)) { + x_276 = lean_alloc_ctor(1, 2, 0); +} else { + x_276 = x_275; +} +lean_ctor_set(x_276, 0, x_273); +lean_ctor_set(x_276, 1, x_274); +return x_276; } } } else { -lean_object* x_271; double x_272; double x_273; lean_object* x_274; -x_271 = lean_box(0); -x_272 = lean_unbox_float(x_209); -lean_dec(x_209); -x_273 = lean_unbox_float(x_210); -lean_dec(x_210); -x_274 = l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__3(x_2, x_3, x_4, x_13, x_208, x_1, x_211, x_272, x_273, x_5, x_271, x_9, x_10, x_206); -return x_274; -} -} -else -{ -lean_object* x_275; double x_276; double x_277; lean_object* x_278; -x_275 = lean_box(0); -x_276 = lean_unbox_float(x_209); -lean_dec(x_209); -x_277 = lean_unbox_float(x_210); -lean_dec(x_210); -x_278 = l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__3(x_2, x_3, x_4, x_13, x_208, x_1, x_211, x_276, x_277, x_5, x_275, x_9, x_10, x_206); -return x_278; +lean_object* x_277; double x_278; double x_279; lean_object* x_280; +x_277 = lean_box(0); +x_278 = lean_unbox_float(x_213); +lean_dec(x_213); +x_279 = lean_unbox_float(x_214); +lean_dec(x_214); +x_280 = l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_278, x_279, x_5, x_277, x_9, x_10, x_210); +return x_280; } } } @@ -13723,41 +13715,39 @@ lean_dec(x_4); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; uint8_t x_16; double x_17; double x_18; lean_object* x_19; -x_15 = lean_unbox(x_2); +uint8_t x_14; uint8_t x_15; double x_16; double x_17; lean_object* x_18; +x_14 = lean_unbox(x_2); lean_dec(x_2); -x_16 = lean_unbox(x_8); +x_15 = lean_unbox(x_7); +lean_dec(x_7); +x_16 = lean_unbox_float(x_8); lean_dec(x_8); x_17 = lean_unbox_float(x_9); lean_dec(x_9); -x_18 = lean_unbox_float(x_10); -lean_dec(x_10); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__2(x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_16, x_17, x_18, x_11, x_12, x_13, x_14); -lean_dec(x_13); -lean_dec(x_7); +x_18 = l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__2(x_1, x_14, x_3, x_4, x_5, x_6, x_15, x_16, x_17, x_10, x_11, x_12, x_13); +lean_dec(x_12); lean_dec(x_6); -return x_19; +return x_18; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; uint8_t x_16; double x_17; double x_18; lean_object* x_19; -x_15 = lean_unbox(x_2); +uint8_t x_14; uint8_t x_15; double x_16; double x_17; lean_object* x_18; +x_14 = lean_unbox(x_2); lean_dec(x_2); -x_16 = lean_unbox(x_7); +x_15 = lean_unbox(x_6); +lean_dec(x_6); +x_16 = lean_unbox_float(x_7); lean_dec(x_7); x_17 = lean_unbox_float(x_8); lean_dec(x_8); -x_18 = lean_unbox_float(x_9); -lean_dec(x_9); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__3(x_1, x_15, x_3, x_4, x_5, x_6, x_16, x_17, x_18, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_11); -lean_dec(x_6); -return x_19; +x_18 = l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__3(x_1, x_14, x_3, x_4, x_5, x_15, x_16, x_17, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_10); +return x_18; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_shareCommonPreDefs___spec__3___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { @@ -13889,8 +13879,6 @@ lean_mark_persistent(l___private_Lean_Elab_PreDefinition_Basic_0__Lean_Elab_getL l___private_Lean_Elab_PreDefinition_Basic_0__Lean_Elab_getLevelParamsPreDecls___closed__5 = _init_l___private_Lean_Elab_PreDefinition_Basic_0__Lean_Elab_getLevelParamsPreDecls___closed__5(); lean_mark_persistent(l___private_Lean_Elab_PreDefinition_Basic_0__Lean_Elab_getLevelParamsPreDecls___closed__5); l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__2___closed__1(); -l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__2___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__2___closed__2(); -lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__2___closed__2); l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3___closed__1); l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Elab_fixLevelParams___spec__3___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/PreDefinition/Main.c b/stage0/stdlib/Lean/Elab/PreDefinition/Main.c index e720733a3c..58386f304c 100644 --- a/stage0/stdlib/Lean/Elab/PreDefinition/Main.c +++ b/stage0/stdlib/Lean/Elab/PreDefinition/Main.c @@ -33,7 +33,6 @@ static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_addPreDefinition LEAN_EXPORT lean_object* l_ReaderT_bind___at___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_ensureNoUnassignedLevelMVarsAtPreDef_visit___spec__7___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_instInhabitedPreDefinition; uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___private_Lean_Meta_Check_0__Lean_Meta_checkAux_check___spec__2(lean_object*, lean_object*); -extern lean_object* l_Lean_profiler; static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_addPreDefinitions___spec__13___lambda__2___closed__2; lean_object* lean_mk_empty_array_with_capacity(lean_object*); uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_159____at___private_Lean_Meta_Basic_0__Lean_Meta_beqInfoCacheKey____x40_Lean_Meta_Basic___hyg_946____spec__1(lean_object*, lean_object*); @@ -92,7 +91,6 @@ static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_PreDef LEAN_EXPORT lean_object* l_Lean_Elab_throwAbortCommand___at___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_ensureNoUnassignedLevelMVarsAtPreDef___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_ensureNoUnassignedLevelMVarsAtPreDef___closed__6; lean_object* l_Lean_replaceRef(lean_object*, lean_object*); -static lean_object* l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__2___closed__1; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_partitionPreDefs___spec__22___closed__1; lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_instantiateMVars___at_Lean_Elab_Term_MVarErrorInfo_logError___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -384,7 +382,7 @@ uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_addPreDefinitions___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static double l_Lean_addTrace___at_Lean_Elab_addPreDefinitions___spec__1___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_collectMVarsAtPreDef___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_addPreDefinitions___lambda__3___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_addPreDefinitions___lambda__3___boxed__const__1; lean_object* l_Lean_Elab_eraseRecAppSyntax(lean_object*, lean_object*, lean_object*, lean_object*); @@ -435,7 +433,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_getDataOf___at___ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_addPreDefinitions___spec__13___lambda__4(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_checkTerminationByHints___spec__3___lambda__2___closed__6; static lean_object* l_Lean_Elab_addPreDefinitions___closed__8; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_partitionPreDefs___spec__22___closed__6; lean_object* l_Lean_Meta_ensureEqnReservedNamesAvailable(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_addPreDefinitions___lambda__3___closed__1; @@ -20785,69 +20783,36 @@ lean_dec(x_11); return x_16; } } -static lean_object* _init_l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__2___closed__1() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_18 = l_Lean_addTrace___at_Lean_Elab_addPreDefinitions___spec__1___closed__1; +x_19 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_19, 0, x_1); +lean_ctor_set(x_19, 1, x_3); +lean_ctor_set_float(x_19, sizeof(void*)*2, x_18); +lean_ctor_set_float(x_19, sizeof(void*)*2 + 8, x_18); +lean_ctor_set_uint8(x_19, sizeof(void*)*2 + 16, x_2); +x_20 = lean_box(0); +x_21 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__1(x_4, x_5, x_10, x_6, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +return x_21; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { -_start: +else { -double x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; -x_19 = l_Lean_addTrace___at_Lean_Elab_addPreDefinitions___spec__1___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_20 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_20, 0, x_1); -lean_ctor_set(x_20, 1, x_3); -lean_ctor_set_float(x_20, sizeof(void*)*2, x_19); -lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_19); -lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__2___closed__1; -x_22 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_21); -if (x_22 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_23; lean_object* x_24; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_22, 0, x_1); +lean_ctor_set(x_22, 1, x_3); +lean_ctor_set_float(x_22, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_22, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_22, sizeof(void*)*2 + 16, x_2); x_23 = lean_box(0); -x_24 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__1(x_4, x_5, x_11, x_6, x_20, x_23, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +x_24 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__1(x_4, x_5, x_10, x_6, x_22, x_23, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_24; } -else -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; -lean_dec(x_20); -x_25 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_25, 0, x_1); -lean_ctor_set(x_25, 1, x_3); -lean_ctor_set_float(x_25, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_25, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_25, sizeof(void*)*2 + 16, x_2); -x_26 = lean_box(0); -x_27 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__1(x_4, x_5, x_11, x_6, x_25, x_26, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -return x_27; -} -} -else -{ -lean_object* x_28; lean_object* x_29; lean_object* x_30; -lean_dec(x_20); -x_28 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_28, 0, x_1); -lean_ctor_set(x_28, 1, x_3); -lean_ctor_set_float(x_28, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_28, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_28, sizeof(void*)*2 + 16, x_2); -x_29 = lean_box(0); -x_30 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__1(x_4, x_5, x_11, x_6, x_28, x_29, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -return x_30; -} } } static lean_object* _init_l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3___closed__1() { @@ -20867,52 +20832,52 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_19; lean_object* x_20; -x_19 = lean_ctor_get(x_16, 5); -lean_inc(x_19); -lean_inc(x_17); +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_15, 5); +lean_inc(x_18); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_20 = lean_apply_8(x_10, x_5, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -if (lean_obj_tag(x_20) == 0) +x_19 = lean_apply_8(x_9, x_5, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +if (lean_obj_tag(x_19) == 0) { -lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_21 = lean_ctor_get(x_20, 0); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); -x_22 = lean_ctor_get(x_20, 1); -lean_inc(x_22); -lean_dec(x_20); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__2(x_1, x_2, x_3, x_4, x_19, x_5, x_6, x_7, x_8, x_9, x_21, x_12, x_13, x_14, x_15, x_16, x_17, x_22); -lean_dec(x_17); -lean_dec(x_15); +lean_dec(x_19); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__2(x_1, x_2, x_3, x_4, x_18, x_5, x_6, x_7, x_8, x_20, x_11, x_12, x_13, x_14, x_15, x_16, x_21); +lean_dec(x_16); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_23; +return x_22; } else { -lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_24 = lean_ctor_get(x_20, 1); -lean_inc(x_24); -lean_dec(x_20); -x_25 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3___closed__2; -x_26 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__2(x_1, x_2, x_3, x_4, x_19, x_5, x_6, x_7, x_8, x_9, x_25, x_12, x_13, x_14, x_15, x_16, x_17, x_24); -lean_dec(x_17); -lean_dec(x_15); +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_19, 1); +lean_inc(x_23); +lean_dec(x_19); +x_24 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3___closed__2; +x_25 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__2(x_1, x_2, x_3, x_4, x_18, x_5, x_6, x_7, x_8, x_24, x_11, x_12, x_13, x_14, x_15, x_16, x_23); +lean_dec(x_16); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_26; +return x_25; } } } @@ -20976,255 +20941,255 @@ x_19 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_19); if (x_20 == 0) { -lean_object* x_21; lean_object* x_22; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; -x_111 = lean_io_mono_nanos_now(x_18); -x_112 = lean_ctor_get(x_111, 0); -lean_inc(x_112); -x_113 = lean_ctor_get(x_111, 1); -lean_inc(x_113); -lean_dec(x_111); +lean_object* x_21; lean_object* x_22; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; +x_115 = lean_io_mono_nanos_now(x_18); +x_116 = lean_ctor_get(x_115, 0); +lean_inc(x_116); +x_117 = lean_ctor_get(x_115, 1); +lean_inc(x_117); +lean_dec(x_115); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_114 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_113); -if (lean_obj_tag(x_114) == 0) +x_118 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_117); +if (lean_obj_tag(x_118) == 0) { -uint8_t x_115; -x_115 = !lean_is_exclusive(x_114); -if (x_115 == 0) +uint8_t x_119; +x_119 = !lean_is_exclusive(x_118); +if (x_119 == 0) { -lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; uint8_t x_120; -x_116 = lean_ctor_get(x_114, 0); -x_117 = lean_ctor_get(x_114, 1); -x_118 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_118, 0, x_116); -x_119 = lean_io_mono_nanos_now(x_117); -x_120 = !lean_is_exclusive(x_119); -if (x_120 == 0) +lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; uint8_t x_124; +x_120 = lean_ctor_get(x_118, 0); +x_121 = lean_ctor_get(x_118, 1); +x_122 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_122, 0, x_120); +x_123 = lean_io_mono_nanos_now(x_121); +x_124 = !lean_is_exclusive(x_123); +if (x_124 == 0) { -lean_object* x_121; lean_object* x_122; uint8_t x_123; lean_object* x_124; double x_125; double x_126; double x_127; double x_128; double x_129; lean_object* x_130; lean_object* x_131; -x_121 = lean_ctor_get(x_119, 0); -x_122 = lean_ctor_get(x_119, 1); -x_123 = 0; -x_124 = lean_unsigned_to_nat(0u); -x_125 = l_Float_ofScientific(x_112, x_123, x_124); -lean_dec(x_112); -x_126 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__4___closed__5; -x_127 = lean_float_div(x_125, x_126); -x_128 = l_Float_ofScientific(x_121, x_123, x_124); -lean_dec(x_121); -x_129 = lean_float_div(x_128, x_126); -x_130 = lean_box_float(x_127); -x_131 = lean_box_float(x_129); -lean_ctor_set(x_119, 1, x_131); -lean_ctor_set(x_119, 0, x_130); -lean_ctor_set(x_114, 1, x_119); -lean_ctor_set(x_114, 0, x_118); -x_21 = x_114; -x_22 = x_122; -goto block_110; +lean_object* x_125; lean_object* x_126; uint8_t x_127; lean_object* x_128; double x_129; double x_130; double x_131; double x_132; double x_133; lean_object* x_134; lean_object* x_135; +x_125 = lean_ctor_get(x_123, 0); +x_126 = lean_ctor_get(x_123, 1); +x_127 = 0; +x_128 = lean_unsigned_to_nat(0u); +x_129 = l_Float_ofScientific(x_116, x_127, x_128); +lean_dec(x_116); +x_130 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__4___closed__5; +x_131 = lean_float_div(x_129, x_130); +x_132 = l_Float_ofScientific(x_125, x_127, x_128); +lean_dec(x_125); +x_133 = lean_float_div(x_132, x_130); +x_134 = lean_box_float(x_131); +x_135 = lean_box_float(x_133); +lean_ctor_set(x_123, 1, x_135); +lean_ctor_set(x_123, 0, x_134); +lean_ctor_set(x_118, 1, x_123); +lean_ctor_set(x_118, 0, x_122); +x_21 = x_118; +x_22 = x_126; +goto block_114; } else { -lean_object* x_132; lean_object* x_133; uint8_t x_134; lean_object* x_135; double x_136; double x_137; double x_138; double x_139; double x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; -x_132 = lean_ctor_get(x_119, 0); -x_133 = lean_ctor_get(x_119, 1); -lean_inc(x_133); -lean_inc(x_132); -lean_dec(x_119); -x_134 = 0; -x_135 = lean_unsigned_to_nat(0u); -x_136 = l_Float_ofScientific(x_112, x_134, x_135); -lean_dec(x_112); -x_137 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__4___closed__5; -x_138 = lean_float_div(x_136, x_137); -x_139 = l_Float_ofScientific(x_132, x_134, x_135); -lean_dec(x_132); -x_140 = lean_float_div(x_139, x_137); -x_141 = lean_box_float(x_138); -x_142 = lean_box_float(x_140); -x_143 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_143, 0, x_141); -lean_ctor_set(x_143, 1, x_142); -lean_ctor_set(x_114, 1, x_143); -lean_ctor_set(x_114, 0, x_118); -x_21 = x_114; -x_22 = x_133; -goto block_110; +lean_object* x_136; lean_object* x_137; uint8_t x_138; lean_object* x_139; double x_140; double x_141; double x_142; double x_143; double x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; +x_136 = lean_ctor_get(x_123, 0); +x_137 = lean_ctor_get(x_123, 1); +lean_inc(x_137); +lean_inc(x_136); +lean_dec(x_123); +x_138 = 0; +x_139 = lean_unsigned_to_nat(0u); +x_140 = l_Float_ofScientific(x_116, x_138, x_139); +lean_dec(x_116); +x_141 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__4___closed__5; +x_142 = lean_float_div(x_140, x_141); +x_143 = l_Float_ofScientific(x_136, x_138, x_139); +lean_dec(x_136); +x_144 = lean_float_div(x_143, x_141); +x_145 = lean_box_float(x_142); +x_146 = lean_box_float(x_144); +x_147 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_147, 0, x_145); +lean_ctor_set(x_147, 1, x_146); +lean_ctor_set(x_118, 1, x_147); +lean_ctor_set(x_118, 0, x_122); +x_21 = x_118; +x_22 = x_137; +goto block_114; } } else { -lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; uint8_t x_151; lean_object* x_152; double x_153; double x_154; double x_155; double x_156; double x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; -x_144 = lean_ctor_get(x_114, 0); -x_145 = lean_ctor_get(x_114, 1); -lean_inc(x_145); -lean_inc(x_144); -lean_dec(x_114); -x_146 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_146, 0, x_144); -x_147 = lean_io_mono_nanos_now(x_145); -x_148 = lean_ctor_get(x_147, 0); -lean_inc(x_148); -x_149 = lean_ctor_get(x_147, 1); +lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; uint8_t x_155; lean_object* x_156; double x_157; double x_158; double x_159; double x_160; double x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; +x_148 = lean_ctor_get(x_118, 0); +x_149 = lean_ctor_get(x_118, 1); lean_inc(x_149); -if (lean_is_exclusive(x_147)) { - lean_ctor_release(x_147, 0); - lean_ctor_release(x_147, 1); - x_150 = x_147; +lean_inc(x_148); +lean_dec(x_118); +x_150 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_150, 0, x_148); +x_151 = lean_io_mono_nanos_now(x_149); +x_152 = lean_ctor_get(x_151, 0); +lean_inc(x_152); +x_153 = lean_ctor_get(x_151, 1); +lean_inc(x_153); +if (lean_is_exclusive(x_151)) { + lean_ctor_release(x_151, 0); + lean_ctor_release(x_151, 1); + x_154 = x_151; } else { - lean_dec_ref(x_147); - x_150 = lean_box(0); + lean_dec_ref(x_151); + x_154 = lean_box(0); } -x_151 = 0; -x_152 = lean_unsigned_to_nat(0u); -x_153 = l_Float_ofScientific(x_112, x_151, x_152); -lean_dec(x_112); -x_154 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__4___closed__5; -x_155 = lean_float_div(x_153, x_154); -x_156 = l_Float_ofScientific(x_148, x_151, x_152); -lean_dec(x_148); -x_157 = lean_float_div(x_156, x_154); -x_158 = lean_box_float(x_155); -x_159 = lean_box_float(x_157); -if (lean_is_scalar(x_150)) { - x_160 = lean_alloc_ctor(0, 2, 0); +x_155 = 0; +x_156 = lean_unsigned_to_nat(0u); +x_157 = l_Float_ofScientific(x_116, x_155, x_156); +lean_dec(x_116); +x_158 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__4___closed__5; +x_159 = lean_float_div(x_157, x_158); +x_160 = l_Float_ofScientific(x_152, x_155, x_156); +lean_dec(x_152); +x_161 = lean_float_div(x_160, x_158); +x_162 = lean_box_float(x_159); +x_163 = lean_box_float(x_161); +if (lean_is_scalar(x_154)) { + x_164 = lean_alloc_ctor(0, 2, 0); } else { - x_160 = x_150; + x_164 = x_154; } -lean_ctor_set(x_160, 0, x_158); -lean_ctor_set(x_160, 1, x_159); -x_161 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_161, 0, x_146); -lean_ctor_set(x_161, 1, x_160); -x_21 = x_161; -x_22 = x_149; -goto block_110; +lean_ctor_set(x_164, 0, x_162); +lean_ctor_set(x_164, 1, x_163); +x_165 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_165, 0, x_150); +lean_ctor_set(x_165, 1, x_164); +x_21 = x_165; +x_22 = x_153; +goto block_114; } } else { -uint8_t x_162; -x_162 = !lean_is_exclusive(x_114); -if (x_162 == 0) +uint8_t x_166; +x_166 = !lean_is_exclusive(x_118); +if (x_166 == 0) { -lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; uint8_t x_167; -x_163 = lean_ctor_get(x_114, 0); -x_164 = lean_ctor_get(x_114, 1); -x_165 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_165, 0, x_163); -x_166 = lean_io_mono_nanos_now(x_164); -x_167 = !lean_is_exclusive(x_166); -if (x_167 == 0) +lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; uint8_t x_171; +x_167 = lean_ctor_get(x_118, 0); +x_168 = lean_ctor_get(x_118, 1); +x_169 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_169, 0, x_167); +x_170 = lean_io_mono_nanos_now(x_168); +x_171 = !lean_is_exclusive(x_170); +if (x_171 == 0) { -lean_object* x_168; lean_object* x_169; uint8_t x_170; lean_object* x_171; double x_172; double x_173; double x_174; double x_175; double x_176; lean_object* x_177; lean_object* x_178; -x_168 = lean_ctor_get(x_166, 0); -x_169 = lean_ctor_get(x_166, 1); -x_170 = 0; -x_171 = lean_unsigned_to_nat(0u); -x_172 = l_Float_ofScientific(x_112, x_170, x_171); -lean_dec(x_112); -x_173 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__4___closed__5; -x_174 = lean_float_div(x_172, x_173); -x_175 = l_Float_ofScientific(x_168, x_170, x_171); -lean_dec(x_168); -x_176 = lean_float_div(x_175, x_173); -x_177 = lean_box_float(x_174); -x_178 = lean_box_float(x_176); -lean_ctor_set(x_166, 1, x_178); -lean_ctor_set(x_166, 0, x_177); -lean_ctor_set_tag(x_114, 0); -lean_ctor_set(x_114, 1, x_166); -lean_ctor_set(x_114, 0, x_165); -x_21 = x_114; -x_22 = x_169; -goto block_110; +lean_object* x_172; lean_object* x_173; uint8_t x_174; lean_object* x_175; double x_176; double x_177; double x_178; double x_179; double x_180; lean_object* x_181; lean_object* x_182; +x_172 = lean_ctor_get(x_170, 0); +x_173 = lean_ctor_get(x_170, 1); +x_174 = 0; +x_175 = lean_unsigned_to_nat(0u); +x_176 = l_Float_ofScientific(x_116, x_174, x_175); +lean_dec(x_116); +x_177 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__4___closed__5; +x_178 = lean_float_div(x_176, x_177); +x_179 = l_Float_ofScientific(x_172, x_174, x_175); +lean_dec(x_172); +x_180 = lean_float_div(x_179, x_177); +x_181 = lean_box_float(x_178); +x_182 = lean_box_float(x_180); +lean_ctor_set(x_170, 1, x_182); +lean_ctor_set(x_170, 0, x_181); +lean_ctor_set_tag(x_118, 0); +lean_ctor_set(x_118, 1, x_170); +lean_ctor_set(x_118, 0, x_169); +x_21 = x_118; +x_22 = x_173; +goto block_114; } else { -lean_object* x_179; lean_object* x_180; uint8_t x_181; lean_object* x_182; double x_183; double x_184; double x_185; double x_186; double x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; -x_179 = lean_ctor_get(x_166, 0); -x_180 = lean_ctor_get(x_166, 1); -lean_inc(x_180); -lean_inc(x_179); -lean_dec(x_166); -x_181 = 0; -x_182 = lean_unsigned_to_nat(0u); -x_183 = l_Float_ofScientific(x_112, x_181, x_182); -lean_dec(x_112); -x_184 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__4___closed__5; -x_185 = lean_float_div(x_183, x_184); -x_186 = l_Float_ofScientific(x_179, x_181, x_182); -lean_dec(x_179); -x_187 = lean_float_div(x_186, x_184); -x_188 = lean_box_float(x_185); -x_189 = lean_box_float(x_187); -x_190 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_190, 0, x_188); -lean_ctor_set(x_190, 1, x_189); -lean_ctor_set_tag(x_114, 0); -lean_ctor_set(x_114, 1, x_190); -lean_ctor_set(x_114, 0, x_165); -x_21 = x_114; -x_22 = x_180; -goto block_110; +lean_object* x_183; lean_object* x_184; uint8_t x_185; lean_object* x_186; double x_187; double x_188; double x_189; double x_190; double x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; +x_183 = lean_ctor_get(x_170, 0); +x_184 = lean_ctor_get(x_170, 1); +lean_inc(x_184); +lean_inc(x_183); +lean_dec(x_170); +x_185 = 0; +x_186 = lean_unsigned_to_nat(0u); +x_187 = l_Float_ofScientific(x_116, x_185, x_186); +lean_dec(x_116); +x_188 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__4___closed__5; +x_189 = lean_float_div(x_187, x_188); +x_190 = l_Float_ofScientific(x_183, x_185, x_186); +lean_dec(x_183); +x_191 = lean_float_div(x_190, x_188); +x_192 = lean_box_float(x_189); +x_193 = lean_box_float(x_191); +x_194 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_194, 0, x_192); +lean_ctor_set(x_194, 1, x_193); +lean_ctor_set_tag(x_118, 0); +lean_ctor_set(x_118, 1, x_194); +lean_ctor_set(x_118, 0, x_169); +x_21 = x_118; +x_22 = x_184; +goto block_114; } } else { -lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; uint8_t x_198; lean_object* x_199; double x_200; double x_201; double x_202; double x_203; double x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; -x_191 = lean_ctor_get(x_114, 0); -x_192 = lean_ctor_get(x_114, 1); -lean_inc(x_192); -lean_inc(x_191); -lean_dec(x_114); -x_193 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_193, 0, x_191); -x_194 = lean_io_mono_nanos_now(x_192); -x_195 = lean_ctor_get(x_194, 0); -lean_inc(x_195); -x_196 = lean_ctor_get(x_194, 1); +lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; uint8_t x_202; lean_object* x_203; double x_204; double x_205; double x_206; double x_207; double x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; +x_195 = lean_ctor_get(x_118, 0); +x_196 = lean_ctor_get(x_118, 1); lean_inc(x_196); -if (lean_is_exclusive(x_194)) { - lean_ctor_release(x_194, 0); - lean_ctor_release(x_194, 1); - x_197 = x_194; +lean_inc(x_195); +lean_dec(x_118); +x_197 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_197, 0, x_195); +x_198 = lean_io_mono_nanos_now(x_196); +x_199 = lean_ctor_get(x_198, 0); +lean_inc(x_199); +x_200 = lean_ctor_get(x_198, 1); +lean_inc(x_200); +if (lean_is_exclusive(x_198)) { + lean_ctor_release(x_198, 0); + lean_ctor_release(x_198, 1); + x_201 = x_198; } else { - lean_dec_ref(x_194); - x_197 = lean_box(0); + lean_dec_ref(x_198); + x_201 = lean_box(0); } -x_198 = 0; -x_199 = lean_unsigned_to_nat(0u); -x_200 = l_Float_ofScientific(x_112, x_198, x_199); -lean_dec(x_112); -x_201 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__4___closed__5; -x_202 = lean_float_div(x_200, x_201); -x_203 = l_Float_ofScientific(x_195, x_198, x_199); -lean_dec(x_195); -x_204 = lean_float_div(x_203, x_201); -x_205 = lean_box_float(x_202); -x_206 = lean_box_float(x_204); -if (lean_is_scalar(x_197)) { - x_207 = lean_alloc_ctor(0, 2, 0); +x_202 = 0; +x_203 = lean_unsigned_to_nat(0u); +x_204 = l_Float_ofScientific(x_116, x_202, x_203); +lean_dec(x_116); +x_205 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__4___closed__5; +x_206 = lean_float_div(x_204, x_205); +x_207 = l_Float_ofScientific(x_199, x_202, x_203); +lean_dec(x_199); +x_208 = lean_float_div(x_207, x_205); +x_209 = lean_box_float(x_206); +x_210 = lean_box_float(x_208); +if (lean_is_scalar(x_201)) { + x_211 = lean_alloc_ctor(0, 2, 0); } else { - x_207 = x_197; + x_211 = x_201; } -lean_ctor_set(x_207, 0, x_205); -lean_ctor_set(x_207, 1, x_206); -x_208 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_208, 0, x_193); -lean_ctor_set(x_208, 1, x_207); -x_21 = x_208; -x_22 = x_196; -goto block_110; +lean_ctor_set(x_211, 0, x_209); +lean_ctor_set(x_211, 1, x_210); +x_212 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_212, 0, x_197); +lean_ctor_set(x_212, 1, x_211); +x_21 = x_212; +x_22 = x_200; +goto block_114; } } -block_110: +block_114: { -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_96; uint8_t x_97; +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; uint8_t x_29; x_23 = lean_ctor_get(x_21, 1); lean_inc(x_23); x_24 = lean_ctor_get(x_21, 0); @@ -21235,17 +21200,33 @@ lean_inc(x_25); x_26 = lean_ctor_get(x_23, 1); lean_inc(x_26); lean_dec(x_23); -x_96 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__4___closed__2; -x_97 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_96); -if (x_97 == 0) +x_27 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__4___closed__2; +x_28 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_27); +if (x_28 == 0) { -uint8_t x_98; -x_98 = 0; -x_27 = x_98; -goto block_95; +if (x_6 == 0) +{ +uint8_t x_94; +x_94 = 0; +x_29 = x_94; +goto block_93; } else { +lean_object* x_95; double x_96; double x_97; lean_object* x_98; +x_95 = lean_box(0); +x_96 = lean_unbox_float(x_25); +lean_dec(x_25); +x_97 = lean_unbox_float(x_26); +lean_dec(x_26); +x_98 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3(x_2, x_3, x_4, x_17, x_24, x_28, x_96, x_97, x_5, x_95, x_9, x_10, x_11, x_12, x_13, x_14, x_22); +return x_98; +} +} +else +{ +if (x_6 == 0) +{ double x_99; double x_100; double x_101; lean_object* x_102; lean_object* x_103; uint8_t x_104; lean_object* x_105; double x_106; double x_107; double x_108; uint8_t x_109; x_99 = lean_unbox_float(x_26); x_100 = lean_unbox_float(x_25); @@ -21259,48 +21240,58 @@ lean_dec(x_103); x_107 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__4___closed__4; x_108 = lean_float_div(x_106, x_107); x_109 = lean_float_decLt(x_108, x_101); -x_27 = x_109; -goto block_95; +x_29 = x_109; +goto block_93; } -block_95: +else { -if (x_6 == 0) +lean_object* x_110; double x_111; double x_112; lean_object* x_113; +x_110 = lean_box(0); +x_111 = lean_unbox_float(x_25); +lean_dec(x_25); +x_112 = lean_unbox_float(x_26); +lean_dec(x_26); +x_113 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3(x_2, x_3, x_4, x_17, x_24, x_28, x_111, x_112, x_5, x_110, x_9, x_10, x_11, x_12, x_13, x_14, x_22); +return x_113; +} +} +block_93: { -if (x_27 == 0) +if (x_29 == 0) { -lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; lean_dec(x_26); lean_dec(x_25); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_28 = lean_st_ref_take(x_14, x_22); -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -x_30 = lean_ctor_get(x_29, 3); -lean_inc(x_30); -x_31 = lean_ctor_get(x_28, 1); +x_30 = lean_st_ref_take(x_14, x_22); +x_31 = lean_ctor_get(x_30, 0); lean_inc(x_31); -lean_dec(x_28); -x_32 = !lean_is_exclusive(x_29); -if (x_32 == 0) -{ -lean_object* x_33; uint8_t x_34; -x_33 = lean_ctor_get(x_29, 3); -lean_dec(x_33); -x_34 = !lean_is_exclusive(x_30); +x_32 = lean_ctor_get(x_31, 3); +lean_inc(x_32); +x_33 = lean_ctor_get(x_30, 1); +lean_inc(x_33); +lean_dec(x_30); +x_34 = !lean_is_exclusive(x_31); if (x_34 == 0) { -lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_35 = lean_ctor_get(x_30, 0); -x_36 = l_Lean_PersistentArray_append___rarg(x_17, x_35); +lean_object* x_35; uint8_t x_36; +x_35 = lean_ctor_get(x_31, 3); lean_dec(x_35); -lean_ctor_set(x_30, 0, x_36); -x_37 = lean_st_ref_set(x_14, x_29, x_31); -x_38 = lean_ctor_get(x_37, 1); -lean_inc(x_38); +x_36 = !lean_is_exclusive(x_32); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_37 = lean_ctor_get(x_32, 0); +x_38 = l_Lean_PersistentArray_append___rarg(x_17, x_37); lean_dec(x_37); -x_39 = l_MonadExcept_ofExcept___at_Lean_Elab_addPreDefinitions___spec__15(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_38); +lean_ctor_set(x_32, 0, x_38); +x_39 = lean_st_ref_set(x_14, x_31, x_33); +x_40 = lean_ctor_get(x_39, 1); +lean_inc(x_40); +lean_dec(x_39); +x_41 = l_MonadExcept_ofExcept___at_Lean_Elab_addPreDefinitions___spec__15(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_40); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); @@ -21308,177 +21299,177 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_24); -if (lean_obj_tag(x_39) == 0) +if (lean_obj_tag(x_41) == 0) { -uint8_t x_40; -x_40 = !lean_is_exclusive(x_39); -if (x_40 == 0) +uint8_t x_42; +x_42 = !lean_is_exclusive(x_41); +if (x_42 == 0) { -return x_39; +return x_41; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_39, 0); -x_42 = lean_ctor_get(x_39, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_39); -x_43 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_42); -return x_43; +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_41, 0); +x_44 = lean_ctor_get(x_41, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_41); +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; } } else { -uint8_t x_44; -x_44 = !lean_is_exclusive(x_39); -if (x_44 == 0) +uint8_t x_46; +x_46 = !lean_is_exclusive(x_41); +if (x_46 == 0) { -return x_39; +return x_41; } else { -lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_45 = lean_ctor_get(x_39, 0); -x_46 = lean_ctor_get(x_39, 1); -lean_inc(x_46); -lean_inc(x_45); -lean_dec(x_39); -x_47 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_47, 0, x_45); -lean_ctor_set(x_47, 1, x_46); -return x_47; +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_41, 0); +x_48 = lean_ctor_get(x_41, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_41); +x_49 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set(x_49, 1, x_48); +return x_49; } } } else { -uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); -x_49 = lean_ctor_get(x_30, 0); -lean_inc(x_49); -lean_dec(x_30); -x_50 = l_Lean_PersistentArray_append___rarg(x_17, x_49); -lean_dec(x_49); -x_51 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_51, 0, x_50); -lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); -lean_ctor_set(x_29, 3, x_51); -x_52 = lean_st_ref_set(x_14, x_29, x_31); -x_53 = lean_ctor_get(x_52, 1); -lean_inc(x_53); -lean_dec(x_52); -x_54 = l_MonadExcept_ofExcept___at_Lean_Elab_addPreDefinitions___spec__15(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_53); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_24); -if (lean_obj_tag(x_54) == 0) -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_55 = lean_ctor_get(x_54, 0); +uint64_t x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_50 = lean_ctor_get_uint64(x_32, sizeof(void*)*1); +x_51 = lean_ctor_get(x_32, 0); +lean_inc(x_51); +lean_dec(x_32); +x_52 = l_Lean_PersistentArray_append___rarg(x_17, x_51); +lean_dec(x_51); +x_53 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_53, 0, x_52); +lean_ctor_set_uint64(x_53, sizeof(void*)*1, x_50); +lean_ctor_set(x_31, 3, x_53); +x_54 = lean_st_ref_set(x_14, x_31, x_33); +x_55 = lean_ctor_get(x_54, 1); lean_inc(x_55); -x_56 = lean_ctor_get(x_54, 1); -lean_inc(x_56); -if (lean_is_exclusive(x_54)) { - lean_ctor_release(x_54, 0); - lean_ctor_release(x_54, 1); - x_57 = x_54; +lean_dec(x_54); +x_56 = l_MonadExcept_ofExcept___at_Lean_Elab_addPreDefinitions___spec__15(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_55); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_24); +if (lean_obj_tag(x_56) == 0) +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_57 = lean_ctor_get(x_56, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_56, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_56)) { + lean_ctor_release(x_56, 0); + lean_ctor_release(x_56, 1); + x_59 = x_56; } else { - lean_dec_ref(x_54); - x_57 = lean_box(0); + lean_dec_ref(x_56); + x_59 = lean_box(0); } -if (lean_is_scalar(x_57)) { - x_58 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(0, 2, 0); } else { - x_58 = x_57; + x_60 = x_59; } -lean_ctor_set(x_58, 0, x_55); -lean_ctor_set(x_58, 1, x_56); -return x_58; +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_58); +return x_60; } else { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; -x_59 = lean_ctor_get(x_54, 0); -lean_inc(x_59); -x_60 = lean_ctor_get(x_54, 1); -lean_inc(x_60); -if (lean_is_exclusive(x_54)) { - lean_ctor_release(x_54, 0); - lean_ctor_release(x_54, 1); - x_61 = x_54; +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_61 = lean_ctor_get(x_56, 0); +lean_inc(x_61); +x_62 = lean_ctor_get(x_56, 1); +lean_inc(x_62); +if (lean_is_exclusive(x_56)) { + lean_ctor_release(x_56, 0); + lean_ctor_release(x_56, 1); + x_63 = x_56; } else { - lean_dec_ref(x_54); - x_61 = lean_box(0); + lean_dec_ref(x_56); + x_63 = lean_box(0); } -if (lean_is_scalar(x_61)) { - x_62 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_63)) { + x_64 = lean_alloc_ctor(1, 2, 0); } else { - x_62 = x_61; + x_64 = x_63; } -lean_ctor_set(x_62, 0, x_59); -lean_ctor_set(x_62, 1, x_60); -return x_62; +lean_ctor_set(x_64, 0, x_61); +lean_ctor_set(x_64, 1, x_62); +return x_64; } } } else { -lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_63 = lean_ctor_get(x_29, 0); -x_64 = lean_ctor_get(x_29, 1); -x_65 = lean_ctor_get(x_29, 2); -x_66 = lean_ctor_get(x_29, 4); -x_67 = lean_ctor_get(x_29, 5); -x_68 = lean_ctor_get(x_29, 6); -x_69 = lean_ctor_get(x_29, 7); +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; uint64_t x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_65 = lean_ctor_get(x_31, 0); +x_66 = lean_ctor_get(x_31, 1); +x_67 = lean_ctor_get(x_31, 2); +x_68 = lean_ctor_get(x_31, 4); +x_69 = lean_ctor_get(x_31, 5); +x_70 = lean_ctor_get(x_31, 6); +x_71 = lean_ctor_get(x_31, 7); +lean_inc(x_71); +lean_inc(x_70); lean_inc(x_69); lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); -lean_inc(x_64); -lean_inc(x_63); -lean_dec(x_29); -x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); -x_71 = lean_ctor_get(x_30, 0); -lean_inc(x_71); -if (lean_is_exclusive(x_30)) { - lean_ctor_release(x_30, 0); - x_72 = x_30; +lean_dec(x_31); +x_72 = lean_ctor_get_uint64(x_32, sizeof(void*)*1); +x_73 = lean_ctor_get(x_32, 0); +lean_inc(x_73); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + x_74 = x_32; } else { - lean_dec_ref(x_30); - x_72 = lean_box(0); + lean_dec_ref(x_32); + x_74 = lean_box(0); } -x_73 = l_Lean_PersistentArray_append___rarg(x_17, x_71); -lean_dec(x_71); -if (lean_is_scalar(x_72)) { - x_74 = lean_alloc_ctor(0, 1, 8); +x_75 = l_Lean_PersistentArray_append___rarg(x_17, x_73); +lean_dec(x_73); +if (lean_is_scalar(x_74)) { + x_76 = lean_alloc_ctor(0, 1, 8); } else { - x_74 = x_72; + x_76 = x_74; } -lean_ctor_set(x_74, 0, x_73); -lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); -x_75 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_75, 0, x_63); -lean_ctor_set(x_75, 1, x_64); -lean_ctor_set(x_75, 2, x_65); -lean_ctor_set(x_75, 3, x_74); -lean_ctor_set(x_75, 4, x_66); -lean_ctor_set(x_75, 5, x_67); -lean_ctor_set(x_75, 6, x_68); -lean_ctor_set(x_75, 7, x_69); -x_76 = lean_st_ref_set(x_14, x_75, x_31); -x_77 = lean_ctor_get(x_76, 1); -lean_inc(x_77); -lean_dec(x_76); -x_78 = l_MonadExcept_ofExcept___at_Lean_Elab_addPreDefinitions___spec__15(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_77); +lean_ctor_set(x_76, 0, x_75); +lean_ctor_set_uint64(x_76, sizeof(void*)*1, x_72); +x_77 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_77, 0, x_65); +lean_ctor_set(x_77, 1, x_66); +lean_ctor_set(x_77, 2, x_67); +lean_ctor_set(x_77, 3, x_76); +lean_ctor_set(x_77, 4, x_68); +lean_ctor_set(x_77, 5, x_69); +lean_ctor_set(x_77, 6, x_70); +lean_ctor_set(x_77, 7, x_71); +x_78 = lean_st_ref_set(x_14, x_77, x_33); +x_79 = lean_ctor_get(x_78, 1); +lean_inc(x_79); +lean_dec(x_78); +x_80 = l_MonadExcept_ofExcept___at_Lean_Elab_addPreDefinitions___spec__15(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_79); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); @@ -21486,646 +21477,648 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_24); -if (lean_obj_tag(x_78) == 0) +if (lean_obj_tag(x_80) == 0) { -lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_79 = lean_ctor_get(x_78, 0); -lean_inc(x_79); -x_80 = lean_ctor_get(x_78, 1); -lean_inc(x_80); -if (lean_is_exclusive(x_78)) { - lean_ctor_release(x_78, 0); - lean_ctor_release(x_78, 1); - x_81 = x_78; +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_81 = lean_ctor_get(x_80, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_80, 1); +lean_inc(x_82); +if (lean_is_exclusive(x_80)) { + lean_ctor_release(x_80, 0); + lean_ctor_release(x_80, 1); + x_83 = x_80; } else { - lean_dec_ref(x_78); - x_81 = lean_box(0); + lean_dec_ref(x_80); + x_83 = lean_box(0); } -if (lean_is_scalar(x_81)) { - x_82 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_83)) { + x_84 = lean_alloc_ctor(0, 2, 0); } else { - x_82 = x_81; + x_84 = x_83; } -lean_ctor_set(x_82, 0, x_79); -lean_ctor_set(x_82, 1, x_80); -return x_82; +lean_ctor_set(x_84, 0, x_81); +lean_ctor_set(x_84, 1, x_82); +return x_84; } else { -lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; -x_83 = lean_ctor_get(x_78, 0); -lean_inc(x_83); -x_84 = lean_ctor_get(x_78, 1); -lean_inc(x_84); -if (lean_is_exclusive(x_78)) { - lean_ctor_release(x_78, 0); - lean_ctor_release(x_78, 1); - x_85 = x_78; +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_85 = lean_ctor_get(x_80, 0); +lean_inc(x_85); +x_86 = lean_ctor_get(x_80, 1); +lean_inc(x_86); +if (lean_is_exclusive(x_80)) { + lean_ctor_release(x_80, 0); + lean_ctor_release(x_80, 1); + x_87 = x_80; } else { - lean_dec_ref(x_78); - x_85 = lean_box(0); + lean_dec_ref(x_80); + x_87 = lean_box(0); } -if (lean_is_scalar(x_85)) { - x_86 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_87)) { + x_88 = lean_alloc_ctor(1, 2, 0); } else { - x_86 = x_85; + x_88 = x_87; } -lean_ctor_set(x_86, 0, x_83); -lean_ctor_set(x_86, 1, x_84); -return x_86; +lean_ctor_set(x_88, 0, x_85); +lean_ctor_set(x_88, 1, x_86); +return x_88; } } } else { -lean_object* x_87; double x_88; double x_89; lean_object* x_90; -x_87 = lean_box(0); -x_88 = lean_unbox_float(x_25); +lean_object* x_89; double x_90; double x_91; lean_object* x_92; +x_89 = lean_box(0); +x_90 = lean_unbox_float(x_25); lean_dec(x_25); -x_89 = lean_unbox_float(x_26); +x_91 = lean_unbox_float(x_26); lean_dec(x_26); -x_90 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3(x_2, x_3, x_4, x_17, x_24, x_1, x_27, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_13, x_14, x_22); -return x_90; -} -} -else -{ -lean_object* x_91; double x_92; double x_93; lean_object* x_94; -x_91 = lean_box(0); -x_92 = lean_unbox_float(x_25); -lean_dec(x_25); -x_93 = lean_unbox_float(x_26); -lean_dec(x_26); -x_94 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3(x_2, x_3, x_4, x_17, x_24, x_1, x_27, x_92, x_93, x_5, x_91, x_9, x_10, x_11, x_12, x_13, x_14, x_22); -return x_94; +x_92 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3(x_2, x_3, x_4, x_17, x_24, x_28, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_13, x_14, x_22); +return x_92; } } } } else { -lean_object* x_209; lean_object* x_210; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; -x_297 = lean_io_get_num_heartbeats(x_18); -x_298 = lean_ctor_get(x_297, 0); -lean_inc(x_298); -x_299 = lean_ctor_get(x_297, 1); -lean_inc(x_299); -lean_dec(x_297); +lean_object* x_213; lean_object* x_214; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; +x_305 = lean_io_get_num_heartbeats(x_18); +x_306 = lean_ctor_get(x_305, 0); +lean_inc(x_306); +x_307 = lean_ctor_get(x_305, 1); +lean_inc(x_307); +lean_dec(x_305); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_300 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_299); -if (lean_obj_tag(x_300) == 0) +x_308 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_307); +if (lean_obj_tag(x_308) == 0) { -uint8_t x_301; -x_301 = !lean_is_exclusive(x_300); -if (x_301 == 0) +uint8_t x_309; +x_309 = !lean_is_exclusive(x_308); +if (x_309 == 0) { -lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; uint8_t x_306; -x_302 = lean_ctor_get(x_300, 0); -x_303 = lean_ctor_get(x_300, 1); -x_304 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_304, 0, x_302); -x_305 = lean_io_get_num_heartbeats(x_303); -x_306 = !lean_is_exclusive(x_305); -if (x_306 == 0) +lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; uint8_t x_314; +x_310 = lean_ctor_get(x_308, 0); +x_311 = lean_ctor_get(x_308, 1); +x_312 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_312, 0, x_310); +x_313 = lean_io_get_num_heartbeats(x_311); +x_314 = !lean_is_exclusive(x_313); +if (x_314 == 0) { -lean_object* x_307; lean_object* x_308; uint8_t x_309; lean_object* x_310; double x_311; double x_312; lean_object* x_313; lean_object* x_314; -x_307 = lean_ctor_get(x_305, 0); -x_308 = lean_ctor_get(x_305, 1); -x_309 = 0; -x_310 = lean_unsigned_to_nat(0u); -x_311 = l_Float_ofScientific(x_298, x_309, x_310); -lean_dec(x_298); -x_312 = l_Float_ofScientific(x_307, x_309, x_310); -lean_dec(x_307); -x_313 = lean_box_float(x_311); -x_314 = lean_box_float(x_312); -lean_ctor_set(x_305, 1, x_314); -lean_ctor_set(x_305, 0, x_313); -lean_ctor_set(x_300, 1, x_305); -lean_ctor_set(x_300, 0, x_304); -x_209 = x_300; -x_210 = x_308; -goto block_296; -} -else -{ -lean_object* x_315; lean_object* x_316; uint8_t x_317; lean_object* x_318; double x_319; double x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; -x_315 = lean_ctor_get(x_305, 0); -x_316 = lean_ctor_get(x_305, 1); -lean_inc(x_316); -lean_inc(x_315); -lean_dec(x_305); +lean_object* x_315; lean_object* x_316; uint8_t x_317; lean_object* x_318; double x_319; double x_320; lean_object* x_321; lean_object* x_322; +x_315 = lean_ctor_get(x_313, 0); +x_316 = lean_ctor_get(x_313, 1); x_317 = 0; x_318 = lean_unsigned_to_nat(0u); -x_319 = l_Float_ofScientific(x_298, x_317, x_318); -lean_dec(x_298); +x_319 = l_Float_ofScientific(x_306, x_317, x_318); +lean_dec(x_306); x_320 = l_Float_ofScientific(x_315, x_317, x_318); lean_dec(x_315); x_321 = lean_box_float(x_319); x_322 = lean_box_float(x_320); -x_323 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_323, 0, x_321); -lean_ctor_set(x_323, 1, x_322); -lean_ctor_set(x_300, 1, x_323); -lean_ctor_set(x_300, 0, x_304); -x_209 = x_300; -x_210 = x_316; -goto block_296; -} +lean_ctor_set(x_313, 1, x_322); +lean_ctor_set(x_313, 0, x_321); +lean_ctor_set(x_308, 1, x_313); +lean_ctor_set(x_308, 0, x_312); +x_213 = x_308; +x_214 = x_316; +goto block_304; } else { -lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; uint8_t x_331; lean_object* x_332; double x_333; double x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; -x_324 = lean_ctor_get(x_300, 0); -x_325 = lean_ctor_get(x_300, 1); -lean_inc(x_325); +lean_object* x_323; lean_object* x_324; uint8_t x_325; lean_object* x_326; double x_327; double x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; +x_323 = lean_ctor_get(x_313, 0); +x_324 = lean_ctor_get(x_313, 1); lean_inc(x_324); -lean_dec(x_300); -x_326 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_326, 0, x_324); -x_327 = lean_io_get_num_heartbeats(x_325); -x_328 = lean_ctor_get(x_327, 0); -lean_inc(x_328); -x_329 = lean_ctor_get(x_327, 1); -lean_inc(x_329); -if (lean_is_exclusive(x_327)) { - lean_ctor_release(x_327, 0); - lean_ctor_release(x_327, 1); - x_330 = x_327; -} else { - lean_dec_ref(x_327); - x_330 = lean_box(0); -} -x_331 = 0; -x_332 = lean_unsigned_to_nat(0u); -x_333 = l_Float_ofScientific(x_298, x_331, x_332); -lean_dec(x_298); -x_334 = l_Float_ofScientific(x_328, x_331, x_332); -lean_dec(x_328); -x_335 = lean_box_float(x_333); -x_336 = lean_box_float(x_334); -if (lean_is_scalar(x_330)) { - x_337 = lean_alloc_ctor(0, 2, 0); -} else { - x_337 = x_330; -} -lean_ctor_set(x_337, 0, x_335); -lean_ctor_set(x_337, 1, x_336); -x_338 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_338, 0, x_326); -lean_ctor_set(x_338, 1, x_337); -x_209 = x_338; -x_210 = x_329; -goto block_296; +lean_inc(x_323); +lean_dec(x_313); +x_325 = 0; +x_326 = lean_unsigned_to_nat(0u); +x_327 = l_Float_ofScientific(x_306, x_325, x_326); +lean_dec(x_306); +x_328 = l_Float_ofScientific(x_323, x_325, x_326); +lean_dec(x_323); +x_329 = lean_box_float(x_327); +x_330 = lean_box_float(x_328); +x_331 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_331, 0, x_329); +lean_ctor_set(x_331, 1, x_330); +lean_ctor_set(x_308, 1, x_331); +lean_ctor_set(x_308, 0, x_312); +x_213 = x_308; +x_214 = x_324; +goto block_304; } } else { -uint8_t x_339; -x_339 = !lean_is_exclusive(x_300); -if (x_339 == 0) -{ -lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; uint8_t x_344; -x_340 = lean_ctor_get(x_300, 0); -x_341 = lean_ctor_get(x_300, 1); -x_342 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_342, 0, x_340); -x_343 = lean_io_get_num_heartbeats(x_341); -x_344 = !lean_is_exclusive(x_343); -if (x_344 == 0) -{ -lean_object* x_345; lean_object* x_346; uint8_t x_347; lean_object* x_348; double x_349; double x_350; lean_object* x_351; lean_object* x_352; -x_345 = lean_ctor_get(x_343, 0); -x_346 = lean_ctor_get(x_343, 1); -x_347 = 0; -x_348 = lean_unsigned_to_nat(0u); -x_349 = l_Float_ofScientific(x_298, x_347, x_348); -lean_dec(x_298); -x_350 = l_Float_ofScientific(x_345, x_347, x_348); -lean_dec(x_345); -x_351 = lean_box_float(x_349); -x_352 = lean_box_float(x_350); -lean_ctor_set(x_343, 1, x_352); -lean_ctor_set(x_343, 0, x_351); -lean_ctor_set_tag(x_300, 0); -lean_ctor_set(x_300, 1, x_343); -lean_ctor_set(x_300, 0, x_342); -x_209 = x_300; -x_210 = x_346; -goto block_296; +lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; uint8_t x_339; lean_object* x_340; double x_341; double x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; +x_332 = lean_ctor_get(x_308, 0); +x_333 = lean_ctor_get(x_308, 1); +lean_inc(x_333); +lean_inc(x_332); +lean_dec(x_308); +x_334 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_334, 0, x_332); +x_335 = lean_io_get_num_heartbeats(x_333); +x_336 = lean_ctor_get(x_335, 0); +lean_inc(x_336); +x_337 = lean_ctor_get(x_335, 1); +lean_inc(x_337); +if (lean_is_exclusive(x_335)) { + lean_ctor_release(x_335, 0); + lean_ctor_release(x_335, 1); + x_338 = x_335; +} else { + lean_dec_ref(x_335); + x_338 = lean_box(0); +} +x_339 = 0; +x_340 = lean_unsigned_to_nat(0u); +x_341 = l_Float_ofScientific(x_306, x_339, x_340); +lean_dec(x_306); +x_342 = l_Float_ofScientific(x_336, x_339, x_340); +lean_dec(x_336); +x_343 = lean_box_float(x_341); +x_344 = lean_box_float(x_342); +if (lean_is_scalar(x_338)) { + x_345 = lean_alloc_ctor(0, 2, 0); +} else { + x_345 = x_338; +} +lean_ctor_set(x_345, 0, x_343); +lean_ctor_set(x_345, 1, x_344); +x_346 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_346, 0, x_334); +lean_ctor_set(x_346, 1, x_345); +x_213 = x_346; +x_214 = x_337; +goto block_304; +} } else { -lean_object* x_353; lean_object* x_354; uint8_t x_355; lean_object* x_356; double x_357; double x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; -x_353 = lean_ctor_get(x_343, 0); -x_354 = lean_ctor_get(x_343, 1); -lean_inc(x_354); -lean_inc(x_353); -lean_dec(x_343); +uint8_t x_347; +x_347 = !lean_is_exclusive(x_308); +if (x_347 == 0) +{ +lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; uint8_t x_352; +x_348 = lean_ctor_get(x_308, 0); +x_349 = lean_ctor_get(x_308, 1); +x_350 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_350, 0, x_348); +x_351 = lean_io_get_num_heartbeats(x_349); +x_352 = !lean_is_exclusive(x_351); +if (x_352 == 0) +{ +lean_object* x_353; lean_object* x_354; uint8_t x_355; lean_object* x_356; double x_357; double x_358; lean_object* x_359; lean_object* x_360; +x_353 = lean_ctor_get(x_351, 0); +x_354 = lean_ctor_get(x_351, 1); x_355 = 0; x_356 = lean_unsigned_to_nat(0u); -x_357 = l_Float_ofScientific(x_298, x_355, x_356); -lean_dec(x_298); +x_357 = l_Float_ofScientific(x_306, x_355, x_356); +lean_dec(x_306); x_358 = l_Float_ofScientific(x_353, x_355, x_356); lean_dec(x_353); x_359 = lean_box_float(x_357); x_360 = lean_box_float(x_358); -x_361 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_361, 0, x_359); -lean_ctor_set(x_361, 1, x_360); -lean_ctor_set_tag(x_300, 0); -lean_ctor_set(x_300, 1, x_361); -lean_ctor_set(x_300, 0, x_342); -x_209 = x_300; -x_210 = x_354; -goto block_296; -} +lean_ctor_set(x_351, 1, x_360); +lean_ctor_set(x_351, 0, x_359); +lean_ctor_set_tag(x_308, 0); +lean_ctor_set(x_308, 1, x_351); +lean_ctor_set(x_308, 0, x_350); +x_213 = x_308; +x_214 = x_354; +goto block_304; } else { -lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; uint8_t x_369; lean_object* x_370; double x_371; double x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; -x_362 = lean_ctor_get(x_300, 0); -x_363 = lean_ctor_get(x_300, 1); -lean_inc(x_363); +lean_object* x_361; lean_object* x_362; uint8_t x_363; lean_object* x_364; double x_365; double x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; +x_361 = lean_ctor_get(x_351, 0); +x_362 = lean_ctor_get(x_351, 1); lean_inc(x_362); -lean_dec(x_300); -x_364 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_364, 0, x_362); -x_365 = lean_io_get_num_heartbeats(x_363); -x_366 = lean_ctor_get(x_365, 0); -lean_inc(x_366); -x_367 = lean_ctor_get(x_365, 1); -lean_inc(x_367); -if (lean_is_exclusive(x_365)) { - lean_ctor_release(x_365, 0); - lean_ctor_release(x_365, 1); - x_368 = x_365; -} else { - lean_dec_ref(x_365); - x_368 = lean_box(0); +lean_inc(x_361); +lean_dec(x_351); +x_363 = 0; +x_364 = lean_unsigned_to_nat(0u); +x_365 = l_Float_ofScientific(x_306, x_363, x_364); +lean_dec(x_306); +x_366 = l_Float_ofScientific(x_361, x_363, x_364); +lean_dec(x_361); +x_367 = lean_box_float(x_365); +x_368 = lean_box_float(x_366); +x_369 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_369, 0, x_367); +lean_ctor_set(x_369, 1, x_368); +lean_ctor_set_tag(x_308, 0); +lean_ctor_set(x_308, 1, x_369); +lean_ctor_set(x_308, 0, x_350); +x_213 = x_308; +x_214 = x_362; +goto block_304; } -x_369 = 0; -x_370 = lean_unsigned_to_nat(0u); -x_371 = l_Float_ofScientific(x_298, x_369, x_370); -lean_dec(x_298); -x_372 = l_Float_ofScientific(x_366, x_369, x_370); -lean_dec(x_366); -x_373 = lean_box_float(x_371); -x_374 = lean_box_float(x_372); -if (lean_is_scalar(x_368)) { - x_375 = lean_alloc_ctor(0, 2, 0); -} else { - x_375 = x_368; -} -lean_ctor_set(x_375, 0, x_373); -lean_ctor_set(x_375, 1, x_374); -x_376 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_376, 0, x_364); -lean_ctor_set(x_376, 1, x_375); -x_209 = x_376; -x_210 = x_367; -goto block_296; -} -} -block_296: -{ -lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; uint8_t x_215; lean_object* x_284; uint8_t x_285; -x_211 = lean_ctor_get(x_209, 1); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 0); -lean_inc(x_212); -lean_dec(x_209); -x_213 = lean_ctor_get(x_211, 0); -lean_inc(x_213); -x_214 = lean_ctor_get(x_211, 1); -lean_inc(x_214); -lean_dec(x_211); -x_284 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__4___closed__2; -x_285 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_284); -if (x_285 == 0) -{ -uint8_t x_286; -x_286 = 0; -x_215 = x_286; -goto block_283; } else { -double x_287; double x_288; double x_289; lean_object* x_290; lean_object* x_291; uint8_t x_292; lean_object* x_293; double x_294; uint8_t x_295; -x_287 = lean_unbox_float(x_214); -x_288 = lean_unbox_float(x_213); -x_289 = lean_float_sub(x_287, x_288); -x_290 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__4___closed__3; -x_291 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_290); -x_292 = 0; -x_293 = lean_unsigned_to_nat(0u); -x_294 = l_Float_ofScientific(x_291, x_292, x_293); -lean_dec(x_291); -x_295 = lean_float_decLt(x_294, x_289); -x_215 = x_295; -goto block_283; +lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; uint8_t x_377; lean_object* x_378; double x_379; double x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; +x_370 = lean_ctor_get(x_308, 0); +x_371 = lean_ctor_get(x_308, 1); +lean_inc(x_371); +lean_inc(x_370); +lean_dec(x_308); +x_372 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_372, 0, x_370); +x_373 = lean_io_get_num_heartbeats(x_371); +x_374 = lean_ctor_get(x_373, 0); +lean_inc(x_374); +x_375 = lean_ctor_get(x_373, 1); +lean_inc(x_375); +if (lean_is_exclusive(x_373)) { + lean_ctor_release(x_373, 0); + lean_ctor_release(x_373, 1); + x_376 = x_373; +} else { + lean_dec_ref(x_373); + x_376 = lean_box(0); } -block_283: +x_377 = 0; +x_378 = lean_unsigned_to_nat(0u); +x_379 = l_Float_ofScientific(x_306, x_377, x_378); +lean_dec(x_306); +x_380 = l_Float_ofScientific(x_374, x_377, x_378); +lean_dec(x_374); +x_381 = lean_box_float(x_379); +x_382 = lean_box_float(x_380); +if (lean_is_scalar(x_376)) { + x_383 = lean_alloc_ctor(0, 2, 0); +} else { + x_383 = x_376; +} +lean_ctor_set(x_383, 0, x_381); +lean_ctor_set(x_383, 1, x_382); +x_384 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_384, 0, x_372); +lean_ctor_set(x_384, 1, x_383); +x_213 = x_384; +x_214 = x_375; +goto block_304; +} +} +block_304: +{ +lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; uint8_t x_220; uint8_t x_221; +x_215 = lean_ctor_get(x_213, 1); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 0); +lean_inc(x_216); +lean_dec(x_213); +x_217 = lean_ctor_get(x_215, 0); +lean_inc(x_217); +x_218 = lean_ctor_get(x_215, 1); +lean_inc(x_218); +lean_dec(x_215); +x_219 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__4___closed__2; +x_220 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_219); +if (x_220 == 0) { if (x_6 == 0) { -if (x_215 == 0) +uint8_t x_286; +x_286 = 0; +x_221 = x_286; +goto block_285; +} +else { -lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; uint8_t x_220; -lean_dec(x_214); -lean_dec(x_213); +lean_object* x_287; double x_288; double x_289; lean_object* x_290; +x_287 = lean_box(0); +x_288 = lean_unbox_float(x_217); +lean_dec(x_217); +x_289 = lean_unbox_float(x_218); +lean_dec(x_218); +x_290 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3(x_2, x_3, x_4, x_17, x_216, x_220, x_288, x_289, x_5, x_287, x_9, x_10, x_11, x_12, x_13, x_14, x_214); +return x_290; +} +} +else +{ +if (x_6 == 0) +{ +double x_291; double x_292; double x_293; lean_object* x_294; lean_object* x_295; uint8_t x_296; lean_object* x_297; double x_298; uint8_t x_299; +x_291 = lean_unbox_float(x_218); +x_292 = lean_unbox_float(x_217); +x_293 = lean_float_sub(x_291, x_292); +x_294 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__4___closed__3; +x_295 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_294); +x_296 = 0; +x_297 = lean_unsigned_to_nat(0u); +x_298 = l_Float_ofScientific(x_295, x_296, x_297); +lean_dec(x_295); +x_299 = lean_float_decLt(x_298, x_293); +x_221 = x_299; +goto block_285; +} +else +{ +lean_object* x_300; double x_301; double x_302; lean_object* x_303; +x_300 = lean_box(0); +x_301 = lean_unbox_float(x_217); +lean_dec(x_217); +x_302 = lean_unbox_float(x_218); +lean_dec(x_218); +x_303 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3(x_2, x_3, x_4, x_17, x_216, x_220, x_301, x_302, x_5, x_300, x_9, x_10, x_11, x_12, x_13, x_14, x_214); +return x_303; +} +} +block_285: +{ +if (x_221 == 0) +{ +lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; uint8_t x_226; +lean_dec(x_218); +lean_dec(x_217); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_216 = lean_st_ref_take(x_14, x_210); -x_217 = lean_ctor_get(x_216, 0); -lean_inc(x_217); -x_218 = lean_ctor_get(x_217, 3); -lean_inc(x_218); -x_219 = lean_ctor_get(x_216, 1); -lean_inc(x_219); -lean_dec(x_216); -x_220 = !lean_is_exclusive(x_217); -if (x_220 == 0) +x_222 = lean_st_ref_take(x_14, x_214); +x_223 = lean_ctor_get(x_222, 0); +lean_inc(x_223); +x_224 = lean_ctor_get(x_223, 3); +lean_inc(x_224); +x_225 = lean_ctor_get(x_222, 1); +lean_inc(x_225); +lean_dec(x_222); +x_226 = !lean_is_exclusive(x_223); +if (x_226 == 0) { -lean_object* x_221; uint8_t x_222; -x_221 = lean_ctor_get(x_217, 3); -lean_dec(x_221); -x_222 = !lean_is_exclusive(x_218); -if (x_222 == 0) -{ -lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; -x_223 = lean_ctor_get(x_218, 0); -x_224 = l_Lean_PersistentArray_append___rarg(x_17, x_223); -lean_dec(x_223); -lean_ctor_set(x_218, 0, x_224); -x_225 = lean_st_ref_set(x_14, x_217, x_219); -x_226 = lean_ctor_get(x_225, 1); -lean_inc(x_226); -lean_dec(x_225); -x_227 = l_MonadExcept_ofExcept___at_Lean_Elab_addPreDefinitions___spec__15(x_212, x_9, x_10, x_11, x_12, x_13, x_14, x_226); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_212); -if (lean_obj_tag(x_227) == 0) -{ -uint8_t x_228; -x_228 = !lean_is_exclusive(x_227); +lean_object* x_227; uint8_t x_228; +x_227 = lean_ctor_get(x_223, 3); +lean_dec(x_227); +x_228 = !lean_is_exclusive(x_224); if (x_228 == 0) { -return x_227; -} -else -{ -lean_object* x_229; lean_object* x_230; lean_object* x_231; -x_229 = lean_ctor_get(x_227, 0); -x_230 = lean_ctor_get(x_227, 1); -lean_inc(x_230); -lean_inc(x_229); -lean_dec(x_227); -x_231 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_231, 0, x_229); -lean_ctor_set(x_231, 1, x_230); -return x_231; -} -} -else -{ -uint8_t x_232; -x_232 = !lean_is_exclusive(x_227); -if (x_232 == 0) -{ -return x_227; -} -else -{ -lean_object* x_233; lean_object* x_234; lean_object* x_235; -x_233 = lean_ctor_get(x_227, 0); -x_234 = lean_ctor_get(x_227, 1); -lean_inc(x_234); -lean_inc(x_233); -lean_dec(x_227); -x_235 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_235, 0, x_233); -lean_ctor_set(x_235, 1, x_234); -return x_235; -} -} -} -else -{ -uint64_t x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; -x_236 = lean_ctor_get_uint64(x_218, sizeof(void*)*1); -x_237 = lean_ctor_get(x_218, 0); -lean_inc(x_237); -lean_dec(x_218); -x_238 = l_Lean_PersistentArray_append___rarg(x_17, x_237); -lean_dec(x_237); -x_239 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_239, 0, x_238); -lean_ctor_set_uint64(x_239, sizeof(void*)*1, x_236); -lean_ctor_set(x_217, 3, x_239); -x_240 = lean_st_ref_set(x_14, x_217, x_219); -x_241 = lean_ctor_get(x_240, 1); -lean_inc(x_241); -lean_dec(x_240); -x_242 = l_MonadExcept_ofExcept___at_Lean_Elab_addPreDefinitions___spec__15(x_212, x_9, x_10, x_11, x_12, x_13, x_14, x_241); +lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; +x_229 = lean_ctor_get(x_224, 0); +x_230 = l_Lean_PersistentArray_append___rarg(x_17, x_229); +lean_dec(x_229); +lean_ctor_set(x_224, 0, x_230); +x_231 = lean_st_ref_set(x_14, x_223, x_225); +x_232 = lean_ctor_get(x_231, 1); +lean_inc(x_232); +lean_dec(x_231); +x_233 = l_MonadExcept_ofExcept___at_Lean_Elab_addPreDefinitions___spec__15(x_216, x_9, x_10, x_11, x_12, x_13, x_14, x_232); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_212); -if (lean_obj_tag(x_242) == 0) +lean_dec(x_216); +if (lean_obj_tag(x_233) == 0) { -lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; -x_243 = lean_ctor_get(x_242, 0); +uint8_t x_234; +x_234 = !lean_is_exclusive(x_233); +if (x_234 == 0) +{ +return x_233; +} +else +{ +lean_object* x_235; lean_object* x_236; lean_object* x_237; +x_235 = lean_ctor_get(x_233, 0); +x_236 = lean_ctor_get(x_233, 1); +lean_inc(x_236); +lean_inc(x_235); +lean_dec(x_233); +x_237 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_237, 0, x_235); +lean_ctor_set(x_237, 1, x_236); +return x_237; +} +} +else +{ +uint8_t x_238; +x_238 = !lean_is_exclusive(x_233); +if (x_238 == 0) +{ +return x_233; +} +else +{ +lean_object* x_239; lean_object* x_240; lean_object* x_241; +x_239 = lean_ctor_get(x_233, 0); +x_240 = lean_ctor_get(x_233, 1); +lean_inc(x_240); +lean_inc(x_239); +lean_dec(x_233); +x_241 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_241, 0, x_239); +lean_ctor_set(x_241, 1, x_240); +return x_241; +} +} +} +else +{ +uint64_t x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; +x_242 = lean_ctor_get_uint64(x_224, sizeof(void*)*1); +x_243 = lean_ctor_get(x_224, 0); lean_inc(x_243); -x_244 = lean_ctor_get(x_242, 1); -lean_inc(x_244); -if (lean_is_exclusive(x_242)) { - lean_ctor_release(x_242, 0); - lean_ctor_release(x_242, 1); - x_245 = x_242; -} else { - lean_dec_ref(x_242); - x_245 = lean_box(0); -} -if (lean_is_scalar(x_245)) { - x_246 = lean_alloc_ctor(0, 2, 0); -} else { - x_246 = x_245; -} -lean_ctor_set(x_246, 0, x_243); -lean_ctor_set(x_246, 1, x_244); -return x_246; -} -else -{ -lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; -x_247 = lean_ctor_get(x_242, 0); +lean_dec(x_224); +x_244 = l_Lean_PersistentArray_append___rarg(x_17, x_243); +lean_dec(x_243); +x_245 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_245, 0, x_244); +lean_ctor_set_uint64(x_245, sizeof(void*)*1, x_242); +lean_ctor_set(x_223, 3, x_245); +x_246 = lean_st_ref_set(x_14, x_223, x_225); +x_247 = lean_ctor_get(x_246, 1); lean_inc(x_247); -x_248 = lean_ctor_get(x_242, 1); -lean_inc(x_248); -if (lean_is_exclusive(x_242)) { - lean_ctor_release(x_242, 0); - lean_ctor_release(x_242, 1); - x_249 = x_242; -} else { - lean_dec_ref(x_242); - x_249 = lean_box(0); -} -if (lean_is_scalar(x_249)) { - x_250 = lean_alloc_ctor(1, 2, 0); -} else { - x_250 = x_249; -} -lean_ctor_set(x_250, 0, x_247); -lean_ctor_set(x_250, 1, x_248); -return x_250; -} -} -} -else -{ -lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; uint64_t x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; -x_251 = lean_ctor_get(x_217, 0); -x_252 = lean_ctor_get(x_217, 1); -x_253 = lean_ctor_get(x_217, 2); -x_254 = lean_ctor_get(x_217, 4); -x_255 = lean_ctor_get(x_217, 5); -x_256 = lean_ctor_get(x_217, 6); -x_257 = lean_ctor_get(x_217, 7); -lean_inc(x_257); -lean_inc(x_256); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_dec(x_217); -x_258 = lean_ctor_get_uint64(x_218, sizeof(void*)*1); -x_259 = lean_ctor_get(x_218, 0); -lean_inc(x_259); -if (lean_is_exclusive(x_218)) { - lean_ctor_release(x_218, 0); - x_260 = x_218; -} else { - lean_dec_ref(x_218); - x_260 = lean_box(0); -} -x_261 = l_Lean_PersistentArray_append___rarg(x_17, x_259); -lean_dec(x_259); -if (lean_is_scalar(x_260)) { - x_262 = lean_alloc_ctor(0, 1, 8); -} else { - x_262 = x_260; -} -lean_ctor_set(x_262, 0, x_261); -lean_ctor_set_uint64(x_262, sizeof(void*)*1, x_258); -x_263 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_263, 0, x_251); -lean_ctor_set(x_263, 1, x_252); -lean_ctor_set(x_263, 2, x_253); -lean_ctor_set(x_263, 3, x_262); -lean_ctor_set(x_263, 4, x_254); -lean_ctor_set(x_263, 5, x_255); -lean_ctor_set(x_263, 6, x_256); -lean_ctor_set(x_263, 7, x_257); -x_264 = lean_st_ref_set(x_14, x_263, x_219); -x_265 = lean_ctor_get(x_264, 1); -lean_inc(x_265); -lean_dec(x_264); -x_266 = l_MonadExcept_ofExcept___at_Lean_Elab_addPreDefinitions___spec__15(x_212, x_9, x_10, x_11, x_12, x_13, x_14, x_265); +lean_dec(x_246); +x_248 = l_MonadExcept_ofExcept___at_Lean_Elab_addPreDefinitions___spec__15(x_216, x_9, x_10, x_11, x_12, x_13, x_14, x_247); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_212); -if (lean_obj_tag(x_266) == 0) +lean_dec(x_216); +if (lean_obj_tag(x_248) == 0) { -lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; -x_267 = lean_ctor_get(x_266, 0); -lean_inc(x_267); -x_268 = lean_ctor_get(x_266, 1); -lean_inc(x_268); -if (lean_is_exclusive(x_266)) { - lean_ctor_release(x_266, 0); - lean_ctor_release(x_266, 1); - x_269 = x_266; +lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; +x_249 = lean_ctor_get(x_248, 0); +lean_inc(x_249); +x_250 = lean_ctor_get(x_248, 1); +lean_inc(x_250); +if (lean_is_exclusive(x_248)) { + lean_ctor_release(x_248, 0); + lean_ctor_release(x_248, 1); + x_251 = x_248; } else { - lean_dec_ref(x_266); - x_269 = lean_box(0); + lean_dec_ref(x_248); + x_251 = lean_box(0); } -if (lean_is_scalar(x_269)) { - x_270 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_251)) { + x_252 = lean_alloc_ctor(0, 2, 0); } else { - x_270 = x_269; + x_252 = x_251; } -lean_ctor_set(x_270, 0, x_267); -lean_ctor_set(x_270, 1, x_268); -return x_270; +lean_ctor_set(x_252, 0, x_249); +lean_ctor_set(x_252, 1, x_250); +return x_252; } else { -lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; -x_271 = lean_ctor_get(x_266, 0); +lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; +x_253 = lean_ctor_get(x_248, 0); +lean_inc(x_253); +x_254 = lean_ctor_get(x_248, 1); +lean_inc(x_254); +if (lean_is_exclusive(x_248)) { + lean_ctor_release(x_248, 0); + lean_ctor_release(x_248, 1); + x_255 = x_248; +} else { + lean_dec_ref(x_248); + x_255 = lean_box(0); +} +if (lean_is_scalar(x_255)) { + x_256 = lean_alloc_ctor(1, 2, 0); +} else { + x_256 = x_255; +} +lean_ctor_set(x_256, 0, x_253); +lean_ctor_set(x_256, 1, x_254); +return x_256; +} +} +} +else +{ +lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; uint64_t x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; +x_257 = lean_ctor_get(x_223, 0); +x_258 = lean_ctor_get(x_223, 1); +x_259 = lean_ctor_get(x_223, 2); +x_260 = lean_ctor_get(x_223, 4); +x_261 = lean_ctor_get(x_223, 5); +x_262 = lean_ctor_get(x_223, 6); +x_263 = lean_ctor_get(x_223, 7); +lean_inc(x_263); +lean_inc(x_262); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_dec(x_223); +x_264 = lean_ctor_get_uint64(x_224, sizeof(void*)*1); +x_265 = lean_ctor_get(x_224, 0); +lean_inc(x_265); +if (lean_is_exclusive(x_224)) { + lean_ctor_release(x_224, 0); + x_266 = x_224; +} else { + lean_dec_ref(x_224); + x_266 = lean_box(0); +} +x_267 = l_Lean_PersistentArray_append___rarg(x_17, x_265); +lean_dec(x_265); +if (lean_is_scalar(x_266)) { + x_268 = lean_alloc_ctor(0, 1, 8); +} else { + x_268 = x_266; +} +lean_ctor_set(x_268, 0, x_267); +lean_ctor_set_uint64(x_268, sizeof(void*)*1, x_264); +x_269 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_269, 0, x_257); +lean_ctor_set(x_269, 1, x_258); +lean_ctor_set(x_269, 2, x_259); +lean_ctor_set(x_269, 3, x_268); +lean_ctor_set(x_269, 4, x_260); +lean_ctor_set(x_269, 5, x_261); +lean_ctor_set(x_269, 6, x_262); +lean_ctor_set(x_269, 7, x_263); +x_270 = lean_st_ref_set(x_14, x_269, x_225); +x_271 = lean_ctor_get(x_270, 1); lean_inc(x_271); -x_272 = lean_ctor_get(x_266, 1); -lean_inc(x_272); -if (lean_is_exclusive(x_266)) { - lean_ctor_release(x_266, 0); - lean_ctor_release(x_266, 1); - x_273 = x_266; +lean_dec(x_270); +x_272 = l_MonadExcept_ofExcept___at_Lean_Elab_addPreDefinitions___spec__15(x_216, x_9, x_10, x_11, x_12, x_13, x_14, x_271); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_216); +if (lean_obj_tag(x_272) == 0) +{ +lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; +x_273 = lean_ctor_get(x_272, 0); +lean_inc(x_273); +x_274 = lean_ctor_get(x_272, 1); +lean_inc(x_274); +if (lean_is_exclusive(x_272)) { + lean_ctor_release(x_272, 0); + lean_ctor_release(x_272, 1); + x_275 = x_272; } else { - lean_dec_ref(x_266); - x_273 = lean_box(0); + lean_dec_ref(x_272); + x_275 = lean_box(0); } -if (lean_is_scalar(x_273)) { - x_274 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_275)) { + x_276 = lean_alloc_ctor(0, 2, 0); } else { - x_274 = x_273; + x_276 = x_275; } -lean_ctor_set(x_274, 0, x_271); -lean_ctor_set(x_274, 1, x_272); -return x_274; +lean_ctor_set(x_276, 0, x_273); +lean_ctor_set(x_276, 1, x_274); +return x_276; +} +else +{ +lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; +x_277 = lean_ctor_get(x_272, 0); +lean_inc(x_277); +x_278 = lean_ctor_get(x_272, 1); +lean_inc(x_278); +if (lean_is_exclusive(x_272)) { + lean_ctor_release(x_272, 0); + lean_ctor_release(x_272, 1); + x_279 = x_272; +} else { + lean_dec_ref(x_272); + x_279 = lean_box(0); +} +if (lean_is_scalar(x_279)) { + x_280 = lean_alloc_ctor(1, 2, 0); +} else { + x_280 = x_279; +} +lean_ctor_set(x_280, 0, x_277); +lean_ctor_set(x_280, 1, x_278); +return x_280; } } } else { -lean_object* x_275; double x_276; double x_277; lean_object* x_278; -x_275 = lean_box(0); -x_276 = lean_unbox_float(x_213); -lean_dec(x_213); -x_277 = lean_unbox_float(x_214); -lean_dec(x_214); -x_278 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3(x_2, x_3, x_4, x_17, x_212, x_1, x_215, x_276, x_277, x_5, x_275, x_9, x_10, x_11, x_12, x_13, x_14, x_210); -return x_278; -} -} -else -{ -lean_object* x_279; double x_280; double x_281; lean_object* x_282; -x_279 = lean_box(0); -x_280 = lean_unbox_float(x_213); -lean_dec(x_213); -x_281 = lean_unbox_float(x_214); -lean_dec(x_214); -x_282 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3(x_2, x_3, x_4, x_17, x_212, x_1, x_215, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_13, x_14, x_210); -return x_282; +lean_object* x_281; double x_282; double x_283; lean_object* x_284; +x_281 = lean_box(0); +x_282 = lean_unbox_float(x_217); +lean_dec(x_217); +x_283 = lean_unbox_float(x_218); +lean_dec(x_218); +x_284 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3(x_2, x_3, x_4, x_17, x_216, x_220, x_282, x_283, x_5, x_281, x_9, x_10, x_11, x_12, x_13, x_14, x_214); +return x_284; } } } @@ -22895,27 +22888,25 @@ lean_object* x_14 = _args[13]; lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; _start: { -uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; -x_19 = lean_unbox(x_2); +uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; +x_18 = lean_unbox(x_2); lean_dec(x_2); -x_20 = lean_unbox(x_8); +x_19 = lean_unbox(x_7); +lean_dec(x_7); +x_20 = lean_unbox_float(x_8); lean_dec(x_8); x_21 = lean_unbox_float(x_9); lean_dec(x_9); -x_22 = lean_unbox_float(x_10); -lean_dec(x_10); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__2(x_1, x_19, x_3, x_4, x_5, x_6, x_7, x_20, x_21, x_22, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -lean_dec(x_17); -lean_dec(x_15); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__2(x_1, x_18, x_3, x_4, x_5, x_6, x_19, x_20, x_21, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +lean_dec(x_16); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_23; +return x_22; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3___boxed(lean_object** _args) { @@ -22936,22 +22927,20 @@ lean_object* x_14 = _args[13]; lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; _start: { -uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; -x_19 = lean_unbox(x_2); +uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; +x_18 = lean_unbox(x_2); lean_dec(x_2); -x_20 = lean_unbox(x_7); +x_19 = lean_unbox(x_6); +lean_dec(x_6); +x_20 = lean_unbox_float(x_7); lean_dec(x_7); x_21 = lean_unbox_float(x_8); lean_dec(x_8); -x_22 = lean_unbox_float(x_9); -lean_dec(x_9); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3(x_1, x_19, x_3, x_4, x_5, x_6, x_20, x_21, x_22, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -lean_dec(x_11); -lean_dec(x_6); -return x_23; +x_22 = l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3(x_1, x_18, x_3, x_4, x_5, x_19, x_20, x_21, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +lean_dec(x_10); +return x_22; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { @@ -23450,8 +23439,6 @@ l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_addPreDefinitions___spec__13___close lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_addPreDefinitions___spec__13___closed__1); l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_addPreDefinitions___spec__13___closed__2 = _init_l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_addPreDefinitions___spec__13___closed__2(); lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_addPreDefinitions___spec__13___closed__2); -l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__2___closed__1(); -lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__2___closed__1); l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3___closed__1); l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Elab_addPreDefinitions___spec__14___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/PreDefinition/Structural/IndPred.c b/stage0/stdlib/Lean/Elab/PreDefinition/Structural/IndPred.c index 046340ab61..8a92378a37 100644 --- a/stage0/stdlib/Lean/Elab/PreDefinition/Structural/IndPred.c +++ b/stage0/stdlib/Lean/Elab/PreDefinition/Structural/IndPred.c @@ -22,13 +22,12 @@ LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_PreDefi LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApps_loop_addBelow___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__16___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__10___rarg___closed__2; -extern lean_object* l_Lean_profiler; static lean_object* l_Lean_Elab_Structural_mkIndPredBRecOn___lambda__8___closed__1; lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_Lean_mkAppN(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Structural_mkIndPredBRecOn___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__2___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(lean_object*, lean_object*); static lean_object* l_List_forIn_x27_loop___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApps_loop_addBelow___spec__6___closed__2; LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApps_loop_addBelow___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -107,12 +106,11 @@ uint8_t l_Lean_Expr_hasMVar(lean_object*); LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApps_loop_addBelow___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at_Lean_Elab_Structural_mkIndPredBRecOn___spec__2___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Structural_mkIndPredBRecOn___lambda__9___closed__5; LEAN_EXPORT lean_object* l_Lean_Elab_Structural_mkIndPredBRecOn___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2___closed__4; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_lambdaTelescopeImp___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Structural_mkIndPredBRecOn___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___lambda__1___closed__1; @@ -159,7 +157,7 @@ LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Elab_PreDefi lean_object* lean_st_ref_get(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Structural_mkIndPredBRecOn___lambda__9___closed__6; static lean_object* l_Lean_addTrace___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__3___closed__3; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at_Lean_Elab_Structural_mkIndPredBRecOn___spec__2(lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_to_list(lean_object*); @@ -244,7 +242,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Structural_mkIndPredBRecOn___lambda__5(lean uint8_t lean_nat_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Structural_mkIndPredBRecOn(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__16___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_brecOnSuffix; LEAN_EXPORT lean_object* l___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApps_loop___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -272,7 +270,7 @@ LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___private_Lean_Elab_Pre LEAN_EXPORT lean_object* l___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApps_loop___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApps_loop_addBelow___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApps_loop___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn(lean_object*); @@ -2697,86 +2695,54 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2___closed__4() { +LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, uint8_t x_9, double x_10, double x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { -_start: -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; double x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; -x_19 = l_Lean_exceptBoolEmoji___rarg(x_1); -x_20 = l_Lean_stringToMessageData(x_19); -lean_dec(x_19); -x_21 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2___closed__1; -x_22 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_20); -x_23 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2___closed__3; +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_18 = l_Lean_exceptBoolEmoji___rarg(x_1); +x_19 = l_Lean_stringToMessageData(x_18); +lean_dec(x_18); +x_20 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2___closed__1; +x_21 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_19); +x_22 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2___closed__3; +x_23 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_23, 0, x_21); +lean_ctor_set(x_23, 1, x_22); x_24 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_24, 0, x_22); -lean_ctor_set(x_24, 1, x_23); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_2); x_25 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_25, 0, x_24); -lean_ctor_set(x_25, 1, x_2); -x_26 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_26, 1, x_21); -x_27 = l_Lean_addTrace___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__3___closed__1; -lean_inc(x_5); -lean_inc(x_3); -x_28 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_28, 0, x_3); -lean_ctor_set(x_28, 1, x_5); -lean_ctor_set_float(x_28, sizeof(void*)*2, x_27); -lean_ctor_set_float(x_28, sizeof(void*)*2 + 8, x_27); -lean_ctor_set_uint8(x_28, sizeof(void*)*2 + 16, x_4); -x_29 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2___closed__4; -x_30 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_8, x_29); -if (x_30 == 0) +lean_ctor_set(x_25, 1, x_20); +if (x_8 == 0) { -if (x_9 == 0) +double x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_26 = l_Lean_addTrace___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__3___closed__1; +x_27 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_27, 0, x_3); +lean_ctor_set(x_27, 1, x_5); +lean_ctor_set_float(x_27, sizeof(void*)*2, x_26); +lean_ctor_set_float(x_27, sizeof(void*)*2 + 8, x_26); +lean_ctor_set_uint8(x_27, sizeof(void*)*2 + 16, x_4); +x_28 = lean_box(0); +x_29 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__1(x_6, x_7, x_25, x_1, x_27, x_28, x_12, x_13, x_14, x_15, x_16, x_17); +return x_29; +} +else { -lean_object* x_31; lean_object* x_32; -lean_dec(x_5); -lean_dec(x_3); +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_30, 0, x_3); +lean_ctor_set(x_30, 1, x_5); +lean_ctor_set_float(x_30, sizeof(void*)*2, x_9); +lean_ctor_set_float(x_30, sizeof(void*)*2 + 8, x_10); +lean_ctor_set_uint8(x_30, sizeof(void*)*2 + 16, x_4); x_31 = lean_box(0); -x_32 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__1(x_6, x_7, x_26, x_1, x_28, x_31, x_13, x_14, x_15, x_16, x_17, x_18); +x_32 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__1(x_6, x_7, x_25, x_1, x_30, x_31, x_12, x_13, x_14, x_15, x_16, x_17); return x_32; } -else -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; -lean_dec(x_28); -x_33 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_33, 0, x_3); -lean_ctor_set(x_33, 1, x_5); -lean_ctor_set_float(x_33, sizeof(void*)*2, x_10); -lean_ctor_set_float(x_33, sizeof(void*)*2 + 8, x_11); -lean_ctor_set_uint8(x_33, sizeof(void*)*2 + 16, x_4); -x_34 = lean_box(0); -x_35 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__1(x_6, x_7, x_26, x_1, x_33, x_34, x_13, x_14, x_15, x_16, x_17, x_18); -return x_35; -} -} -else -{ -lean_object* x_36; lean_object* x_37; lean_object* x_38; -lean_dec(x_28); -x_36 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_36, 0, x_3); -lean_ctor_set(x_36, 1, x_5); -lean_ctor_set_float(x_36, sizeof(void*)*2, x_10); -lean_ctor_set_float(x_36, sizeof(void*)*2 + 8, x_11); -lean_ctor_set_uint8(x_36, sizeof(void*)*2 + 16, x_4); -x_37 = lean_box(0); -x_38 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__1(x_6, x_7, x_26, x_1, x_36, x_37, x_13, x_14, x_15, x_16, x_17, x_18); -return x_38; -} } } static lean_object* _init_l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__1() { @@ -2902,254 +2868,254 @@ x_40 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structu x_41 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_2, x_40); if (x_41 == 0) { -lean_object* x_42; lean_object* x_43; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_138 = lean_io_mono_nanos_now(x_39); -x_139 = lean_ctor_get(x_138, 0); -lean_inc(x_139); -x_140 = lean_ctor_get(x_138, 1); -lean_inc(x_140); -lean_dec(x_138); +lean_object* x_42; lean_object* x_43; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; +x_146 = lean_io_mono_nanos_now(x_39); +x_147 = lean_ctor_get(x_146, 0); +lean_inc(x_147); +x_148 = lean_ctor_get(x_146, 1); +lean_inc(x_148); +lean_dec(x_146); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_141 = lean_apply_6(x_7, x_9, x_10, x_11, x_12, x_13, x_140); -if (lean_obj_tag(x_141) == 0) +x_149 = lean_apply_6(x_7, x_9, x_10, x_11, x_12, x_13, x_148); +if (lean_obj_tag(x_149) == 0) { -uint8_t x_142; -x_142 = !lean_is_exclusive(x_141); -if (x_142 == 0) +uint8_t x_150; +x_150 = !lean_is_exclusive(x_149); +if (x_150 == 0) { -lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; uint8_t x_147; -x_143 = lean_ctor_get(x_141, 0); -x_144 = lean_ctor_get(x_141, 1); -x_145 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_145, 0, x_143); -x_146 = lean_io_mono_nanos_now(x_144); -x_147 = !lean_is_exclusive(x_146); -if (x_147 == 0) +lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; uint8_t x_155; +x_151 = lean_ctor_get(x_149, 0); +x_152 = lean_ctor_get(x_149, 1); +x_153 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_153, 0, x_151); +x_154 = lean_io_mono_nanos_now(x_152); +x_155 = !lean_is_exclusive(x_154); +if (x_155 == 0) { -lean_object* x_148; lean_object* x_149; uint8_t x_150; lean_object* x_151; double x_152; double x_153; double x_154; double x_155; double x_156; lean_object* x_157; lean_object* x_158; -x_148 = lean_ctor_get(x_146, 0); -x_149 = lean_ctor_get(x_146, 1); -x_150 = 0; -x_151 = lean_unsigned_to_nat(0u); -x_152 = l_Float_ofScientific(x_139, x_150, x_151); -lean_dec(x_139); -x_153 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; -x_154 = lean_float_div(x_152, x_153); -x_155 = l_Float_ofScientific(x_148, x_150, x_151); -lean_dec(x_148); -x_156 = lean_float_div(x_155, x_153); -x_157 = lean_box_float(x_154); -x_158 = lean_box_float(x_156); -lean_ctor_set(x_146, 1, x_158); -lean_ctor_set(x_146, 0, x_157); -lean_ctor_set(x_141, 1, x_146); -lean_ctor_set(x_141, 0, x_145); -x_42 = x_141; -x_43 = x_149; -goto block_137; +lean_object* x_156; lean_object* x_157; uint8_t x_158; lean_object* x_159; double x_160; double x_161; double x_162; double x_163; double x_164; lean_object* x_165; lean_object* x_166; +x_156 = lean_ctor_get(x_154, 0); +x_157 = lean_ctor_get(x_154, 1); +x_158 = 0; +x_159 = lean_unsigned_to_nat(0u); +x_160 = l_Float_ofScientific(x_147, x_158, x_159); +lean_dec(x_147); +x_161 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; +x_162 = lean_float_div(x_160, x_161); +x_163 = l_Float_ofScientific(x_156, x_158, x_159); +lean_dec(x_156); +x_164 = lean_float_div(x_163, x_161); +x_165 = lean_box_float(x_162); +x_166 = lean_box_float(x_164); +lean_ctor_set(x_154, 1, x_166); +lean_ctor_set(x_154, 0, x_165); +lean_ctor_set(x_149, 1, x_154); +lean_ctor_set(x_149, 0, x_153); +x_42 = x_149; +x_43 = x_157; +goto block_145; } else { -lean_object* x_159; lean_object* x_160; uint8_t x_161; lean_object* x_162; double x_163; double x_164; double x_165; double x_166; double x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; -x_159 = lean_ctor_get(x_146, 0); -x_160 = lean_ctor_get(x_146, 1); -lean_inc(x_160); -lean_inc(x_159); -lean_dec(x_146); -x_161 = 0; -x_162 = lean_unsigned_to_nat(0u); -x_163 = l_Float_ofScientific(x_139, x_161, x_162); -lean_dec(x_139); -x_164 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; -x_165 = lean_float_div(x_163, x_164); -x_166 = l_Float_ofScientific(x_159, x_161, x_162); -lean_dec(x_159); -x_167 = lean_float_div(x_166, x_164); -x_168 = lean_box_float(x_165); -x_169 = lean_box_float(x_167); -x_170 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_170, 0, x_168); -lean_ctor_set(x_170, 1, x_169); -lean_ctor_set(x_141, 1, x_170); -lean_ctor_set(x_141, 0, x_145); -x_42 = x_141; -x_43 = x_160; -goto block_137; +lean_object* x_167; lean_object* x_168; uint8_t x_169; lean_object* x_170; double x_171; double x_172; double x_173; double x_174; double x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; +x_167 = lean_ctor_get(x_154, 0); +x_168 = lean_ctor_get(x_154, 1); +lean_inc(x_168); +lean_inc(x_167); +lean_dec(x_154); +x_169 = 0; +x_170 = lean_unsigned_to_nat(0u); +x_171 = l_Float_ofScientific(x_147, x_169, x_170); +lean_dec(x_147); +x_172 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; +x_173 = lean_float_div(x_171, x_172); +x_174 = l_Float_ofScientific(x_167, x_169, x_170); +lean_dec(x_167); +x_175 = lean_float_div(x_174, x_172); +x_176 = lean_box_float(x_173); +x_177 = lean_box_float(x_175); +x_178 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_178, 0, x_176); +lean_ctor_set(x_178, 1, x_177); +lean_ctor_set(x_149, 1, x_178); +lean_ctor_set(x_149, 0, x_153); +x_42 = x_149; +x_43 = x_168; +goto block_145; } } else { -lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; uint8_t x_178; lean_object* x_179; double x_180; double x_181; double x_182; double x_183; double x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_171 = lean_ctor_get(x_141, 0); -x_172 = lean_ctor_get(x_141, 1); -lean_inc(x_172); -lean_inc(x_171); -lean_dec(x_141); -x_173 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_173, 0, x_171); -x_174 = lean_io_mono_nanos_now(x_172); -x_175 = lean_ctor_get(x_174, 0); -lean_inc(x_175); -x_176 = lean_ctor_get(x_174, 1); -lean_inc(x_176); -if (lean_is_exclusive(x_174)) { - lean_ctor_release(x_174, 0); - lean_ctor_release(x_174, 1); - x_177 = x_174; +lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; uint8_t x_186; lean_object* x_187; double x_188; double x_189; double x_190; double x_191; double x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; +x_179 = lean_ctor_get(x_149, 0); +x_180 = lean_ctor_get(x_149, 1); +lean_inc(x_180); +lean_inc(x_179); +lean_dec(x_149); +x_181 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_181, 0, x_179); +x_182 = lean_io_mono_nanos_now(x_180); +x_183 = lean_ctor_get(x_182, 0); +lean_inc(x_183); +x_184 = lean_ctor_get(x_182, 1); +lean_inc(x_184); +if (lean_is_exclusive(x_182)) { + lean_ctor_release(x_182, 0); + lean_ctor_release(x_182, 1); + x_185 = x_182; } else { - lean_dec_ref(x_174); - x_177 = lean_box(0); + lean_dec_ref(x_182); + x_185 = lean_box(0); } -x_178 = 0; -x_179 = lean_unsigned_to_nat(0u); -x_180 = l_Float_ofScientific(x_139, x_178, x_179); -lean_dec(x_139); -x_181 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; -x_182 = lean_float_div(x_180, x_181); -x_183 = l_Float_ofScientific(x_175, x_178, x_179); -lean_dec(x_175); -x_184 = lean_float_div(x_183, x_181); -x_185 = lean_box_float(x_182); -x_186 = lean_box_float(x_184); -if (lean_is_scalar(x_177)) { - x_187 = lean_alloc_ctor(0, 2, 0); +x_186 = 0; +x_187 = lean_unsigned_to_nat(0u); +x_188 = l_Float_ofScientific(x_147, x_186, x_187); +lean_dec(x_147); +x_189 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; +x_190 = lean_float_div(x_188, x_189); +x_191 = l_Float_ofScientific(x_183, x_186, x_187); +lean_dec(x_183); +x_192 = lean_float_div(x_191, x_189); +x_193 = lean_box_float(x_190); +x_194 = lean_box_float(x_192); +if (lean_is_scalar(x_185)) { + x_195 = lean_alloc_ctor(0, 2, 0); } else { - x_187 = x_177; + x_195 = x_185; } -lean_ctor_set(x_187, 0, x_185); -lean_ctor_set(x_187, 1, x_186); -x_188 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_188, 0, x_173); -lean_ctor_set(x_188, 1, x_187); -x_42 = x_188; -x_43 = x_176; -goto block_137; +lean_ctor_set(x_195, 0, x_193); +lean_ctor_set(x_195, 1, x_194); +x_196 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_196, 0, x_181); +lean_ctor_set(x_196, 1, x_195); +x_42 = x_196; +x_43 = x_184; +goto block_145; } } else { -uint8_t x_189; -x_189 = !lean_is_exclusive(x_141); -if (x_189 == 0) +uint8_t x_197; +x_197 = !lean_is_exclusive(x_149); +if (x_197 == 0) { -lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; uint8_t x_194; -x_190 = lean_ctor_get(x_141, 0); -x_191 = lean_ctor_get(x_141, 1); -x_192 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_192, 0, x_190); -x_193 = lean_io_mono_nanos_now(x_191); -x_194 = !lean_is_exclusive(x_193); -if (x_194 == 0) +lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; uint8_t x_202; +x_198 = lean_ctor_get(x_149, 0); +x_199 = lean_ctor_get(x_149, 1); +x_200 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_200, 0, x_198); +x_201 = lean_io_mono_nanos_now(x_199); +x_202 = !lean_is_exclusive(x_201); +if (x_202 == 0) { -lean_object* x_195; lean_object* x_196; uint8_t x_197; lean_object* x_198; double x_199; double x_200; double x_201; double x_202; double x_203; lean_object* x_204; lean_object* x_205; -x_195 = lean_ctor_get(x_193, 0); -x_196 = lean_ctor_get(x_193, 1); -x_197 = 0; -x_198 = lean_unsigned_to_nat(0u); -x_199 = l_Float_ofScientific(x_139, x_197, x_198); -lean_dec(x_139); -x_200 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; -x_201 = lean_float_div(x_199, x_200); -x_202 = l_Float_ofScientific(x_195, x_197, x_198); -lean_dec(x_195); -x_203 = lean_float_div(x_202, x_200); -x_204 = lean_box_float(x_201); -x_205 = lean_box_float(x_203); -lean_ctor_set(x_193, 1, x_205); -lean_ctor_set(x_193, 0, x_204); -lean_ctor_set_tag(x_141, 0); -lean_ctor_set(x_141, 1, x_193); -lean_ctor_set(x_141, 0, x_192); -x_42 = x_141; -x_43 = x_196; -goto block_137; +lean_object* x_203; lean_object* x_204; uint8_t x_205; lean_object* x_206; double x_207; double x_208; double x_209; double x_210; double x_211; lean_object* x_212; lean_object* x_213; +x_203 = lean_ctor_get(x_201, 0); +x_204 = lean_ctor_get(x_201, 1); +x_205 = 0; +x_206 = lean_unsigned_to_nat(0u); +x_207 = l_Float_ofScientific(x_147, x_205, x_206); +lean_dec(x_147); +x_208 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; +x_209 = lean_float_div(x_207, x_208); +x_210 = l_Float_ofScientific(x_203, x_205, x_206); +lean_dec(x_203); +x_211 = lean_float_div(x_210, x_208); +x_212 = lean_box_float(x_209); +x_213 = lean_box_float(x_211); +lean_ctor_set(x_201, 1, x_213); +lean_ctor_set(x_201, 0, x_212); +lean_ctor_set_tag(x_149, 0); +lean_ctor_set(x_149, 1, x_201); +lean_ctor_set(x_149, 0, x_200); +x_42 = x_149; +x_43 = x_204; +goto block_145; } else { -lean_object* x_206; lean_object* x_207; uint8_t x_208; lean_object* x_209; double x_210; double x_211; double x_212; double x_213; double x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; -x_206 = lean_ctor_get(x_193, 0); -x_207 = lean_ctor_get(x_193, 1); -lean_inc(x_207); -lean_inc(x_206); -lean_dec(x_193); -x_208 = 0; -x_209 = lean_unsigned_to_nat(0u); -x_210 = l_Float_ofScientific(x_139, x_208, x_209); -lean_dec(x_139); -x_211 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; -x_212 = lean_float_div(x_210, x_211); -x_213 = l_Float_ofScientific(x_206, x_208, x_209); -lean_dec(x_206); -x_214 = lean_float_div(x_213, x_211); -x_215 = lean_box_float(x_212); -x_216 = lean_box_float(x_214); -x_217 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_217, 0, x_215); -lean_ctor_set(x_217, 1, x_216); -lean_ctor_set_tag(x_141, 0); -lean_ctor_set(x_141, 1, x_217); -lean_ctor_set(x_141, 0, x_192); -x_42 = x_141; -x_43 = x_207; -goto block_137; +lean_object* x_214; lean_object* x_215; uint8_t x_216; lean_object* x_217; double x_218; double x_219; double x_220; double x_221; double x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; +x_214 = lean_ctor_get(x_201, 0); +x_215 = lean_ctor_get(x_201, 1); +lean_inc(x_215); +lean_inc(x_214); +lean_dec(x_201); +x_216 = 0; +x_217 = lean_unsigned_to_nat(0u); +x_218 = l_Float_ofScientific(x_147, x_216, x_217); +lean_dec(x_147); +x_219 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; +x_220 = lean_float_div(x_218, x_219); +x_221 = l_Float_ofScientific(x_214, x_216, x_217); +lean_dec(x_214); +x_222 = lean_float_div(x_221, x_219); +x_223 = lean_box_float(x_220); +x_224 = lean_box_float(x_222); +x_225 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_225, 0, x_223); +lean_ctor_set(x_225, 1, x_224); +lean_ctor_set_tag(x_149, 0); +lean_ctor_set(x_149, 1, x_225); +lean_ctor_set(x_149, 0, x_200); +x_42 = x_149; +x_43 = x_215; +goto block_145; } } else { -lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; uint8_t x_225; lean_object* x_226; double x_227; double x_228; double x_229; double x_230; double x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; -x_218 = lean_ctor_get(x_141, 0); -x_219 = lean_ctor_get(x_141, 1); -lean_inc(x_219); -lean_inc(x_218); -lean_dec(x_141); -x_220 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_220, 0, x_218); -x_221 = lean_io_mono_nanos_now(x_219); -x_222 = lean_ctor_get(x_221, 0); -lean_inc(x_222); -x_223 = lean_ctor_get(x_221, 1); -lean_inc(x_223); -if (lean_is_exclusive(x_221)) { - lean_ctor_release(x_221, 0); - lean_ctor_release(x_221, 1); - x_224 = x_221; +lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; uint8_t x_233; lean_object* x_234; double x_235; double x_236; double x_237; double x_238; double x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; +x_226 = lean_ctor_get(x_149, 0); +x_227 = lean_ctor_get(x_149, 1); +lean_inc(x_227); +lean_inc(x_226); +lean_dec(x_149); +x_228 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_228, 0, x_226); +x_229 = lean_io_mono_nanos_now(x_227); +x_230 = lean_ctor_get(x_229, 0); +lean_inc(x_230); +x_231 = lean_ctor_get(x_229, 1); +lean_inc(x_231); +if (lean_is_exclusive(x_229)) { + lean_ctor_release(x_229, 0); + lean_ctor_release(x_229, 1); + x_232 = x_229; } else { - lean_dec_ref(x_221); - x_224 = lean_box(0); + lean_dec_ref(x_229); + x_232 = lean_box(0); } -x_225 = 0; -x_226 = lean_unsigned_to_nat(0u); -x_227 = l_Float_ofScientific(x_139, x_225, x_226); -lean_dec(x_139); -x_228 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; -x_229 = lean_float_div(x_227, x_228); -x_230 = l_Float_ofScientific(x_222, x_225, x_226); -lean_dec(x_222); -x_231 = lean_float_div(x_230, x_228); -x_232 = lean_box_float(x_229); -x_233 = lean_box_float(x_231); -if (lean_is_scalar(x_224)) { - x_234 = lean_alloc_ctor(0, 2, 0); +x_233 = 0; +x_234 = lean_unsigned_to_nat(0u); +x_235 = l_Float_ofScientific(x_147, x_233, x_234); +lean_dec(x_147); +x_236 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; +x_237 = lean_float_div(x_235, x_236); +x_238 = l_Float_ofScientific(x_230, x_233, x_234); +lean_dec(x_230); +x_239 = lean_float_div(x_238, x_236); +x_240 = lean_box_float(x_237); +x_241 = lean_box_float(x_239); +if (lean_is_scalar(x_232)) { + x_242 = lean_alloc_ctor(0, 2, 0); } else { - x_234 = x_224; + x_242 = x_232; } -lean_ctor_set(x_234, 0, x_232); -lean_ctor_set(x_234, 1, x_233); -x_235 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_235, 0, x_220); -lean_ctor_set(x_235, 1, x_234); -x_42 = x_235; -x_43 = x_223; -goto block_137; +lean_ctor_set(x_242, 0, x_240); +lean_ctor_set(x_242, 1, x_241); +x_243 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_243, 0, x_228); +lean_ctor_set(x_243, 1, x_242); +x_42 = x_243; +x_43 = x_231; +goto block_145; } } -block_137: +block_145: { -lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; lean_object* x_117; uint8_t x_118; +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; uint8_t x_49; uint8_t x_50; x_44 = lean_ctor_get(x_42, 1); lean_inc(x_44); x_45 = lean_ctor_get(x_42, 0); @@ -3160,14 +3126,33 @@ lean_inc(x_46); x_47 = lean_ctor_get(x_44, 1); lean_inc(x_47); lean_dec(x_44); -x_117 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__2; -x_118 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_2, x_117); -if (x_118 == 0) +x_48 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__2; +x_49 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_2, x_48); +if (x_49 == 0) { -uint8_t x_119; -x_119 = 0; -x_48 = x_119; -goto block_116; +if (x_6 == 0) +{ +uint8_t x_115; +x_115 = 0; +x_50 = x_115; +goto block_114; +} +else +{ +lean_object* x_116; double x_117; double x_118; lean_object* x_119; +x_116 = lean_box(0); +x_117 = lean_unbox_float(x_46); +lean_dec(x_46); +x_118 = lean_unbox_float(x_47); +lean_dec(x_47); +x_119 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2(x_45, x_38, x_3, x_4, x_5, x_16, x_23, x_49, x_117, x_118, x_116, x_9, x_10, x_11, x_12, x_13, x_43); +lean_dec(x_13); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_45); +return x_119; +} } else { @@ -3177,6 +3162,8 @@ x_121 = lean_unbox_float(x_46); x_122 = lean_float_sub(x_120, x_121); if (x_41 == 0) { +if (x_6 == 0) +{ lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; uint8_t x_130; x_123 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__3; x_124 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_2, x_123); @@ -3187,921 +3174,976 @@ lean_dec(x_124); x_128 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__4; x_129 = lean_float_div(x_127, x_128); x_130 = lean_float_decLt(x_129, x_122); -x_48 = x_130; -goto block_116; +x_50 = x_130; +goto block_114; } else { -lean_object* x_131; lean_object* x_132; uint8_t x_133; lean_object* x_134; double x_135; uint8_t x_136; -x_131 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__3; -x_132 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_2, x_131); -x_133 = 0; -x_134 = lean_unsigned_to_nat(0u); -x_135 = l_Float_ofScientific(x_132, x_133, x_134); -lean_dec(x_132); -x_136 = lean_float_decLt(x_135, x_122); -x_48 = x_136; -goto block_116; +lean_object* x_131; double x_132; double x_133; lean_object* x_134; +x_131 = lean_box(0); +x_132 = lean_unbox_float(x_46); +lean_dec(x_46); +x_133 = lean_unbox_float(x_47); +lean_dec(x_47); +x_134 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2(x_45, x_38, x_3, x_4, x_5, x_16, x_23, x_49, x_132, x_133, x_131, x_9, x_10, x_11, x_12, x_13, x_43); +lean_dec(x_13); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_45); +return x_134; } } -block_116: +else { if (x_6 == 0) { -if (x_48 == 0) +lean_object* x_135; lean_object* x_136; uint8_t x_137; lean_object* x_138; double x_139; uint8_t x_140; +x_135 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__3; +x_136 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_2, x_135); +x_137 = 0; +x_138 = lean_unsigned_to_nat(0u); +x_139 = l_Float_ofScientific(x_136, x_137, x_138); +lean_dec(x_136); +x_140 = lean_float_decLt(x_139, x_122); +x_50 = x_140; +goto block_114; +} +else { -lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; +lean_object* x_141; double x_142; double x_143; lean_object* x_144; +x_141 = lean_box(0); +x_142 = lean_unbox_float(x_46); +lean_dec(x_46); +x_143 = lean_unbox_float(x_47); +lean_dec(x_47); +x_144 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2(x_45, x_38, x_3, x_4, x_5, x_16, x_23, x_49, x_142, x_143, x_141, x_9, x_10, x_11, x_12, x_13, x_43); +lean_dec(x_13); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_45); +return x_144; +} +} +} +block_114: +{ +if (x_50 == 0) +{ +lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; uint8_t x_55; lean_dec(x_47); lean_dec(x_46); lean_dec(x_38); lean_dec(x_23); lean_dec(x_5); lean_dec(x_3); -x_49 = lean_st_ref_take(x_13, x_43); -x_50 = lean_ctor_get(x_49, 0); -lean_inc(x_50); -x_51 = lean_ctor_get(x_50, 3); -lean_inc(x_51); -x_52 = lean_ctor_get(x_49, 1); +x_51 = lean_st_ref_take(x_13, x_43); +x_52 = lean_ctor_get(x_51, 0); lean_inc(x_52); -lean_dec(x_49); -x_53 = !lean_is_exclusive(x_50); -if (x_53 == 0) -{ -lean_object* x_54; uint8_t x_55; -x_54 = lean_ctor_get(x_50, 3); -lean_dec(x_54); -x_55 = !lean_is_exclusive(x_51); +x_53 = lean_ctor_get(x_52, 3); +lean_inc(x_53); +x_54 = lean_ctor_get(x_51, 1); +lean_inc(x_54); +lean_dec(x_51); +x_55 = !lean_is_exclusive(x_52); if (x_55 == 0) { -lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_56 = lean_ctor_get(x_51, 0); -x_57 = l_Lean_PersistentArray_append___rarg(x_16, x_56); +lean_object* x_56; uint8_t x_57; +x_56 = lean_ctor_get(x_52, 3); lean_dec(x_56); -lean_ctor_set(x_51, 0, x_57); -x_58 = lean_st_ref_set(x_13, x_50, x_52); -x_59 = lean_ctor_get(x_58, 1); -lean_inc(x_59); +x_57 = !lean_is_exclusive(x_53); +if (x_57 == 0) +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_58 = lean_ctor_get(x_53, 0); +x_59 = l_Lean_PersistentArray_append___rarg(x_16, x_58); lean_dec(x_58); -x_60 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__12(x_45, x_9, x_10, x_11, x_12, x_13, x_59); +lean_ctor_set(x_53, 0, x_59); +x_60 = lean_st_ref_set(x_13, x_52, x_54); +x_61 = lean_ctor_get(x_60, 1); +lean_inc(x_61); +lean_dec(x_60); +x_62 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__12(x_45, x_9, x_10, x_11, x_12, x_13, x_61); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_45); -if (lean_obj_tag(x_60) == 0) +if (lean_obj_tag(x_62) == 0) { -uint8_t x_61; -x_61 = !lean_is_exclusive(x_60); -if (x_61 == 0) +uint8_t x_63; +x_63 = !lean_is_exclusive(x_62); +if (x_63 == 0) { -return x_60; +return x_62; } else { -lean_object* x_62; lean_object* x_63; lean_object* x_64; -x_62 = lean_ctor_get(x_60, 0); -x_63 = lean_ctor_get(x_60, 1); -lean_inc(x_63); -lean_inc(x_62); -lean_dec(x_60); -x_64 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_64, 0, x_62); -lean_ctor_set(x_64, 1, x_63); -return x_64; +lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_64 = lean_ctor_get(x_62, 0); +x_65 = lean_ctor_get(x_62, 1); +lean_inc(x_65); +lean_inc(x_64); +lean_dec(x_62); +x_66 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_66, 0, x_64); +lean_ctor_set(x_66, 1, x_65); +return x_66; } } else { -uint8_t x_65; -x_65 = !lean_is_exclusive(x_60); -if (x_65 == 0) +uint8_t x_67; +x_67 = !lean_is_exclusive(x_62); +if (x_67 == 0) { -return x_60; +return x_62; } else { -lean_object* x_66; lean_object* x_67; lean_object* x_68; -x_66 = lean_ctor_get(x_60, 0); -x_67 = lean_ctor_get(x_60, 1); -lean_inc(x_67); -lean_inc(x_66); -lean_dec(x_60); -x_68 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_68, 0, x_66); -lean_ctor_set(x_68, 1, x_67); -return x_68; +lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_68 = lean_ctor_get(x_62, 0); +x_69 = lean_ctor_get(x_62, 1); +lean_inc(x_69); +lean_inc(x_68); +lean_dec(x_62); +x_70 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_70, 0, x_68); +lean_ctor_set(x_70, 1, x_69); +return x_70; } } } else { -uint64_t x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_69 = lean_ctor_get_uint64(x_51, sizeof(void*)*1); -x_70 = lean_ctor_get(x_51, 0); -lean_inc(x_70); -lean_dec(x_51); -x_71 = l_Lean_PersistentArray_append___rarg(x_16, x_70); -lean_dec(x_70); -x_72 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_69); -lean_ctor_set(x_50, 3, x_72); -x_73 = lean_st_ref_set(x_13, x_50, x_52); -x_74 = lean_ctor_get(x_73, 1); -lean_inc(x_74); -lean_dec(x_73); -x_75 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__12(x_45, x_9, x_10, x_11, x_12, x_13, x_74); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_45); -if (lean_obj_tag(x_75) == 0) -{ -lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_76 = lean_ctor_get(x_75, 0); +uint64_t x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_71 = lean_ctor_get_uint64(x_53, sizeof(void*)*1); +x_72 = lean_ctor_get(x_53, 0); +lean_inc(x_72); +lean_dec(x_53); +x_73 = l_Lean_PersistentArray_append___rarg(x_16, x_72); +lean_dec(x_72); +x_74 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_71); +lean_ctor_set(x_52, 3, x_74); +x_75 = lean_st_ref_set(x_13, x_52, x_54); +x_76 = lean_ctor_get(x_75, 1); lean_inc(x_76); -x_77 = lean_ctor_get(x_75, 1); -lean_inc(x_77); -if (lean_is_exclusive(x_75)) { - lean_ctor_release(x_75, 0); - lean_ctor_release(x_75, 1); - x_78 = x_75; +lean_dec(x_75); +x_77 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__12(x_45, x_9, x_10, x_11, x_12, x_13, x_76); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_45); +if (lean_obj_tag(x_77) == 0) +{ +lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_78 = lean_ctor_get(x_77, 0); +lean_inc(x_78); +x_79 = lean_ctor_get(x_77, 1); +lean_inc(x_79); +if (lean_is_exclusive(x_77)) { + lean_ctor_release(x_77, 0); + lean_ctor_release(x_77, 1); + x_80 = x_77; } else { - lean_dec_ref(x_75); - x_78 = lean_box(0); + lean_dec_ref(x_77); + x_80 = lean_box(0); } -if (lean_is_scalar(x_78)) { - x_79 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_80)) { + x_81 = lean_alloc_ctor(0, 2, 0); } else { - x_79 = x_78; + x_81 = x_80; } -lean_ctor_set(x_79, 0, x_76); -lean_ctor_set(x_79, 1, x_77); -return x_79; +lean_ctor_set(x_81, 0, x_78); +lean_ctor_set(x_81, 1, x_79); +return x_81; } else { -lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; -x_80 = lean_ctor_get(x_75, 0); -lean_inc(x_80); -x_81 = lean_ctor_get(x_75, 1); -lean_inc(x_81); -if (lean_is_exclusive(x_75)) { - lean_ctor_release(x_75, 0); - lean_ctor_release(x_75, 1); - x_82 = x_75; +lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; +x_82 = lean_ctor_get(x_77, 0); +lean_inc(x_82); +x_83 = lean_ctor_get(x_77, 1); +lean_inc(x_83); +if (lean_is_exclusive(x_77)) { + lean_ctor_release(x_77, 0); + lean_ctor_release(x_77, 1); + x_84 = x_77; } else { - lean_dec_ref(x_75); - x_82 = lean_box(0); + lean_dec_ref(x_77); + x_84 = lean_box(0); } -if (lean_is_scalar(x_82)) { - x_83 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_84)) { + x_85 = lean_alloc_ctor(1, 2, 0); } else { - x_83 = x_82; + x_85 = x_84; } -lean_ctor_set(x_83, 0, x_80); -lean_ctor_set(x_83, 1, x_81); -return x_83; +lean_ctor_set(x_85, 0, x_82); +lean_ctor_set(x_85, 1, x_83); +return x_85; } } } else { -lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; uint64_t x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; -x_84 = lean_ctor_get(x_50, 0); -x_85 = lean_ctor_get(x_50, 1); -x_86 = lean_ctor_get(x_50, 2); -x_87 = lean_ctor_get(x_50, 4); -x_88 = lean_ctor_get(x_50, 5); -x_89 = lean_ctor_get(x_50, 6); -x_90 = lean_ctor_get(x_50, 7); +lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; uint64_t x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; +x_86 = lean_ctor_get(x_52, 0); +x_87 = lean_ctor_get(x_52, 1); +x_88 = lean_ctor_get(x_52, 2); +x_89 = lean_ctor_get(x_52, 4); +x_90 = lean_ctor_get(x_52, 5); +x_91 = lean_ctor_get(x_52, 6); +x_92 = lean_ctor_get(x_52, 7); +lean_inc(x_92); +lean_inc(x_91); lean_inc(x_90); lean_inc(x_89); lean_inc(x_88); lean_inc(x_87); lean_inc(x_86); -lean_inc(x_85); -lean_inc(x_84); -lean_dec(x_50); -x_91 = lean_ctor_get_uint64(x_51, sizeof(void*)*1); -x_92 = lean_ctor_get(x_51, 0); -lean_inc(x_92); -if (lean_is_exclusive(x_51)) { - lean_ctor_release(x_51, 0); - x_93 = x_51; +lean_dec(x_52); +x_93 = lean_ctor_get_uint64(x_53, sizeof(void*)*1); +x_94 = lean_ctor_get(x_53, 0); +lean_inc(x_94); +if (lean_is_exclusive(x_53)) { + lean_ctor_release(x_53, 0); + x_95 = x_53; } else { - lean_dec_ref(x_51); - x_93 = lean_box(0); + lean_dec_ref(x_53); + x_95 = lean_box(0); } -x_94 = l_Lean_PersistentArray_append___rarg(x_16, x_92); -lean_dec(x_92); -if (lean_is_scalar(x_93)) { - x_95 = lean_alloc_ctor(0, 1, 8); +x_96 = l_Lean_PersistentArray_append___rarg(x_16, x_94); +lean_dec(x_94); +if (lean_is_scalar(x_95)) { + x_97 = lean_alloc_ctor(0, 1, 8); } else { - x_95 = x_93; + x_97 = x_95; } -lean_ctor_set(x_95, 0, x_94); -lean_ctor_set_uint64(x_95, sizeof(void*)*1, x_91); -x_96 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_96, 0, x_84); -lean_ctor_set(x_96, 1, x_85); -lean_ctor_set(x_96, 2, x_86); -lean_ctor_set(x_96, 3, x_95); -lean_ctor_set(x_96, 4, x_87); -lean_ctor_set(x_96, 5, x_88); -lean_ctor_set(x_96, 6, x_89); -lean_ctor_set(x_96, 7, x_90); -x_97 = lean_st_ref_set(x_13, x_96, x_52); -x_98 = lean_ctor_get(x_97, 1); -lean_inc(x_98); -lean_dec(x_97); -x_99 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__12(x_45, x_9, x_10, x_11, x_12, x_13, x_98); +lean_ctor_set(x_97, 0, x_96); +lean_ctor_set_uint64(x_97, sizeof(void*)*1, x_93); +x_98 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_98, 0, x_86); +lean_ctor_set(x_98, 1, x_87); +lean_ctor_set(x_98, 2, x_88); +lean_ctor_set(x_98, 3, x_97); +lean_ctor_set(x_98, 4, x_89); +lean_ctor_set(x_98, 5, x_90); +lean_ctor_set(x_98, 6, x_91); +lean_ctor_set(x_98, 7, x_92); +x_99 = lean_st_ref_set(x_13, x_98, x_54); +x_100 = lean_ctor_get(x_99, 1); +lean_inc(x_100); +lean_dec(x_99); +x_101 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__12(x_45, x_9, x_10, x_11, x_12, x_13, x_100); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_45); -if (lean_obj_tag(x_99) == 0) +if (lean_obj_tag(x_101) == 0) { -lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; -x_100 = lean_ctor_get(x_99, 0); -lean_inc(x_100); -x_101 = lean_ctor_get(x_99, 1); -lean_inc(x_101); -if (lean_is_exclusive(x_99)) { - lean_ctor_release(x_99, 0); - lean_ctor_release(x_99, 1); - x_102 = x_99; +lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; +x_102 = lean_ctor_get(x_101, 0); +lean_inc(x_102); +x_103 = lean_ctor_get(x_101, 1); +lean_inc(x_103); +if (lean_is_exclusive(x_101)) { + lean_ctor_release(x_101, 0); + lean_ctor_release(x_101, 1); + x_104 = x_101; } else { - lean_dec_ref(x_99); - x_102 = lean_box(0); + lean_dec_ref(x_101); + x_104 = lean_box(0); } -if (lean_is_scalar(x_102)) { - x_103 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_104)) { + x_105 = lean_alloc_ctor(0, 2, 0); } else { - x_103 = x_102; + x_105 = x_104; } -lean_ctor_set(x_103, 0, x_100); -lean_ctor_set(x_103, 1, x_101); -return x_103; +lean_ctor_set(x_105, 0, x_102); +lean_ctor_set(x_105, 1, x_103); +return x_105; } else { -lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; -x_104 = lean_ctor_get(x_99, 0); -lean_inc(x_104); -x_105 = lean_ctor_get(x_99, 1); -lean_inc(x_105); -if (lean_is_exclusive(x_99)) { - lean_ctor_release(x_99, 0); - lean_ctor_release(x_99, 1); - x_106 = x_99; +lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; +x_106 = lean_ctor_get(x_101, 0); +lean_inc(x_106); +x_107 = lean_ctor_get(x_101, 1); +lean_inc(x_107); +if (lean_is_exclusive(x_101)) { + lean_ctor_release(x_101, 0); + lean_ctor_release(x_101, 1); + x_108 = x_101; } else { - lean_dec_ref(x_99); - x_106 = lean_box(0); + lean_dec_ref(x_101); + x_108 = lean_box(0); } -if (lean_is_scalar(x_106)) { - x_107 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_108)) { + x_109 = lean_alloc_ctor(1, 2, 0); } else { - x_107 = x_106; + x_109 = x_108; } -lean_ctor_set(x_107, 0, x_104); -lean_ctor_set(x_107, 1, x_105); -return x_107; +lean_ctor_set(x_109, 0, x_106); +lean_ctor_set(x_109, 1, x_107); +return x_109; } } } else { -lean_object* x_108; double x_109; double x_110; lean_object* x_111; -x_108 = lean_box(0); -x_109 = lean_unbox_float(x_46); +lean_object* x_110; double x_111; double x_112; lean_object* x_113; +x_110 = lean_box(0); +x_111 = lean_unbox_float(x_46); lean_dec(x_46); -x_110 = lean_unbox_float(x_47); +x_112 = lean_unbox_float(x_47); lean_dec(x_47); -x_111 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2(x_45, x_38, x_3, x_4, x_5, x_16, x_23, x_2, x_48, x_109, x_110, x_108, x_9, x_10, x_11, x_12, x_13, x_43); +x_113 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2(x_45, x_38, x_3, x_4, x_5, x_16, x_23, x_49, x_111, x_112, x_110, x_9, x_10, x_11, x_12, x_13, x_43); lean_dec(x_13); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_45); -return x_111; -} -} -else -{ -lean_object* x_112; double x_113; double x_114; lean_object* x_115; -x_112 = lean_box(0); -x_113 = lean_unbox_float(x_46); -lean_dec(x_46); -x_114 = lean_unbox_float(x_47); -lean_dec(x_47); -x_115 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2(x_45, x_38, x_3, x_4, x_5, x_16, x_23, x_2, x_48, x_113, x_114, x_112, x_9, x_10, x_11, x_12, x_13, x_43); -lean_dec(x_13); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_45); -return x_115; +return x_113; } } } } else { -lean_object* x_236; lean_object* x_237; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; -x_332 = lean_io_get_num_heartbeats(x_39); -x_333 = lean_ctor_get(x_332, 0); -lean_inc(x_333); -x_334 = lean_ctor_get(x_332, 1); -lean_inc(x_334); -lean_dec(x_332); +lean_object* x_244; lean_object* x_245; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; +x_348 = lean_io_get_num_heartbeats(x_39); +x_349 = lean_ctor_get(x_348, 0); +lean_inc(x_349); +x_350 = lean_ctor_get(x_348, 1); +lean_inc(x_350); +lean_dec(x_348); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_335 = lean_apply_6(x_7, x_9, x_10, x_11, x_12, x_13, x_334); -if (lean_obj_tag(x_335) == 0) +x_351 = lean_apply_6(x_7, x_9, x_10, x_11, x_12, x_13, x_350); +if (lean_obj_tag(x_351) == 0) { -uint8_t x_336; -x_336 = !lean_is_exclusive(x_335); -if (x_336 == 0) +uint8_t x_352; +x_352 = !lean_is_exclusive(x_351); +if (x_352 == 0) { -lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; uint8_t x_341; -x_337 = lean_ctor_get(x_335, 0); -x_338 = lean_ctor_get(x_335, 1); -x_339 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_339, 0, x_337); -x_340 = lean_io_get_num_heartbeats(x_338); -x_341 = !lean_is_exclusive(x_340); -if (x_341 == 0) +lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; uint8_t x_357; +x_353 = lean_ctor_get(x_351, 0); +x_354 = lean_ctor_get(x_351, 1); +x_355 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_355, 0, x_353); +x_356 = lean_io_get_num_heartbeats(x_354); +x_357 = !lean_is_exclusive(x_356); +if (x_357 == 0) { -lean_object* x_342; lean_object* x_343; uint8_t x_344; lean_object* x_345; double x_346; double x_347; lean_object* x_348; lean_object* x_349; -x_342 = lean_ctor_get(x_340, 0); -x_343 = lean_ctor_get(x_340, 1); -x_344 = 0; -x_345 = lean_unsigned_to_nat(0u); -x_346 = l_Float_ofScientific(x_333, x_344, x_345); -lean_dec(x_333); -x_347 = l_Float_ofScientific(x_342, x_344, x_345); -lean_dec(x_342); -x_348 = lean_box_float(x_346); -x_349 = lean_box_float(x_347); -lean_ctor_set(x_340, 1, x_349); -lean_ctor_set(x_340, 0, x_348); -lean_ctor_set(x_335, 1, x_340); -lean_ctor_set(x_335, 0, x_339); -x_236 = x_335; -x_237 = x_343; -goto block_331; +lean_object* x_358; lean_object* x_359; uint8_t x_360; lean_object* x_361; double x_362; double x_363; lean_object* x_364; lean_object* x_365; +x_358 = lean_ctor_get(x_356, 0); +x_359 = lean_ctor_get(x_356, 1); +x_360 = 0; +x_361 = lean_unsigned_to_nat(0u); +x_362 = l_Float_ofScientific(x_349, x_360, x_361); +lean_dec(x_349); +x_363 = l_Float_ofScientific(x_358, x_360, x_361); +lean_dec(x_358); +x_364 = lean_box_float(x_362); +x_365 = lean_box_float(x_363); +lean_ctor_set(x_356, 1, x_365); +lean_ctor_set(x_356, 0, x_364); +lean_ctor_set(x_351, 1, x_356); +lean_ctor_set(x_351, 0, x_355); +x_244 = x_351; +x_245 = x_359; +goto block_347; } else { -lean_object* x_350; lean_object* x_351; uint8_t x_352; lean_object* x_353; double x_354; double x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; -x_350 = lean_ctor_get(x_340, 0); -x_351 = lean_ctor_get(x_340, 1); -lean_inc(x_351); -lean_inc(x_350); -lean_dec(x_340); -x_352 = 0; -x_353 = lean_unsigned_to_nat(0u); -x_354 = l_Float_ofScientific(x_333, x_352, x_353); -lean_dec(x_333); -x_355 = l_Float_ofScientific(x_350, x_352, x_353); -lean_dec(x_350); -x_356 = lean_box_float(x_354); -x_357 = lean_box_float(x_355); -x_358 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_358, 0, x_356); -lean_ctor_set(x_358, 1, x_357); -lean_ctor_set(x_335, 1, x_358); -lean_ctor_set(x_335, 0, x_339); -x_236 = x_335; -x_237 = x_351; -goto block_331; +lean_object* x_366; lean_object* x_367; uint8_t x_368; lean_object* x_369; double x_370; double x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; +x_366 = lean_ctor_get(x_356, 0); +x_367 = lean_ctor_get(x_356, 1); +lean_inc(x_367); +lean_inc(x_366); +lean_dec(x_356); +x_368 = 0; +x_369 = lean_unsigned_to_nat(0u); +x_370 = l_Float_ofScientific(x_349, x_368, x_369); +lean_dec(x_349); +x_371 = l_Float_ofScientific(x_366, x_368, x_369); +lean_dec(x_366); +x_372 = lean_box_float(x_370); +x_373 = lean_box_float(x_371); +x_374 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_374, 0, x_372); +lean_ctor_set(x_374, 1, x_373); +lean_ctor_set(x_351, 1, x_374); +lean_ctor_set(x_351, 0, x_355); +x_244 = x_351; +x_245 = x_367; +goto block_347; } } else { -lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; uint8_t x_366; lean_object* x_367; double x_368; double x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; -x_359 = lean_ctor_get(x_335, 0); -x_360 = lean_ctor_get(x_335, 1); -lean_inc(x_360); -lean_inc(x_359); -lean_dec(x_335); -x_361 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_361, 0, x_359); -x_362 = lean_io_get_num_heartbeats(x_360); -x_363 = lean_ctor_get(x_362, 0); -lean_inc(x_363); -x_364 = lean_ctor_get(x_362, 1); -lean_inc(x_364); -if (lean_is_exclusive(x_362)) { - lean_ctor_release(x_362, 0); - lean_ctor_release(x_362, 1); - x_365 = x_362; -} else { - lean_dec_ref(x_362); - x_365 = lean_box(0); -} -x_366 = 0; -x_367 = lean_unsigned_to_nat(0u); -x_368 = l_Float_ofScientific(x_333, x_366, x_367); -lean_dec(x_333); -x_369 = l_Float_ofScientific(x_363, x_366, x_367); -lean_dec(x_363); -x_370 = lean_box_float(x_368); -x_371 = lean_box_float(x_369); -if (lean_is_scalar(x_365)) { - x_372 = lean_alloc_ctor(0, 2, 0); -} else { - x_372 = x_365; -} -lean_ctor_set(x_372, 0, x_370); -lean_ctor_set(x_372, 1, x_371); -x_373 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_373, 0, x_361); -lean_ctor_set(x_373, 1, x_372); -x_236 = x_373; -x_237 = x_364; -goto block_331; -} -} -else -{ -uint8_t x_374; -x_374 = !lean_is_exclusive(x_335); -if (x_374 == 0) -{ -lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; uint8_t x_379; -x_375 = lean_ctor_get(x_335, 0); -x_376 = lean_ctor_get(x_335, 1); -x_377 = lean_alloc_ctor(0, 1, 0); +lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; uint8_t x_382; lean_object* x_383; double x_384; double x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; +x_375 = lean_ctor_get(x_351, 0); +x_376 = lean_ctor_get(x_351, 1); +lean_inc(x_376); +lean_inc(x_375); +lean_dec(x_351); +x_377 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_377, 0, x_375); x_378 = lean_io_get_num_heartbeats(x_376); -x_379 = !lean_is_exclusive(x_378); -if (x_379 == 0) -{ -lean_object* x_380; lean_object* x_381; uint8_t x_382; lean_object* x_383; double x_384; double x_385; lean_object* x_386; lean_object* x_387; -x_380 = lean_ctor_get(x_378, 0); -x_381 = lean_ctor_get(x_378, 1); +x_379 = lean_ctor_get(x_378, 0); +lean_inc(x_379); +x_380 = lean_ctor_get(x_378, 1); +lean_inc(x_380); +if (lean_is_exclusive(x_378)) { + lean_ctor_release(x_378, 0); + lean_ctor_release(x_378, 1); + x_381 = x_378; +} else { + lean_dec_ref(x_378); + x_381 = lean_box(0); +} x_382 = 0; x_383 = lean_unsigned_to_nat(0u); -x_384 = l_Float_ofScientific(x_333, x_382, x_383); -lean_dec(x_333); -x_385 = l_Float_ofScientific(x_380, x_382, x_383); -lean_dec(x_380); +x_384 = l_Float_ofScientific(x_349, x_382, x_383); +lean_dec(x_349); +x_385 = l_Float_ofScientific(x_379, x_382, x_383); +lean_dec(x_379); x_386 = lean_box_float(x_384); x_387 = lean_box_float(x_385); -lean_ctor_set(x_378, 1, x_387); -lean_ctor_set(x_378, 0, x_386); -lean_ctor_set_tag(x_335, 0); -lean_ctor_set(x_335, 1, x_378); -lean_ctor_set(x_335, 0, x_377); -x_236 = x_335; -x_237 = x_381; -goto block_331; -} -else -{ -lean_object* x_388; lean_object* x_389; uint8_t x_390; lean_object* x_391; double x_392; double x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; -x_388 = lean_ctor_get(x_378, 0); -x_389 = lean_ctor_get(x_378, 1); -lean_inc(x_389); -lean_inc(x_388); -lean_dec(x_378); -x_390 = 0; -x_391 = lean_unsigned_to_nat(0u); -x_392 = l_Float_ofScientific(x_333, x_390, x_391); -lean_dec(x_333); -x_393 = l_Float_ofScientific(x_388, x_390, x_391); -lean_dec(x_388); -x_394 = lean_box_float(x_392); -x_395 = lean_box_float(x_393); -x_396 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_396, 0, x_394); -lean_ctor_set(x_396, 1, x_395); -lean_ctor_set_tag(x_335, 0); -lean_ctor_set(x_335, 1, x_396); -lean_ctor_set(x_335, 0, x_377); -x_236 = x_335; -x_237 = x_389; -goto block_331; -} -} -else -{ -lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; uint8_t x_404; lean_object* x_405; double x_406; double x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; -x_397 = lean_ctor_get(x_335, 0); -x_398 = lean_ctor_get(x_335, 1); -lean_inc(x_398); -lean_inc(x_397); -lean_dec(x_335); -x_399 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_399, 0, x_397); -x_400 = lean_io_get_num_heartbeats(x_398); -x_401 = lean_ctor_get(x_400, 0); -lean_inc(x_401); -x_402 = lean_ctor_get(x_400, 1); -lean_inc(x_402); -if (lean_is_exclusive(x_400)) { - lean_ctor_release(x_400, 0); - lean_ctor_release(x_400, 1); - x_403 = x_400; +if (lean_is_scalar(x_381)) { + x_388 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_400); - x_403 = lean_box(0); + x_388 = x_381; } -x_404 = 0; -x_405 = lean_unsigned_to_nat(0u); -x_406 = l_Float_ofScientific(x_333, x_404, x_405); -lean_dec(x_333); -x_407 = l_Float_ofScientific(x_401, x_404, x_405); -lean_dec(x_401); -x_408 = lean_box_float(x_406); -x_409 = lean_box_float(x_407); -if (lean_is_scalar(x_403)) { - x_410 = lean_alloc_ctor(0, 2, 0); -} else { - x_410 = x_403; +lean_ctor_set(x_388, 0, x_386); +lean_ctor_set(x_388, 1, x_387); +x_389 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_389, 0, x_377); +lean_ctor_set(x_389, 1, x_388); +x_244 = x_389; +x_245 = x_380; +goto block_347; } -lean_ctor_set(x_410, 0, x_408); -lean_ctor_set(x_410, 1, x_409); -x_411 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_411, 0, x_399); -lean_ctor_set(x_411, 1, x_410); -x_236 = x_411; -x_237 = x_402; -goto block_331; -} -} -block_331: -{ -lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; uint8_t x_242; lean_object* x_311; uint8_t x_312; -x_238 = lean_ctor_get(x_236, 1); -lean_inc(x_238); -x_239 = lean_ctor_get(x_236, 0); -lean_inc(x_239); -lean_dec(x_236); -x_240 = lean_ctor_get(x_238, 0); -lean_inc(x_240); -x_241 = lean_ctor_get(x_238, 1); -lean_inc(x_241); -lean_dec(x_238); -x_311 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__2; -x_312 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_2, x_311); -if (x_312 == 0) -{ -uint8_t x_313; -x_313 = 0; -x_242 = x_313; -goto block_310; } else { -double x_314; double x_315; double x_316; -x_314 = lean_unbox_float(x_241); -x_315 = lean_unbox_float(x_240); -x_316 = lean_float_sub(x_314, x_315); +uint8_t x_390; +x_390 = !lean_is_exclusive(x_351); +if (x_390 == 0) +{ +lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; uint8_t x_395; +x_391 = lean_ctor_get(x_351, 0); +x_392 = lean_ctor_get(x_351, 1); +x_393 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_393, 0, x_391); +x_394 = lean_io_get_num_heartbeats(x_392); +x_395 = !lean_is_exclusive(x_394); +if (x_395 == 0) +{ +lean_object* x_396; lean_object* x_397; uint8_t x_398; lean_object* x_399; double x_400; double x_401; lean_object* x_402; lean_object* x_403; +x_396 = lean_ctor_get(x_394, 0); +x_397 = lean_ctor_get(x_394, 1); +x_398 = 0; +x_399 = lean_unsigned_to_nat(0u); +x_400 = l_Float_ofScientific(x_349, x_398, x_399); +lean_dec(x_349); +x_401 = l_Float_ofScientific(x_396, x_398, x_399); +lean_dec(x_396); +x_402 = lean_box_float(x_400); +x_403 = lean_box_float(x_401); +lean_ctor_set(x_394, 1, x_403); +lean_ctor_set(x_394, 0, x_402); +lean_ctor_set_tag(x_351, 0); +lean_ctor_set(x_351, 1, x_394); +lean_ctor_set(x_351, 0, x_393); +x_244 = x_351; +x_245 = x_397; +goto block_347; +} +else +{ +lean_object* x_404; lean_object* x_405; uint8_t x_406; lean_object* x_407; double x_408; double x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; +x_404 = lean_ctor_get(x_394, 0); +x_405 = lean_ctor_get(x_394, 1); +lean_inc(x_405); +lean_inc(x_404); +lean_dec(x_394); +x_406 = 0; +x_407 = lean_unsigned_to_nat(0u); +x_408 = l_Float_ofScientific(x_349, x_406, x_407); +lean_dec(x_349); +x_409 = l_Float_ofScientific(x_404, x_406, x_407); +lean_dec(x_404); +x_410 = lean_box_float(x_408); +x_411 = lean_box_float(x_409); +x_412 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_412, 0, x_410); +lean_ctor_set(x_412, 1, x_411); +lean_ctor_set_tag(x_351, 0); +lean_ctor_set(x_351, 1, x_412); +lean_ctor_set(x_351, 0, x_393); +x_244 = x_351; +x_245 = x_405; +goto block_347; +} +} +else +{ +lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; uint8_t x_420; lean_object* x_421; double x_422; double x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; +x_413 = lean_ctor_get(x_351, 0); +x_414 = lean_ctor_get(x_351, 1); +lean_inc(x_414); +lean_inc(x_413); +lean_dec(x_351); +x_415 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_415, 0, x_413); +x_416 = lean_io_get_num_heartbeats(x_414); +x_417 = lean_ctor_get(x_416, 0); +lean_inc(x_417); +x_418 = lean_ctor_get(x_416, 1); +lean_inc(x_418); +if (lean_is_exclusive(x_416)) { + lean_ctor_release(x_416, 0); + lean_ctor_release(x_416, 1); + x_419 = x_416; +} else { + lean_dec_ref(x_416); + x_419 = lean_box(0); +} +x_420 = 0; +x_421 = lean_unsigned_to_nat(0u); +x_422 = l_Float_ofScientific(x_349, x_420, x_421); +lean_dec(x_349); +x_423 = l_Float_ofScientific(x_417, x_420, x_421); +lean_dec(x_417); +x_424 = lean_box_float(x_422); +x_425 = lean_box_float(x_423); +if (lean_is_scalar(x_419)) { + x_426 = lean_alloc_ctor(0, 2, 0); +} else { + x_426 = x_419; +} +lean_ctor_set(x_426, 0, x_424); +lean_ctor_set(x_426, 1, x_425); +x_427 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_427, 0, x_415); +lean_ctor_set(x_427, 1, x_426); +x_244 = x_427; +x_245 = x_418; +goto block_347; +} +} +block_347: +{ +lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; uint8_t x_251; uint8_t x_252; +x_246 = lean_ctor_get(x_244, 1); +lean_inc(x_246); +x_247 = lean_ctor_get(x_244, 0); +lean_inc(x_247); +lean_dec(x_244); +x_248 = lean_ctor_get(x_246, 0); +lean_inc(x_248); +x_249 = lean_ctor_get(x_246, 1); +lean_inc(x_249); +lean_dec(x_246); +x_250 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__2; +x_251 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_2, x_250); +if (x_251 == 0) +{ +if (x_6 == 0) +{ +uint8_t x_317; +x_317 = 0; +x_252 = x_317; +goto block_316; +} +else +{ +lean_object* x_318; double x_319; double x_320; lean_object* x_321; +x_318 = lean_box(0); +x_319 = lean_unbox_float(x_248); +lean_dec(x_248); +x_320 = lean_unbox_float(x_249); +lean_dec(x_249); +x_321 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2(x_247, x_38, x_3, x_4, x_5, x_16, x_23, x_251, x_319, x_320, x_318, x_9, x_10, x_11, x_12, x_13, x_245); +lean_dec(x_13); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_247); +return x_321; +} +} +else +{ +double x_322; double x_323; double x_324; +x_322 = lean_unbox_float(x_249); +x_323 = lean_unbox_float(x_248); +x_324 = lean_float_sub(x_322, x_323); if (x_41 == 0) { -lean_object* x_317; lean_object* x_318; uint8_t x_319; lean_object* x_320; double x_321; double x_322; double x_323; uint8_t x_324; -x_317 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__3; -x_318 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_2, x_317); -x_319 = 0; -x_320 = lean_unsigned_to_nat(0u); -x_321 = l_Float_ofScientific(x_318, x_319, x_320); -lean_dec(x_318); -x_322 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__4; -x_323 = lean_float_div(x_321, x_322); -x_324 = lean_float_decLt(x_323, x_316); -x_242 = x_324; -goto block_310; -} -else +if (x_6 == 0) { -lean_object* x_325; lean_object* x_326; uint8_t x_327; lean_object* x_328; double x_329; uint8_t x_330; +lean_object* x_325; lean_object* x_326; uint8_t x_327; lean_object* x_328; double x_329; double x_330; double x_331; uint8_t x_332; x_325 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__3; x_326 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_2, x_325); x_327 = 0; x_328 = lean_unsigned_to_nat(0u); x_329 = l_Float_ofScientific(x_326, x_327, x_328); lean_dec(x_326); -x_330 = lean_float_decLt(x_329, x_316); -x_242 = x_330; -goto block_310; +x_330 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__4; +x_331 = lean_float_div(x_329, x_330); +x_332 = lean_float_decLt(x_331, x_324); +x_252 = x_332; +goto block_316; +} +else +{ +lean_object* x_333; double x_334; double x_335; lean_object* x_336; +x_333 = lean_box(0); +x_334 = lean_unbox_float(x_248); +lean_dec(x_248); +x_335 = lean_unbox_float(x_249); +lean_dec(x_249); +x_336 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2(x_247, x_38, x_3, x_4, x_5, x_16, x_23, x_251, x_334, x_335, x_333, x_9, x_10, x_11, x_12, x_13, x_245); +lean_dec(x_13); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_247); +return x_336; } } -block_310: +else { if (x_6 == 0) { -if (x_242 == 0) +lean_object* x_337; lean_object* x_338; uint8_t x_339; lean_object* x_340; double x_341; uint8_t x_342; +x_337 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__3; +x_338 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_2, x_337); +x_339 = 0; +x_340 = lean_unsigned_to_nat(0u); +x_341 = l_Float_ofScientific(x_338, x_339, x_340); +lean_dec(x_338); +x_342 = lean_float_decLt(x_341, x_324); +x_252 = x_342; +goto block_316; +} +else { -lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; uint8_t x_247; -lean_dec(x_241); -lean_dec(x_240); +lean_object* x_343; double x_344; double x_345; lean_object* x_346; +x_343 = lean_box(0); +x_344 = lean_unbox_float(x_248); +lean_dec(x_248); +x_345 = lean_unbox_float(x_249); +lean_dec(x_249); +x_346 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2(x_247, x_38, x_3, x_4, x_5, x_16, x_23, x_251, x_344, x_345, x_343, x_9, x_10, x_11, x_12, x_13, x_245); +lean_dec(x_13); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_247); +return x_346; +} +} +} +block_316: +{ +if (x_252 == 0) +{ +lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; uint8_t x_257; +lean_dec(x_249); +lean_dec(x_248); lean_dec(x_38); lean_dec(x_23); lean_dec(x_5); lean_dec(x_3); -x_243 = lean_st_ref_take(x_13, x_237); -x_244 = lean_ctor_get(x_243, 0); -lean_inc(x_244); -x_245 = lean_ctor_get(x_244, 3); -lean_inc(x_245); -x_246 = lean_ctor_get(x_243, 1); -lean_inc(x_246); -lean_dec(x_243); -x_247 = !lean_is_exclusive(x_244); -if (x_247 == 0) -{ -lean_object* x_248; uint8_t x_249; -x_248 = lean_ctor_get(x_244, 3); -lean_dec(x_248); -x_249 = !lean_is_exclusive(x_245); -if (x_249 == 0) -{ -lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; -x_250 = lean_ctor_get(x_245, 0); -x_251 = l_Lean_PersistentArray_append___rarg(x_16, x_250); -lean_dec(x_250); -lean_ctor_set(x_245, 0, x_251); -x_252 = lean_st_ref_set(x_13, x_244, x_246); -x_253 = lean_ctor_get(x_252, 1); -lean_inc(x_253); -lean_dec(x_252); -x_254 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__12(x_239, x_9, x_10, x_11, x_12, x_13, x_253); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_239); -if (lean_obj_tag(x_254) == 0) -{ -uint8_t x_255; -x_255 = !lean_is_exclusive(x_254); -if (x_255 == 0) -{ -return x_254; -} -else -{ -lean_object* x_256; lean_object* x_257; lean_object* x_258; -x_256 = lean_ctor_get(x_254, 0); -x_257 = lean_ctor_get(x_254, 1); -lean_inc(x_257); +x_253 = lean_st_ref_take(x_13, x_245); +x_254 = lean_ctor_get(x_253, 0); +lean_inc(x_254); +x_255 = lean_ctor_get(x_254, 3); +lean_inc(x_255); +x_256 = lean_ctor_get(x_253, 1); lean_inc(x_256); -lean_dec(x_254); -x_258 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_258, 0, x_256); -lean_ctor_set(x_258, 1, x_257); -return x_258; -} -} -else +lean_dec(x_253); +x_257 = !lean_is_exclusive(x_254); +if (x_257 == 0) { -uint8_t x_259; -x_259 = !lean_is_exclusive(x_254); +lean_object* x_258; uint8_t x_259; +x_258 = lean_ctor_get(x_254, 3); +lean_dec(x_258); +x_259 = !lean_is_exclusive(x_255); if (x_259 == 0) { -return x_254; +lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; +x_260 = lean_ctor_get(x_255, 0); +x_261 = l_Lean_PersistentArray_append___rarg(x_16, x_260); +lean_dec(x_260); +lean_ctor_set(x_255, 0, x_261); +x_262 = lean_st_ref_set(x_13, x_254, x_256); +x_263 = lean_ctor_get(x_262, 1); +lean_inc(x_263); +lean_dec(x_262); +x_264 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__12(x_247, x_9, x_10, x_11, x_12, x_13, x_263); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_247); +if (lean_obj_tag(x_264) == 0) +{ +uint8_t x_265; +x_265 = !lean_is_exclusive(x_264); +if (x_265 == 0) +{ +return x_264; } else { -lean_object* x_260; lean_object* x_261; lean_object* x_262; -x_260 = lean_ctor_get(x_254, 0); -x_261 = lean_ctor_get(x_254, 1); -lean_inc(x_261); -lean_inc(x_260); -lean_dec(x_254); -x_262 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_262, 0, x_260); -lean_ctor_set(x_262, 1, x_261); -return x_262; -} -} -} -else -{ -uint64_t x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; -x_263 = lean_ctor_get_uint64(x_245, sizeof(void*)*1); -x_264 = lean_ctor_get(x_245, 0); -lean_inc(x_264); -lean_dec(x_245); -x_265 = l_Lean_PersistentArray_append___rarg(x_16, x_264); +lean_object* x_266; lean_object* x_267; lean_object* x_268; +x_266 = lean_ctor_get(x_264, 0); +x_267 = lean_ctor_get(x_264, 1); +lean_inc(x_267); +lean_inc(x_266); lean_dec(x_264); -x_266 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_266, 0, x_265); -lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_263); -lean_ctor_set(x_244, 3, x_266); -x_267 = lean_st_ref_set(x_13, x_244, x_246); -x_268 = lean_ctor_get(x_267, 1); -lean_inc(x_268); -lean_dec(x_267); -x_269 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__12(x_239, x_9, x_10, x_11, x_12, x_13, x_268); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_239); -if (lean_obj_tag(x_269) == 0) +x_268 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_268, 0, x_266); +lean_ctor_set(x_268, 1, x_267); +return x_268; +} +} +else { -lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; -x_270 = lean_ctor_get(x_269, 0); -lean_inc(x_270); -x_271 = lean_ctor_get(x_269, 1); +uint8_t x_269; +x_269 = !lean_is_exclusive(x_264); +if (x_269 == 0) +{ +return x_264; +} +else +{ +lean_object* x_270; lean_object* x_271; lean_object* x_272; +x_270 = lean_ctor_get(x_264, 0); +x_271 = lean_ctor_get(x_264, 1); lean_inc(x_271); -if (lean_is_exclusive(x_269)) { - lean_ctor_release(x_269, 0); - lean_ctor_release(x_269, 1); - x_272 = x_269; -} else { - lean_dec_ref(x_269); - x_272 = lean_box(0); +lean_inc(x_270); +lean_dec(x_264); +x_272 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_272, 0, x_270); +lean_ctor_set(x_272, 1, x_271); +return x_272; } -if (lean_is_scalar(x_272)) { - x_273 = lean_alloc_ctor(0, 2, 0); -} else { - x_273 = x_272; } -lean_ctor_set(x_273, 0, x_270); -lean_ctor_set(x_273, 1, x_271); -return x_273; } else { -lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; -x_274 = lean_ctor_get(x_269, 0); +uint64_t x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; +x_273 = lean_ctor_get_uint64(x_255, sizeof(void*)*1); +x_274 = lean_ctor_get(x_255, 0); lean_inc(x_274); -x_275 = lean_ctor_get(x_269, 1); -lean_inc(x_275); -if (lean_is_exclusive(x_269)) { - lean_ctor_release(x_269, 0); - lean_ctor_release(x_269, 1); - x_276 = x_269; -} else { - lean_dec_ref(x_269); - x_276 = lean_box(0); -} -if (lean_is_scalar(x_276)) { - x_277 = lean_alloc_ctor(1, 2, 0); -} else { - x_277 = x_276; -} -lean_ctor_set(x_277, 0, x_274); -lean_ctor_set(x_277, 1, x_275); -return x_277; -} -} -} -else -{ -lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; uint64_t x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; -x_278 = lean_ctor_get(x_244, 0); -x_279 = lean_ctor_get(x_244, 1); -x_280 = lean_ctor_get(x_244, 2); -x_281 = lean_ctor_get(x_244, 4); -x_282 = lean_ctor_get(x_244, 5); -x_283 = lean_ctor_get(x_244, 6); -x_284 = lean_ctor_get(x_244, 7); -lean_inc(x_284); -lean_inc(x_283); -lean_inc(x_282); -lean_inc(x_281); -lean_inc(x_280); -lean_inc(x_279); +lean_dec(x_255); +x_275 = l_Lean_PersistentArray_append___rarg(x_16, x_274); +lean_dec(x_274); +x_276 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_276, 0, x_275); +lean_ctor_set_uint64(x_276, sizeof(void*)*1, x_273); +lean_ctor_set(x_254, 3, x_276); +x_277 = lean_st_ref_set(x_13, x_254, x_256); +x_278 = lean_ctor_get(x_277, 1); lean_inc(x_278); -lean_dec(x_244); -x_285 = lean_ctor_get_uint64(x_245, sizeof(void*)*1); -x_286 = lean_ctor_get(x_245, 0); -lean_inc(x_286); -if (lean_is_exclusive(x_245)) { - lean_ctor_release(x_245, 0); - x_287 = x_245; -} else { - lean_dec_ref(x_245); - x_287 = lean_box(0); -} -x_288 = l_Lean_PersistentArray_append___rarg(x_16, x_286); -lean_dec(x_286); -if (lean_is_scalar(x_287)) { - x_289 = lean_alloc_ctor(0, 1, 8); -} else { - x_289 = x_287; -} -lean_ctor_set(x_289, 0, x_288); -lean_ctor_set_uint64(x_289, sizeof(void*)*1, x_285); -x_290 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_290, 0, x_278); -lean_ctor_set(x_290, 1, x_279); -lean_ctor_set(x_290, 2, x_280); -lean_ctor_set(x_290, 3, x_289); -lean_ctor_set(x_290, 4, x_281); -lean_ctor_set(x_290, 5, x_282); -lean_ctor_set(x_290, 6, x_283); -lean_ctor_set(x_290, 7, x_284); -x_291 = lean_st_ref_set(x_13, x_290, x_246); -x_292 = lean_ctor_get(x_291, 1); -lean_inc(x_292); -lean_dec(x_291); -x_293 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__12(x_239, x_9, x_10, x_11, x_12, x_13, x_292); +lean_dec(x_277); +x_279 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__12(x_247, x_9, x_10, x_11, x_12, x_13, x_278); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_239); -if (lean_obj_tag(x_293) == 0) +lean_dec(x_247); +if (lean_obj_tag(x_279) == 0) { -lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; -x_294 = lean_ctor_get(x_293, 0); +lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; +x_280 = lean_ctor_get(x_279, 0); +lean_inc(x_280); +x_281 = lean_ctor_get(x_279, 1); +lean_inc(x_281); +if (lean_is_exclusive(x_279)) { + lean_ctor_release(x_279, 0); + lean_ctor_release(x_279, 1); + x_282 = x_279; +} else { + lean_dec_ref(x_279); + x_282 = lean_box(0); +} +if (lean_is_scalar(x_282)) { + x_283 = lean_alloc_ctor(0, 2, 0); +} else { + x_283 = x_282; +} +lean_ctor_set(x_283, 0, x_280); +lean_ctor_set(x_283, 1, x_281); +return x_283; +} +else +{ +lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; +x_284 = lean_ctor_get(x_279, 0); +lean_inc(x_284); +x_285 = lean_ctor_get(x_279, 1); +lean_inc(x_285); +if (lean_is_exclusive(x_279)) { + lean_ctor_release(x_279, 0); + lean_ctor_release(x_279, 1); + x_286 = x_279; +} else { + lean_dec_ref(x_279); + x_286 = lean_box(0); +} +if (lean_is_scalar(x_286)) { + x_287 = lean_alloc_ctor(1, 2, 0); +} else { + x_287 = x_286; +} +lean_ctor_set(x_287, 0, x_284); +lean_ctor_set(x_287, 1, x_285); +return x_287; +} +} +} +else +{ +lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; uint64_t x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; +x_288 = lean_ctor_get(x_254, 0); +x_289 = lean_ctor_get(x_254, 1); +x_290 = lean_ctor_get(x_254, 2); +x_291 = lean_ctor_get(x_254, 4); +x_292 = lean_ctor_get(x_254, 5); +x_293 = lean_ctor_get(x_254, 6); +x_294 = lean_ctor_get(x_254, 7); lean_inc(x_294); -x_295 = lean_ctor_get(x_293, 1); -lean_inc(x_295); -if (lean_is_exclusive(x_293)) { - lean_ctor_release(x_293, 0); - lean_ctor_release(x_293, 1); - x_296 = x_293; +lean_inc(x_293); +lean_inc(x_292); +lean_inc(x_291); +lean_inc(x_290); +lean_inc(x_289); +lean_inc(x_288); +lean_dec(x_254); +x_295 = lean_ctor_get_uint64(x_255, sizeof(void*)*1); +x_296 = lean_ctor_get(x_255, 0); +lean_inc(x_296); +if (lean_is_exclusive(x_255)) { + lean_ctor_release(x_255, 0); + x_297 = x_255; } else { - lean_dec_ref(x_293); - x_296 = lean_box(0); + lean_dec_ref(x_255); + x_297 = lean_box(0); } -if (lean_is_scalar(x_296)) { - x_297 = lean_alloc_ctor(0, 2, 0); +x_298 = l_Lean_PersistentArray_append___rarg(x_16, x_296); +lean_dec(x_296); +if (lean_is_scalar(x_297)) { + x_299 = lean_alloc_ctor(0, 1, 8); } else { - x_297 = x_296; + x_299 = x_297; } -lean_ctor_set(x_297, 0, x_294); -lean_ctor_set(x_297, 1, x_295); -return x_297; +lean_ctor_set(x_299, 0, x_298); +lean_ctor_set_uint64(x_299, sizeof(void*)*1, x_295); +x_300 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_300, 0, x_288); +lean_ctor_set(x_300, 1, x_289); +lean_ctor_set(x_300, 2, x_290); +lean_ctor_set(x_300, 3, x_299); +lean_ctor_set(x_300, 4, x_291); +lean_ctor_set(x_300, 5, x_292); +lean_ctor_set(x_300, 6, x_293); +lean_ctor_set(x_300, 7, x_294); +x_301 = lean_st_ref_set(x_13, x_300, x_256); +x_302 = lean_ctor_get(x_301, 1); +lean_inc(x_302); +lean_dec(x_301); +x_303 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__12(x_247, x_9, x_10, x_11, x_12, x_13, x_302); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_247); +if (lean_obj_tag(x_303) == 0) +{ +lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +if (lean_is_exclusive(x_303)) { + lean_ctor_release(x_303, 0); + lean_ctor_release(x_303, 1); + x_306 = x_303; +} else { + lean_dec_ref(x_303); + x_306 = lean_box(0); +} +if (lean_is_scalar(x_306)) { + x_307 = lean_alloc_ctor(0, 2, 0); +} else { + x_307 = x_306; +} +lean_ctor_set(x_307, 0, x_304); +lean_ctor_set(x_307, 1, x_305); +return x_307; } else { -lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; -x_298 = lean_ctor_get(x_293, 0); -lean_inc(x_298); -x_299 = lean_ctor_get(x_293, 1); -lean_inc(x_299); -if (lean_is_exclusive(x_293)) { - lean_ctor_release(x_293, 0); - lean_ctor_release(x_293, 1); - x_300 = x_293; +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; +x_308 = lean_ctor_get(x_303, 0); +lean_inc(x_308); +x_309 = lean_ctor_get(x_303, 1); +lean_inc(x_309); +if (lean_is_exclusive(x_303)) { + lean_ctor_release(x_303, 0); + lean_ctor_release(x_303, 1); + x_310 = x_303; } else { - lean_dec_ref(x_293); - x_300 = lean_box(0); + lean_dec_ref(x_303); + x_310 = lean_box(0); } -if (lean_is_scalar(x_300)) { - x_301 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_310)) { + x_311 = lean_alloc_ctor(1, 2, 0); } else { - x_301 = x_300; + x_311 = x_310; } -lean_ctor_set(x_301, 0, x_298); -lean_ctor_set(x_301, 1, x_299); -return x_301; +lean_ctor_set(x_311, 0, x_308); +lean_ctor_set(x_311, 1, x_309); +return x_311; } } } else { -lean_object* x_302; double x_303; double x_304; lean_object* x_305; -x_302 = lean_box(0); -x_303 = lean_unbox_float(x_240); -lean_dec(x_240); -x_304 = lean_unbox_float(x_241); -lean_dec(x_241); -x_305 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2(x_239, x_38, x_3, x_4, x_5, x_16, x_23, x_2, x_242, x_303, x_304, x_302, x_9, x_10, x_11, x_12, x_13, x_237); +lean_object* x_312; double x_313; double x_314; lean_object* x_315; +x_312 = lean_box(0); +x_313 = lean_unbox_float(x_248); +lean_dec(x_248); +x_314 = lean_unbox_float(x_249); +lean_dec(x_249); +x_315 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2(x_247, x_38, x_3, x_4, x_5, x_16, x_23, x_251, x_313, x_314, x_312, x_9, x_10, x_11, x_12, x_13, x_245); lean_dec(x_13); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_239); -return x_305; -} -} -else -{ -lean_object* x_306; double x_307; double x_308; lean_object* x_309; -x_306 = lean_box(0); -x_307 = lean_unbox_float(x_240); -lean_dec(x_240); -x_308 = lean_unbox_float(x_241); -lean_dec(x_241); -x_309 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2(x_239, x_38, x_3, x_4, x_5, x_16, x_23, x_2, x_242, x_307, x_308, x_306, x_9, x_10, x_11, x_12, x_13, x_237); -lean_dec(x_13); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_239); -return x_309; +lean_dec(x_247); +return x_315; } } } @@ -4109,7 +4151,7 @@ return x_309; } else { -uint8_t x_412; +uint8_t x_428; lean_dec(x_33); lean_dec(x_23); lean_dec(x_16); @@ -4121,23 +4163,23 @@ lean_dec(x_9); lean_dec(x_7); lean_dec(x_5); lean_dec(x_3); -x_412 = !lean_is_exclusive(x_34); -if (x_412 == 0) +x_428 = !lean_is_exclusive(x_34); +if (x_428 == 0) { return x_34; } else { -lean_object* x_413; lean_object* x_414; lean_object* x_415; -x_413 = lean_ctor_get(x_34, 0); -x_414 = lean_ctor_get(x_34, 1); -lean_inc(x_414); -lean_inc(x_413); +lean_object* x_429; lean_object* x_430; lean_object* x_431; +x_429 = lean_ctor_get(x_34, 0); +x_430 = lean_ctor_get(x_34, 1); +lean_inc(x_430); +lean_inc(x_429); lean_dec(x_34); -x_415 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_415, 0, x_413); -lean_ctor_set(x_415, 1, x_414); -return x_415; +x_431 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_431, 0, x_429); +lean_ctor_set(x_431, 1, x_430); +return x_431; } } } @@ -5848,61 +5890,36 @@ lean_dec(x_10); return x_15; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -double x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; -x_18 = l_Lean_addTrace___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__3___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_19 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_19, 0, x_1); -lean_ctor_set(x_19, 1, x_3); -lean_ctor_set_float(x_19, sizeof(void*)*2, x_18); -lean_ctor_set_float(x_19, sizeof(void*)*2 + 8, x_18); -lean_ctor_set_uint8(x_19, sizeof(void*)*2 + 16, x_2); -x_20 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2___closed__4; -x_21 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_20); -if (x_21 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_17 = l_Lean_addTrace___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__3___closed__1; +x_18 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_3); +lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); +lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); +lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); +x_19 = lean_box(0); +x_20 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__1(x_4, x_5, x_10, x_6, x_18, x_19, x_11, x_12, x_13, x_14, x_15, x_16); +return x_20; +} +else { -lean_object* x_22; lean_object* x_23; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_21, 0, x_1); +lean_ctor_set(x_21, 1, x_3); +lean_ctor_set_float(x_21, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_21, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_21, sizeof(void*)*2 + 16, x_2); x_22 = lean_box(0); -x_23 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__1(x_4, x_5, x_11, x_6, x_19, x_22, x_12, x_13, x_14, x_15, x_16, x_17); +x_23 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__1(x_4, x_5, x_10, x_6, x_21, x_22, x_11, x_12, x_13, x_14, x_15, x_16); return x_23; } -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -lean_dec(x_19); -x_24 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_24, 0, x_1); -lean_ctor_set(x_24, 1, x_3); -lean_ctor_set_float(x_24, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_24, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_24, sizeof(void*)*2 + 16, x_2); -x_25 = lean_box(0); -x_26 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__1(x_4, x_5, x_11, x_6, x_24, x_25, x_12, x_13, x_14, x_15, x_16, x_17); -return x_26; -} -} -else -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; -lean_dec(x_19); -x_27 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_27, 0, x_1); -lean_ctor_set(x_27, 1, x_3); -lean_ctor_set_float(x_27, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_27, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_27, sizeof(void*)*2 + 16, x_2); -x_28 = lean_box(0); -x_29 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__1(x_4, x_5, x_11, x_6, x_27, x_28, x_12, x_13, x_14, x_15, x_16, x_17); -return x_29; -} } } static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3___closed__1() { @@ -5922,49 +5939,49 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -lean_object* x_18; lean_object* x_19; -x_18 = lean_ctor_get(x_15, 5); -lean_inc(x_18); -lean_inc(x_16); +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_14, 5); +lean_inc(x_17); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_19 = lean_apply_7(x_10, x_5, x_12, x_13, x_14, x_15, x_16, x_17); -if (lean_obj_tag(x_19) == 0) +x_18 = lean_apply_7(x_9, x_5, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_18) == 0) { -lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_20 = lean_ctor_get(x_19, 0); +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); lean_inc(x_20); -x_21 = lean_ctor_get(x_19, 1); -lean_inc(x_21); -lean_dec(x_19); -x_22 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__2(x_1, x_2, x_3, x_4, x_18, x_5, x_6, x_7, x_8, x_9, x_20, x_12, x_13, x_14, x_15, x_16, x_21); -lean_dec(x_16); -lean_dec(x_14); +lean_dec(x_18); +x_21 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_19, x_11, x_12, x_13, x_14, x_15, x_20); +lean_dec(x_15); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_22; +return x_21; } else { -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_ctor_get(x_19, 1); -lean_inc(x_23); -lean_dec(x_19); -x_24 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3___closed__2; -x_25 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__2(x_1, x_2, x_3, x_4, x_18, x_5, x_6, x_7, x_8, x_9, x_24, x_12, x_13, x_14, x_15, x_16, x_23); -lean_dec(x_16); -lean_dec(x_14); +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_18, 1); +lean_inc(x_22); +lean_dec(x_18); +x_23 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3___closed__2; +x_24 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_23, x_11, x_12, x_13, x_14, x_15, x_22); +lean_dec(x_15); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_25; +return x_24; } } } @@ -5982,254 +5999,254 @@ x_18 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structu x_19 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_18); if (x_19 == 0) { -lean_object* x_20; lean_object* x_21; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; -x_116 = lean_io_mono_nanos_now(x_17); -x_117 = lean_ctor_get(x_116, 0); -lean_inc(x_117); -x_118 = lean_ctor_get(x_116, 1); -lean_inc(x_118); -lean_dec(x_116); +lean_object* x_20; lean_object* x_21; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; +x_124 = lean_io_mono_nanos_now(x_17); +x_125 = lean_ctor_get(x_124, 0); +lean_inc(x_125); +x_126 = lean_ctor_get(x_124, 1); +lean_inc(x_126); +lean_dec(x_124); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_119 = lean_apply_6(x_7, x_9, x_10, x_11, x_12, x_13, x_118); -if (lean_obj_tag(x_119) == 0) +x_127 = lean_apply_6(x_7, x_9, x_10, x_11, x_12, x_13, x_126); +if (lean_obj_tag(x_127) == 0) { -uint8_t x_120; -x_120 = !lean_is_exclusive(x_119); -if (x_120 == 0) +uint8_t x_128; +x_128 = !lean_is_exclusive(x_127); +if (x_128 == 0) { -lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; uint8_t x_125; -x_121 = lean_ctor_get(x_119, 0); -x_122 = lean_ctor_get(x_119, 1); -x_123 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_123, 0, x_121); -x_124 = lean_io_mono_nanos_now(x_122); -x_125 = !lean_is_exclusive(x_124); -if (x_125 == 0) +lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; uint8_t x_133; +x_129 = lean_ctor_get(x_127, 0); +x_130 = lean_ctor_get(x_127, 1); +x_131 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_131, 0, x_129); +x_132 = lean_io_mono_nanos_now(x_130); +x_133 = !lean_is_exclusive(x_132); +if (x_133 == 0) { -lean_object* x_126; lean_object* x_127; uint8_t x_128; lean_object* x_129; double x_130; double x_131; double x_132; double x_133; double x_134; lean_object* x_135; lean_object* x_136; -x_126 = lean_ctor_get(x_124, 0); -x_127 = lean_ctor_get(x_124, 1); -x_128 = 0; -x_129 = lean_unsigned_to_nat(0u); -x_130 = l_Float_ofScientific(x_117, x_128, x_129); -lean_dec(x_117); -x_131 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; -x_132 = lean_float_div(x_130, x_131); -x_133 = l_Float_ofScientific(x_126, x_128, x_129); -lean_dec(x_126); -x_134 = lean_float_div(x_133, x_131); -x_135 = lean_box_float(x_132); -x_136 = lean_box_float(x_134); -lean_ctor_set(x_124, 1, x_136); -lean_ctor_set(x_124, 0, x_135); -lean_ctor_set(x_119, 1, x_124); -lean_ctor_set(x_119, 0, x_123); -x_20 = x_119; -x_21 = x_127; -goto block_115; +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; +x_134 = lean_ctor_get(x_132, 0); +x_135 = lean_ctor_get(x_132, 1); +x_136 = 0; +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Float_ofScientific(x_125, x_136, x_137); +lean_dec(x_125); +x_139 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; +x_140 = lean_float_div(x_138, x_139); +x_141 = l_Float_ofScientific(x_134, x_136, x_137); +lean_dec(x_134); +x_142 = lean_float_div(x_141, x_139); +x_143 = lean_box_float(x_140); +x_144 = lean_box_float(x_142); +lean_ctor_set(x_132, 1, x_144); +lean_ctor_set(x_132, 0, x_143); +lean_ctor_set(x_127, 1, x_132); +lean_ctor_set(x_127, 0, x_131); +x_20 = x_127; +x_21 = x_135; +goto block_123; } else { -lean_object* x_137; lean_object* x_138; uint8_t x_139; lean_object* x_140; double x_141; double x_142; double x_143; double x_144; double x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; -x_137 = lean_ctor_get(x_124, 0); -x_138 = lean_ctor_get(x_124, 1); -lean_inc(x_138); -lean_inc(x_137); -lean_dec(x_124); -x_139 = 0; -x_140 = lean_unsigned_to_nat(0u); -x_141 = l_Float_ofScientific(x_117, x_139, x_140); -lean_dec(x_117); -x_142 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; -x_143 = lean_float_div(x_141, x_142); -x_144 = l_Float_ofScientific(x_137, x_139, x_140); -lean_dec(x_137); -x_145 = lean_float_div(x_144, x_142); -x_146 = lean_box_float(x_143); -x_147 = lean_box_float(x_145); -x_148 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_148, 0, x_146); -lean_ctor_set(x_148, 1, x_147); -lean_ctor_set(x_119, 1, x_148); -lean_ctor_set(x_119, 0, x_123); -x_20 = x_119; -x_21 = x_138; -goto block_115; +lean_object* x_145; lean_object* x_146; uint8_t x_147; lean_object* x_148; double x_149; double x_150; double x_151; double x_152; double x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; +x_145 = lean_ctor_get(x_132, 0); +x_146 = lean_ctor_get(x_132, 1); +lean_inc(x_146); +lean_inc(x_145); +lean_dec(x_132); +x_147 = 0; +x_148 = lean_unsigned_to_nat(0u); +x_149 = l_Float_ofScientific(x_125, x_147, x_148); +lean_dec(x_125); +x_150 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; +x_151 = lean_float_div(x_149, x_150); +x_152 = l_Float_ofScientific(x_145, x_147, x_148); +lean_dec(x_145); +x_153 = lean_float_div(x_152, x_150); +x_154 = lean_box_float(x_151); +x_155 = lean_box_float(x_153); +x_156 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_156, 0, x_154); +lean_ctor_set(x_156, 1, x_155); +lean_ctor_set(x_127, 1, x_156); +lean_ctor_set(x_127, 0, x_131); +x_20 = x_127; +x_21 = x_146; +goto block_123; } } else { -lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; uint8_t x_156; lean_object* x_157; double x_158; double x_159; double x_160; double x_161; double x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; -x_149 = lean_ctor_get(x_119, 0); -x_150 = lean_ctor_get(x_119, 1); -lean_inc(x_150); -lean_inc(x_149); -lean_dec(x_119); -x_151 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_151, 0, x_149); -x_152 = lean_io_mono_nanos_now(x_150); -x_153 = lean_ctor_get(x_152, 0); -lean_inc(x_153); -x_154 = lean_ctor_get(x_152, 1); -lean_inc(x_154); -if (lean_is_exclusive(x_152)) { - lean_ctor_release(x_152, 0); - lean_ctor_release(x_152, 1); - x_155 = x_152; +lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; uint8_t x_164; lean_object* x_165; double x_166; double x_167; double x_168; double x_169; double x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; +x_157 = lean_ctor_get(x_127, 0); +x_158 = lean_ctor_get(x_127, 1); +lean_inc(x_158); +lean_inc(x_157); +lean_dec(x_127); +x_159 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_159, 0, x_157); +x_160 = lean_io_mono_nanos_now(x_158); +x_161 = lean_ctor_get(x_160, 0); +lean_inc(x_161); +x_162 = lean_ctor_get(x_160, 1); +lean_inc(x_162); +if (lean_is_exclusive(x_160)) { + lean_ctor_release(x_160, 0); + lean_ctor_release(x_160, 1); + x_163 = x_160; } else { - lean_dec_ref(x_152); - x_155 = lean_box(0); + lean_dec_ref(x_160); + x_163 = lean_box(0); } -x_156 = 0; -x_157 = lean_unsigned_to_nat(0u); -x_158 = l_Float_ofScientific(x_117, x_156, x_157); -lean_dec(x_117); -x_159 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; -x_160 = lean_float_div(x_158, x_159); -x_161 = l_Float_ofScientific(x_153, x_156, x_157); -lean_dec(x_153); -x_162 = lean_float_div(x_161, x_159); -x_163 = lean_box_float(x_160); -x_164 = lean_box_float(x_162); -if (lean_is_scalar(x_155)) { - x_165 = lean_alloc_ctor(0, 2, 0); +x_164 = 0; +x_165 = lean_unsigned_to_nat(0u); +x_166 = l_Float_ofScientific(x_125, x_164, x_165); +lean_dec(x_125); +x_167 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; +x_168 = lean_float_div(x_166, x_167); +x_169 = l_Float_ofScientific(x_161, x_164, x_165); +lean_dec(x_161); +x_170 = lean_float_div(x_169, x_167); +x_171 = lean_box_float(x_168); +x_172 = lean_box_float(x_170); +if (lean_is_scalar(x_163)) { + x_173 = lean_alloc_ctor(0, 2, 0); } else { - x_165 = x_155; + x_173 = x_163; } -lean_ctor_set(x_165, 0, x_163); -lean_ctor_set(x_165, 1, x_164); -x_166 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_166, 0, x_151); -lean_ctor_set(x_166, 1, x_165); -x_20 = x_166; -x_21 = x_154; -goto block_115; +lean_ctor_set(x_173, 0, x_171); +lean_ctor_set(x_173, 1, x_172); +x_174 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_174, 0, x_159); +lean_ctor_set(x_174, 1, x_173); +x_20 = x_174; +x_21 = x_162; +goto block_123; } } else { -uint8_t x_167; -x_167 = !lean_is_exclusive(x_119); -if (x_167 == 0) +uint8_t x_175; +x_175 = !lean_is_exclusive(x_127); +if (x_175 == 0) { -lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; uint8_t x_172; -x_168 = lean_ctor_get(x_119, 0); -x_169 = lean_ctor_get(x_119, 1); -x_170 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_170, 0, x_168); -x_171 = lean_io_mono_nanos_now(x_169); -x_172 = !lean_is_exclusive(x_171); -if (x_172 == 0) +lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; uint8_t x_180; +x_176 = lean_ctor_get(x_127, 0); +x_177 = lean_ctor_get(x_127, 1); +x_178 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_178, 0, x_176); +x_179 = lean_io_mono_nanos_now(x_177); +x_180 = !lean_is_exclusive(x_179); +if (x_180 == 0) { -lean_object* x_173; lean_object* x_174; uint8_t x_175; lean_object* x_176; double x_177; double x_178; double x_179; double x_180; double x_181; lean_object* x_182; lean_object* x_183; -x_173 = lean_ctor_get(x_171, 0); -x_174 = lean_ctor_get(x_171, 1); -x_175 = 0; -x_176 = lean_unsigned_to_nat(0u); -x_177 = l_Float_ofScientific(x_117, x_175, x_176); -lean_dec(x_117); -x_178 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; -x_179 = lean_float_div(x_177, x_178); -x_180 = l_Float_ofScientific(x_173, x_175, x_176); -lean_dec(x_173); -x_181 = lean_float_div(x_180, x_178); -x_182 = lean_box_float(x_179); -x_183 = lean_box_float(x_181); -lean_ctor_set(x_171, 1, x_183); -lean_ctor_set(x_171, 0, x_182); -lean_ctor_set_tag(x_119, 0); -lean_ctor_set(x_119, 1, x_171); -lean_ctor_set(x_119, 0, x_170); -x_20 = x_119; -x_21 = x_174; -goto block_115; +lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; +x_181 = lean_ctor_get(x_179, 0); +x_182 = lean_ctor_get(x_179, 1); +x_183 = 0; +x_184 = lean_unsigned_to_nat(0u); +x_185 = l_Float_ofScientific(x_125, x_183, x_184); +lean_dec(x_125); +x_186 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; +x_187 = lean_float_div(x_185, x_186); +x_188 = l_Float_ofScientific(x_181, x_183, x_184); +lean_dec(x_181); +x_189 = lean_float_div(x_188, x_186); +x_190 = lean_box_float(x_187); +x_191 = lean_box_float(x_189); +lean_ctor_set(x_179, 1, x_191); +lean_ctor_set(x_179, 0, x_190); +lean_ctor_set_tag(x_127, 0); +lean_ctor_set(x_127, 1, x_179); +lean_ctor_set(x_127, 0, x_178); +x_20 = x_127; +x_21 = x_182; +goto block_123; } else { -lean_object* x_184; lean_object* x_185; uint8_t x_186; lean_object* x_187; double x_188; double x_189; double x_190; double x_191; double x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; -x_184 = lean_ctor_get(x_171, 0); -x_185 = lean_ctor_get(x_171, 1); -lean_inc(x_185); -lean_inc(x_184); -lean_dec(x_171); -x_186 = 0; -x_187 = lean_unsigned_to_nat(0u); -x_188 = l_Float_ofScientific(x_117, x_186, x_187); -lean_dec(x_117); -x_189 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; -x_190 = lean_float_div(x_188, x_189); -x_191 = l_Float_ofScientific(x_184, x_186, x_187); -lean_dec(x_184); -x_192 = lean_float_div(x_191, x_189); -x_193 = lean_box_float(x_190); -x_194 = lean_box_float(x_192); -x_195 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_195, 0, x_193); -lean_ctor_set(x_195, 1, x_194); -lean_ctor_set_tag(x_119, 0); -lean_ctor_set(x_119, 1, x_195); -lean_ctor_set(x_119, 0, x_170); -x_20 = x_119; -x_21 = x_185; -goto block_115; +lean_object* x_192; lean_object* x_193; uint8_t x_194; lean_object* x_195; double x_196; double x_197; double x_198; double x_199; double x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; +x_192 = lean_ctor_get(x_179, 0); +x_193 = lean_ctor_get(x_179, 1); +lean_inc(x_193); +lean_inc(x_192); +lean_dec(x_179); +x_194 = 0; +x_195 = lean_unsigned_to_nat(0u); +x_196 = l_Float_ofScientific(x_125, x_194, x_195); +lean_dec(x_125); +x_197 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; +x_198 = lean_float_div(x_196, x_197); +x_199 = l_Float_ofScientific(x_192, x_194, x_195); +lean_dec(x_192); +x_200 = lean_float_div(x_199, x_197); +x_201 = lean_box_float(x_198); +x_202 = lean_box_float(x_200); +x_203 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_203, 0, x_201); +lean_ctor_set(x_203, 1, x_202); +lean_ctor_set_tag(x_127, 0); +lean_ctor_set(x_127, 1, x_203); +lean_ctor_set(x_127, 0, x_178); +x_20 = x_127; +x_21 = x_193; +goto block_123; } } else { -lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; uint8_t x_203; lean_object* x_204; double x_205; double x_206; double x_207; double x_208; double x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; -x_196 = lean_ctor_get(x_119, 0); -x_197 = lean_ctor_get(x_119, 1); -lean_inc(x_197); -lean_inc(x_196); -lean_dec(x_119); -x_198 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_198, 0, x_196); -x_199 = lean_io_mono_nanos_now(x_197); -x_200 = lean_ctor_get(x_199, 0); -lean_inc(x_200); -x_201 = lean_ctor_get(x_199, 1); -lean_inc(x_201); -if (lean_is_exclusive(x_199)) { - lean_ctor_release(x_199, 0); - lean_ctor_release(x_199, 1); - x_202 = x_199; +lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; uint8_t x_211; lean_object* x_212; double x_213; double x_214; double x_215; double x_216; double x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; +x_204 = lean_ctor_get(x_127, 0); +x_205 = lean_ctor_get(x_127, 1); +lean_inc(x_205); +lean_inc(x_204); +lean_dec(x_127); +x_206 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_206, 0, x_204); +x_207 = lean_io_mono_nanos_now(x_205); +x_208 = lean_ctor_get(x_207, 0); +lean_inc(x_208); +x_209 = lean_ctor_get(x_207, 1); +lean_inc(x_209); +if (lean_is_exclusive(x_207)) { + lean_ctor_release(x_207, 0); + lean_ctor_release(x_207, 1); + x_210 = x_207; } else { - lean_dec_ref(x_199); - x_202 = lean_box(0); + lean_dec_ref(x_207); + x_210 = lean_box(0); } -x_203 = 0; -x_204 = lean_unsigned_to_nat(0u); -x_205 = l_Float_ofScientific(x_117, x_203, x_204); -lean_dec(x_117); -x_206 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; -x_207 = lean_float_div(x_205, x_206); -x_208 = l_Float_ofScientific(x_200, x_203, x_204); -lean_dec(x_200); -x_209 = lean_float_div(x_208, x_206); -x_210 = lean_box_float(x_207); -x_211 = lean_box_float(x_209); -if (lean_is_scalar(x_202)) { - x_212 = lean_alloc_ctor(0, 2, 0); +x_211 = 0; +x_212 = lean_unsigned_to_nat(0u); +x_213 = l_Float_ofScientific(x_125, x_211, x_212); +lean_dec(x_125); +x_214 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__5; +x_215 = lean_float_div(x_213, x_214); +x_216 = l_Float_ofScientific(x_208, x_211, x_212); +lean_dec(x_208); +x_217 = lean_float_div(x_216, x_214); +x_218 = lean_box_float(x_215); +x_219 = lean_box_float(x_217); +if (lean_is_scalar(x_210)) { + x_220 = lean_alloc_ctor(0, 2, 0); } else { - x_212 = x_202; + x_220 = x_210; } -lean_ctor_set(x_212, 0, x_210); -lean_ctor_set(x_212, 1, x_211); -x_213 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_213, 0, x_198); -lean_ctor_set(x_213, 1, x_212); -x_20 = x_213; -x_21 = x_201; -goto block_115; +lean_ctor_set(x_220, 0, x_218); +lean_ctor_set(x_220, 1, x_219); +x_221 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_221, 0, x_206); +lean_ctor_set(x_221, 1, x_220); +x_20 = x_221; +x_21 = x_209; +goto block_123; } } -block_115: +block_123: { -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_95; uint8_t x_96; +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; uint8_t x_28; x_22 = lean_ctor_get(x_20, 1); lean_inc(x_22); x_23 = lean_ctor_get(x_20, 0); @@ -6240,14 +6257,28 @@ lean_inc(x_24); x_25 = lean_ctor_get(x_22, 1); lean_inc(x_25); lean_dec(x_22); -x_95 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__2; -x_96 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_95); -if (x_96 == 0) +x_26 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__2; +x_27 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_26); +if (x_27 == 0) { -uint8_t x_97; -x_97 = 0; -x_26 = x_97; -goto block_94; +if (x_6 == 0) +{ +uint8_t x_93; +x_93 = 0; +x_28 = x_93; +goto block_92; +} +else +{ +lean_object* x_94; double x_95; double x_96; lean_object* x_97; +x_94 = lean_box(0); +x_95 = lean_unbox_float(x_24); +lean_dec(x_24); +x_96 = lean_unbox_float(x_25); +lean_dec(x_25); +x_97 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3(x_2, x_3, x_4, x_16, x_23, x_27, x_95, x_96, x_5, x_94, x_9, x_10, x_11, x_12, x_13, x_21); +return x_97; +} } else { @@ -6257,6 +6288,8 @@ x_99 = lean_unbox_float(x_24); x_100 = lean_float_sub(x_98, x_99); if (x_19 == 0) { +if (x_6 == 0) +{ lean_object* x_101; lean_object* x_102; uint8_t x_103; lean_object* x_104; double x_105; double x_106; double x_107; uint8_t x_108; x_101 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__3; x_102 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_101); @@ -6267,899 +6300,939 @@ lean_dec(x_102); x_106 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__4; x_107 = lean_float_div(x_105, x_106); x_108 = lean_float_decLt(x_107, x_100); -x_26 = x_108; -goto block_94; +x_28 = x_108; +goto block_92; } else { -lean_object* x_109; lean_object* x_110; uint8_t x_111; lean_object* x_112; double x_113; uint8_t x_114; -x_109 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__3; -x_110 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_109); -x_111 = 0; -x_112 = lean_unsigned_to_nat(0u); -x_113 = l_Float_ofScientific(x_110, x_111, x_112); -lean_dec(x_110); -x_114 = lean_float_decLt(x_113, x_100); -x_26 = x_114; -goto block_94; +lean_object* x_109; double x_110; double x_111; lean_object* x_112; +x_109 = lean_box(0); +x_110 = lean_unbox_float(x_24); +lean_dec(x_24); +x_111 = lean_unbox_float(x_25); +lean_dec(x_25); +x_112 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3(x_2, x_3, x_4, x_16, x_23, x_27, x_110, x_111, x_5, x_109, x_9, x_10, x_11, x_12, x_13, x_21); +return x_112; } } -block_94: +else { if (x_6 == 0) { -if (x_26 == 0) +lean_object* x_113; lean_object* x_114; uint8_t x_115; lean_object* x_116; double x_117; uint8_t x_118; +x_113 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__3; +x_114 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_113); +x_115 = 0; +x_116 = lean_unsigned_to_nat(0u); +x_117 = l_Float_ofScientific(x_114, x_115, x_116); +lean_dec(x_114); +x_118 = lean_float_decLt(x_117, x_100); +x_28 = x_118; +goto block_92; +} +else { -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; +lean_object* x_119; double x_120; double x_121; lean_object* x_122; +x_119 = lean_box(0); +x_120 = lean_unbox_float(x_24); +lean_dec(x_24); +x_121 = lean_unbox_float(x_25); +lean_dec(x_25); +x_122 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3(x_2, x_3, x_4, x_16, x_23, x_27, x_120, x_121, x_5, x_119, x_9, x_10, x_11, x_12, x_13, x_21); +return x_122; +} +} +} +block_92: +{ +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; lean_dec(x_25); lean_dec(x_24); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_27 = lean_st_ref_take(x_13, x_21); -x_28 = lean_ctor_get(x_27, 0); -lean_inc(x_28); -x_29 = lean_ctor_get(x_28, 3); -lean_inc(x_29); -x_30 = lean_ctor_get(x_27, 1); +x_29 = lean_st_ref_take(x_13, x_21); +x_30 = lean_ctor_get(x_29, 0); lean_inc(x_30); -lean_dec(x_27); -x_31 = !lean_is_exclusive(x_28); -if (x_31 == 0) -{ -lean_object* x_32; uint8_t x_33; -x_32 = lean_ctor_get(x_28, 3); -lean_dec(x_32); -x_33 = !lean_is_exclusive(x_29); +x_31 = lean_ctor_get(x_30, 3); +lean_inc(x_31); +x_32 = lean_ctor_get(x_29, 1); +lean_inc(x_32); +lean_dec(x_29); +x_33 = !lean_is_exclusive(x_30); if (x_33 == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; -x_34 = lean_ctor_get(x_29, 0); -x_35 = l_Lean_PersistentArray_append___rarg(x_16, x_34); +lean_object* x_34; uint8_t x_35; +x_34 = lean_ctor_get(x_30, 3); lean_dec(x_34); -lean_ctor_set(x_29, 0, x_35); -x_36 = lean_st_ref_set(x_13, x_28, x_30); -x_37 = lean_ctor_get(x_36, 1); -lean_inc(x_37); +x_35 = !lean_is_exclusive(x_31); +if (x_35 == 0) +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_36 = lean_ctor_get(x_31, 0); +x_37 = l_Lean_PersistentArray_append___rarg(x_16, x_36); lean_dec(x_36); -x_38 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__21(x_23, x_9, x_10, x_11, x_12, x_13, x_37); +lean_ctor_set(x_31, 0, x_37); +x_38 = lean_st_ref_set(x_13, x_30, x_32); +x_39 = lean_ctor_get(x_38, 1); +lean_inc(x_39); +lean_dec(x_38); +x_40 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__21(x_23, x_9, x_10, x_11, x_12, x_13, x_39); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_23); -if (lean_obj_tag(x_38) == 0) +if (lean_obj_tag(x_40) == 0) { -uint8_t x_39; -x_39 = !lean_is_exclusive(x_38); -if (x_39 == 0) +uint8_t x_41; +x_41 = !lean_is_exclusive(x_40); +if (x_41 == 0) { -return x_38; +return x_40; } else { -lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_40 = lean_ctor_get(x_38, 0); -x_41 = lean_ctor_get(x_38, 1); -lean_inc(x_41); -lean_inc(x_40); -lean_dec(x_38); -x_42 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_42, 0, x_40); -lean_ctor_set(x_42, 1, x_41); -return x_42; +lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_42 = lean_ctor_get(x_40, 0); +x_43 = lean_ctor_get(x_40, 1); +lean_inc(x_43); +lean_inc(x_42); +lean_dec(x_40); +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_42); +lean_ctor_set(x_44, 1, x_43); +return x_44; } } else { -uint8_t x_43; -x_43 = !lean_is_exclusive(x_38); -if (x_43 == 0) +uint8_t x_45; +x_45 = !lean_is_exclusive(x_40); +if (x_45 == 0) { -return x_38; +return x_40; } else { -lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_44 = lean_ctor_get(x_38, 0); -x_45 = lean_ctor_get(x_38, 1); -lean_inc(x_45); -lean_inc(x_44); -lean_dec(x_38); -x_46 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_46, 0, x_44); -lean_ctor_set(x_46, 1, x_45); -return x_46; +lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_46 = lean_ctor_get(x_40, 0); +x_47 = lean_ctor_get(x_40, 1); +lean_inc(x_47); +lean_inc(x_46); +lean_dec(x_40); +x_48 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_47); +return x_48; } } } else { -uint64_t x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; -x_47 = lean_ctor_get_uint64(x_29, sizeof(void*)*1); -x_48 = lean_ctor_get(x_29, 0); -lean_inc(x_48); -lean_dec(x_29); -x_49 = l_Lean_PersistentArray_append___rarg(x_16, x_48); -lean_dec(x_48); -x_50 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_50, 0, x_49); -lean_ctor_set_uint64(x_50, sizeof(void*)*1, x_47); -lean_ctor_set(x_28, 3, x_50); -x_51 = lean_st_ref_set(x_13, x_28, x_30); -x_52 = lean_ctor_get(x_51, 1); -lean_inc(x_52); -lean_dec(x_51); -x_53 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__21(x_23, x_9, x_10, x_11, x_12, x_13, x_52); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_23); -if (lean_obj_tag(x_53) == 0) -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_54 = lean_ctor_get(x_53, 0); +uint64_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_49 = lean_ctor_get_uint64(x_31, sizeof(void*)*1); +x_50 = lean_ctor_get(x_31, 0); +lean_inc(x_50); +lean_dec(x_31); +x_51 = l_Lean_PersistentArray_append___rarg(x_16, x_50); +lean_dec(x_50); +x_52 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set_uint64(x_52, sizeof(void*)*1, x_49); +lean_ctor_set(x_30, 3, x_52); +x_53 = lean_st_ref_set(x_13, x_30, x_32); +x_54 = lean_ctor_get(x_53, 1); lean_inc(x_54); -x_55 = lean_ctor_get(x_53, 1); -lean_inc(x_55); -if (lean_is_exclusive(x_53)) { - lean_ctor_release(x_53, 0); - lean_ctor_release(x_53, 1); - x_56 = x_53; +lean_dec(x_53); +x_55 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__21(x_23, x_9, x_10, x_11, x_12, x_13, x_54); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_23); +if (lean_obj_tag(x_55) == 0) +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_56 = lean_ctor_get(x_55, 0); +lean_inc(x_56); +x_57 = lean_ctor_get(x_55, 1); +lean_inc(x_57); +if (lean_is_exclusive(x_55)) { + lean_ctor_release(x_55, 0); + lean_ctor_release(x_55, 1); + x_58 = x_55; } else { - lean_dec_ref(x_53); - x_56 = lean_box(0); + lean_dec_ref(x_55); + x_58 = lean_box(0); } -if (lean_is_scalar(x_56)) { - x_57 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_58)) { + x_59 = lean_alloc_ctor(0, 2, 0); } else { - x_57 = x_56; + x_59 = x_58; } -lean_ctor_set(x_57, 0, x_54); -lean_ctor_set(x_57, 1, x_55); -return x_57; +lean_ctor_set(x_59, 0, x_56); +lean_ctor_set(x_59, 1, x_57); +return x_59; } else { -lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; -x_58 = lean_ctor_get(x_53, 0); -lean_inc(x_58); -x_59 = lean_ctor_get(x_53, 1); -lean_inc(x_59); -if (lean_is_exclusive(x_53)) { - lean_ctor_release(x_53, 0); - lean_ctor_release(x_53, 1); - x_60 = x_53; +lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_60 = lean_ctor_get(x_55, 0); +lean_inc(x_60); +x_61 = lean_ctor_get(x_55, 1); +lean_inc(x_61); +if (lean_is_exclusive(x_55)) { + lean_ctor_release(x_55, 0); + lean_ctor_release(x_55, 1); + x_62 = x_55; } else { - lean_dec_ref(x_53); - x_60 = lean_box(0); + lean_dec_ref(x_55); + x_62 = lean_box(0); } -if (lean_is_scalar(x_60)) { - x_61 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_62)) { + x_63 = lean_alloc_ctor(1, 2, 0); } else { - x_61 = x_60; + x_63 = x_62; } -lean_ctor_set(x_61, 0, x_58); -lean_ctor_set(x_61, 1, x_59); -return x_61; +lean_ctor_set(x_63, 0, x_60); +lean_ctor_set(x_63, 1, x_61); +return x_63; } } } else { -lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; uint64_t x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; -x_62 = lean_ctor_get(x_28, 0); -x_63 = lean_ctor_get(x_28, 1); -x_64 = lean_ctor_get(x_28, 2); -x_65 = lean_ctor_get(x_28, 4); -x_66 = lean_ctor_get(x_28, 5); -x_67 = lean_ctor_get(x_28, 6); -x_68 = lean_ctor_get(x_28, 7); +lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; uint64_t x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; +x_64 = lean_ctor_get(x_30, 0); +x_65 = lean_ctor_get(x_30, 1); +x_66 = lean_ctor_get(x_30, 2); +x_67 = lean_ctor_get(x_30, 4); +x_68 = lean_ctor_get(x_30, 5); +x_69 = lean_ctor_get(x_30, 6); +x_70 = lean_ctor_get(x_30, 7); +lean_inc(x_70); +lean_inc(x_69); lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); -lean_inc(x_63); -lean_inc(x_62); -lean_dec(x_28); -x_69 = lean_ctor_get_uint64(x_29, sizeof(void*)*1); -x_70 = lean_ctor_get(x_29, 0); -lean_inc(x_70); -if (lean_is_exclusive(x_29)) { - lean_ctor_release(x_29, 0); - x_71 = x_29; +lean_dec(x_30); +x_71 = lean_ctor_get_uint64(x_31, sizeof(void*)*1); +x_72 = lean_ctor_get(x_31, 0); +lean_inc(x_72); +if (lean_is_exclusive(x_31)) { + lean_ctor_release(x_31, 0); + x_73 = x_31; } else { - lean_dec_ref(x_29); - x_71 = lean_box(0); + lean_dec_ref(x_31); + x_73 = lean_box(0); } -x_72 = l_Lean_PersistentArray_append___rarg(x_16, x_70); -lean_dec(x_70); -if (lean_is_scalar(x_71)) { - x_73 = lean_alloc_ctor(0, 1, 8); +x_74 = l_Lean_PersistentArray_append___rarg(x_16, x_72); +lean_dec(x_72); +if (lean_is_scalar(x_73)) { + x_75 = lean_alloc_ctor(0, 1, 8); } else { - x_73 = x_71; + x_75 = x_73; } -lean_ctor_set(x_73, 0, x_72); -lean_ctor_set_uint64(x_73, sizeof(void*)*1, x_69); -x_74 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_74, 0, x_62); -lean_ctor_set(x_74, 1, x_63); -lean_ctor_set(x_74, 2, x_64); -lean_ctor_set(x_74, 3, x_73); -lean_ctor_set(x_74, 4, x_65); -lean_ctor_set(x_74, 5, x_66); -lean_ctor_set(x_74, 6, x_67); -lean_ctor_set(x_74, 7, x_68); -x_75 = lean_st_ref_set(x_13, x_74, x_30); -x_76 = lean_ctor_get(x_75, 1); -lean_inc(x_76); -lean_dec(x_75); -x_77 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__21(x_23, x_9, x_10, x_11, x_12, x_13, x_76); +lean_ctor_set(x_75, 0, x_74); +lean_ctor_set_uint64(x_75, sizeof(void*)*1, x_71); +x_76 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_76, 0, x_64); +lean_ctor_set(x_76, 1, x_65); +lean_ctor_set(x_76, 2, x_66); +lean_ctor_set(x_76, 3, x_75); +lean_ctor_set(x_76, 4, x_67); +lean_ctor_set(x_76, 5, x_68); +lean_ctor_set(x_76, 6, x_69); +lean_ctor_set(x_76, 7, x_70); +x_77 = lean_st_ref_set(x_13, x_76, x_32); +x_78 = lean_ctor_get(x_77, 1); +lean_inc(x_78); +lean_dec(x_77); +x_79 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__21(x_23, x_9, x_10, x_11, x_12, x_13, x_78); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_23); -if (lean_obj_tag(x_77) == 0) +if (lean_obj_tag(x_79) == 0) { -lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; -x_78 = lean_ctor_get(x_77, 0); -lean_inc(x_78); -x_79 = lean_ctor_get(x_77, 1); -lean_inc(x_79); -if (lean_is_exclusive(x_77)) { - lean_ctor_release(x_77, 0); - lean_ctor_release(x_77, 1); - x_80 = x_77; +lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; +x_80 = lean_ctor_get(x_79, 0); +lean_inc(x_80); +x_81 = lean_ctor_get(x_79, 1); +lean_inc(x_81); +if (lean_is_exclusive(x_79)) { + lean_ctor_release(x_79, 0); + lean_ctor_release(x_79, 1); + x_82 = x_79; } else { - lean_dec_ref(x_77); - x_80 = lean_box(0); + lean_dec_ref(x_79); + x_82 = lean_box(0); } -if (lean_is_scalar(x_80)) { - x_81 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_82)) { + x_83 = lean_alloc_ctor(0, 2, 0); } else { - x_81 = x_80; + x_83 = x_82; } -lean_ctor_set(x_81, 0, x_78); -lean_ctor_set(x_81, 1, x_79); -return x_81; +lean_ctor_set(x_83, 0, x_80); +lean_ctor_set(x_83, 1, x_81); +return x_83; } else { -lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; -x_82 = lean_ctor_get(x_77, 0); -lean_inc(x_82); -x_83 = lean_ctor_get(x_77, 1); -lean_inc(x_83); -if (lean_is_exclusive(x_77)) { - lean_ctor_release(x_77, 0); - lean_ctor_release(x_77, 1); - x_84 = x_77; +lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_84 = lean_ctor_get(x_79, 0); +lean_inc(x_84); +x_85 = lean_ctor_get(x_79, 1); +lean_inc(x_85); +if (lean_is_exclusive(x_79)) { + lean_ctor_release(x_79, 0); + lean_ctor_release(x_79, 1); + x_86 = x_79; } else { - lean_dec_ref(x_77); - x_84 = lean_box(0); + lean_dec_ref(x_79); + x_86 = lean_box(0); } -if (lean_is_scalar(x_84)) { - x_85 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_86)) { + x_87 = lean_alloc_ctor(1, 2, 0); } else { - x_85 = x_84; + x_87 = x_86; } -lean_ctor_set(x_85, 0, x_82); -lean_ctor_set(x_85, 1, x_83); -return x_85; +lean_ctor_set(x_87, 0, x_84); +lean_ctor_set(x_87, 1, x_85); +return x_87; } } } else { -lean_object* x_86; double x_87; double x_88; lean_object* x_89; -x_86 = lean_box(0); -x_87 = lean_unbox_float(x_24); +lean_object* x_88; double x_89; double x_90; lean_object* x_91; +x_88 = lean_box(0); +x_89 = lean_unbox_float(x_24); lean_dec(x_24); -x_88 = lean_unbox_float(x_25); +x_90 = lean_unbox_float(x_25); lean_dec(x_25); -x_89 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3(x_2, x_3, x_4, x_16, x_23, x_1, x_26, x_87, x_88, x_5, x_86, x_9, x_10, x_11, x_12, x_13, x_21); -return x_89; -} -} -else -{ -lean_object* x_90; double x_91; double x_92; lean_object* x_93; -x_90 = lean_box(0); -x_91 = lean_unbox_float(x_24); -lean_dec(x_24); -x_92 = lean_unbox_float(x_25); -lean_dec(x_25); -x_93 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3(x_2, x_3, x_4, x_16, x_23, x_1, x_26, x_91, x_92, x_5, x_90, x_9, x_10, x_11, x_12, x_13, x_21); -return x_93; +x_91 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3(x_2, x_3, x_4, x_16, x_23, x_27, x_89, x_90, x_5, x_88, x_9, x_10, x_11, x_12, x_13, x_21); +return x_91; } } } } else { -lean_object* x_214; lean_object* x_215; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; -x_310 = lean_io_get_num_heartbeats(x_17); -x_311 = lean_ctor_get(x_310, 0); -lean_inc(x_311); -x_312 = lean_ctor_get(x_310, 1); -lean_inc(x_312); -lean_dec(x_310); +lean_object* x_222; lean_object* x_223; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_326 = lean_io_get_num_heartbeats(x_17); +x_327 = lean_ctor_get(x_326, 0); +lean_inc(x_327); +x_328 = lean_ctor_get(x_326, 1); +lean_inc(x_328); +lean_dec(x_326); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_313 = lean_apply_6(x_7, x_9, x_10, x_11, x_12, x_13, x_312); -if (lean_obj_tag(x_313) == 0) +x_329 = lean_apply_6(x_7, x_9, x_10, x_11, x_12, x_13, x_328); +if (lean_obj_tag(x_329) == 0) { -uint8_t x_314; -x_314 = !lean_is_exclusive(x_313); -if (x_314 == 0) +uint8_t x_330; +x_330 = !lean_is_exclusive(x_329); +if (x_330 == 0) { -lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; uint8_t x_319; -x_315 = lean_ctor_get(x_313, 0); -x_316 = lean_ctor_get(x_313, 1); -x_317 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_317, 0, x_315); -x_318 = lean_io_get_num_heartbeats(x_316); -x_319 = !lean_is_exclusive(x_318); -if (x_319 == 0) +lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; uint8_t x_335; +x_331 = lean_ctor_get(x_329, 0); +x_332 = lean_ctor_get(x_329, 1); +x_333 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_333, 0, x_331); +x_334 = lean_io_get_num_heartbeats(x_332); +x_335 = !lean_is_exclusive(x_334); +if (x_335 == 0) { -lean_object* x_320; lean_object* x_321; uint8_t x_322; lean_object* x_323; double x_324; double x_325; lean_object* x_326; lean_object* x_327; -x_320 = lean_ctor_get(x_318, 0); -x_321 = lean_ctor_get(x_318, 1); -x_322 = 0; -x_323 = lean_unsigned_to_nat(0u); -x_324 = l_Float_ofScientific(x_311, x_322, x_323); -lean_dec(x_311); -x_325 = l_Float_ofScientific(x_320, x_322, x_323); -lean_dec(x_320); -x_326 = lean_box_float(x_324); -x_327 = lean_box_float(x_325); -lean_ctor_set(x_318, 1, x_327); -lean_ctor_set(x_318, 0, x_326); -lean_ctor_set(x_313, 1, x_318); -lean_ctor_set(x_313, 0, x_317); -x_214 = x_313; -x_215 = x_321; -goto block_309; +lean_object* x_336; lean_object* x_337; uint8_t x_338; lean_object* x_339; double x_340; double x_341; lean_object* x_342; lean_object* x_343; +x_336 = lean_ctor_get(x_334, 0); +x_337 = lean_ctor_get(x_334, 1); +x_338 = 0; +x_339 = lean_unsigned_to_nat(0u); +x_340 = l_Float_ofScientific(x_327, x_338, x_339); +lean_dec(x_327); +x_341 = l_Float_ofScientific(x_336, x_338, x_339); +lean_dec(x_336); +x_342 = lean_box_float(x_340); +x_343 = lean_box_float(x_341); +lean_ctor_set(x_334, 1, x_343); +lean_ctor_set(x_334, 0, x_342); +lean_ctor_set(x_329, 1, x_334); +lean_ctor_set(x_329, 0, x_333); +x_222 = x_329; +x_223 = x_337; +goto block_325; } else { -lean_object* x_328; lean_object* x_329; uint8_t x_330; lean_object* x_331; double x_332; double x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_328 = lean_ctor_get(x_318, 0); -x_329 = lean_ctor_get(x_318, 1); -lean_inc(x_329); -lean_inc(x_328); -lean_dec(x_318); -x_330 = 0; -x_331 = lean_unsigned_to_nat(0u); -x_332 = l_Float_ofScientific(x_311, x_330, x_331); -lean_dec(x_311); -x_333 = l_Float_ofScientific(x_328, x_330, x_331); -lean_dec(x_328); -x_334 = lean_box_float(x_332); -x_335 = lean_box_float(x_333); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_334); -lean_ctor_set(x_336, 1, x_335); -lean_ctor_set(x_313, 1, x_336); -lean_ctor_set(x_313, 0, x_317); -x_214 = x_313; -x_215 = x_329; -goto block_309; +lean_object* x_344; lean_object* x_345; uint8_t x_346; lean_object* x_347; double x_348; double x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; +x_344 = lean_ctor_get(x_334, 0); +x_345 = lean_ctor_get(x_334, 1); +lean_inc(x_345); +lean_inc(x_344); +lean_dec(x_334); +x_346 = 0; +x_347 = lean_unsigned_to_nat(0u); +x_348 = l_Float_ofScientific(x_327, x_346, x_347); +lean_dec(x_327); +x_349 = l_Float_ofScientific(x_344, x_346, x_347); +lean_dec(x_344); +x_350 = lean_box_float(x_348); +x_351 = lean_box_float(x_349); +x_352 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_352, 0, x_350); +lean_ctor_set(x_352, 1, x_351); +lean_ctor_set(x_329, 1, x_352); +lean_ctor_set(x_329, 0, x_333); +x_222 = x_329; +x_223 = x_345; +goto block_325; } } else { -lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; uint8_t x_344; lean_object* x_345; double x_346; double x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; -x_337 = lean_ctor_get(x_313, 0); -x_338 = lean_ctor_get(x_313, 1); -lean_inc(x_338); -lean_inc(x_337); -lean_dec(x_313); -x_339 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_339, 0, x_337); -x_340 = lean_io_get_num_heartbeats(x_338); -x_341 = lean_ctor_get(x_340, 0); -lean_inc(x_341); -x_342 = lean_ctor_get(x_340, 1); -lean_inc(x_342); -if (lean_is_exclusive(x_340)) { - lean_ctor_release(x_340, 0); - lean_ctor_release(x_340, 1); - x_343 = x_340; -} else { - lean_dec_ref(x_340); - x_343 = lean_box(0); -} -x_344 = 0; -x_345 = lean_unsigned_to_nat(0u); -x_346 = l_Float_ofScientific(x_311, x_344, x_345); -lean_dec(x_311); -x_347 = l_Float_ofScientific(x_341, x_344, x_345); -lean_dec(x_341); -x_348 = lean_box_float(x_346); -x_349 = lean_box_float(x_347); -if (lean_is_scalar(x_343)) { - x_350 = lean_alloc_ctor(0, 2, 0); -} else { - x_350 = x_343; -} -lean_ctor_set(x_350, 0, x_348); -lean_ctor_set(x_350, 1, x_349); -x_351 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_351, 0, x_339); -lean_ctor_set(x_351, 1, x_350); -x_214 = x_351; -x_215 = x_342; -goto block_309; -} -} -else -{ -uint8_t x_352; -x_352 = !lean_is_exclusive(x_313); -if (x_352 == 0) -{ -lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; uint8_t x_357; -x_353 = lean_ctor_get(x_313, 0); -x_354 = lean_ctor_get(x_313, 1); -x_355 = lean_alloc_ctor(0, 1, 0); +lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; uint8_t x_360; lean_object* x_361; double x_362; double x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_353 = lean_ctor_get(x_329, 0); +x_354 = lean_ctor_get(x_329, 1); +lean_inc(x_354); +lean_inc(x_353); +lean_dec(x_329); +x_355 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_355, 0, x_353); x_356 = lean_io_get_num_heartbeats(x_354); -x_357 = !lean_is_exclusive(x_356); -if (x_357 == 0) -{ -lean_object* x_358; lean_object* x_359; uint8_t x_360; lean_object* x_361; double x_362; double x_363; lean_object* x_364; lean_object* x_365; -x_358 = lean_ctor_get(x_356, 0); -x_359 = lean_ctor_get(x_356, 1); +x_357 = lean_ctor_get(x_356, 0); +lean_inc(x_357); +x_358 = lean_ctor_get(x_356, 1); +lean_inc(x_358); +if (lean_is_exclusive(x_356)) { + lean_ctor_release(x_356, 0); + lean_ctor_release(x_356, 1); + x_359 = x_356; +} else { + lean_dec_ref(x_356); + x_359 = lean_box(0); +} x_360 = 0; x_361 = lean_unsigned_to_nat(0u); -x_362 = l_Float_ofScientific(x_311, x_360, x_361); -lean_dec(x_311); -x_363 = l_Float_ofScientific(x_358, x_360, x_361); -lean_dec(x_358); +x_362 = l_Float_ofScientific(x_327, x_360, x_361); +lean_dec(x_327); +x_363 = l_Float_ofScientific(x_357, x_360, x_361); +lean_dec(x_357); x_364 = lean_box_float(x_362); x_365 = lean_box_float(x_363); -lean_ctor_set(x_356, 1, x_365); -lean_ctor_set(x_356, 0, x_364); -lean_ctor_set_tag(x_313, 0); -lean_ctor_set(x_313, 1, x_356); -lean_ctor_set(x_313, 0, x_355); -x_214 = x_313; -x_215 = x_359; -goto block_309; -} -else -{ -lean_object* x_366; lean_object* x_367; uint8_t x_368; lean_object* x_369; double x_370; double x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_366 = lean_ctor_get(x_356, 0); -x_367 = lean_ctor_get(x_356, 1); -lean_inc(x_367); -lean_inc(x_366); -lean_dec(x_356); -x_368 = 0; -x_369 = lean_unsigned_to_nat(0u); -x_370 = l_Float_ofScientific(x_311, x_368, x_369); -lean_dec(x_311); -x_371 = l_Float_ofScientific(x_366, x_368, x_369); -lean_dec(x_366); -x_372 = lean_box_float(x_370); -x_373 = lean_box_float(x_371); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_372); -lean_ctor_set(x_374, 1, x_373); -lean_ctor_set_tag(x_313, 0); -lean_ctor_set(x_313, 1, x_374); -lean_ctor_set(x_313, 0, x_355); -x_214 = x_313; -x_215 = x_367; -goto block_309; -} -} -else -{ -lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; uint8_t x_382; lean_object* x_383; double x_384; double x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; -x_375 = lean_ctor_get(x_313, 0); -x_376 = lean_ctor_get(x_313, 1); -lean_inc(x_376); -lean_inc(x_375); -lean_dec(x_313); -x_377 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_377, 0, x_375); -x_378 = lean_io_get_num_heartbeats(x_376); -x_379 = lean_ctor_get(x_378, 0); -lean_inc(x_379); -x_380 = lean_ctor_get(x_378, 1); -lean_inc(x_380); -if (lean_is_exclusive(x_378)) { - lean_ctor_release(x_378, 0); - lean_ctor_release(x_378, 1); - x_381 = x_378; +if (lean_is_scalar(x_359)) { + x_366 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_378); - x_381 = lean_box(0); + x_366 = x_359; } -x_382 = 0; -x_383 = lean_unsigned_to_nat(0u); -x_384 = l_Float_ofScientific(x_311, x_382, x_383); -lean_dec(x_311); -x_385 = l_Float_ofScientific(x_379, x_382, x_383); -lean_dec(x_379); -x_386 = lean_box_float(x_384); -x_387 = lean_box_float(x_385); -if (lean_is_scalar(x_381)) { - x_388 = lean_alloc_ctor(0, 2, 0); -} else { - x_388 = x_381; +lean_ctor_set(x_366, 0, x_364); +lean_ctor_set(x_366, 1, x_365); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_355); +lean_ctor_set(x_367, 1, x_366); +x_222 = x_367; +x_223 = x_358; +goto block_325; } -lean_ctor_set(x_388, 0, x_386); -lean_ctor_set(x_388, 1, x_387); -x_389 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_389, 0, x_377); -lean_ctor_set(x_389, 1, x_388); -x_214 = x_389; -x_215 = x_380; -goto block_309; -} -} -block_309: -{ -lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; uint8_t x_220; lean_object* x_289; uint8_t x_290; -x_216 = lean_ctor_get(x_214, 1); -lean_inc(x_216); -x_217 = lean_ctor_get(x_214, 0); -lean_inc(x_217); -lean_dec(x_214); -x_218 = lean_ctor_get(x_216, 0); -lean_inc(x_218); -x_219 = lean_ctor_get(x_216, 1); -lean_inc(x_219); -lean_dec(x_216); -x_289 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__2; -x_290 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_289); -if (x_290 == 0) -{ -uint8_t x_291; -x_291 = 0; -x_220 = x_291; -goto block_288; } else { -double x_292; double x_293; double x_294; -x_292 = lean_unbox_float(x_219); -x_293 = lean_unbox_float(x_218); -x_294 = lean_float_sub(x_292, x_293); +uint8_t x_368; +x_368 = !lean_is_exclusive(x_329); +if (x_368 == 0) +{ +lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; uint8_t x_373; +x_369 = lean_ctor_get(x_329, 0); +x_370 = lean_ctor_get(x_329, 1); +x_371 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_371, 0, x_369); +x_372 = lean_io_get_num_heartbeats(x_370); +x_373 = !lean_is_exclusive(x_372); +if (x_373 == 0) +{ +lean_object* x_374; lean_object* x_375; uint8_t x_376; lean_object* x_377; double x_378; double x_379; lean_object* x_380; lean_object* x_381; +x_374 = lean_ctor_get(x_372, 0); +x_375 = lean_ctor_get(x_372, 1); +x_376 = 0; +x_377 = lean_unsigned_to_nat(0u); +x_378 = l_Float_ofScientific(x_327, x_376, x_377); +lean_dec(x_327); +x_379 = l_Float_ofScientific(x_374, x_376, x_377); +lean_dec(x_374); +x_380 = lean_box_float(x_378); +x_381 = lean_box_float(x_379); +lean_ctor_set(x_372, 1, x_381); +lean_ctor_set(x_372, 0, x_380); +lean_ctor_set_tag(x_329, 0); +lean_ctor_set(x_329, 1, x_372); +lean_ctor_set(x_329, 0, x_371); +x_222 = x_329; +x_223 = x_375; +goto block_325; +} +else +{ +lean_object* x_382; lean_object* x_383; uint8_t x_384; lean_object* x_385; double x_386; double x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; +x_382 = lean_ctor_get(x_372, 0); +x_383 = lean_ctor_get(x_372, 1); +lean_inc(x_383); +lean_inc(x_382); +lean_dec(x_372); +x_384 = 0; +x_385 = lean_unsigned_to_nat(0u); +x_386 = l_Float_ofScientific(x_327, x_384, x_385); +lean_dec(x_327); +x_387 = l_Float_ofScientific(x_382, x_384, x_385); +lean_dec(x_382); +x_388 = lean_box_float(x_386); +x_389 = lean_box_float(x_387); +x_390 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_390, 0, x_388); +lean_ctor_set(x_390, 1, x_389); +lean_ctor_set_tag(x_329, 0); +lean_ctor_set(x_329, 1, x_390); +lean_ctor_set(x_329, 0, x_371); +x_222 = x_329; +x_223 = x_383; +goto block_325; +} +} +else +{ +lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; uint8_t x_398; lean_object* x_399; double x_400; double x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; +x_391 = lean_ctor_get(x_329, 0); +x_392 = lean_ctor_get(x_329, 1); +lean_inc(x_392); +lean_inc(x_391); +lean_dec(x_329); +x_393 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_393, 0, x_391); +x_394 = lean_io_get_num_heartbeats(x_392); +x_395 = lean_ctor_get(x_394, 0); +lean_inc(x_395); +x_396 = lean_ctor_get(x_394, 1); +lean_inc(x_396); +if (lean_is_exclusive(x_394)) { + lean_ctor_release(x_394, 0); + lean_ctor_release(x_394, 1); + x_397 = x_394; +} else { + lean_dec_ref(x_394); + x_397 = lean_box(0); +} +x_398 = 0; +x_399 = lean_unsigned_to_nat(0u); +x_400 = l_Float_ofScientific(x_327, x_398, x_399); +lean_dec(x_327); +x_401 = l_Float_ofScientific(x_395, x_398, x_399); +lean_dec(x_395); +x_402 = lean_box_float(x_400); +x_403 = lean_box_float(x_401); +if (lean_is_scalar(x_397)) { + x_404 = lean_alloc_ctor(0, 2, 0); +} else { + x_404 = x_397; +} +lean_ctor_set(x_404, 0, x_402); +lean_ctor_set(x_404, 1, x_403); +x_405 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_405, 0, x_393); +lean_ctor_set(x_405, 1, x_404); +x_222 = x_405; +x_223 = x_396; +goto block_325; +} +} +block_325: +{ +lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; uint8_t x_229; uint8_t x_230; +x_224 = lean_ctor_get(x_222, 1); +lean_inc(x_224); +x_225 = lean_ctor_get(x_222, 0); +lean_inc(x_225); +lean_dec(x_222); +x_226 = lean_ctor_get(x_224, 0); +lean_inc(x_226); +x_227 = lean_ctor_get(x_224, 1); +lean_inc(x_227); +lean_dec(x_224); +x_228 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__2; +x_229 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_228); +if (x_229 == 0) +{ +if (x_6 == 0) +{ +uint8_t x_295; +x_295 = 0; +x_230 = x_295; +goto block_294; +} +else +{ +lean_object* x_296; double x_297; double x_298; lean_object* x_299; +x_296 = lean_box(0); +x_297 = lean_unbox_float(x_226); +lean_dec(x_226); +x_298 = lean_unbox_float(x_227); +lean_dec(x_227); +x_299 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3(x_2, x_3, x_4, x_16, x_225, x_229, x_297, x_298, x_5, x_296, x_9, x_10, x_11, x_12, x_13, x_223); +return x_299; +} +} +else +{ +double x_300; double x_301; double x_302; +x_300 = lean_unbox_float(x_227); +x_301 = lean_unbox_float(x_226); +x_302 = lean_float_sub(x_300, x_301); if (x_19 == 0) { -lean_object* x_295; lean_object* x_296; uint8_t x_297; lean_object* x_298; double x_299; double x_300; double x_301; uint8_t x_302; -x_295 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__3; -x_296 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_295); -x_297 = 0; -x_298 = lean_unsigned_to_nat(0u); -x_299 = l_Float_ofScientific(x_296, x_297, x_298); -lean_dec(x_296); -x_300 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__4; -x_301 = lean_float_div(x_299, x_300); -x_302 = lean_float_decLt(x_301, x_294); -x_220 = x_302; -goto block_288; -} -else +if (x_6 == 0) { -lean_object* x_303; lean_object* x_304; uint8_t x_305; lean_object* x_306; double x_307; uint8_t x_308; +lean_object* x_303; lean_object* x_304; uint8_t x_305; lean_object* x_306; double x_307; double x_308; double x_309; uint8_t x_310; x_303 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__3; x_304 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_303); x_305 = 0; x_306 = lean_unsigned_to_nat(0u); x_307 = l_Float_ofScientific(x_304, x_305, x_306); lean_dec(x_304); -x_308 = lean_float_decLt(x_307, x_294); -x_220 = x_308; -goto block_288; +x_308 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__4; +x_309 = lean_float_div(x_307, x_308); +x_310 = lean_float_decLt(x_309, x_302); +x_230 = x_310; +goto block_294; +} +else +{ +lean_object* x_311; double x_312; double x_313; lean_object* x_314; +x_311 = lean_box(0); +x_312 = lean_unbox_float(x_226); +lean_dec(x_226); +x_313 = lean_unbox_float(x_227); +lean_dec(x_227); +x_314 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3(x_2, x_3, x_4, x_16, x_225, x_229, x_312, x_313, x_5, x_311, x_9, x_10, x_11, x_12, x_13, x_223); +return x_314; } } -block_288: +else { if (x_6 == 0) { -if (x_220 == 0) +lean_object* x_315; lean_object* x_316; uint8_t x_317; lean_object* x_318; double x_319; uint8_t x_320; +x_315 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__3; +x_316 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_315); +x_317 = 0; +x_318 = lean_unsigned_to_nat(0u); +x_319 = l_Float_ofScientific(x_316, x_317, x_318); +lean_dec(x_316); +x_320 = lean_float_decLt(x_319, x_302); +x_230 = x_320; +goto block_294; +} +else { -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; uint8_t x_225; -lean_dec(x_219); -lean_dec(x_218); +lean_object* x_321; double x_322; double x_323; lean_object* x_324; +x_321 = lean_box(0); +x_322 = lean_unbox_float(x_226); +lean_dec(x_226); +x_323 = lean_unbox_float(x_227); +lean_dec(x_227); +x_324 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3(x_2, x_3, x_4, x_16, x_225, x_229, x_322, x_323, x_5, x_321, x_9, x_10, x_11, x_12, x_13, x_223); +return x_324; +} +} +} +block_294: +{ +if (x_230 == 0) +{ +lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; uint8_t x_235; +lean_dec(x_227); +lean_dec(x_226); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_221 = lean_st_ref_take(x_13, x_215); -x_222 = lean_ctor_get(x_221, 0); -lean_inc(x_222); -x_223 = lean_ctor_get(x_222, 3); -lean_inc(x_223); -x_224 = lean_ctor_get(x_221, 1); -lean_inc(x_224); -lean_dec(x_221); -x_225 = !lean_is_exclusive(x_222); -if (x_225 == 0) -{ -lean_object* x_226; uint8_t x_227; -x_226 = lean_ctor_get(x_222, 3); -lean_dec(x_226); -x_227 = !lean_is_exclusive(x_223); -if (x_227 == 0) -{ -lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; -x_228 = lean_ctor_get(x_223, 0); -x_229 = l_Lean_PersistentArray_append___rarg(x_16, x_228); -lean_dec(x_228); -lean_ctor_set(x_223, 0, x_229); -x_230 = lean_st_ref_set(x_13, x_222, x_224); -x_231 = lean_ctor_get(x_230, 1); -lean_inc(x_231); -lean_dec(x_230); -x_232 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__21(x_217, x_9, x_10, x_11, x_12, x_13, x_231); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_217); -if (lean_obj_tag(x_232) == 0) -{ -uint8_t x_233; -x_233 = !lean_is_exclusive(x_232); -if (x_233 == 0) -{ -return x_232; -} -else -{ -lean_object* x_234; lean_object* x_235; lean_object* x_236; -x_234 = lean_ctor_get(x_232, 0); -x_235 = lean_ctor_get(x_232, 1); -lean_inc(x_235); +x_231 = lean_st_ref_take(x_13, x_223); +x_232 = lean_ctor_get(x_231, 0); +lean_inc(x_232); +x_233 = lean_ctor_get(x_232, 3); +lean_inc(x_233); +x_234 = lean_ctor_get(x_231, 1); lean_inc(x_234); -lean_dec(x_232); -x_236 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_236, 0, x_234); -lean_ctor_set(x_236, 1, x_235); -return x_236; -} -} -else +lean_dec(x_231); +x_235 = !lean_is_exclusive(x_232); +if (x_235 == 0) { -uint8_t x_237; -x_237 = !lean_is_exclusive(x_232); +lean_object* x_236; uint8_t x_237; +x_236 = lean_ctor_get(x_232, 3); +lean_dec(x_236); +x_237 = !lean_is_exclusive(x_233); if (x_237 == 0) { -return x_232; +lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; +x_238 = lean_ctor_get(x_233, 0); +x_239 = l_Lean_PersistentArray_append___rarg(x_16, x_238); +lean_dec(x_238); +lean_ctor_set(x_233, 0, x_239); +x_240 = lean_st_ref_set(x_13, x_232, x_234); +x_241 = lean_ctor_get(x_240, 1); +lean_inc(x_241); +lean_dec(x_240); +x_242 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__21(x_225, x_9, x_10, x_11, x_12, x_13, x_241); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_225); +if (lean_obj_tag(x_242) == 0) +{ +uint8_t x_243; +x_243 = !lean_is_exclusive(x_242); +if (x_243 == 0) +{ +return x_242; } else { -lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_238 = lean_ctor_get(x_232, 0); -x_239 = lean_ctor_get(x_232, 1); -lean_inc(x_239); -lean_inc(x_238); -lean_dec(x_232); -x_240 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_240, 0, x_238); -lean_ctor_set(x_240, 1, x_239); -return x_240; -} -} -} -else -{ -uint64_t x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; -x_241 = lean_ctor_get_uint64(x_223, sizeof(void*)*1); -x_242 = lean_ctor_get(x_223, 0); -lean_inc(x_242); -lean_dec(x_223); -x_243 = l_Lean_PersistentArray_append___rarg(x_16, x_242); +lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_244 = lean_ctor_get(x_242, 0); +x_245 = lean_ctor_get(x_242, 1); +lean_inc(x_245); +lean_inc(x_244); lean_dec(x_242); -x_244 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_244, 0, x_243); -lean_ctor_set_uint64(x_244, sizeof(void*)*1, x_241); -lean_ctor_set(x_222, 3, x_244); -x_245 = lean_st_ref_set(x_13, x_222, x_224); -x_246 = lean_ctor_get(x_245, 1); -lean_inc(x_246); -lean_dec(x_245); -x_247 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__21(x_217, x_9, x_10, x_11, x_12, x_13, x_246); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_217); -if (lean_obj_tag(x_247) == 0) +x_246 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_246, 0, x_244); +lean_ctor_set(x_246, 1, x_245); +return x_246; +} +} +else { -lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; -x_248 = lean_ctor_get(x_247, 0); -lean_inc(x_248); -x_249 = lean_ctor_get(x_247, 1); +uint8_t x_247; +x_247 = !lean_is_exclusive(x_242); +if (x_247 == 0) +{ +return x_242; +} +else +{ +lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_248 = lean_ctor_get(x_242, 0); +x_249 = lean_ctor_get(x_242, 1); lean_inc(x_249); -if (lean_is_exclusive(x_247)) { - lean_ctor_release(x_247, 0); - lean_ctor_release(x_247, 1); - x_250 = x_247; -} else { - lean_dec_ref(x_247); - x_250 = lean_box(0); +lean_inc(x_248); +lean_dec(x_242); +x_250 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_250, 0, x_248); +lean_ctor_set(x_250, 1, x_249); +return x_250; } -if (lean_is_scalar(x_250)) { - x_251 = lean_alloc_ctor(0, 2, 0); -} else { - x_251 = x_250; } -lean_ctor_set(x_251, 0, x_248); -lean_ctor_set(x_251, 1, x_249); -return x_251; } else { -lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; -x_252 = lean_ctor_get(x_247, 0); +uint64_t x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; +x_251 = lean_ctor_get_uint64(x_233, sizeof(void*)*1); +x_252 = lean_ctor_get(x_233, 0); lean_inc(x_252); -x_253 = lean_ctor_get(x_247, 1); -lean_inc(x_253); -if (lean_is_exclusive(x_247)) { - lean_ctor_release(x_247, 0); - lean_ctor_release(x_247, 1); - x_254 = x_247; -} else { - lean_dec_ref(x_247); - x_254 = lean_box(0); -} -if (lean_is_scalar(x_254)) { - x_255 = lean_alloc_ctor(1, 2, 0); -} else { - x_255 = x_254; -} -lean_ctor_set(x_255, 0, x_252); -lean_ctor_set(x_255, 1, x_253); -return x_255; -} -} -} -else -{ -lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; uint64_t x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; -x_256 = lean_ctor_get(x_222, 0); -x_257 = lean_ctor_get(x_222, 1); -x_258 = lean_ctor_get(x_222, 2); -x_259 = lean_ctor_get(x_222, 4); -x_260 = lean_ctor_get(x_222, 5); -x_261 = lean_ctor_get(x_222, 6); -x_262 = lean_ctor_get(x_222, 7); -lean_inc(x_262); -lean_inc(x_261); -lean_inc(x_260); -lean_inc(x_259); -lean_inc(x_258); -lean_inc(x_257); +lean_dec(x_233); +x_253 = l_Lean_PersistentArray_append___rarg(x_16, x_252); +lean_dec(x_252); +x_254 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_254, 0, x_253); +lean_ctor_set_uint64(x_254, sizeof(void*)*1, x_251); +lean_ctor_set(x_232, 3, x_254); +x_255 = lean_st_ref_set(x_13, x_232, x_234); +x_256 = lean_ctor_get(x_255, 1); lean_inc(x_256); -lean_dec(x_222); -x_263 = lean_ctor_get_uint64(x_223, sizeof(void*)*1); -x_264 = lean_ctor_get(x_223, 0); -lean_inc(x_264); -if (lean_is_exclusive(x_223)) { - lean_ctor_release(x_223, 0); - x_265 = x_223; -} else { - lean_dec_ref(x_223); - x_265 = lean_box(0); -} -x_266 = l_Lean_PersistentArray_append___rarg(x_16, x_264); -lean_dec(x_264); -if (lean_is_scalar(x_265)) { - x_267 = lean_alloc_ctor(0, 1, 8); -} else { - x_267 = x_265; -} -lean_ctor_set(x_267, 0, x_266); -lean_ctor_set_uint64(x_267, sizeof(void*)*1, x_263); -x_268 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_268, 0, x_256); -lean_ctor_set(x_268, 1, x_257); -lean_ctor_set(x_268, 2, x_258); -lean_ctor_set(x_268, 3, x_267); -lean_ctor_set(x_268, 4, x_259); -lean_ctor_set(x_268, 5, x_260); -lean_ctor_set(x_268, 6, x_261); -lean_ctor_set(x_268, 7, x_262); -x_269 = lean_st_ref_set(x_13, x_268, x_224); -x_270 = lean_ctor_get(x_269, 1); -lean_inc(x_270); -lean_dec(x_269); -x_271 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__21(x_217, x_9, x_10, x_11, x_12, x_13, x_270); +lean_dec(x_255); +x_257 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__21(x_225, x_9, x_10, x_11, x_12, x_13, x_256); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_217); -if (lean_obj_tag(x_271) == 0) +lean_dec(x_225); +if (lean_obj_tag(x_257) == 0) { -lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; -x_272 = lean_ctor_get(x_271, 0); +lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; +x_258 = lean_ctor_get(x_257, 0); +lean_inc(x_258); +x_259 = lean_ctor_get(x_257, 1); +lean_inc(x_259); +if (lean_is_exclusive(x_257)) { + lean_ctor_release(x_257, 0); + lean_ctor_release(x_257, 1); + x_260 = x_257; +} else { + lean_dec_ref(x_257); + x_260 = lean_box(0); +} +if (lean_is_scalar(x_260)) { + x_261 = lean_alloc_ctor(0, 2, 0); +} else { + x_261 = x_260; +} +lean_ctor_set(x_261, 0, x_258); +lean_ctor_set(x_261, 1, x_259); +return x_261; +} +else +{ +lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; +x_262 = lean_ctor_get(x_257, 0); +lean_inc(x_262); +x_263 = lean_ctor_get(x_257, 1); +lean_inc(x_263); +if (lean_is_exclusive(x_257)) { + lean_ctor_release(x_257, 0); + lean_ctor_release(x_257, 1); + x_264 = x_257; +} else { + lean_dec_ref(x_257); + x_264 = lean_box(0); +} +if (lean_is_scalar(x_264)) { + x_265 = lean_alloc_ctor(1, 2, 0); +} else { + x_265 = x_264; +} +lean_ctor_set(x_265, 0, x_262); +lean_ctor_set(x_265, 1, x_263); +return x_265; +} +} +} +else +{ +lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; uint64_t x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; +x_266 = lean_ctor_get(x_232, 0); +x_267 = lean_ctor_get(x_232, 1); +x_268 = lean_ctor_get(x_232, 2); +x_269 = lean_ctor_get(x_232, 4); +x_270 = lean_ctor_get(x_232, 5); +x_271 = lean_ctor_get(x_232, 6); +x_272 = lean_ctor_get(x_232, 7); lean_inc(x_272); -x_273 = lean_ctor_get(x_271, 1); -lean_inc(x_273); -if (lean_is_exclusive(x_271)) { - lean_ctor_release(x_271, 0); - lean_ctor_release(x_271, 1); - x_274 = x_271; +lean_inc(x_271); +lean_inc(x_270); +lean_inc(x_269); +lean_inc(x_268); +lean_inc(x_267); +lean_inc(x_266); +lean_dec(x_232); +x_273 = lean_ctor_get_uint64(x_233, sizeof(void*)*1); +x_274 = lean_ctor_get(x_233, 0); +lean_inc(x_274); +if (lean_is_exclusive(x_233)) { + lean_ctor_release(x_233, 0); + x_275 = x_233; } else { - lean_dec_ref(x_271); - x_274 = lean_box(0); + lean_dec_ref(x_233); + x_275 = lean_box(0); } -if (lean_is_scalar(x_274)) { - x_275 = lean_alloc_ctor(0, 2, 0); +x_276 = l_Lean_PersistentArray_append___rarg(x_16, x_274); +lean_dec(x_274); +if (lean_is_scalar(x_275)) { + x_277 = lean_alloc_ctor(0, 1, 8); } else { - x_275 = x_274; + x_277 = x_275; } -lean_ctor_set(x_275, 0, x_272); -lean_ctor_set(x_275, 1, x_273); -return x_275; +lean_ctor_set(x_277, 0, x_276); +lean_ctor_set_uint64(x_277, sizeof(void*)*1, x_273); +x_278 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_278, 0, x_266); +lean_ctor_set(x_278, 1, x_267); +lean_ctor_set(x_278, 2, x_268); +lean_ctor_set(x_278, 3, x_277); +lean_ctor_set(x_278, 4, x_269); +lean_ctor_set(x_278, 5, x_270); +lean_ctor_set(x_278, 6, x_271); +lean_ctor_set(x_278, 7, x_272); +x_279 = lean_st_ref_set(x_13, x_278, x_234); +x_280 = lean_ctor_get(x_279, 1); +lean_inc(x_280); +lean_dec(x_279); +x_281 = l_MonadExcept_ofExcept___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__21(x_225, x_9, x_10, x_11, x_12, x_13, x_280); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_225); +if (lean_obj_tag(x_281) == 0) +{ +lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; +x_282 = lean_ctor_get(x_281, 0); +lean_inc(x_282); +x_283 = lean_ctor_get(x_281, 1); +lean_inc(x_283); +if (lean_is_exclusive(x_281)) { + lean_ctor_release(x_281, 0); + lean_ctor_release(x_281, 1); + x_284 = x_281; +} else { + lean_dec_ref(x_281); + x_284 = lean_box(0); +} +if (lean_is_scalar(x_284)) { + x_285 = lean_alloc_ctor(0, 2, 0); +} else { + x_285 = x_284; +} +lean_ctor_set(x_285, 0, x_282); +lean_ctor_set(x_285, 1, x_283); +return x_285; } else { -lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; -x_276 = lean_ctor_get(x_271, 0); -lean_inc(x_276); -x_277 = lean_ctor_get(x_271, 1); -lean_inc(x_277); -if (lean_is_exclusive(x_271)) { - lean_ctor_release(x_271, 0); - lean_ctor_release(x_271, 1); - x_278 = x_271; +lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; +x_286 = lean_ctor_get(x_281, 0); +lean_inc(x_286); +x_287 = lean_ctor_get(x_281, 1); +lean_inc(x_287); +if (lean_is_exclusive(x_281)) { + lean_ctor_release(x_281, 0); + lean_ctor_release(x_281, 1); + x_288 = x_281; } else { - lean_dec_ref(x_271); - x_278 = lean_box(0); + lean_dec_ref(x_281); + x_288 = lean_box(0); } -if (lean_is_scalar(x_278)) { - x_279 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_288)) { + x_289 = lean_alloc_ctor(1, 2, 0); } else { - x_279 = x_278; + x_289 = x_288; } -lean_ctor_set(x_279, 0, x_276); -lean_ctor_set(x_279, 1, x_277); -return x_279; +lean_ctor_set(x_289, 0, x_286); +lean_ctor_set(x_289, 1, x_287); +return x_289; } } } else { -lean_object* x_280; double x_281; double x_282; lean_object* x_283; -x_280 = lean_box(0); -x_281 = lean_unbox_float(x_218); -lean_dec(x_218); -x_282 = lean_unbox_float(x_219); -lean_dec(x_219); -x_283 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3(x_2, x_3, x_4, x_16, x_217, x_1, x_220, x_281, x_282, x_5, x_280, x_9, x_10, x_11, x_12, x_13, x_215); -return x_283; -} -} -else -{ -lean_object* x_284; double x_285; double x_286; lean_object* x_287; -x_284 = lean_box(0); -x_285 = lean_unbox_float(x_218); -lean_dec(x_218); -x_286 = lean_unbox_float(x_219); -lean_dec(x_219); -x_287 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3(x_2, x_3, x_4, x_16, x_217, x_1, x_220, x_285, x_286, x_5, x_284, x_9, x_10, x_11, x_12, x_13, x_215); -return x_287; +lean_object* x_290; double x_291; double x_292; lean_object* x_293; +x_290 = lean_box(0); +x_291 = lean_unbox_float(x_226); +lean_dec(x_226); +x_292 = lean_unbox_float(x_227); +lean_dec(x_227); +x_293 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3(x_2, x_3, x_4, x_16, x_225, x_229, x_291, x_292, x_5, x_290, x_9, x_10, x_11, x_12, x_13, x_223); +return x_293; } } } @@ -8150,27 +8223,25 @@ lean_object* x_14 = _args[13]; lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; _start: { -uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; -x_19 = lean_unbox(x_4); +uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; +x_18 = lean_unbox(x_4); lean_dec(x_4); -x_20 = lean_unbox(x_9); +x_19 = lean_unbox(x_8); +lean_dec(x_8); +x_20 = lean_unbox_float(x_9); lean_dec(x_9); x_21 = lean_unbox_float(x_10); lean_dec(x_10); -x_22 = lean_unbox_float(x_11); -lean_dec(x_11); -x_23 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2(x_1, x_2, x_3, x_19, x_5, x_6, x_7, x_8, x_20, x_21, x_22, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -lean_dec(x_17); -lean_dec(x_15); +x_22 = l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2(x_1, x_2, x_3, x_18, x_5, x_6, x_7, x_19, x_20, x_21, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +lean_dec(x_16); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); -lean_dec(x_8); +lean_dec(x_11); lean_dec(x_1); -return x_23; +return x_22; } } LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { @@ -8363,78 +8434,42 @@ lean_dec(x_4); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__2___boxed(lean_object** _args) { -lean_object* x_1 = _args[0]; -lean_object* x_2 = _args[1]; -lean_object* x_3 = _args[2]; -lean_object* x_4 = _args[3]; -lean_object* x_5 = _args[4]; -lean_object* x_6 = _args[5]; -lean_object* x_7 = _args[6]; -lean_object* x_8 = _args[7]; -lean_object* x_9 = _args[8]; -lean_object* x_10 = _args[9]; -lean_object* x_11 = _args[10]; -lean_object* x_12 = _args[11]; -lean_object* x_13 = _args[12]; -lean_object* x_14 = _args[13]; -lean_object* x_15 = _args[14]; -lean_object* x_16 = _args[15]; -lean_object* x_17 = _args[16]; +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; -x_18 = lean_unbox(x_2); +uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; +x_17 = lean_unbox(x_2); lean_dec(x_2); -x_19 = lean_unbox(x_8); +x_18 = lean_unbox(x_7); +lean_dec(x_7); +x_19 = lean_unbox_float(x_8); lean_dec(x_8); x_20 = lean_unbox_float(x_9); lean_dec(x_9); -x_21 = lean_unbox_float(x_10); -lean_dec(x_10); -x_22 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__2(x_1, x_18, x_3, x_4, x_5, x_6, x_7, x_19, x_20, x_21, x_11, x_12, x_13, x_14, x_15, x_16, x_17); -lean_dec(x_16); -lean_dec(x_14); +x_21 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +lean_dec(x_15); lean_dec(x_13); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_22; +return x_21; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3___boxed(lean_object** _args) { -lean_object* x_1 = _args[0]; -lean_object* x_2 = _args[1]; -lean_object* x_3 = _args[2]; -lean_object* x_4 = _args[3]; -lean_object* x_5 = _args[4]; -lean_object* x_6 = _args[5]; -lean_object* x_7 = _args[6]; -lean_object* x_8 = _args[7]; -lean_object* x_9 = _args[8]; -lean_object* x_10 = _args[9]; -lean_object* x_11 = _args[10]; -lean_object* x_12 = _args[11]; -lean_object* x_13 = _args[12]; -lean_object* x_14 = _args[13]; -lean_object* x_15 = _args[14]; -lean_object* x_16 = _args[15]; -lean_object* x_17 = _args[16]; +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; -x_18 = lean_unbox(x_2); +uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; +x_17 = lean_unbox(x_2); lean_dec(x_2); -x_19 = lean_unbox(x_7); +x_18 = lean_unbox(x_6); +lean_dec(x_6); +x_19 = lean_unbox_float(x_7); lean_dec(x_7); x_20 = lean_unbox_float(x_8); lean_dec(x_8); -x_21 = lean_unbox_float(x_9); -lean_dec(x_9); -x_22 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3(x_1, x_18, x_3, x_4, x_5, x_6, x_19, x_20, x_21, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); -lean_dec(x_11); -lean_dec(x_6); -return x_22; +x_21 = l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__3(x_1, x_17, x_3, x_4, x_5, x_18, x_19, x_20, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +lean_dec(x_10); +return x_21; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__20___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { @@ -15717,8 +15752,6 @@ l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_Ind lean_mark_persistent(l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2___closed__2); l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2___closed__3 = _init_l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2___closed__3(); lean_mark_persistent(l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2___closed__3); -l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2___closed__4 = _init_l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2___closed__4(); -lean_mark_persistent(l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__2___closed__4); l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__1 = _init_l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__1); l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__2 = _init_l_Lean_withTraceNodeBefore___at___private_Lean_Elab_PreDefinition_Structural_IndPred_0__Lean_Elab_Structural_replaceIndPredRecApp___spec__9___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/BVDecide/Frontend/BVDecide.c b/stage0/stdlib/Lean/Elab/Tactic/BVDecide/Frontend/BVDecide.c index 42104fcd18..d2fabbcba3 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/BVDecide/Frontend/BVDecide.c +++ b/stage0/stdlib/Lean/Elab/Tactic/BVDecide/Frontend/BVDecide.c @@ -36,7 +36,6 @@ static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___lambda LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_instBEqOfDecidableEq___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_DiagnosisM_unusedHyps___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_profiler; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__8___lambda__5___closed__1; static lean_object* l_List_forIn_x27_loop___at_Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample___spec__7___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___lambda__7(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -79,8 +78,8 @@ lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample___spec__20(lean_object*, size_t, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_uint64_to_usize(uint64_t); static double l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__4; LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__17(lean_object*, lean_object*, lean_object*); @@ -124,7 +123,7 @@ static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_instToExprBoolExpr_go__ static lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_BVDecide_Frontend_evalBvTrace__1___closed__2; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Sat_AIG_toGraphviz_toGraphvizString___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__18___boxed(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_BVDecide_Frontend_evalBvTrace__1___closed__5; lean_object* l_Std_Tactic_BVDecide_BVPred_toString(lean_object*); @@ -207,7 +206,7 @@ static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_uninterpretedExplainer_ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_explainers; static lean_object* l___regBuiltin_Lean_Elab_Tactic_BVDecide_Frontend_evalBvTrace__1___closed__4; lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___lambda__3___closed__1; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_reflectBV___lambda__1___closed__7; @@ -287,8 +286,8 @@ lean_object* l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0_ LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_BitVec_ofNat(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample___spec__21___at_Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample___spec__22(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_appArg(lean_object*, lean_object*); @@ -330,7 +329,7 @@ static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_evalBvTrace___closed__4 LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at_Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample___spec__2(lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_BVDecide_Frontend_explainCounterExampleQuality___spec__2___closed__1; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_mono_nanos_now(lean_object*); static lean_object* l_List_forIn_x27_loop___at_Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample___spec__7___closed__1; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_BVDecide_Frontend_bvDecide___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -405,11 +404,11 @@ lean_object* l_Std_Sat_AIG_toCNF(lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___lambda__10___closed__3; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__7(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__2___boxed(lean_object**); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Sat_AIG_toGraphviz_toGraphvizString___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__18___closed__2; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___lambda__2___closed__1; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at_Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample___spec__7___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_append___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_bvDecide_x27___closed__1; @@ -441,7 +440,7 @@ LEAN_EXPORT lean_object* l_Std_Sat_AIG_Entrypoint_relabelNat_x27___at_Lean_Elab_ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_BVDecide_Frontend_bvDecide___spec__2___closed__5; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample___spec__24(lean_object*, size_t, size_t, lean_object*); static lean_object* l_Std_DHashMap_Internal_AssocList_get_x21___at_Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample___spec__1___closed__1; @@ -455,7 +454,6 @@ uint8_t l_Lean_Expr_hasAnyFVar_visit___at_Lean_Expr_containsFVar___spec__1(lean_ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__8___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___closed__4; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___closed__6; -static lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_DHashMap_Internal_AssocList_get_x21___at_Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample___spec__1___closed__4; @@ -491,9 +489,9 @@ static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_reflectBV___lambda__1__ lean_object* l_Lean_Meta_mkEqRefl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__8___closed__1; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_BVDecide_Frontend_DiagnosisM_diagnose___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__8___lambda__3___closed__3; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample___spec__8___closed__3; static lean_object* l___regBuiltin_Lean_Elab_Tactic_BVDecide_Frontend_evalBvTrace__1___closed__3; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__10___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__11(lean_object*, lean_object*); @@ -520,12 +518,12 @@ lean_object* lean_panic_fn(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_filter_go___at_Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample___spec__23___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_shiftl(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at_Lean_Elab_Tactic_BVDecide_Frontend_reflectBV___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__17___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_unusedRelevantHypothesesExplainer___boxed(lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___lambda__1___closed__1; lean_object* lean_nat_mul(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__3___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___lambda__9___closed__2; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at_Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample___spec__2___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_explainers___closed__3; @@ -533,7 +531,7 @@ static lean_object* l_Std_Sat_AIG_toGraphviz_go___at_Lean_Elab_Tactic_BVDecide_F static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__8___closed__10; lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at_Lean_MVarId_getNondepPropHyps___spec__7(lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at_Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample___spec__17(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_explainCounterExampleQuality___closed__3; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_instToExprBoolExpr_go___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__9___closed__25; @@ -591,7 +589,7 @@ lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_SatAtBVLogical_proveFalse(lean static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__8___closed__9; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__12___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__8___lambda__4___closed__3; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_BVDecide_Frontend_bvDecide___spec__2___closed__3; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_instToExprBoolExpr_go___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__9___closed__8; lean_object* l_BitVec_toHex(lean_object*, lean_object*); @@ -622,14 +620,14 @@ static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_explainCounterExampleQu uint8_t l_Std_DHashMap_Internal_AssocList_contains___at_Lean_MVarId_getNondepPropHyps___spec__1(lean_object*, lean_object*); static double l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__8___closed__3; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_uninterpretedExplainer___closed__4; uint8_t lean_nat_dec_le(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample___spec__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_lt(size_t, size_t); static lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__1; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__5___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_instToExprBoolExpr_go___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__9___closed__15; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_BVDecide_Frontend_bvDecide___spec__2(lean_object*, size_t, size_t, lean_object*); @@ -662,7 +660,7 @@ static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_BVDecide_ static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_uninterpretedExplainer___closed__6; lean_object* lean_nat_lor(lean_object*, lean_object*); lean_object* l_Std_Tactic_BVDecide_Gate_toString(uint8_t); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__8___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at_Lean_Elab_Tactic_BVDecide_Frontend_reconstructCounterExample___spec__3___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_DiagnosisM_diagnose___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -7874,69 +7872,36 @@ x_3 = l_Float_ofScientific(x_1, x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___closed__2() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___closed__1; +x_17 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_3); +lean_ctor_set_float(x_17, sizeof(void*)*2, x_16); +lean_ctor_set_float(x_17, sizeof(void*)*2 + 8, x_16); +lean_ctor_set_uint8(x_17, sizeof(void*)*2 + 16, x_2); +x_18 = lean_box(0); +x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_17, x_18, x_11, x_12, x_13, x_14, x_15); +return x_19; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { -_start: +else { -double x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_18 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_18, 0, x_1); -lean_ctor_set(x_18, 1, x_3); -lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); -lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); -lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___closed__2; -x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_19); -if (x_20 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_21; lean_object* x_22; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); x_21 = lean_box(0); -x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_18, x_21, x_12, x_13, x_14, x_15, x_16); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15); return x_22; } -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_18); -x_23 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_3); -lean_ctor_set_float(x_23, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); -x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_23, x_24, x_12, x_13, x_14, x_15, x_16); -return x_25; -} -} -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_18); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16); -return x_28; -} } } static lean_object* _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3___closed__1() { @@ -7956,46 +7921,46 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 5); -lean_inc(x_17); -lean_inc(x_15); +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 5); +lean_inc(x_16); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_18 = lean_apply_6(x_10, x_5, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_18) == 0) +x_17 = lean_apply_6(x_9, x_5, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_14, x_15, x_20); -lean_dec(x_15); -lean_dec(x_13); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_13, x_14, x_19); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_21; +return x_20; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_14, x_15, x_22); -lean_dec(x_15); -lean_dec(x_13); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } } } @@ -8059,253 +8024,253 @@ x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblast x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_17); if (x_18 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_109 = lean_io_mono_nanos_now(x_16); -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_109, 1); -lean_inc(x_111); -lean_dec(x_109); +lean_object* x_19; lean_object* x_20; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_113 = lean_io_mono_nanos_now(x_16); +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +lean_dec(x_113); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_112 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_111); -if (lean_obj_tag(x_112) == 0) +x_116 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_115); +if (lean_obj_tag(x_116) == 0) { -uint8_t x_113; -x_113 = !lean_is_exclusive(x_112); -if (x_113 == 0) +uint8_t x_117; +x_117 = !lean_is_exclusive(x_116); +if (x_117 == 0) { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_114 = lean_ctor_get(x_112, 0); -x_115 = lean_ctor_get(x_112, 1); -x_116 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_116, 0, x_114); -x_117 = lean_io_mono_nanos_now(x_115); -x_118 = !lean_is_exclusive(x_117); -if (x_118 == 0) +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_118 = lean_ctor_get(x_116, 0); +x_119 = lean_ctor_get(x_116, 1); +x_120 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_120, 0, x_118); +x_121 = lean_io_mono_nanos_now(x_119); +x_122 = !lean_is_exclusive(x_121); +if (x_122 == 0) { -lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_122; double x_123; double x_124; double x_125; double x_126; double x_127; lean_object* x_128; lean_object* x_129; -x_119 = lean_ctor_get(x_117, 0); -x_120 = lean_ctor_get(x_117, 1); -x_121 = 0; -x_122 = lean_unsigned_to_nat(0u); -x_123 = l_Float_ofScientific(x_110, x_121, x_122); -lean_dec(x_110); -x_124 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_125 = lean_float_div(x_123, x_124); -x_126 = l_Float_ofScientific(x_119, x_121, x_122); -lean_dec(x_119); -x_127 = lean_float_div(x_126, x_124); -x_128 = lean_box_float(x_125); -x_129 = lean_box_float(x_127); -lean_ctor_set(x_117, 1, x_129); -lean_ctor_set(x_117, 0, x_128); -lean_ctor_set(x_112, 1, x_117); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_120; -goto block_108; +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; double x_130; double x_131; lean_object* x_132; lean_object* x_133; +x_123 = lean_ctor_get(x_121, 0); +x_124 = lean_ctor_get(x_121, 1); +x_125 = 0; +x_126 = lean_unsigned_to_nat(0u); +x_127 = l_Float_ofScientific(x_114, x_125, x_126); +lean_dec(x_114); +x_128 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_129 = lean_float_div(x_127, x_128); +x_130 = l_Float_ofScientific(x_123, x_125, x_126); +lean_dec(x_123); +x_131 = lean_float_div(x_130, x_128); +x_132 = lean_box_float(x_129); +x_133 = lean_box_float(x_131); +lean_ctor_set(x_121, 1, x_133); +lean_ctor_set(x_121, 0, x_132); +lean_ctor_set(x_116, 1, x_121); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_124; +goto block_112; } else { -lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; double x_134; double x_135; double x_136; double x_137; double x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_130 = lean_ctor_get(x_117, 0); -x_131 = lean_ctor_get(x_117, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_117); -x_132 = 0; -x_133 = lean_unsigned_to_nat(0u); -x_134 = l_Float_ofScientific(x_110, x_132, x_133); -lean_dec(x_110); -x_135 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_136 = lean_float_div(x_134, x_135); -x_137 = l_Float_ofScientific(x_130, x_132, x_133); -lean_dec(x_130); -x_138 = lean_float_div(x_137, x_135); -x_139 = lean_box_float(x_136); -x_140 = lean_box_float(x_138); -x_141 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -lean_ctor_set(x_112, 1, x_141); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_131; -goto block_108; +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_134 = lean_ctor_get(x_121, 0); +x_135 = lean_ctor_get(x_121, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_121); +x_136 = 0; +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Float_ofScientific(x_114, x_136, x_137); +lean_dec(x_114); +x_139 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_140 = lean_float_div(x_138, x_139); +x_141 = l_Float_ofScientific(x_134, x_136, x_137); +lean_dec(x_134); +x_142 = lean_float_div(x_141, x_139); +x_143 = lean_box_float(x_140); +x_144 = lean_box_float(x_142); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_116, 1, x_145); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_135; +goto block_112; } } else { -lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_142 = lean_ctor_get(x_112, 0); -x_143 = lean_ctor_get(x_112, 1); -lean_inc(x_143); -lean_inc(x_142); -lean_dec(x_112); -x_144 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_144, 0, x_142); -x_145 = lean_io_mono_nanos_now(x_143); -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; lean_object* x_154; double x_155; double x_156; double x_157; double x_158; double x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_146 = lean_ctor_get(x_116, 0); +x_147 = lean_ctor_get(x_116, 1); lean_inc(x_147); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - lean_ctor_release(x_145, 1); - x_148 = x_145; +lean_inc(x_146); +lean_dec(x_116); +x_148 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_148, 0, x_146); +x_149 = lean_io_mono_nanos_now(x_147); +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + lean_ctor_release(x_149, 1); + x_152 = x_149; } else { - lean_dec_ref(x_145); - x_148 = lean_box(0); + lean_dec_ref(x_149); + x_152 = lean_box(0); } -x_149 = 0; -x_150 = lean_unsigned_to_nat(0u); -x_151 = l_Float_ofScientific(x_110, x_149, x_150); -lean_dec(x_110); -x_152 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_153 = lean_float_div(x_151, x_152); -x_154 = l_Float_ofScientific(x_146, x_149, x_150); -lean_dec(x_146); -x_155 = lean_float_div(x_154, x_152); -x_156 = lean_box_float(x_153); -x_157 = lean_box_float(x_155); -if (lean_is_scalar(x_148)) { - x_158 = lean_alloc_ctor(0, 2, 0); +x_153 = 0; +x_154 = lean_unsigned_to_nat(0u); +x_155 = l_Float_ofScientific(x_114, x_153, x_154); +lean_dec(x_114); +x_156 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_157 = lean_float_div(x_155, x_156); +x_158 = l_Float_ofScientific(x_150, x_153, x_154); +lean_dec(x_150); +x_159 = lean_float_div(x_158, x_156); +x_160 = lean_box_float(x_157); +x_161 = lean_box_float(x_159); +if (lean_is_scalar(x_152)) { + x_162 = lean_alloc_ctor(0, 2, 0); } else { - x_158 = x_148; + x_162 = x_152; } -lean_ctor_set(x_158, 0, x_156); -lean_ctor_set(x_158, 1, x_157); -x_159 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_159, 0, x_144); -lean_ctor_set(x_159, 1, x_158); -x_19 = x_159; -x_20 = x_147; -goto block_108; +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_161); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_148); +lean_ctor_set(x_163, 1, x_162); +x_19 = x_163; +x_20 = x_151; +goto block_112; } } else { -uint8_t x_160; -x_160 = !lean_is_exclusive(x_112); -if (x_160 == 0) +uint8_t x_164; +x_164 = !lean_is_exclusive(x_116); +if (x_164 == 0) { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_161 = lean_ctor_get(x_112, 0); -x_162 = lean_ctor_get(x_112, 1); -x_163 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_163, 0, x_161); -x_164 = lean_io_mono_nanos_now(x_162); -x_165 = !lean_is_exclusive(x_164); -if (x_165 == 0) +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; +x_165 = lean_ctor_get(x_116, 0); +x_166 = lean_ctor_get(x_116, 1); +x_167 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_167, 0, x_165); +x_168 = lean_io_mono_nanos_now(x_166); +x_169 = !lean_is_exclusive(x_168); +if (x_169 == 0) { -lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; double x_170; double x_171; double x_172; double x_173; double x_174; lean_object* x_175; lean_object* x_176; -x_166 = lean_ctor_get(x_164, 0); -x_167 = lean_ctor_get(x_164, 1); -x_168 = 0; -x_169 = lean_unsigned_to_nat(0u); -x_170 = l_Float_ofScientific(x_110, x_168, x_169); -lean_dec(x_110); -x_171 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_172 = lean_float_div(x_170, x_171); -x_173 = l_Float_ofScientific(x_166, x_168, x_169); -lean_dec(x_166); -x_174 = lean_float_div(x_173, x_171); -x_175 = lean_box_float(x_172); -x_176 = lean_box_float(x_174); -lean_ctor_set(x_164, 1, x_176); -lean_ctor_set(x_164, 0, x_175); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_164); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_167; -goto block_108; +lean_object* x_170; lean_object* x_171; uint8_t x_172; lean_object* x_173; double x_174; double x_175; double x_176; double x_177; double x_178; lean_object* x_179; lean_object* x_180; +x_170 = lean_ctor_get(x_168, 0); +x_171 = lean_ctor_get(x_168, 1); +x_172 = 0; +x_173 = lean_unsigned_to_nat(0u); +x_174 = l_Float_ofScientific(x_114, x_172, x_173); +lean_dec(x_114); +x_175 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_176 = lean_float_div(x_174, x_175); +x_177 = l_Float_ofScientific(x_170, x_172, x_173); +lean_dec(x_170); +x_178 = lean_float_div(x_177, x_175); +x_179 = lean_box_float(x_176); +x_180 = lean_box_float(x_178); +lean_ctor_set(x_168, 1, x_180); +lean_ctor_set(x_168, 0, x_179); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_168); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_171; +goto block_112; } else { -lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_object* x_180; double x_181; double x_182; double x_183; double x_184; double x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_177 = lean_ctor_get(x_164, 0); -x_178 = lean_ctor_get(x_164, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_164); -x_179 = 0; -x_180 = lean_unsigned_to_nat(0u); -x_181 = l_Float_ofScientific(x_110, x_179, x_180); -lean_dec(x_110); -x_182 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_183 = lean_float_div(x_181, x_182); -x_184 = l_Float_ofScientific(x_177, x_179, x_180); -lean_dec(x_177); -x_185 = lean_float_div(x_184, x_182); -x_186 = lean_box_float(x_183); -x_187 = lean_box_float(x_185); -x_188 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_188); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_178; -goto block_108; +lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_181 = lean_ctor_get(x_168, 0); +x_182 = lean_ctor_get(x_168, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_168); +x_183 = 0; +x_184 = lean_unsigned_to_nat(0u); +x_185 = l_Float_ofScientific(x_114, x_183, x_184); +lean_dec(x_114); +x_186 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_187 = lean_float_div(x_185, x_186); +x_188 = l_Float_ofScientific(x_181, x_183, x_184); +lean_dec(x_181); +x_189 = lean_float_div(x_188, x_186); +x_190 = lean_box_float(x_187); +x_191 = lean_box_float(x_189); +x_192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_192); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_182; +goto block_112; } } else { -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_189 = lean_ctor_get(x_112, 0); -x_190 = lean_ctor_get(x_112, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_112); -x_191 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_191, 0, x_189); -x_192 = lean_io_mono_nanos_now(x_190); -x_193 = lean_ctor_get(x_192, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; lean_object* x_201; double x_202; double x_203; double x_204; double x_205; double x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_193 = lean_ctor_get(x_116, 0); +x_194 = lean_ctor_get(x_116, 1); lean_inc(x_194); -if (lean_is_exclusive(x_192)) { - lean_ctor_release(x_192, 0); - lean_ctor_release(x_192, 1); - x_195 = x_192; +lean_inc(x_193); +lean_dec(x_116); +x_195 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_195, 0, x_193); +x_196 = lean_io_mono_nanos_now(x_194); +x_197 = lean_ctor_get(x_196, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_196, 1); +lean_inc(x_198); +if (lean_is_exclusive(x_196)) { + lean_ctor_release(x_196, 0); + lean_ctor_release(x_196, 1); + x_199 = x_196; } else { - lean_dec_ref(x_192); - x_195 = lean_box(0); + lean_dec_ref(x_196); + x_199 = lean_box(0); } -x_196 = 0; -x_197 = lean_unsigned_to_nat(0u); -x_198 = l_Float_ofScientific(x_110, x_196, x_197); -lean_dec(x_110); -x_199 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_200 = lean_float_div(x_198, x_199); -x_201 = l_Float_ofScientific(x_193, x_196, x_197); -lean_dec(x_193); -x_202 = lean_float_div(x_201, x_199); -x_203 = lean_box_float(x_200); -x_204 = lean_box_float(x_202); -if (lean_is_scalar(x_195)) { - x_205 = lean_alloc_ctor(0, 2, 0); +x_200 = 0; +x_201 = lean_unsigned_to_nat(0u); +x_202 = l_Float_ofScientific(x_114, x_200, x_201); +lean_dec(x_114); +x_203 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_204 = lean_float_div(x_202, x_203); +x_205 = l_Float_ofScientific(x_197, x_200, x_201); +lean_dec(x_197); +x_206 = lean_float_div(x_205, x_203); +x_207 = lean_box_float(x_204); +x_208 = lean_box_float(x_206); +if (lean_is_scalar(x_199)) { + x_209 = lean_alloc_ctor(0, 2, 0); } else { - x_205 = x_195; + x_209 = x_199; } -lean_ctor_set(x_205, 0, x_203); -lean_ctor_set(x_205, 1, x_204); -x_206 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_206, 0, x_191); -lean_ctor_set(x_206, 1, x_205); -x_19 = x_206; -x_20 = x_194; -goto block_108; +lean_ctor_set(x_209, 0, x_207); +lean_ctor_set(x_209, 1, x_208); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_195); +lean_ctor_set(x_210, 1, x_209); +x_19 = x_210; +x_20 = x_198; +goto block_112; } } -block_108: +block_112: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_94; uint8_t x_95; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); x_22 = lean_ctor_get(x_19, 0); @@ -8316,17 +8281,33 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_21, 1); lean_inc(x_24); lean_dec(x_21); -x_94 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__2; -x_95 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_94); -if (x_95 == 0) +x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__2; +x_26 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_25); +if (x_26 == 0) { -uint8_t x_96; -x_96 = 0; -x_25 = x_96; -goto block_93; +if (x_6 == 0) +{ +uint8_t x_92; +x_92 = 0; +x_27 = x_92; +goto block_91; } else { +lean_object* x_93; double x_94; double x_95; lean_object* x_96; +x_93 = lean_box(0); +x_94 = lean_unbox_float(x_23); +lean_dec(x_23); +x_95 = lean_unbox_float(x_24); +lean_dec(x_24); +x_96 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_94, x_95, x_5, x_93, x_9, x_10, x_11, x_12, x_20); +return x_96; +} +} +else +{ +if (x_6 == 0) +{ double x_97; double x_98; double x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; double x_104; double x_105; double x_106; uint8_t x_107; x_97 = lean_unbox_float(x_24); x_98 = lean_unbox_float(x_23); @@ -8340,859 +8321,871 @@ lean_dec(x_101); x_105 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__4; x_106 = lean_float_div(x_104, x_105); x_107 = lean_float_decLt(x_106, x_99); -x_25 = x_107; -goto block_93; +x_27 = x_107; +goto block_91; } -block_93: +else { -if (x_6 == 0) +lean_object* x_108; double x_109; double x_110; lean_object* x_111; +x_108 = lean_box(0); +x_109 = lean_unbox_float(x_23); +lean_dec(x_23); +x_110 = lean_unbox_float(x_24); +lean_dec(x_24); +x_111 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_109, x_110, x_5, x_108, x_9, x_10, x_11, x_12, x_20); +return x_111; +} +} +block_91: { -if (x_25 == 0) +if (x_27 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_24); lean_dec(x_23); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_26 = lean_st_ref_take(x_12, x_20); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -x_29 = lean_ctor_get(x_26, 1); +x_28 = lean_st_ref_take(x_12, x_20); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -lean_dec(x_26); -x_30 = !lean_is_exclusive(x_27); -if (x_30 == 0) -{ -lean_object* x_31; uint8_t x_32; -x_31 = lean_ctor_get(x_27, 3); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_28); +x_30 = lean_ctor_get(x_29, 3); +lean_inc(x_30); +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = !lean_is_exclusive(x_29); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_33 = lean_ctor_get(x_28, 0); -x_34 = l_Lean_PersistentArray_append___rarg(x_15, x_33); +lean_object* x_33; uint8_t x_34; +x_33 = lean_ctor_get(x_29, 3); lean_dec(x_33); -lean_ctor_set(x_28, 0, x_34); -x_35 = lean_st_ref_set(x_12, x_27, x_29); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); +x_34 = !lean_is_exclusive(x_30); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_ctor_get(x_30, 0); +x_36 = l_Lean_PersistentArray_append___rarg(x_15, x_35); lean_dec(x_35); -x_37 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__2(x_22, x_9, x_10, x_11, x_12, x_36); +lean_ctor_set(x_30, 0, x_36); +x_37 = lean_st_ref_set(x_12, x_29, x_31); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +x_39 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__2(x_22, x_9, x_10, x_11, x_12, x_38); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_37) == 0) +if (lean_obj_tag(x_39) == 0) { -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -return x_37; +return x_39; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_ctor_get(x_37, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_37); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_39); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } else { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_37); -if (x_42 == 0) +uint8_t x_44; +x_44 = !lean_is_exclusive(x_39); +if (x_44 == 0) { -return x_37; +return x_39; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_37, 0); -x_44 = lean_ctor_get(x_37, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_37); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_39, 0); +x_46 = lean_ctor_get(x_39, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_39); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } } else { -uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_47 = lean_ctor_get(x_28, 0); -lean_inc(x_47); -lean_dec(x_28); -x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_47); -lean_dec(x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); -lean_ctor_set(x_27, 3, x_49); -x_50 = lean_st_ref_set(x_12, x_27, x_29); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -lean_dec(x_50); -x_52 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__2(x_22, x_9, x_10, x_11, x_12, x_51); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_22); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); +uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_49 = lean_ctor_get(x_30, 0); +lean_inc(x_49); +lean_dec(x_30); +x_50 = l_Lean_PersistentArray_append___rarg(x_15, x_49); +lean_dec(x_49); +x_51 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); +lean_ctor_set(x_29, 3, x_51); +x_52 = lean_st_ref_set(x_12, x_29, x_31); +x_53 = lean_ctor_get(x_52, 1); lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_55 = x_52; +lean_dec(x_52); +x_54 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__2(x_22, x_9, x_10, x_11, x_12, x_53); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_22); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; } else { - lean_dec_ref(x_52); - x_55 = lean_box(0); + lean_dec_ref(x_54); + x_57 = lean_box(0); } -if (lean_is_scalar(x_55)) { - x_56 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_57)) { + x_58 = lean_alloc_ctor(0, 2, 0); } else { - x_56 = x_55; + x_58 = x_57; } -lean_ctor_set(x_56, 0, x_53); -lean_ctor_set(x_56, 1, x_54); -return x_56; +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_56); +return x_58; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_52, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_52, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_59 = x_52; +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_54, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_54, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_61 = x_54; } else { - lean_dec_ref(x_52); - x_59 = lean_box(0); + lean_dec_ref(x_54); + x_61 = lean_box(0); } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(1, 2, 0); } else { - x_60 = x_59; + x_62 = x_61; } -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_58); -return x_60; +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; } } } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_61 = lean_ctor_get(x_27, 0); -x_62 = lean_ctor_get(x_27, 1); -x_63 = lean_ctor_get(x_27, 2); -x_64 = lean_ctor_get(x_27, 4); -x_65 = lean_ctor_get(x_27, 5); -x_66 = lean_ctor_get(x_27, 6); -x_67 = lean_ctor_get(x_27, 7); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_63 = lean_ctor_get(x_29, 0); +x_64 = lean_ctor_get(x_29, 1); +x_65 = lean_ctor_get(x_29, 2); +x_66 = lean_ctor_get(x_29, 4); +x_67 = lean_ctor_get(x_29, 5); +x_68 = lean_ctor_get(x_29, 6); +x_69 = lean_ctor_get(x_29, 7); +lean_inc(x_69); +lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_27); -x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_69 = lean_ctor_get(x_28, 0); -lean_inc(x_69); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - x_70 = x_28; +lean_dec(x_29); +x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_71 = lean_ctor_get(x_30, 0); +lean_inc(x_71); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + x_72 = x_30; } else { - lean_dec_ref(x_28); - x_70 = lean_box(0); + lean_dec_ref(x_30); + x_72 = lean_box(0); } -x_71 = l_Lean_PersistentArray_append___rarg(x_15, x_69); -lean_dec(x_69); -if (lean_is_scalar(x_70)) { - x_72 = lean_alloc_ctor(0, 1, 8); +x_73 = l_Lean_PersistentArray_append___rarg(x_15, x_71); +lean_dec(x_71); +if (lean_is_scalar(x_72)) { + x_74 = lean_alloc_ctor(0, 1, 8); } else { - x_72 = x_70; + x_74 = x_72; } -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); -x_73 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_73, 0, x_61); -lean_ctor_set(x_73, 1, x_62); -lean_ctor_set(x_73, 2, x_63); -lean_ctor_set(x_73, 3, x_72); -lean_ctor_set(x_73, 4, x_64); -lean_ctor_set(x_73, 5, x_65); -lean_ctor_set(x_73, 6, x_66); -lean_ctor_set(x_73, 7, x_67); -x_74 = lean_st_ref_set(x_12, x_73, x_29); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_76 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__2(x_22, x_9, x_10, x_11, x_12, x_75); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); +x_75 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_64); +lean_ctor_set(x_75, 2, x_65); +lean_ctor_set(x_75, 3, x_74); +lean_ctor_set(x_75, 4, x_66); +lean_ctor_set(x_75, 5, x_67); +lean_ctor_set(x_75, 6, x_68); +lean_ctor_set(x_75, 7, x_69); +x_76 = lean_st_ref_set(x_12, x_75, x_31); +x_77 = lean_ctor_get(x_76, 1); +lean_inc(x_77); +lean_dec(x_76); +x_78 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__2(x_22, x_9, x_10, x_11, x_12, x_77); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_76) == 0) +if (lean_obj_tag(x_78) == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_76, 0); -lean_inc(x_77); -x_78 = lean_ctor_get(x_76, 1); -lean_inc(x_78); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_79 = x_76; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_81 = x_78; } else { - lean_dec_ref(x_76); - x_79 = lean_box(0); + lean_dec_ref(x_78); + x_81 = lean_box(0); } -if (lean_is_scalar(x_79)) { - x_80 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(0, 2, 0); } else { - x_80 = x_79; + x_82 = x_81; } -lean_ctor_set(x_80, 0, x_77); -lean_ctor_set(x_80, 1, x_78); -return x_80; +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_80); +return x_82; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_81 = lean_ctor_get(x_76, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_76, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_83 = x_76; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_83 = lean_ctor_get(x_78, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_78, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_85 = x_78; } else { - lean_dec_ref(x_76); - x_83 = lean_box(0); + lean_dec_ref(x_78); + x_85 = lean_box(0); } -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); } else { - x_84 = x_83; + x_86 = x_85; } -lean_ctor_set(x_84, 0, x_81); -lean_ctor_set(x_84, 1, x_82); -return x_84; +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; } } } else { -lean_object* x_85; double x_86; double x_87; lean_object* x_88; -x_85 = lean_box(0); -x_86 = lean_unbox_float(x_23); +lean_object* x_87; double x_88; double x_89; lean_object* x_90; +x_87 = lean_box(0); +x_88 = lean_unbox_float(x_23); lean_dec(x_23); -x_87 = lean_unbox_float(x_24); +x_89 = lean_unbox_float(x_24); lean_dec(x_24); -x_88 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_86, x_87, x_5, x_85, x_9, x_10, x_11, x_12, x_20); -return x_88; -} -} -else -{ -lean_object* x_89; double x_90; double x_91; lean_object* x_92; -x_89 = lean_box(0); -x_90 = lean_unbox_float(x_23); -lean_dec(x_23); -x_91 = lean_unbox_float(x_24); -lean_dec(x_24); -x_92 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_20); -return x_92; +x_90 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_20); +return x_90; } } } } else { -lean_object* x_207; lean_object* x_208; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_16); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_211; lean_object* x_212; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_16); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_207 = x_336; -x_208 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_211 = x_344; +x_212 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_207 = x_374; -x_208 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_282; uint8_t x_283; -x_209 = lean_ctor_get(x_207, 1); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 0); -lean_inc(x_210); -lean_dec(x_207); -x_211 = lean_ctor_get(x_209, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 1); -lean_inc(x_212); -lean_dec(x_209); -x_282 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_213 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_212); -x_286 = lean_unbox_float(x_211); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_213 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_211 = x_382; +x_212 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; uint8_t x_219; +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 0); +lean_inc(x_214); +lean_dec(x_211); +x_215 = lean_ctor_get(x_213, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 1); +lean_inc(x_216); +lean_dec(x_213); +x_217 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__2; +x_218 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_217); +if (x_218 == 0) { if (x_6 == 0) { -if (x_213 == 0) +uint8_t x_284; +x_284 = 0; +x_219 = x_284; +goto block_283; +} +else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; -lean_dec(x_212); -lean_dec(x_211); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_215); +lean_dec(x_215); +x_287 = lean_unbox_float(x_216); +lean_dec(x_216); +x_288 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_212); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_216); +x_290 = lean_unbox_float(x_215); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_219 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_215); +lean_dec(x_215); +x_300 = lean_unbox_float(x_216); +lean_dec(x_216); +x_301 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_212); +return x_301; +} +} +block_283: +{ +if (x_219 == 0) +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; +lean_dec(x_216); +lean_dec(x_215); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_214 = lean_st_ref_take(x_12, x_208); -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_215, 3); -lean_inc(x_216); -x_217 = lean_ctor_get(x_214, 1); -lean_inc(x_217); -lean_dec(x_214); -x_218 = !lean_is_exclusive(x_215); -if (x_218 == 0) +x_220 = lean_st_ref_take(x_12, x_212); +x_221 = lean_ctor_get(x_220, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_221, 3); +lean_inc(x_222); +x_223 = lean_ctor_get(x_220, 1); +lean_inc(x_223); +lean_dec(x_220); +x_224 = !lean_is_exclusive(x_221); +if (x_224 == 0) { -lean_object* x_219; uint8_t x_220; -x_219 = lean_ctor_get(x_215, 3); -lean_dec(x_219); -x_220 = !lean_is_exclusive(x_216); -if (x_220 == 0) -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_221 = lean_ctor_get(x_216, 0); -x_222 = l_Lean_PersistentArray_append___rarg(x_15, x_221); -lean_dec(x_221); -lean_ctor_set(x_216, 0, x_222); -x_223 = lean_st_ref_set(x_12, x_215, x_217); -x_224 = lean_ctor_get(x_223, 1); -lean_inc(x_224); -lean_dec(x_223); -x_225 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__2(x_210, x_9, x_10, x_11, x_12, x_224); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_225) == 0) -{ -uint8_t x_226; -x_226 = !lean_is_exclusive(x_225); +lean_object* x_225; uint8_t x_226; +x_225 = lean_ctor_get(x_221, 3); +lean_dec(x_225); +x_226 = !lean_is_exclusive(x_222); if (x_226 == 0) { -return x_225; -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; -x_227 = lean_ctor_get(x_225, 0); -x_228 = lean_ctor_get(x_225, 1); -lean_inc(x_228); -lean_inc(x_227); -lean_dec(x_225); -x_229 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_229, 0, x_227); -lean_ctor_set(x_229, 1, x_228); -return x_229; -} -} -else -{ -uint8_t x_230; -x_230 = !lean_is_exclusive(x_225); -if (x_230 == 0) -{ -return x_225; -} -else -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_225, 0); -x_232 = lean_ctor_get(x_225, 1); -lean_inc(x_232); -lean_inc(x_231); -lean_dec(x_225); -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_231); -lean_ctor_set(x_233, 1, x_232); -return x_233; -} -} -} -else -{ -uint64_t x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_234 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_235 = lean_ctor_get(x_216, 0); -lean_inc(x_235); -lean_dec(x_216); -x_236 = l_Lean_PersistentArray_append___rarg(x_15, x_235); -lean_dec(x_235); -x_237 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_237, 0, x_236); -lean_ctor_set_uint64(x_237, sizeof(void*)*1, x_234); -lean_ctor_set(x_215, 3, x_237); -x_238 = lean_st_ref_set(x_12, x_215, x_217); -x_239 = lean_ctor_get(x_238, 1); -lean_inc(x_239); -lean_dec(x_238); -x_240 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__2(x_210, x_9, x_10, x_11, x_12, x_239); +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_227 = lean_ctor_get(x_222, 0); +x_228 = l_Lean_PersistentArray_append___rarg(x_15, x_227); +lean_dec(x_227); +lean_ctor_set(x_222, 0, x_228); +x_229 = lean_st_ref_set(x_12, x_221, x_223); +x_230 = lean_ctor_get(x_229, 1); +lean_inc(x_230); +lean_dec(x_229); +x_231 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__2(x_214, x_9, x_10, x_11, x_12, x_230); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_240) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_231) == 0) { -lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; -x_241 = lean_ctor_get(x_240, 0); +uint8_t x_232; +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +return x_231; +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_231, 0); +x_234 = lean_ctor_get(x_231, 1); +lean_inc(x_234); +lean_inc(x_233); +lean_dec(x_231); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +return x_235; +} +} +else +{ +uint8_t x_236; +x_236 = !lean_is_exclusive(x_231); +if (x_236 == 0) +{ +return x_231; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_231, 0); +x_238 = lean_ctor_get(x_231, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_231); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} +} +} +else +{ +uint64_t x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_240 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_241 = lean_ctor_get(x_222, 0); lean_inc(x_241); -x_242 = lean_ctor_get(x_240, 1); -lean_inc(x_242); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_243 = x_240; -} else { - lean_dec_ref(x_240); - x_243 = lean_box(0); -} -if (lean_is_scalar(x_243)) { - x_244 = lean_alloc_ctor(0, 2, 0); -} else { - x_244 = x_243; -} -lean_ctor_set(x_244, 0, x_241); -lean_ctor_set(x_244, 1, x_242); -return x_244; -} -else -{ -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_245 = lean_ctor_get(x_240, 0); +lean_dec(x_222); +x_242 = l_Lean_PersistentArray_append___rarg(x_15, x_241); +lean_dec(x_241); +x_243 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set_uint64(x_243, sizeof(void*)*1, x_240); +lean_ctor_set(x_221, 3, x_243); +x_244 = lean_st_ref_set(x_12, x_221, x_223); +x_245 = lean_ctor_get(x_244, 1); lean_inc(x_245); -x_246 = lean_ctor_get(x_240, 1); -lean_inc(x_246); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_247 = x_240; -} else { - lean_dec_ref(x_240); - x_247 = lean_box(0); -} -if (lean_is_scalar(x_247)) { - x_248 = lean_alloc_ctor(1, 2, 0); -} else { - x_248 = x_247; -} -lean_ctor_set(x_248, 0, x_245); -lean_ctor_set(x_248, 1, x_246); -return x_248; -} -} -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_249 = lean_ctor_get(x_215, 0); -x_250 = lean_ctor_get(x_215, 1); -x_251 = lean_ctor_get(x_215, 2); -x_252 = lean_ctor_get(x_215, 4); -x_253 = lean_ctor_get(x_215, 5); -x_254 = lean_ctor_get(x_215, 6); -x_255 = lean_ctor_get(x_215, 7); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_dec(x_215); -x_256 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_257 = lean_ctor_get(x_216, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_216)) { - lean_ctor_release(x_216, 0); - x_258 = x_216; -} else { - lean_dec_ref(x_216); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_15, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_261, 0, x_249); -lean_ctor_set(x_261, 1, x_250); -lean_ctor_set(x_261, 2, x_251); -lean_ctor_set(x_261, 3, x_260); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_255); -x_262 = lean_st_ref_set(x_12, x_261, x_217); -x_263 = lean_ctor_get(x_262, 1); -lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__2(x_210, x_9, x_10, x_11, x_12, x_263); +lean_dec(x_244); +x_246 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__2(x_214, x_9, x_10, x_11, x_12, x_245); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_246) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_247 = lean_ctor_get(x_246, 0); +lean_inc(x_247); +x_248 = lean_ctor_get(x_246, 1); +lean_inc(x_248); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_249 = x_246; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_246); + x_249 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_249)) { + x_250 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_250 = x_249; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_250, 0, x_247); +lean_ctor_set(x_250, 1, x_248); +return x_250; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_251 = lean_ctor_get(x_246, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_246, 1); +lean_inc(x_252); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_253 = x_246; +} else { + lean_dec_ref(x_246); + x_253 = lean_box(0); +} +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(1, 2, 0); +} else { + x_254 = x_253; +} +lean_ctor_set(x_254, 0, x_251); +lean_ctor_set(x_254, 1, x_252); +return x_254; +} +} +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_255 = lean_ctor_get(x_221, 0); +x_256 = lean_ctor_get(x_221, 1); +x_257 = lean_ctor_get(x_221, 2); +x_258 = lean_ctor_get(x_221, 4); +x_259 = lean_ctor_get(x_221, 5); +x_260 = lean_ctor_get(x_221, 6); +x_261 = lean_ctor_get(x_221, 7); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_221); +x_262 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_263 = lean_ctor_get(x_222, 0); +lean_inc(x_263); +if (lean_is_exclusive(x_222)) { + lean_ctor_release(x_222, 0); + x_264 = x_222; +} else { + lean_dec_ref(x_222); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_15, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_267, 0, x_255); +lean_ctor_set(x_267, 1, x_256); +lean_ctor_set(x_267, 2, x_257); +lean_ctor_set(x_267, 3, x_266); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_261); +x_268 = lean_st_ref_set(x_12, x_267, x_223); +x_269 = lean_ctor_get(x_268, 1); lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__2(x_214, x_9, x_10, x_11, x_12, x_269); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_214); +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_272 = x_271; + x_274 = x_273; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; +} else { + lean_dec_ref(x_270); + x_277 = lean_box(0); +} +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); +} else { + x_278 = x_277; +} +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_211); -lean_dec(x_211); -x_275 = lean_unbox_float(x_212); -lean_dec(x_212); -x_276 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_274, x_275, x_5, x_273, x_9, x_10, x_11, x_12, x_208); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_211); -lean_dec(x_211); -x_279 = lean_unbox_float(x_212); -lean_dec(x_212); -x_280 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_278, x_279, x_5, x_277, x_9, x_10, x_11, x_12, x_208); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_215); +lean_dec(x_215); +x_281 = lean_unbox_float(x_216); +lean_dec(x_216); +x_282 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_212); +return x_282; } } } @@ -9421,103 +9414,78 @@ lean_dec(x_9); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -double x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_18 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_18, 0, x_1); -lean_ctor_set(x_18, 1, x_3); -lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); -lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); -lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___closed__2; -x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_19); -if (x_20 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___closed__1; +x_17 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_3); +lean_ctor_set_float(x_17, sizeof(void*)*2, x_16); +lean_ctor_set_float(x_17, sizeof(void*)*2 + 8, x_16); +lean_ctor_set_uint8(x_17, sizeof(void*)*2 + 16, x_2); +x_18 = lean_box(0); +x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__1(x_4, x_5, x_10, x_6, x_17, x_18, x_11, x_12, x_13, x_14, x_15); +return x_19; +} +else { -lean_object* x_21; lean_object* x_22; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); x_21 = lean_box(0); -x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__1(x_4, x_5, x_11, x_6, x_18, x_21, x_12, x_13, x_14, x_15, x_16); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15); return x_22; } -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_18); -x_23 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_3); -lean_ctor_set_float(x_23, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); -x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__1(x_4, x_5, x_11, x_6, x_23, x_24, x_12, x_13, x_14, x_15, x_16); -return x_25; } } -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_18); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16); -return x_28; -} -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 5); -lean_inc(x_17); -lean_inc(x_15); +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 5); +lean_inc(x_16); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_18 = lean_apply_6(x_10, x_5, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_18) == 0) +x_17 = lean_apply_6(x_9, x_5, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_14, x_15, x_20); -lean_dec(x_15); -lean_dec(x_13); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_13, x_14, x_19); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_21; +return x_20; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_14, x_15, x_22); -lean_dec(x_15); -lean_dec(x_13); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } } } @@ -9535,253 +9503,253 @@ x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblast x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_17); if (x_18 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_109 = lean_io_mono_nanos_now(x_16); -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_109, 1); -lean_inc(x_111); -lean_dec(x_109); +lean_object* x_19; lean_object* x_20; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_113 = lean_io_mono_nanos_now(x_16); +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +lean_dec(x_113); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_112 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_111); -if (lean_obj_tag(x_112) == 0) +x_116 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_115); +if (lean_obj_tag(x_116) == 0) { -uint8_t x_113; -x_113 = !lean_is_exclusive(x_112); -if (x_113 == 0) +uint8_t x_117; +x_117 = !lean_is_exclusive(x_116); +if (x_117 == 0) { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_114 = lean_ctor_get(x_112, 0); -x_115 = lean_ctor_get(x_112, 1); -x_116 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_116, 0, x_114); -x_117 = lean_io_mono_nanos_now(x_115); -x_118 = !lean_is_exclusive(x_117); -if (x_118 == 0) +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_118 = lean_ctor_get(x_116, 0); +x_119 = lean_ctor_get(x_116, 1); +x_120 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_120, 0, x_118); +x_121 = lean_io_mono_nanos_now(x_119); +x_122 = !lean_is_exclusive(x_121); +if (x_122 == 0) { -lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_122; double x_123; double x_124; double x_125; double x_126; double x_127; lean_object* x_128; lean_object* x_129; -x_119 = lean_ctor_get(x_117, 0); -x_120 = lean_ctor_get(x_117, 1); -x_121 = 0; -x_122 = lean_unsigned_to_nat(0u); -x_123 = l_Float_ofScientific(x_110, x_121, x_122); -lean_dec(x_110); -x_124 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_125 = lean_float_div(x_123, x_124); -x_126 = l_Float_ofScientific(x_119, x_121, x_122); -lean_dec(x_119); -x_127 = lean_float_div(x_126, x_124); -x_128 = lean_box_float(x_125); -x_129 = lean_box_float(x_127); -lean_ctor_set(x_117, 1, x_129); -lean_ctor_set(x_117, 0, x_128); -lean_ctor_set(x_112, 1, x_117); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_120; -goto block_108; +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; double x_130; double x_131; lean_object* x_132; lean_object* x_133; +x_123 = lean_ctor_get(x_121, 0); +x_124 = lean_ctor_get(x_121, 1); +x_125 = 0; +x_126 = lean_unsigned_to_nat(0u); +x_127 = l_Float_ofScientific(x_114, x_125, x_126); +lean_dec(x_114); +x_128 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_129 = lean_float_div(x_127, x_128); +x_130 = l_Float_ofScientific(x_123, x_125, x_126); +lean_dec(x_123); +x_131 = lean_float_div(x_130, x_128); +x_132 = lean_box_float(x_129); +x_133 = lean_box_float(x_131); +lean_ctor_set(x_121, 1, x_133); +lean_ctor_set(x_121, 0, x_132); +lean_ctor_set(x_116, 1, x_121); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_124; +goto block_112; } else { -lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; double x_134; double x_135; double x_136; double x_137; double x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_130 = lean_ctor_get(x_117, 0); -x_131 = lean_ctor_get(x_117, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_117); -x_132 = 0; -x_133 = lean_unsigned_to_nat(0u); -x_134 = l_Float_ofScientific(x_110, x_132, x_133); -lean_dec(x_110); -x_135 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_136 = lean_float_div(x_134, x_135); -x_137 = l_Float_ofScientific(x_130, x_132, x_133); -lean_dec(x_130); -x_138 = lean_float_div(x_137, x_135); -x_139 = lean_box_float(x_136); -x_140 = lean_box_float(x_138); -x_141 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -lean_ctor_set(x_112, 1, x_141); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_131; -goto block_108; +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_134 = lean_ctor_get(x_121, 0); +x_135 = lean_ctor_get(x_121, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_121); +x_136 = 0; +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Float_ofScientific(x_114, x_136, x_137); +lean_dec(x_114); +x_139 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_140 = lean_float_div(x_138, x_139); +x_141 = l_Float_ofScientific(x_134, x_136, x_137); +lean_dec(x_134); +x_142 = lean_float_div(x_141, x_139); +x_143 = lean_box_float(x_140); +x_144 = lean_box_float(x_142); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_116, 1, x_145); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_135; +goto block_112; } } else { -lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_142 = lean_ctor_get(x_112, 0); -x_143 = lean_ctor_get(x_112, 1); -lean_inc(x_143); -lean_inc(x_142); -lean_dec(x_112); -x_144 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_144, 0, x_142); -x_145 = lean_io_mono_nanos_now(x_143); -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; lean_object* x_154; double x_155; double x_156; double x_157; double x_158; double x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_146 = lean_ctor_get(x_116, 0); +x_147 = lean_ctor_get(x_116, 1); lean_inc(x_147); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - lean_ctor_release(x_145, 1); - x_148 = x_145; +lean_inc(x_146); +lean_dec(x_116); +x_148 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_148, 0, x_146); +x_149 = lean_io_mono_nanos_now(x_147); +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + lean_ctor_release(x_149, 1); + x_152 = x_149; } else { - lean_dec_ref(x_145); - x_148 = lean_box(0); + lean_dec_ref(x_149); + x_152 = lean_box(0); } -x_149 = 0; -x_150 = lean_unsigned_to_nat(0u); -x_151 = l_Float_ofScientific(x_110, x_149, x_150); -lean_dec(x_110); -x_152 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_153 = lean_float_div(x_151, x_152); -x_154 = l_Float_ofScientific(x_146, x_149, x_150); -lean_dec(x_146); -x_155 = lean_float_div(x_154, x_152); -x_156 = lean_box_float(x_153); -x_157 = lean_box_float(x_155); -if (lean_is_scalar(x_148)) { - x_158 = lean_alloc_ctor(0, 2, 0); +x_153 = 0; +x_154 = lean_unsigned_to_nat(0u); +x_155 = l_Float_ofScientific(x_114, x_153, x_154); +lean_dec(x_114); +x_156 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_157 = lean_float_div(x_155, x_156); +x_158 = l_Float_ofScientific(x_150, x_153, x_154); +lean_dec(x_150); +x_159 = lean_float_div(x_158, x_156); +x_160 = lean_box_float(x_157); +x_161 = lean_box_float(x_159); +if (lean_is_scalar(x_152)) { + x_162 = lean_alloc_ctor(0, 2, 0); } else { - x_158 = x_148; + x_162 = x_152; } -lean_ctor_set(x_158, 0, x_156); -lean_ctor_set(x_158, 1, x_157); -x_159 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_159, 0, x_144); -lean_ctor_set(x_159, 1, x_158); -x_19 = x_159; -x_20 = x_147; -goto block_108; +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_161); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_148); +lean_ctor_set(x_163, 1, x_162); +x_19 = x_163; +x_20 = x_151; +goto block_112; } } else { -uint8_t x_160; -x_160 = !lean_is_exclusive(x_112); -if (x_160 == 0) +uint8_t x_164; +x_164 = !lean_is_exclusive(x_116); +if (x_164 == 0) { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_161 = lean_ctor_get(x_112, 0); -x_162 = lean_ctor_get(x_112, 1); -x_163 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_163, 0, x_161); -x_164 = lean_io_mono_nanos_now(x_162); -x_165 = !lean_is_exclusive(x_164); -if (x_165 == 0) +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; +x_165 = lean_ctor_get(x_116, 0); +x_166 = lean_ctor_get(x_116, 1); +x_167 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_167, 0, x_165); +x_168 = lean_io_mono_nanos_now(x_166); +x_169 = !lean_is_exclusive(x_168); +if (x_169 == 0) { -lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; double x_170; double x_171; double x_172; double x_173; double x_174; lean_object* x_175; lean_object* x_176; -x_166 = lean_ctor_get(x_164, 0); -x_167 = lean_ctor_get(x_164, 1); -x_168 = 0; -x_169 = lean_unsigned_to_nat(0u); -x_170 = l_Float_ofScientific(x_110, x_168, x_169); -lean_dec(x_110); -x_171 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_172 = lean_float_div(x_170, x_171); -x_173 = l_Float_ofScientific(x_166, x_168, x_169); -lean_dec(x_166); -x_174 = lean_float_div(x_173, x_171); -x_175 = lean_box_float(x_172); -x_176 = lean_box_float(x_174); -lean_ctor_set(x_164, 1, x_176); -lean_ctor_set(x_164, 0, x_175); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_164); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_167; -goto block_108; +lean_object* x_170; lean_object* x_171; uint8_t x_172; lean_object* x_173; double x_174; double x_175; double x_176; double x_177; double x_178; lean_object* x_179; lean_object* x_180; +x_170 = lean_ctor_get(x_168, 0); +x_171 = lean_ctor_get(x_168, 1); +x_172 = 0; +x_173 = lean_unsigned_to_nat(0u); +x_174 = l_Float_ofScientific(x_114, x_172, x_173); +lean_dec(x_114); +x_175 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_176 = lean_float_div(x_174, x_175); +x_177 = l_Float_ofScientific(x_170, x_172, x_173); +lean_dec(x_170); +x_178 = lean_float_div(x_177, x_175); +x_179 = lean_box_float(x_176); +x_180 = lean_box_float(x_178); +lean_ctor_set(x_168, 1, x_180); +lean_ctor_set(x_168, 0, x_179); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_168); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_171; +goto block_112; } else { -lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_object* x_180; double x_181; double x_182; double x_183; double x_184; double x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_177 = lean_ctor_get(x_164, 0); -x_178 = lean_ctor_get(x_164, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_164); -x_179 = 0; -x_180 = lean_unsigned_to_nat(0u); -x_181 = l_Float_ofScientific(x_110, x_179, x_180); -lean_dec(x_110); -x_182 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_183 = lean_float_div(x_181, x_182); -x_184 = l_Float_ofScientific(x_177, x_179, x_180); -lean_dec(x_177); -x_185 = lean_float_div(x_184, x_182); -x_186 = lean_box_float(x_183); -x_187 = lean_box_float(x_185); -x_188 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_188); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_178; -goto block_108; +lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_181 = lean_ctor_get(x_168, 0); +x_182 = lean_ctor_get(x_168, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_168); +x_183 = 0; +x_184 = lean_unsigned_to_nat(0u); +x_185 = l_Float_ofScientific(x_114, x_183, x_184); +lean_dec(x_114); +x_186 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_187 = lean_float_div(x_185, x_186); +x_188 = l_Float_ofScientific(x_181, x_183, x_184); +lean_dec(x_181); +x_189 = lean_float_div(x_188, x_186); +x_190 = lean_box_float(x_187); +x_191 = lean_box_float(x_189); +x_192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_192); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_182; +goto block_112; } } else { -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_189 = lean_ctor_get(x_112, 0); -x_190 = lean_ctor_get(x_112, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_112); -x_191 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_191, 0, x_189); -x_192 = lean_io_mono_nanos_now(x_190); -x_193 = lean_ctor_get(x_192, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; lean_object* x_201; double x_202; double x_203; double x_204; double x_205; double x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_193 = lean_ctor_get(x_116, 0); +x_194 = lean_ctor_get(x_116, 1); lean_inc(x_194); -if (lean_is_exclusive(x_192)) { - lean_ctor_release(x_192, 0); - lean_ctor_release(x_192, 1); - x_195 = x_192; +lean_inc(x_193); +lean_dec(x_116); +x_195 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_195, 0, x_193); +x_196 = lean_io_mono_nanos_now(x_194); +x_197 = lean_ctor_get(x_196, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_196, 1); +lean_inc(x_198); +if (lean_is_exclusive(x_196)) { + lean_ctor_release(x_196, 0); + lean_ctor_release(x_196, 1); + x_199 = x_196; } else { - lean_dec_ref(x_192); - x_195 = lean_box(0); + lean_dec_ref(x_196); + x_199 = lean_box(0); } -x_196 = 0; -x_197 = lean_unsigned_to_nat(0u); -x_198 = l_Float_ofScientific(x_110, x_196, x_197); -lean_dec(x_110); -x_199 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_200 = lean_float_div(x_198, x_199); -x_201 = l_Float_ofScientific(x_193, x_196, x_197); -lean_dec(x_193); -x_202 = lean_float_div(x_201, x_199); -x_203 = lean_box_float(x_200); -x_204 = lean_box_float(x_202); -if (lean_is_scalar(x_195)) { - x_205 = lean_alloc_ctor(0, 2, 0); +x_200 = 0; +x_201 = lean_unsigned_to_nat(0u); +x_202 = l_Float_ofScientific(x_114, x_200, x_201); +lean_dec(x_114); +x_203 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_204 = lean_float_div(x_202, x_203); +x_205 = l_Float_ofScientific(x_197, x_200, x_201); +lean_dec(x_197); +x_206 = lean_float_div(x_205, x_203); +x_207 = lean_box_float(x_204); +x_208 = lean_box_float(x_206); +if (lean_is_scalar(x_199)) { + x_209 = lean_alloc_ctor(0, 2, 0); } else { - x_205 = x_195; + x_209 = x_199; } -lean_ctor_set(x_205, 0, x_203); -lean_ctor_set(x_205, 1, x_204); -x_206 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_206, 0, x_191); -lean_ctor_set(x_206, 1, x_205); -x_19 = x_206; -x_20 = x_194; -goto block_108; +lean_ctor_set(x_209, 0, x_207); +lean_ctor_set(x_209, 1, x_208); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_195); +lean_ctor_set(x_210, 1, x_209); +x_19 = x_210; +x_20 = x_198; +goto block_112; } } -block_108: +block_112: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_94; uint8_t x_95; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); x_22 = lean_ctor_get(x_19, 0); @@ -9792,17 +9760,33 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_21, 1); lean_inc(x_24); lean_dec(x_21); -x_94 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__2; -x_95 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_94); -if (x_95 == 0) +x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__2; +x_26 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_25); +if (x_26 == 0) { -uint8_t x_96; -x_96 = 0; -x_25 = x_96; -goto block_93; +if (x_6 == 0) +{ +uint8_t x_92; +x_92 = 0; +x_27 = x_92; +goto block_91; } else { +lean_object* x_93; double x_94; double x_95; lean_object* x_96; +x_93 = lean_box(0); +x_94 = lean_unbox_float(x_23); +lean_dec(x_23); +x_95 = lean_unbox_float(x_24); +lean_dec(x_24); +x_96 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_94, x_95, x_5, x_93, x_9, x_10, x_11, x_12, x_20); +return x_96; +} +} +else +{ +if (x_6 == 0) +{ double x_97; double x_98; double x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; double x_104; double x_105; double x_106; uint8_t x_107; x_97 = lean_unbox_float(x_24); x_98 = lean_unbox_float(x_23); @@ -9816,859 +9800,871 @@ lean_dec(x_101); x_105 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__4; x_106 = lean_float_div(x_104, x_105); x_107 = lean_float_decLt(x_106, x_99); -x_25 = x_107; -goto block_93; +x_27 = x_107; +goto block_91; } -block_93: +else { -if (x_6 == 0) +lean_object* x_108; double x_109; double x_110; lean_object* x_111; +x_108 = lean_box(0); +x_109 = lean_unbox_float(x_23); +lean_dec(x_23); +x_110 = lean_unbox_float(x_24); +lean_dec(x_24); +x_111 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_109, x_110, x_5, x_108, x_9, x_10, x_11, x_12, x_20); +return x_111; +} +} +block_91: { -if (x_25 == 0) +if (x_27 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_24); lean_dec(x_23); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_26 = lean_st_ref_take(x_12, x_20); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -x_29 = lean_ctor_get(x_26, 1); +x_28 = lean_st_ref_take(x_12, x_20); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -lean_dec(x_26); -x_30 = !lean_is_exclusive(x_27); -if (x_30 == 0) -{ -lean_object* x_31; uint8_t x_32; -x_31 = lean_ctor_get(x_27, 3); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_28); +x_30 = lean_ctor_get(x_29, 3); +lean_inc(x_30); +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = !lean_is_exclusive(x_29); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_33 = lean_ctor_get(x_28, 0); -x_34 = l_Lean_PersistentArray_append___rarg(x_15, x_33); +lean_object* x_33; uint8_t x_34; +x_33 = lean_ctor_get(x_29, 3); lean_dec(x_33); -lean_ctor_set(x_28, 0, x_34); -x_35 = lean_st_ref_set(x_12, x_27, x_29); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); +x_34 = !lean_is_exclusive(x_30); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_ctor_get(x_30, 0); +x_36 = l_Lean_PersistentArray_append___rarg(x_15, x_35); lean_dec(x_35); -x_37 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__5(x_22, x_9, x_10, x_11, x_12, x_36); +lean_ctor_set(x_30, 0, x_36); +x_37 = lean_st_ref_set(x_12, x_29, x_31); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +x_39 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__5(x_22, x_9, x_10, x_11, x_12, x_38); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_37) == 0) +if (lean_obj_tag(x_39) == 0) { -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -return x_37; +return x_39; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_ctor_get(x_37, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_37); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_39); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } else { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_37); -if (x_42 == 0) +uint8_t x_44; +x_44 = !lean_is_exclusive(x_39); +if (x_44 == 0) { -return x_37; +return x_39; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_37, 0); -x_44 = lean_ctor_get(x_37, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_37); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_39, 0); +x_46 = lean_ctor_get(x_39, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_39); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } } else { -uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_47 = lean_ctor_get(x_28, 0); -lean_inc(x_47); -lean_dec(x_28); -x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_47); -lean_dec(x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); -lean_ctor_set(x_27, 3, x_49); -x_50 = lean_st_ref_set(x_12, x_27, x_29); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -lean_dec(x_50); -x_52 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__5(x_22, x_9, x_10, x_11, x_12, x_51); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_22); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); +uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_49 = lean_ctor_get(x_30, 0); +lean_inc(x_49); +lean_dec(x_30); +x_50 = l_Lean_PersistentArray_append___rarg(x_15, x_49); +lean_dec(x_49); +x_51 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); +lean_ctor_set(x_29, 3, x_51); +x_52 = lean_st_ref_set(x_12, x_29, x_31); +x_53 = lean_ctor_get(x_52, 1); lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_55 = x_52; +lean_dec(x_52); +x_54 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__5(x_22, x_9, x_10, x_11, x_12, x_53); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_22); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; } else { - lean_dec_ref(x_52); - x_55 = lean_box(0); + lean_dec_ref(x_54); + x_57 = lean_box(0); } -if (lean_is_scalar(x_55)) { - x_56 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_57)) { + x_58 = lean_alloc_ctor(0, 2, 0); } else { - x_56 = x_55; + x_58 = x_57; } -lean_ctor_set(x_56, 0, x_53); -lean_ctor_set(x_56, 1, x_54); -return x_56; +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_56); +return x_58; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_52, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_52, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_59 = x_52; +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_54, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_54, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_61 = x_54; } else { - lean_dec_ref(x_52); - x_59 = lean_box(0); + lean_dec_ref(x_54); + x_61 = lean_box(0); } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(1, 2, 0); } else { - x_60 = x_59; + x_62 = x_61; } -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_58); -return x_60; +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; } } } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_61 = lean_ctor_get(x_27, 0); -x_62 = lean_ctor_get(x_27, 1); -x_63 = lean_ctor_get(x_27, 2); -x_64 = lean_ctor_get(x_27, 4); -x_65 = lean_ctor_get(x_27, 5); -x_66 = lean_ctor_get(x_27, 6); -x_67 = lean_ctor_get(x_27, 7); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_63 = lean_ctor_get(x_29, 0); +x_64 = lean_ctor_get(x_29, 1); +x_65 = lean_ctor_get(x_29, 2); +x_66 = lean_ctor_get(x_29, 4); +x_67 = lean_ctor_get(x_29, 5); +x_68 = lean_ctor_get(x_29, 6); +x_69 = lean_ctor_get(x_29, 7); +lean_inc(x_69); +lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_27); -x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_69 = lean_ctor_get(x_28, 0); -lean_inc(x_69); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - x_70 = x_28; +lean_dec(x_29); +x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_71 = lean_ctor_get(x_30, 0); +lean_inc(x_71); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + x_72 = x_30; } else { - lean_dec_ref(x_28); - x_70 = lean_box(0); + lean_dec_ref(x_30); + x_72 = lean_box(0); } -x_71 = l_Lean_PersistentArray_append___rarg(x_15, x_69); -lean_dec(x_69); -if (lean_is_scalar(x_70)) { - x_72 = lean_alloc_ctor(0, 1, 8); +x_73 = l_Lean_PersistentArray_append___rarg(x_15, x_71); +lean_dec(x_71); +if (lean_is_scalar(x_72)) { + x_74 = lean_alloc_ctor(0, 1, 8); } else { - x_72 = x_70; + x_74 = x_72; } -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); -x_73 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_73, 0, x_61); -lean_ctor_set(x_73, 1, x_62); -lean_ctor_set(x_73, 2, x_63); -lean_ctor_set(x_73, 3, x_72); -lean_ctor_set(x_73, 4, x_64); -lean_ctor_set(x_73, 5, x_65); -lean_ctor_set(x_73, 6, x_66); -lean_ctor_set(x_73, 7, x_67); -x_74 = lean_st_ref_set(x_12, x_73, x_29); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_76 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__5(x_22, x_9, x_10, x_11, x_12, x_75); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); +x_75 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_64); +lean_ctor_set(x_75, 2, x_65); +lean_ctor_set(x_75, 3, x_74); +lean_ctor_set(x_75, 4, x_66); +lean_ctor_set(x_75, 5, x_67); +lean_ctor_set(x_75, 6, x_68); +lean_ctor_set(x_75, 7, x_69); +x_76 = lean_st_ref_set(x_12, x_75, x_31); +x_77 = lean_ctor_get(x_76, 1); +lean_inc(x_77); +lean_dec(x_76); +x_78 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__5(x_22, x_9, x_10, x_11, x_12, x_77); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_76) == 0) +if (lean_obj_tag(x_78) == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_76, 0); -lean_inc(x_77); -x_78 = lean_ctor_get(x_76, 1); -lean_inc(x_78); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_79 = x_76; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_81 = x_78; } else { - lean_dec_ref(x_76); - x_79 = lean_box(0); + lean_dec_ref(x_78); + x_81 = lean_box(0); } -if (lean_is_scalar(x_79)) { - x_80 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(0, 2, 0); } else { - x_80 = x_79; + x_82 = x_81; } -lean_ctor_set(x_80, 0, x_77); -lean_ctor_set(x_80, 1, x_78); -return x_80; +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_80); +return x_82; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_81 = lean_ctor_get(x_76, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_76, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_83 = x_76; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_83 = lean_ctor_get(x_78, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_78, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_85 = x_78; } else { - lean_dec_ref(x_76); - x_83 = lean_box(0); + lean_dec_ref(x_78); + x_85 = lean_box(0); } -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); } else { - x_84 = x_83; + x_86 = x_85; } -lean_ctor_set(x_84, 0, x_81); -lean_ctor_set(x_84, 1, x_82); -return x_84; +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; } } } else { -lean_object* x_85; double x_86; double x_87; lean_object* x_88; -x_85 = lean_box(0); -x_86 = lean_unbox_float(x_23); +lean_object* x_87; double x_88; double x_89; lean_object* x_90; +x_87 = lean_box(0); +x_88 = lean_unbox_float(x_23); lean_dec(x_23); -x_87 = lean_unbox_float(x_24); +x_89 = lean_unbox_float(x_24); lean_dec(x_24); -x_88 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_86, x_87, x_5, x_85, x_9, x_10, x_11, x_12, x_20); -return x_88; -} -} -else -{ -lean_object* x_89; double x_90; double x_91; lean_object* x_92; -x_89 = lean_box(0); -x_90 = lean_unbox_float(x_23); -lean_dec(x_23); -x_91 = lean_unbox_float(x_24); -lean_dec(x_24); -x_92 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_20); -return x_92; +x_90 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_20); +return x_90; } } } } else { -lean_object* x_207; lean_object* x_208; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_16); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_211; lean_object* x_212; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_16); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_207 = x_336; -x_208 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_211 = x_344; +x_212 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_207 = x_374; -x_208 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_282; uint8_t x_283; -x_209 = lean_ctor_get(x_207, 1); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 0); -lean_inc(x_210); -lean_dec(x_207); -x_211 = lean_ctor_get(x_209, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 1); -lean_inc(x_212); -lean_dec(x_209); -x_282 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_213 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_212); -x_286 = lean_unbox_float(x_211); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_213 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_211 = x_382; +x_212 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; uint8_t x_219; +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 0); +lean_inc(x_214); +lean_dec(x_211); +x_215 = lean_ctor_get(x_213, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 1); +lean_inc(x_216); +lean_dec(x_213); +x_217 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__2; +x_218 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_217); +if (x_218 == 0) { if (x_6 == 0) { -if (x_213 == 0) +uint8_t x_284; +x_284 = 0; +x_219 = x_284; +goto block_283; +} +else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; -lean_dec(x_212); -lean_dec(x_211); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_215); +lean_dec(x_215); +x_287 = lean_unbox_float(x_216); +lean_dec(x_216); +x_288 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_212); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_216); +x_290 = lean_unbox_float(x_215); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_219 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_215); +lean_dec(x_215); +x_300 = lean_unbox_float(x_216); +lean_dec(x_216); +x_301 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_212); +return x_301; +} +} +block_283: +{ +if (x_219 == 0) +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; +lean_dec(x_216); +lean_dec(x_215); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_214 = lean_st_ref_take(x_12, x_208); -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_215, 3); -lean_inc(x_216); -x_217 = lean_ctor_get(x_214, 1); -lean_inc(x_217); -lean_dec(x_214); -x_218 = !lean_is_exclusive(x_215); -if (x_218 == 0) +x_220 = lean_st_ref_take(x_12, x_212); +x_221 = lean_ctor_get(x_220, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_221, 3); +lean_inc(x_222); +x_223 = lean_ctor_get(x_220, 1); +lean_inc(x_223); +lean_dec(x_220); +x_224 = !lean_is_exclusive(x_221); +if (x_224 == 0) { -lean_object* x_219; uint8_t x_220; -x_219 = lean_ctor_get(x_215, 3); -lean_dec(x_219); -x_220 = !lean_is_exclusive(x_216); -if (x_220 == 0) -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_221 = lean_ctor_get(x_216, 0); -x_222 = l_Lean_PersistentArray_append___rarg(x_15, x_221); -lean_dec(x_221); -lean_ctor_set(x_216, 0, x_222); -x_223 = lean_st_ref_set(x_12, x_215, x_217); -x_224 = lean_ctor_get(x_223, 1); -lean_inc(x_224); -lean_dec(x_223); -x_225 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__5(x_210, x_9, x_10, x_11, x_12, x_224); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_225) == 0) -{ -uint8_t x_226; -x_226 = !lean_is_exclusive(x_225); +lean_object* x_225; uint8_t x_226; +x_225 = lean_ctor_get(x_221, 3); +lean_dec(x_225); +x_226 = !lean_is_exclusive(x_222); if (x_226 == 0) { -return x_225; -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; -x_227 = lean_ctor_get(x_225, 0); -x_228 = lean_ctor_get(x_225, 1); -lean_inc(x_228); -lean_inc(x_227); -lean_dec(x_225); -x_229 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_229, 0, x_227); -lean_ctor_set(x_229, 1, x_228); -return x_229; -} -} -else -{ -uint8_t x_230; -x_230 = !lean_is_exclusive(x_225); -if (x_230 == 0) -{ -return x_225; -} -else -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_225, 0); -x_232 = lean_ctor_get(x_225, 1); -lean_inc(x_232); -lean_inc(x_231); -lean_dec(x_225); -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_231); -lean_ctor_set(x_233, 1, x_232); -return x_233; -} -} -} -else -{ -uint64_t x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_234 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_235 = lean_ctor_get(x_216, 0); -lean_inc(x_235); -lean_dec(x_216); -x_236 = l_Lean_PersistentArray_append___rarg(x_15, x_235); -lean_dec(x_235); -x_237 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_237, 0, x_236); -lean_ctor_set_uint64(x_237, sizeof(void*)*1, x_234); -lean_ctor_set(x_215, 3, x_237); -x_238 = lean_st_ref_set(x_12, x_215, x_217); -x_239 = lean_ctor_get(x_238, 1); -lean_inc(x_239); -lean_dec(x_238); -x_240 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__5(x_210, x_9, x_10, x_11, x_12, x_239); +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_227 = lean_ctor_get(x_222, 0); +x_228 = l_Lean_PersistentArray_append___rarg(x_15, x_227); +lean_dec(x_227); +lean_ctor_set(x_222, 0, x_228); +x_229 = lean_st_ref_set(x_12, x_221, x_223); +x_230 = lean_ctor_get(x_229, 1); +lean_inc(x_230); +lean_dec(x_229); +x_231 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__5(x_214, x_9, x_10, x_11, x_12, x_230); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_240) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_231) == 0) { -lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; -x_241 = lean_ctor_get(x_240, 0); +uint8_t x_232; +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +return x_231; +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_231, 0); +x_234 = lean_ctor_get(x_231, 1); +lean_inc(x_234); +lean_inc(x_233); +lean_dec(x_231); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +return x_235; +} +} +else +{ +uint8_t x_236; +x_236 = !lean_is_exclusive(x_231); +if (x_236 == 0) +{ +return x_231; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_231, 0); +x_238 = lean_ctor_get(x_231, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_231); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} +} +} +else +{ +uint64_t x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_240 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_241 = lean_ctor_get(x_222, 0); lean_inc(x_241); -x_242 = lean_ctor_get(x_240, 1); -lean_inc(x_242); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_243 = x_240; -} else { - lean_dec_ref(x_240); - x_243 = lean_box(0); -} -if (lean_is_scalar(x_243)) { - x_244 = lean_alloc_ctor(0, 2, 0); -} else { - x_244 = x_243; -} -lean_ctor_set(x_244, 0, x_241); -lean_ctor_set(x_244, 1, x_242); -return x_244; -} -else -{ -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_245 = lean_ctor_get(x_240, 0); +lean_dec(x_222); +x_242 = l_Lean_PersistentArray_append___rarg(x_15, x_241); +lean_dec(x_241); +x_243 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set_uint64(x_243, sizeof(void*)*1, x_240); +lean_ctor_set(x_221, 3, x_243); +x_244 = lean_st_ref_set(x_12, x_221, x_223); +x_245 = lean_ctor_get(x_244, 1); lean_inc(x_245); -x_246 = lean_ctor_get(x_240, 1); -lean_inc(x_246); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_247 = x_240; -} else { - lean_dec_ref(x_240); - x_247 = lean_box(0); -} -if (lean_is_scalar(x_247)) { - x_248 = lean_alloc_ctor(1, 2, 0); -} else { - x_248 = x_247; -} -lean_ctor_set(x_248, 0, x_245); -lean_ctor_set(x_248, 1, x_246); -return x_248; -} -} -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_249 = lean_ctor_get(x_215, 0); -x_250 = lean_ctor_get(x_215, 1); -x_251 = lean_ctor_get(x_215, 2); -x_252 = lean_ctor_get(x_215, 4); -x_253 = lean_ctor_get(x_215, 5); -x_254 = lean_ctor_get(x_215, 6); -x_255 = lean_ctor_get(x_215, 7); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_dec(x_215); -x_256 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_257 = lean_ctor_get(x_216, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_216)) { - lean_ctor_release(x_216, 0); - x_258 = x_216; -} else { - lean_dec_ref(x_216); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_15, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_261, 0, x_249); -lean_ctor_set(x_261, 1, x_250); -lean_ctor_set(x_261, 2, x_251); -lean_ctor_set(x_261, 3, x_260); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_255); -x_262 = lean_st_ref_set(x_12, x_261, x_217); -x_263 = lean_ctor_get(x_262, 1); -lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__5(x_210, x_9, x_10, x_11, x_12, x_263); +lean_dec(x_244); +x_246 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__5(x_214, x_9, x_10, x_11, x_12, x_245); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_246) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_247 = lean_ctor_get(x_246, 0); +lean_inc(x_247); +x_248 = lean_ctor_get(x_246, 1); +lean_inc(x_248); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_249 = x_246; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_246); + x_249 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_249)) { + x_250 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_250 = x_249; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_250, 0, x_247); +lean_ctor_set(x_250, 1, x_248); +return x_250; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_251 = lean_ctor_get(x_246, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_246, 1); +lean_inc(x_252); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_253 = x_246; +} else { + lean_dec_ref(x_246); + x_253 = lean_box(0); +} +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(1, 2, 0); +} else { + x_254 = x_253; +} +lean_ctor_set(x_254, 0, x_251); +lean_ctor_set(x_254, 1, x_252); +return x_254; +} +} +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_255 = lean_ctor_get(x_221, 0); +x_256 = lean_ctor_get(x_221, 1); +x_257 = lean_ctor_get(x_221, 2); +x_258 = lean_ctor_get(x_221, 4); +x_259 = lean_ctor_get(x_221, 5); +x_260 = lean_ctor_get(x_221, 6); +x_261 = lean_ctor_get(x_221, 7); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_221); +x_262 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_263 = lean_ctor_get(x_222, 0); +lean_inc(x_263); +if (lean_is_exclusive(x_222)) { + lean_ctor_release(x_222, 0); + x_264 = x_222; +} else { + lean_dec_ref(x_222); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_15, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_267, 0, x_255); +lean_ctor_set(x_267, 1, x_256); +lean_ctor_set(x_267, 2, x_257); +lean_ctor_set(x_267, 3, x_266); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_261); +x_268 = lean_st_ref_set(x_12, x_267, x_223); +x_269 = lean_ctor_get(x_268, 1); lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__5(x_214, x_9, x_10, x_11, x_12, x_269); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_214); +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_272 = x_271; + x_274 = x_273; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; +} else { + lean_dec_ref(x_270); + x_277 = lean_box(0); +} +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); +} else { + x_278 = x_277; +} +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_211); -lean_dec(x_211); -x_275 = lean_unbox_float(x_212); -lean_dec(x_212); -x_276 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_274, x_275, x_5, x_273, x_9, x_10, x_11, x_12, x_208); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_211); -lean_dec(x_211); -x_279 = lean_unbox_float(x_212); -lean_dec(x_212); -x_280 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_278, x_279, x_5, x_277, x_9, x_10, x_11, x_12, x_208); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_215); +lean_dec(x_215); +x_281 = lean_unbox_float(x_216); +lean_dec(x_216); +x_282 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_212); +return x_282; } } } @@ -10813,103 +10809,78 @@ lean_dec(x_9); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -double x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_18 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_18, 0, x_1); -lean_ctor_set(x_18, 1, x_3); -lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); -lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); -lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___closed__2; -x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_19); -if (x_20 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___closed__1; +x_17 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_3); +lean_ctor_set_float(x_17, sizeof(void*)*2, x_16); +lean_ctor_set_float(x_17, sizeof(void*)*2 + 8, x_16); +lean_ctor_set_uint8(x_17, sizeof(void*)*2 + 16, x_2); +x_18 = lean_box(0); +x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__1(x_4, x_5, x_10, x_6, x_17, x_18, x_11, x_12, x_13, x_14, x_15); +return x_19; +} +else { -lean_object* x_21; lean_object* x_22; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); x_21 = lean_box(0); -x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__1(x_4, x_5, x_11, x_6, x_18, x_21, x_12, x_13, x_14, x_15, x_16); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15); return x_22; } -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_18); -x_23 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_3); -lean_ctor_set_float(x_23, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); -x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__1(x_4, x_5, x_11, x_6, x_23, x_24, x_12, x_13, x_14, x_15, x_16); -return x_25; } } -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_18); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16); -return x_28; -} -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 5); -lean_inc(x_17); -lean_inc(x_15); +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 5); +lean_inc(x_16); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_18 = lean_apply_6(x_10, x_5, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_18) == 0) +x_17 = lean_apply_6(x_9, x_5, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_14, x_15, x_20); -lean_dec(x_15); -lean_dec(x_13); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_13, x_14, x_19); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_21; +return x_20; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_14, x_15, x_22); -lean_dec(x_15); -lean_dec(x_13); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } } } @@ -10927,253 +10898,253 @@ x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblast x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_17); if (x_18 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_109 = lean_io_mono_nanos_now(x_16); -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_109, 1); -lean_inc(x_111); -lean_dec(x_109); +lean_object* x_19; lean_object* x_20; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_113 = lean_io_mono_nanos_now(x_16); +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +lean_dec(x_113); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_112 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_111); -if (lean_obj_tag(x_112) == 0) +x_116 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_115); +if (lean_obj_tag(x_116) == 0) { -uint8_t x_113; -x_113 = !lean_is_exclusive(x_112); -if (x_113 == 0) +uint8_t x_117; +x_117 = !lean_is_exclusive(x_116); +if (x_117 == 0) { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_114 = lean_ctor_get(x_112, 0); -x_115 = lean_ctor_get(x_112, 1); -x_116 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_116, 0, x_114); -x_117 = lean_io_mono_nanos_now(x_115); -x_118 = !lean_is_exclusive(x_117); -if (x_118 == 0) +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_118 = lean_ctor_get(x_116, 0); +x_119 = lean_ctor_get(x_116, 1); +x_120 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_120, 0, x_118); +x_121 = lean_io_mono_nanos_now(x_119); +x_122 = !lean_is_exclusive(x_121); +if (x_122 == 0) { -lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_122; double x_123; double x_124; double x_125; double x_126; double x_127; lean_object* x_128; lean_object* x_129; -x_119 = lean_ctor_get(x_117, 0); -x_120 = lean_ctor_get(x_117, 1); -x_121 = 0; -x_122 = lean_unsigned_to_nat(0u); -x_123 = l_Float_ofScientific(x_110, x_121, x_122); -lean_dec(x_110); -x_124 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_125 = lean_float_div(x_123, x_124); -x_126 = l_Float_ofScientific(x_119, x_121, x_122); -lean_dec(x_119); -x_127 = lean_float_div(x_126, x_124); -x_128 = lean_box_float(x_125); -x_129 = lean_box_float(x_127); -lean_ctor_set(x_117, 1, x_129); -lean_ctor_set(x_117, 0, x_128); -lean_ctor_set(x_112, 1, x_117); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_120; -goto block_108; +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; double x_130; double x_131; lean_object* x_132; lean_object* x_133; +x_123 = lean_ctor_get(x_121, 0); +x_124 = lean_ctor_get(x_121, 1); +x_125 = 0; +x_126 = lean_unsigned_to_nat(0u); +x_127 = l_Float_ofScientific(x_114, x_125, x_126); +lean_dec(x_114); +x_128 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_129 = lean_float_div(x_127, x_128); +x_130 = l_Float_ofScientific(x_123, x_125, x_126); +lean_dec(x_123); +x_131 = lean_float_div(x_130, x_128); +x_132 = lean_box_float(x_129); +x_133 = lean_box_float(x_131); +lean_ctor_set(x_121, 1, x_133); +lean_ctor_set(x_121, 0, x_132); +lean_ctor_set(x_116, 1, x_121); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_124; +goto block_112; } else { -lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; double x_134; double x_135; double x_136; double x_137; double x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_130 = lean_ctor_get(x_117, 0); -x_131 = lean_ctor_get(x_117, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_117); -x_132 = 0; -x_133 = lean_unsigned_to_nat(0u); -x_134 = l_Float_ofScientific(x_110, x_132, x_133); -lean_dec(x_110); -x_135 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_136 = lean_float_div(x_134, x_135); -x_137 = l_Float_ofScientific(x_130, x_132, x_133); -lean_dec(x_130); -x_138 = lean_float_div(x_137, x_135); -x_139 = lean_box_float(x_136); -x_140 = lean_box_float(x_138); -x_141 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -lean_ctor_set(x_112, 1, x_141); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_131; -goto block_108; +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_134 = lean_ctor_get(x_121, 0); +x_135 = lean_ctor_get(x_121, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_121); +x_136 = 0; +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Float_ofScientific(x_114, x_136, x_137); +lean_dec(x_114); +x_139 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_140 = lean_float_div(x_138, x_139); +x_141 = l_Float_ofScientific(x_134, x_136, x_137); +lean_dec(x_134); +x_142 = lean_float_div(x_141, x_139); +x_143 = lean_box_float(x_140); +x_144 = lean_box_float(x_142); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_116, 1, x_145); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_135; +goto block_112; } } else { -lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_142 = lean_ctor_get(x_112, 0); -x_143 = lean_ctor_get(x_112, 1); -lean_inc(x_143); -lean_inc(x_142); -lean_dec(x_112); -x_144 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_144, 0, x_142); -x_145 = lean_io_mono_nanos_now(x_143); -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; lean_object* x_154; double x_155; double x_156; double x_157; double x_158; double x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_146 = lean_ctor_get(x_116, 0); +x_147 = lean_ctor_get(x_116, 1); lean_inc(x_147); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - lean_ctor_release(x_145, 1); - x_148 = x_145; +lean_inc(x_146); +lean_dec(x_116); +x_148 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_148, 0, x_146); +x_149 = lean_io_mono_nanos_now(x_147); +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + lean_ctor_release(x_149, 1); + x_152 = x_149; } else { - lean_dec_ref(x_145); - x_148 = lean_box(0); + lean_dec_ref(x_149); + x_152 = lean_box(0); } -x_149 = 0; -x_150 = lean_unsigned_to_nat(0u); -x_151 = l_Float_ofScientific(x_110, x_149, x_150); -lean_dec(x_110); -x_152 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_153 = lean_float_div(x_151, x_152); -x_154 = l_Float_ofScientific(x_146, x_149, x_150); -lean_dec(x_146); -x_155 = lean_float_div(x_154, x_152); -x_156 = lean_box_float(x_153); -x_157 = lean_box_float(x_155); -if (lean_is_scalar(x_148)) { - x_158 = lean_alloc_ctor(0, 2, 0); +x_153 = 0; +x_154 = lean_unsigned_to_nat(0u); +x_155 = l_Float_ofScientific(x_114, x_153, x_154); +lean_dec(x_114); +x_156 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_157 = lean_float_div(x_155, x_156); +x_158 = l_Float_ofScientific(x_150, x_153, x_154); +lean_dec(x_150); +x_159 = lean_float_div(x_158, x_156); +x_160 = lean_box_float(x_157); +x_161 = lean_box_float(x_159); +if (lean_is_scalar(x_152)) { + x_162 = lean_alloc_ctor(0, 2, 0); } else { - x_158 = x_148; + x_162 = x_152; } -lean_ctor_set(x_158, 0, x_156); -lean_ctor_set(x_158, 1, x_157); -x_159 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_159, 0, x_144); -lean_ctor_set(x_159, 1, x_158); -x_19 = x_159; -x_20 = x_147; -goto block_108; +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_161); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_148); +lean_ctor_set(x_163, 1, x_162); +x_19 = x_163; +x_20 = x_151; +goto block_112; } } else { -uint8_t x_160; -x_160 = !lean_is_exclusive(x_112); -if (x_160 == 0) +uint8_t x_164; +x_164 = !lean_is_exclusive(x_116); +if (x_164 == 0) { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_161 = lean_ctor_get(x_112, 0); -x_162 = lean_ctor_get(x_112, 1); -x_163 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_163, 0, x_161); -x_164 = lean_io_mono_nanos_now(x_162); -x_165 = !lean_is_exclusive(x_164); -if (x_165 == 0) +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; +x_165 = lean_ctor_get(x_116, 0); +x_166 = lean_ctor_get(x_116, 1); +x_167 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_167, 0, x_165); +x_168 = lean_io_mono_nanos_now(x_166); +x_169 = !lean_is_exclusive(x_168); +if (x_169 == 0) { -lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; double x_170; double x_171; double x_172; double x_173; double x_174; lean_object* x_175; lean_object* x_176; -x_166 = lean_ctor_get(x_164, 0); -x_167 = lean_ctor_get(x_164, 1); -x_168 = 0; -x_169 = lean_unsigned_to_nat(0u); -x_170 = l_Float_ofScientific(x_110, x_168, x_169); -lean_dec(x_110); -x_171 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_172 = lean_float_div(x_170, x_171); -x_173 = l_Float_ofScientific(x_166, x_168, x_169); -lean_dec(x_166); -x_174 = lean_float_div(x_173, x_171); -x_175 = lean_box_float(x_172); -x_176 = lean_box_float(x_174); -lean_ctor_set(x_164, 1, x_176); -lean_ctor_set(x_164, 0, x_175); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_164); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_167; -goto block_108; +lean_object* x_170; lean_object* x_171; uint8_t x_172; lean_object* x_173; double x_174; double x_175; double x_176; double x_177; double x_178; lean_object* x_179; lean_object* x_180; +x_170 = lean_ctor_get(x_168, 0); +x_171 = lean_ctor_get(x_168, 1); +x_172 = 0; +x_173 = lean_unsigned_to_nat(0u); +x_174 = l_Float_ofScientific(x_114, x_172, x_173); +lean_dec(x_114); +x_175 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_176 = lean_float_div(x_174, x_175); +x_177 = l_Float_ofScientific(x_170, x_172, x_173); +lean_dec(x_170); +x_178 = lean_float_div(x_177, x_175); +x_179 = lean_box_float(x_176); +x_180 = lean_box_float(x_178); +lean_ctor_set(x_168, 1, x_180); +lean_ctor_set(x_168, 0, x_179); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_168); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_171; +goto block_112; } else { -lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_object* x_180; double x_181; double x_182; double x_183; double x_184; double x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_177 = lean_ctor_get(x_164, 0); -x_178 = lean_ctor_get(x_164, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_164); -x_179 = 0; -x_180 = lean_unsigned_to_nat(0u); -x_181 = l_Float_ofScientific(x_110, x_179, x_180); -lean_dec(x_110); -x_182 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_183 = lean_float_div(x_181, x_182); -x_184 = l_Float_ofScientific(x_177, x_179, x_180); -lean_dec(x_177); -x_185 = lean_float_div(x_184, x_182); -x_186 = lean_box_float(x_183); -x_187 = lean_box_float(x_185); -x_188 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_188); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_178; -goto block_108; +lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_181 = lean_ctor_get(x_168, 0); +x_182 = lean_ctor_get(x_168, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_168); +x_183 = 0; +x_184 = lean_unsigned_to_nat(0u); +x_185 = l_Float_ofScientific(x_114, x_183, x_184); +lean_dec(x_114); +x_186 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_187 = lean_float_div(x_185, x_186); +x_188 = l_Float_ofScientific(x_181, x_183, x_184); +lean_dec(x_181); +x_189 = lean_float_div(x_188, x_186); +x_190 = lean_box_float(x_187); +x_191 = lean_box_float(x_189); +x_192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_192); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_182; +goto block_112; } } else { -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_189 = lean_ctor_get(x_112, 0); -x_190 = lean_ctor_get(x_112, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_112); -x_191 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_191, 0, x_189); -x_192 = lean_io_mono_nanos_now(x_190); -x_193 = lean_ctor_get(x_192, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; lean_object* x_201; double x_202; double x_203; double x_204; double x_205; double x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_193 = lean_ctor_get(x_116, 0); +x_194 = lean_ctor_get(x_116, 1); lean_inc(x_194); -if (lean_is_exclusive(x_192)) { - lean_ctor_release(x_192, 0); - lean_ctor_release(x_192, 1); - x_195 = x_192; +lean_inc(x_193); +lean_dec(x_116); +x_195 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_195, 0, x_193); +x_196 = lean_io_mono_nanos_now(x_194); +x_197 = lean_ctor_get(x_196, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_196, 1); +lean_inc(x_198); +if (lean_is_exclusive(x_196)) { + lean_ctor_release(x_196, 0); + lean_ctor_release(x_196, 1); + x_199 = x_196; } else { - lean_dec_ref(x_192); - x_195 = lean_box(0); + lean_dec_ref(x_196); + x_199 = lean_box(0); } -x_196 = 0; -x_197 = lean_unsigned_to_nat(0u); -x_198 = l_Float_ofScientific(x_110, x_196, x_197); -lean_dec(x_110); -x_199 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_200 = lean_float_div(x_198, x_199); -x_201 = l_Float_ofScientific(x_193, x_196, x_197); -lean_dec(x_193); -x_202 = lean_float_div(x_201, x_199); -x_203 = lean_box_float(x_200); -x_204 = lean_box_float(x_202); -if (lean_is_scalar(x_195)) { - x_205 = lean_alloc_ctor(0, 2, 0); +x_200 = 0; +x_201 = lean_unsigned_to_nat(0u); +x_202 = l_Float_ofScientific(x_114, x_200, x_201); +lean_dec(x_114); +x_203 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_204 = lean_float_div(x_202, x_203); +x_205 = l_Float_ofScientific(x_197, x_200, x_201); +lean_dec(x_197); +x_206 = lean_float_div(x_205, x_203); +x_207 = lean_box_float(x_204); +x_208 = lean_box_float(x_206); +if (lean_is_scalar(x_199)) { + x_209 = lean_alloc_ctor(0, 2, 0); } else { - x_205 = x_195; + x_209 = x_199; } -lean_ctor_set(x_205, 0, x_203); -lean_ctor_set(x_205, 1, x_204); -x_206 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_206, 0, x_191); -lean_ctor_set(x_206, 1, x_205); -x_19 = x_206; -x_20 = x_194; -goto block_108; +lean_ctor_set(x_209, 0, x_207); +lean_ctor_set(x_209, 1, x_208); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_195); +lean_ctor_set(x_210, 1, x_209); +x_19 = x_210; +x_20 = x_198; +goto block_112; } } -block_108: +block_112: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_94; uint8_t x_95; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); x_22 = lean_ctor_get(x_19, 0); @@ -11184,17 +11155,33 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_21, 1); lean_inc(x_24); lean_dec(x_21); -x_94 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__2; -x_95 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_94); -if (x_95 == 0) +x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__2; +x_26 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_25); +if (x_26 == 0) { -uint8_t x_96; -x_96 = 0; -x_25 = x_96; -goto block_93; +if (x_6 == 0) +{ +uint8_t x_92; +x_92 = 0; +x_27 = x_92; +goto block_91; } else { +lean_object* x_93; double x_94; double x_95; lean_object* x_96; +x_93 = lean_box(0); +x_94 = lean_unbox_float(x_23); +lean_dec(x_23); +x_95 = lean_unbox_float(x_24); +lean_dec(x_24); +x_96 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_94, x_95, x_5, x_93, x_9, x_10, x_11, x_12, x_20); +return x_96; +} +} +else +{ +if (x_6 == 0) +{ double x_97; double x_98; double x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; double x_104; double x_105; double x_106; uint8_t x_107; x_97 = lean_unbox_float(x_24); x_98 = lean_unbox_float(x_23); @@ -11208,859 +11195,871 @@ lean_dec(x_101); x_105 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__4; x_106 = lean_float_div(x_104, x_105); x_107 = lean_float_decLt(x_106, x_99); -x_25 = x_107; -goto block_93; +x_27 = x_107; +goto block_91; } -block_93: +else { -if (x_6 == 0) +lean_object* x_108; double x_109; double x_110; lean_object* x_111; +x_108 = lean_box(0); +x_109 = lean_unbox_float(x_23); +lean_dec(x_23); +x_110 = lean_unbox_float(x_24); +lean_dec(x_24); +x_111 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_109, x_110, x_5, x_108, x_9, x_10, x_11, x_12, x_20); +return x_111; +} +} +block_91: { -if (x_25 == 0) +if (x_27 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_24); lean_dec(x_23); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_26 = lean_st_ref_take(x_12, x_20); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -x_29 = lean_ctor_get(x_26, 1); +x_28 = lean_st_ref_take(x_12, x_20); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -lean_dec(x_26); -x_30 = !lean_is_exclusive(x_27); -if (x_30 == 0) -{ -lean_object* x_31; uint8_t x_32; -x_31 = lean_ctor_get(x_27, 3); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_28); +x_30 = lean_ctor_get(x_29, 3); +lean_inc(x_30); +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = !lean_is_exclusive(x_29); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_33 = lean_ctor_get(x_28, 0); -x_34 = l_Lean_PersistentArray_append___rarg(x_15, x_33); +lean_object* x_33; uint8_t x_34; +x_33 = lean_ctor_get(x_29, 3); lean_dec(x_33); -lean_ctor_set(x_28, 0, x_34); -x_35 = lean_st_ref_set(x_12, x_27, x_29); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); +x_34 = !lean_is_exclusive(x_30); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_ctor_get(x_30, 0); +x_36 = l_Lean_PersistentArray_append___rarg(x_15, x_35); lean_dec(x_35); -x_37 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__7(x_22, x_9, x_10, x_11, x_12, x_36); +lean_ctor_set(x_30, 0, x_36); +x_37 = lean_st_ref_set(x_12, x_29, x_31); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +x_39 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__7(x_22, x_9, x_10, x_11, x_12, x_38); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_37) == 0) +if (lean_obj_tag(x_39) == 0) { -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -return x_37; +return x_39; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_ctor_get(x_37, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_37); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_39); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } else { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_37); -if (x_42 == 0) +uint8_t x_44; +x_44 = !lean_is_exclusive(x_39); +if (x_44 == 0) { -return x_37; +return x_39; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_37, 0); -x_44 = lean_ctor_get(x_37, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_37); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_39, 0); +x_46 = lean_ctor_get(x_39, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_39); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } } else { -uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_47 = lean_ctor_get(x_28, 0); -lean_inc(x_47); -lean_dec(x_28); -x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_47); -lean_dec(x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); -lean_ctor_set(x_27, 3, x_49); -x_50 = lean_st_ref_set(x_12, x_27, x_29); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -lean_dec(x_50); -x_52 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__7(x_22, x_9, x_10, x_11, x_12, x_51); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_22); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); +uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_49 = lean_ctor_get(x_30, 0); +lean_inc(x_49); +lean_dec(x_30); +x_50 = l_Lean_PersistentArray_append___rarg(x_15, x_49); +lean_dec(x_49); +x_51 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); +lean_ctor_set(x_29, 3, x_51); +x_52 = lean_st_ref_set(x_12, x_29, x_31); +x_53 = lean_ctor_get(x_52, 1); lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_55 = x_52; +lean_dec(x_52); +x_54 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__7(x_22, x_9, x_10, x_11, x_12, x_53); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_22); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; } else { - lean_dec_ref(x_52); - x_55 = lean_box(0); + lean_dec_ref(x_54); + x_57 = lean_box(0); } -if (lean_is_scalar(x_55)) { - x_56 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_57)) { + x_58 = lean_alloc_ctor(0, 2, 0); } else { - x_56 = x_55; + x_58 = x_57; } -lean_ctor_set(x_56, 0, x_53); -lean_ctor_set(x_56, 1, x_54); -return x_56; +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_56); +return x_58; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_52, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_52, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_59 = x_52; +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_54, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_54, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_61 = x_54; } else { - lean_dec_ref(x_52); - x_59 = lean_box(0); + lean_dec_ref(x_54); + x_61 = lean_box(0); } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(1, 2, 0); } else { - x_60 = x_59; + x_62 = x_61; } -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_58); -return x_60; +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; } } } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_61 = lean_ctor_get(x_27, 0); -x_62 = lean_ctor_get(x_27, 1); -x_63 = lean_ctor_get(x_27, 2); -x_64 = lean_ctor_get(x_27, 4); -x_65 = lean_ctor_get(x_27, 5); -x_66 = lean_ctor_get(x_27, 6); -x_67 = lean_ctor_get(x_27, 7); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_63 = lean_ctor_get(x_29, 0); +x_64 = lean_ctor_get(x_29, 1); +x_65 = lean_ctor_get(x_29, 2); +x_66 = lean_ctor_get(x_29, 4); +x_67 = lean_ctor_get(x_29, 5); +x_68 = lean_ctor_get(x_29, 6); +x_69 = lean_ctor_get(x_29, 7); +lean_inc(x_69); +lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_27); -x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_69 = lean_ctor_get(x_28, 0); -lean_inc(x_69); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - x_70 = x_28; +lean_dec(x_29); +x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_71 = lean_ctor_get(x_30, 0); +lean_inc(x_71); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + x_72 = x_30; } else { - lean_dec_ref(x_28); - x_70 = lean_box(0); + lean_dec_ref(x_30); + x_72 = lean_box(0); } -x_71 = l_Lean_PersistentArray_append___rarg(x_15, x_69); -lean_dec(x_69); -if (lean_is_scalar(x_70)) { - x_72 = lean_alloc_ctor(0, 1, 8); +x_73 = l_Lean_PersistentArray_append___rarg(x_15, x_71); +lean_dec(x_71); +if (lean_is_scalar(x_72)) { + x_74 = lean_alloc_ctor(0, 1, 8); } else { - x_72 = x_70; + x_74 = x_72; } -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); -x_73 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_73, 0, x_61); -lean_ctor_set(x_73, 1, x_62); -lean_ctor_set(x_73, 2, x_63); -lean_ctor_set(x_73, 3, x_72); -lean_ctor_set(x_73, 4, x_64); -lean_ctor_set(x_73, 5, x_65); -lean_ctor_set(x_73, 6, x_66); -lean_ctor_set(x_73, 7, x_67); -x_74 = lean_st_ref_set(x_12, x_73, x_29); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_76 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__7(x_22, x_9, x_10, x_11, x_12, x_75); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); +x_75 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_64); +lean_ctor_set(x_75, 2, x_65); +lean_ctor_set(x_75, 3, x_74); +lean_ctor_set(x_75, 4, x_66); +lean_ctor_set(x_75, 5, x_67); +lean_ctor_set(x_75, 6, x_68); +lean_ctor_set(x_75, 7, x_69); +x_76 = lean_st_ref_set(x_12, x_75, x_31); +x_77 = lean_ctor_get(x_76, 1); +lean_inc(x_77); +lean_dec(x_76); +x_78 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__7(x_22, x_9, x_10, x_11, x_12, x_77); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_76) == 0) +if (lean_obj_tag(x_78) == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_76, 0); -lean_inc(x_77); -x_78 = lean_ctor_get(x_76, 1); -lean_inc(x_78); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_79 = x_76; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_81 = x_78; } else { - lean_dec_ref(x_76); - x_79 = lean_box(0); + lean_dec_ref(x_78); + x_81 = lean_box(0); } -if (lean_is_scalar(x_79)) { - x_80 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(0, 2, 0); } else { - x_80 = x_79; + x_82 = x_81; } -lean_ctor_set(x_80, 0, x_77); -lean_ctor_set(x_80, 1, x_78); -return x_80; +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_80); +return x_82; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_81 = lean_ctor_get(x_76, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_76, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_83 = x_76; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_83 = lean_ctor_get(x_78, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_78, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_85 = x_78; } else { - lean_dec_ref(x_76); - x_83 = lean_box(0); + lean_dec_ref(x_78); + x_85 = lean_box(0); } -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); } else { - x_84 = x_83; + x_86 = x_85; } -lean_ctor_set(x_84, 0, x_81); -lean_ctor_set(x_84, 1, x_82); -return x_84; +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; } } } else { -lean_object* x_85; double x_86; double x_87; lean_object* x_88; -x_85 = lean_box(0); -x_86 = lean_unbox_float(x_23); +lean_object* x_87; double x_88; double x_89; lean_object* x_90; +x_87 = lean_box(0); +x_88 = lean_unbox_float(x_23); lean_dec(x_23); -x_87 = lean_unbox_float(x_24); +x_89 = lean_unbox_float(x_24); lean_dec(x_24); -x_88 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_86, x_87, x_5, x_85, x_9, x_10, x_11, x_12, x_20); -return x_88; -} -} -else -{ -lean_object* x_89; double x_90; double x_91; lean_object* x_92; -x_89 = lean_box(0); -x_90 = lean_unbox_float(x_23); -lean_dec(x_23); -x_91 = lean_unbox_float(x_24); -lean_dec(x_24); -x_92 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_20); -return x_92; +x_90 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_20); +return x_90; } } } } else { -lean_object* x_207; lean_object* x_208; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_16); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_211; lean_object* x_212; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_16); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_207 = x_336; -x_208 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_211 = x_344; +x_212 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_207 = x_374; -x_208 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_282; uint8_t x_283; -x_209 = lean_ctor_get(x_207, 1); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 0); -lean_inc(x_210); -lean_dec(x_207); -x_211 = lean_ctor_get(x_209, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 1); -lean_inc(x_212); -lean_dec(x_209); -x_282 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_213 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_212); -x_286 = lean_unbox_float(x_211); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_213 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_211 = x_382; +x_212 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; uint8_t x_219; +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 0); +lean_inc(x_214); +lean_dec(x_211); +x_215 = lean_ctor_get(x_213, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 1); +lean_inc(x_216); +lean_dec(x_213); +x_217 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__2; +x_218 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_217); +if (x_218 == 0) { if (x_6 == 0) { -if (x_213 == 0) +uint8_t x_284; +x_284 = 0; +x_219 = x_284; +goto block_283; +} +else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; -lean_dec(x_212); -lean_dec(x_211); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_215); +lean_dec(x_215); +x_287 = lean_unbox_float(x_216); +lean_dec(x_216); +x_288 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_212); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_216); +x_290 = lean_unbox_float(x_215); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_219 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_215); +lean_dec(x_215); +x_300 = lean_unbox_float(x_216); +lean_dec(x_216); +x_301 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_212); +return x_301; +} +} +block_283: +{ +if (x_219 == 0) +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; +lean_dec(x_216); +lean_dec(x_215); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_214 = lean_st_ref_take(x_12, x_208); -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_215, 3); -lean_inc(x_216); -x_217 = lean_ctor_get(x_214, 1); -lean_inc(x_217); -lean_dec(x_214); -x_218 = !lean_is_exclusive(x_215); -if (x_218 == 0) +x_220 = lean_st_ref_take(x_12, x_212); +x_221 = lean_ctor_get(x_220, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_221, 3); +lean_inc(x_222); +x_223 = lean_ctor_get(x_220, 1); +lean_inc(x_223); +lean_dec(x_220); +x_224 = !lean_is_exclusive(x_221); +if (x_224 == 0) { -lean_object* x_219; uint8_t x_220; -x_219 = lean_ctor_get(x_215, 3); -lean_dec(x_219); -x_220 = !lean_is_exclusive(x_216); -if (x_220 == 0) -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_221 = lean_ctor_get(x_216, 0); -x_222 = l_Lean_PersistentArray_append___rarg(x_15, x_221); -lean_dec(x_221); -lean_ctor_set(x_216, 0, x_222); -x_223 = lean_st_ref_set(x_12, x_215, x_217); -x_224 = lean_ctor_get(x_223, 1); -lean_inc(x_224); -lean_dec(x_223); -x_225 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__7(x_210, x_9, x_10, x_11, x_12, x_224); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_225) == 0) -{ -uint8_t x_226; -x_226 = !lean_is_exclusive(x_225); +lean_object* x_225; uint8_t x_226; +x_225 = lean_ctor_get(x_221, 3); +lean_dec(x_225); +x_226 = !lean_is_exclusive(x_222); if (x_226 == 0) { -return x_225; -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; -x_227 = lean_ctor_get(x_225, 0); -x_228 = lean_ctor_get(x_225, 1); -lean_inc(x_228); -lean_inc(x_227); -lean_dec(x_225); -x_229 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_229, 0, x_227); -lean_ctor_set(x_229, 1, x_228); -return x_229; -} -} -else -{ -uint8_t x_230; -x_230 = !lean_is_exclusive(x_225); -if (x_230 == 0) -{ -return x_225; -} -else -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_225, 0); -x_232 = lean_ctor_get(x_225, 1); -lean_inc(x_232); -lean_inc(x_231); -lean_dec(x_225); -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_231); -lean_ctor_set(x_233, 1, x_232); -return x_233; -} -} -} -else -{ -uint64_t x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_234 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_235 = lean_ctor_get(x_216, 0); -lean_inc(x_235); -lean_dec(x_216); -x_236 = l_Lean_PersistentArray_append___rarg(x_15, x_235); -lean_dec(x_235); -x_237 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_237, 0, x_236); -lean_ctor_set_uint64(x_237, sizeof(void*)*1, x_234); -lean_ctor_set(x_215, 3, x_237); -x_238 = lean_st_ref_set(x_12, x_215, x_217); -x_239 = lean_ctor_get(x_238, 1); -lean_inc(x_239); -lean_dec(x_238); -x_240 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__7(x_210, x_9, x_10, x_11, x_12, x_239); +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_227 = lean_ctor_get(x_222, 0); +x_228 = l_Lean_PersistentArray_append___rarg(x_15, x_227); +lean_dec(x_227); +lean_ctor_set(x_222, 0, x_228); +x_229 = lean_st_ref_set(x_12, x_221, x_223); +x_230 = lean_ctor_get(x_229, 1); +lean_inc(x_230); +lean_dec(x_229); +x_231 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__7(x_214, x_9, x_10, x_11, x_12, x_230); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_240) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_231) == 0) { -lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; -x_241 = lean_ctor_get(x_240, 0); +uint8_t x_232; +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +return x_231; +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_231, 0); +x_234 = lean_ctor_get(x_231, 1); +lean_inc(x_234); +lean_inc(x_233); +lean_dec(x_231); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +return x_235; +} +} +else +{ +uint8_t x_236; +x_236 = !lean_is_exclusive(x_231); +if (x_236 == 0) +{ +return x_231; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_231, 0); +x_238 = lean_ctor_get(x_231, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_231); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} +} +} +else +{ +uint64_t x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_240 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_241 = lean_ctor_get(x_222, 0); lean_inc(x_241); -x_242 = lean_ctor_get(x_240, 1); -lean_inc(x_242); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_243 = x_240; -} else { - lean_dec_ref(x_240); - x_243 = lean_box(0); -} -if (lean_is_scalar(x_243)) { - x_244 = lean_alloc_ctor(0, 2, 0); -} else { - x_244 = x_243; -} -lean_ctor_set(x_244, 0, x_241); -lean_ctor_set(x_244, 1, x_242); -return x_244; -} -else -{ -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_245 = lean_ctor_get(x_240, 0); +lean_dec(x_222); +x_242 = l_Lean_PersistentArray_append___rarg(x_15, x_241); +lean_dec(x_241); +x_243 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set_uint64(x_243, sizeof(void*)*1, x_240); +lean_ctor_set(x_221, 3, x_243); +x_244 = lean_st_ref_set(x_12, x_221, x_223); +x_245 = lean_ctor_get(x_244, 1); lean_inc(x_245); -x_246 = lean_ctor_get(x_240, 1); -lean_inc(x_246); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_247 = x_240; -} else { - lean_dec_ref(x_240); - x_247 = lean_box(0); -} -if (lean_is_scalar(x_247)) { - x_248 = lean_alloc_ctor(1, 2, 0); -} else { - x_248 = x_247; -} -lean_ctor_set(x_248, 0, x_245); -lean_ctor_set(x_248, 1, x_246); -return x_248; -} -} -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_249 = lean_ctor_get(x_215, 0); -x_250 = lean_ctor_get(x_215, 1); -x_251 = lean_ctor_get(x_215, 2); -x_252 = lean_ctor_get(x_215, 4); -x_253 = lean_ctor_get(x_215, 5); -x_254 = lean_ctor_get(x_215, 6); -x_255 = lean_ctor_get(x_215, 7); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_dec(x_215); -x_256 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_257 = lean_ctor_get(x_216, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_216)) { - lean_ctor_release(x_216, 0); - x_258 = x_216; -} else { - lean_dec_ref(x_216); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_15, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_261, 0, x_249); -lean_ctor_set(x_261, 1, x_250); -lean_ctor_set(x_261, 2, x_251); -lean_ctor_set(x_261, 3, x_260); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_255); -x_262 = lean_st_ref_set(x_12, x_261, x_217); -x_263 = lean_ctor_get(x_262, 1); -lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__7(x_210, x_9, x_10, x_11, x_12, x_263); +lean_dec(x_244); +x_246 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__7(x_214, x_9, x_10, x_11, x_12, x_245); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_246) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_247 = lean_ctor_get(x_246, 0); +lean_inc(x_247); +x_248 = lean_ctor_get(x_246, 1); +lean_inc(x_248); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_249 = x_246; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_246); + x_249 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_249)) { + x_250 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_250 = x_249; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_250, 0, x_247); +lean_ctor_set(x_250, 1, x_248); +return x_250; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_251 = lean_ctor_get(x_246, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_246, 1); +lean_inc(x_252); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_253 = x_246; +} else { + lean_dec_ref(x_246); + x_253 = lean_box(0); +} +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(1, 2, 0); +} else { + x_254 = x_253; +} +lean_ctor_set(x_254, 0, x_251); +lean_ctor_set(x_254, 1, x_252); +return x_254; +} +} +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_255 = lean_ctor_get(x_221, 0); +x_256 = lean_ctor_get(x_221, 1); +x_257 = lean_ctor_get(x_221, 2); +x_258 = lean_ctor_get(x_221, 4); +x_259 = lean_ctor_get(x_221, 5); +x_260 = lean_ctor_get(x_221, 6); +x_261 = lean_ctor_get(x_221, 7); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_221); +x_262 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_263 = lean_ctor_get(x_222, 0); +lean_inc(x_263); +if (lean_is_exclusive(x_222)) { + lean_ctor_release(x_222, 0); + x_264 = x_222; +} else { + lean_dec_ref(x_222); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_15, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_267, 0, x_255); +lean_ctor_set(x_267, 1, x_256); +lean_ctor_set(x_267, 2, x_257); +lean_ctor_set(x_267, 3, x_266); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_261); +x_268 = lean_st_ref_set(x_12, x_267, x_223); +x_269 = lean_ctor_get(x_268, 1); lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__7(x_214, x_9, x_10, x_11, x_12, x_269); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_214); +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_272 = x_271; + x_274 = x_273; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; +} else { + lean_dec_ref(x_270); + x_277 = lean_box(0); +} +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); +} else { + x_278 = x_277; +} +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_211); -lean_dec(x_211); -x_275 = lean_unbox_float(x_212); -lean_dec(x_212); -x_276 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_274, x_275, x_5, x_273, x_9, x_10, x_11, x_12, x_208); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_211); -lean_dec(x_211); -x_279 = lean_unbox_float(x_212); -lean_dec(x_212); -x_280 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_278, x_279, x_5, x_277, x_9, x_10, x_11, x_12, x_208); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_215); +lean_dec(x_215); +x_281 = lean_unbox_float(x_216); +lean_dec(x_216); +x_282 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_212); +return x_282; } } } @@ -15413,43 +15412,41 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_8); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); lean_dec(x_8); x_19 = lean_unbox_float(x_9); lean_dec(x_9); -x_20 = lean_unbox_float(x_10); -lean_dec(x_10); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_18, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_15); -lean_dec(x_13); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2(x_1, x_16, x_3, x_4, x_5, x_6, x_17, x_18, x_19, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_14); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_21; +return x_20; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_7); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); lean_dec(x_7); x_19 = lean_unbox_float(x_8); lean_dec(x_8); -x_20 = lean_unbox_float(x_9); -lean_dec(x_9); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_11); -lean_dec(x_6); -return x_21; +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3(x_1, x_16, x_3, x_4, x_5, x_17, x_18, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +return x_20; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -15502,43 +15499,41 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_8); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); lean_dec(x_8); x_19 = lean_unbox_float(x_9); lean_dec(x_9); -x_20 = lean_unbox_float(x_10); -lean_dec(x_10); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_18, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_15); -lean_dec(x_13); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__2(x_1, x_16, x_3, x_4, x_5, x_6, x_17, x_18, x_19, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_14); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_21; +return x_20; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_7); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); lean_dec(x_7); x_19 = lean_unbox_float(x_8); lean_dec(x_8); -x_20 = lean_unbox_float(x_9); -lean_dec(x_9); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__3(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_11); -lean_dec(x_6); -return x_21; +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__3(x_1, x_16, x_3, x_4, x_5, x_17, x_18, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +return x_20; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__4___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -15591,43 +15586,41 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_8); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); lean_dec(x_8); x_19 = lean_unbox_float(x_9); lean_dec(x_9); -x_20 = lean_unbox_float(x_10); -lean_dec(x_10); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_18, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_15); -lean_dec(x_13); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__2(x_1, x_16, x_3, x_4, x_5, x_6, x_17, x_18, x_19, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_14); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_21; +return x_20; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_7); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); lean_dec(x_7); x_19 = lean_unbox_float(x_8); lean_dec(x_8); -x_20 = lean_unbox_float(x_9); -lean_dec(x_9); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__3(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_11); -lean_dec(x_6); -return x_21; +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__3(x_1, x_16, x_3, x_4, x_5, x_17, x_18, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +return x_20; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__6___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -17865,106 +17858,81 @@ lean_dec(x_10); return x_15; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -double x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; -x_18 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_19 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_19, 0, x_1); -lean_ctor_set(x_19, 1, x_3); -lean_ctor_set_float(x_19, sizeof(void*)*2, x_18); -lean_ctor_set_float(x_19, sizeof(void*)*2 + 8, x_18); -lean_ctor_set_uint8(x_19, sizeof(void*)*2 + 16, x_2); -x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___closed__2; -x_21 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_20); -if (x_21 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___closed__1; +x_18 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_3); +lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); +lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); +lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); +x_19 = lean_box(0); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_18, x_19, x_11, x_12, x_13, x_14, x_15, x_16); +return x_20; +} +else { -lean_object* x_22; lean_object* x_23; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_21, 0, x_1); +lean_ctor_set(x_21, 1, x_3); +lean_ctor_set_float(x_21, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_21, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_21, sizeof(void*)*2 + 16, x_2); x_22 = lean_box(0); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_19, x_22, x_12, x_13, x_14, x_15, x_16, x_17); +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_21, x_22, x_11, x_12, x_13, x_14, x_15, x_16); return x_23; } -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -lean_dec(x_19); -x_24 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_24, 0, x_1); -lean_ctor_set(x_24, 1, x_3); -lean_ctor_set_float(x_24, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_24, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_24, sizeof(void*)*2 + 16, x_2); -x_25 = lean_box(0); -x_26 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_24, x_25, x_12, x_13, x_14, x_15, x_16, x_17); -return x_26; } } -else -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; -lean_dec(x_19); -x_27 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_27, 0, x_1); -lean_ctor_set(x_27, 1, x_3); -lean_ctor_set_float(x_27, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_27, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_27, sizeof(void*)*2 + 16, x_2); -x_28 = lean_box(0); -x_29 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_27, x_28, x_12, x_13, x_14, x_15, x_16, x_17); -return x_29; -} -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -lean_object* x_18; lean_object* x_19; -x_18 = lean_ctor_get(x_15, 5); -lean_inc(x_18); -lean_inc(x_16); +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_14, 5); +lean_inc(x_17); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_19 = lean_apply_7(x_10, x_5, x_12, x_13, x_14, x_15, x_16, x_17); -if (lean_obj_tag(x_19) == 0) +x_18 = lean_apply_7(x_9, x_5, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_18) == 0) { -lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_20 = lean_ctor_get(x_19, 0); +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); lean_inc(x_20); -x_21 = lean_ctor_get(x_19, 1); -lean_inc(x_21); -lean_dec(x_19); -x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_18, x_5, x_6, x_7, x_8, x_9, x_20, x_12, x_13, x_14, x_15, x_16, x_21); -lean_dec(x_16); -lean_dec(x_14); +lean_dec(x_18); +x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_19, x_11, x_12, x_13, x_14, x_15, x_20); +lean_dec(x_15); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_22; +return x_21; } else { -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_ctor_get(x_19, 1); -lean_inc(x_23); -lean_dec(x_19); -x_24 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3___closed__2; -x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_18, x_5, x_6, x_7, x_8, x_9, x_24, x_12, x_13, x_14, x_15, x_16, x_23); -lean_dec(x_16); -lean_dec(x_14); +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_18, 1); +lean_inc(x_22); +lean_dec(x_18); +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3___closed__2; +x_24 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_23, x_11, x_12, x_13, x_14, x_15, x_22); +lean_dec(x_15); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_25; +return x_24; } } } @@ -17982,254 +17950,254 @@ x_18 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblast x_19 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_18); if (x_19 == 0) { -lean_object* x_20; lean_object* x_21; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; -x_116 = lean_io_mono_nanos_now(x_17); -x_117 = lean_ctor_get(x_116, 0); -lean_inc(x_117); -x_118 = lean_ctor_get(x_116, 1); -lean_inc(x_118); -lean_dec(x_116); +lean_object* x_20; lean_object* x_21; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; +x_124 = lean_io_mono_nanos_now(x_17); +x_125 = lean_ctor_get(x_124, 0); +lean_inc(x_125); +x_126 = lean_ctor_get(x_124, 1); +lean_inc(x_126); +lean_dec(x_124); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_119 = lean_apply_6(x_7, x_9, x_10, x_11, x_12, x_13, x_118); -if (lean_obj_tag(x_119) == 0) +x_127 = lean_apply_6(x_7, x_9, x_10, x_11, x_12, x_13, x_126); +if (lean_obj_tag(x_127) == 0) { -uint8_t x_120; -x_120 = !lean_is_exclusive(x_119); -if (x_120 == 0) +uint8_t x_128; +x_128 = !lean_is_exclusive(x_127); +if (x_128 == 0) { -lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; uint8_t x_125; -x_121 = lean_ctor_get(x_119, 0); -x_122 = lean_ctor_get(x_119, 1); -x_123 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_123, 0, x_121); -x_124 = lean_io_mono_nanos_now(x_122); -x_125 = !lean_is_exclusive(x_124); -if (x_125 == 0) +lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; uint8_t x_133; +x_129 = lean_ctor_get(x_127, 0); +x_130 = lean_ctor_get(x_127, 1); +x_131 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_131, 0, x_129); +x_132 = lean_io_mono_nanos_now(x_130); +x_133 = !lean_is_exclusive(x_132); +if (x_133 == 0) { -lean_object* x_126; lean_object* x_127; uint8_t x_128; lean_object* x_129; double x_130; double x_131; double x_132; double x_133; double x_134; lean_object* x_135; lean_object* x_136; -x_126 = lean_ctor_get(x_124, 0); -x_127 = lean_ctor_get(x_124, 1); -x_128 = 0; -x_129 = lean_unsigned_to_nat(0u); -x_130 = l_Float_ofScientific(x_117, x_128, x_129); -lean_dec(x_117); -x_131 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_132 = lean_float_div(x_130, x_131); -x_133 = l_Float_ofScientific(x_126, x_128, x_129); -lean_dec(x_126); -x_134 = lean_float_div(x_133, x_131); -x_135 = lean_box_float(x_132); -x_136 = lean_box_float(x_134); -lean_ctor_set(x_124, 1, x_136); -lean_ctor_set(x_124, 0, x_135); -lean_ctor_set(x_119, 1, x_124); -lean_ctor_set(x_119, 0, x_123); -x_20 = x_119; -x_21 = x_127; -goto block_115; +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; +x_134 = lean_ctor_get(x_132, 0); +x_135 = lean_ctor_get(x_132, 1); +x_136 = 0; +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Float_ofScientific(x_125, x_136, x_137); +lean_dec(x_125); +x_139 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_140 = lean_float_div(x_138, x_139); +x_141 = l_Float_ofScientific(x_134, x_136, x_137); +lean_dec(x_134); +x_142 = lean_float_div(x_141, x_139); +x_143 = lean_box_float(x_140); +x_144 = lean_box_float(x_142); +lean_ctor_set(x_132, 1, x_144); +lean_ctor_set(x_132, 0, x_143); +lean_ctor_set(x_127, 1, x_132); +lean_ctor_set(x_127, 0, x_131); +x_20 = x_127; +x_21 = x_135; +goto block_123; } else { -lean_object* x_137; lean_object* x_138; uint8_t x_139; lean_object* x_140; double x_141; double x_142; double x_143; double x_144; double x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; -x_137 = lean_ctor_get(x_124, 0); -x_138 = lean_ctor_get(x_124, 1); -lean_inc(x_138); -lean_inc(x_137); -lean_dec(x_124); -x_139 = 0; -x_140 = lean_unsigned_to_nat(0u); -x_141 = l_Float_ofScientific(x_117, x_139, x_140); -lean_dec(x_117); -x_142 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_143 = lean_float_div(x_141, x_142); -x_144 = l_Float_ofScientific(x_137, x_139, x_140); -lean_dec(x_137); -x_145 = lean_float_div(x_144, x_142); -x_146 = lean_box_float(x_143); -x_147 = lean_box_float(x_145); -x_148 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_148, 0, x_146); -lean_ctor_set(x_148, 1, x_147); -lean_ctor_set(x_119, 1, x_148); -lean_ctor_set(x_119, 0, x_123); -x_20 = x_119; -x_21 = x_138; -goto block_115; +lean_object* x_145; lean_object* x_146; uint8_t x_147; lean_object* x_148; double x_149; double x_150; double x_151; double x_152; double x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; +x_145 = lean_ctor_get(x_132, 0); +x_146 = lean_ctor_get(x_132, 1); +lean_inc(x_146); +lean_inc(x_145); +lean_dec(x_132); +x_147 = 0; +x_148 = lean_unsigned_to_nat(0u); +x_149 = l_Float_ofScientific(x_125, x_147, x_148); +lean_dec(x_125); +x_150 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_151 = lean_float_div(x_149, x_150); +x_152 = l_Float_ofScientific(x_145, x_147, x_148); +lean_dec(x_145); +x_153 = lean_float_div(x_152, x_150); +x_154 = lean_box_float(x_151); +x_155 = lean_box_float(x_153); +x_156 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_156, 0, x_154); +lean_ctor_set(x_156, 1, x_155); +lean_ctor_set(x_127, 1, x_156); +lean_ctor_set(x_127, 0, x_131); +x_20 = x_127; +x_21 = x_146; +goto block_123; } } else { -lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; uint8_t x_156; lean_object* x_157; double x_158; double x_159; double x_160; double x_161; double x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; -x_149 = lean_ctor_get(x_119, 0); -x_150 = lean_ctor_get(x_119, 1); -lean_inc(x_150); -lean_inc(x_149); -lean_dec(x_119); -x_151 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_151, 0, x_149); -x_152 = lean_io_mono_nanos_now(x_150); -x_153 = lean_ctor_get(x_152, 0); -lean_inc(x_153); -x_154 = lean_ctor_get(x_152, 1); -lean_inc(x_154); -if (lean_is_exclusive(x_152)) { - lean_ctor_release(x_152, 0); - lean_ctor_release(x_152, 1); - x_155 = x_152; +lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; uint8_t x_164; lean_object* x_165; double x_166; double x_167; double x_168; double x_169; double x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; +x_157 = lean_ctor_get(x_127, 0); +x_158 = lean_ctor_get(x_127, 1); +lean_inc(x_158); +lean_inc(x_157); +lean_dec(x_127); +x_159 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_159, 0, x_157); +x_160 = lean_io_mono_nanos_now(x_158); +x_161 = lean_ctor_get(x_160, 0); +lean_inc(x_161); +x_162 = lean_ctor_get(x_160, 1); +lean_inc(x_162); +if (lean_is_exclusive(x_160)) { + lean_ctor_release(x_160, 0); + lean_ctor_release(x_160, 1); + x_163 = x_160; } else { - lean_dec_ref(x_152); - x_155 = lean_box(0); + lean_dec_ref(x_160); + x_163 = lean_box(0); } -x_156 = 0; -x_157 = lean_unsigned_to_nat(0u); -x_158 = l_Float_ofScientific(x_117, x_156, x_157); -lean_dec(x_117); -x_159 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_160 = lean_float_div(x_158, x_159); -x_161 = l_Float_ofScientific(x_153, x_156, x_157); -lean_dec(x_153); -x_162 = lean_float_div(x_161, x_159); -x_163 = lean_box_float(x_160); -x_164 = lean_box_float(x_162); -if (lean_is_scalar(x_155)) { - x_165 = lean_alloc_ctor(0, 2, 0); +x_164 = 0; +x_165 = lean_unsigned_to_nat(0u); +x_166 = l_Float_ofScientific(x_125, x_164, x_165); +lean_dec(x_125); +x_167 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_168 = lean_float_div(x_166, x_167); +x_169 = l_Float_ofScientific(x_161, x_164, x_165); +lean_dec(x_161); +x_170 = lean_float_div(x_169, x_167); +x_171 = lean_box_float(x_168); +x_172 = lean_box_float(x_170); +if (lean_is_scalar(x_163)) { + x_173 = lean_alloc_ctor(0, 2, 0); } else { - x_165 = x_155; + x_173 = x_163; } -lean_ctor_set(x_165, 0, x_163); -lean_ctor_set(x_165, 1, x_164); -x_166 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_166, 0, x_151); -lean_ctor_set(x_166, 1, x_165); -x_20 = x_166; -x_21 = x_154; -goto block_115; +lean_ctor_set(x_173, 0, x_171); +lean_ctor_set(x_173, 1, x_172); +x_174 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_174, 0, x_159); +lean_ctor_set(x_174, 1, x_173); +x_20 = x_174; +x_21 = x_162; +goto block_123; } } else { -uint8_t x_167; -x_167 = !lean_is_exclusive(x_119); -if (x_167 == 0) +uint8_t x_175; +x_175 = !lean_is_exclusive(x_127); +if (x_175 == 0) { -lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; uint8_t x_172; -x_168 = lean_ctor_get(x_119, 0); -x_169 = lean_ctor_get(x_119, 1); -x_170 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_170, 0, x_168); -x_171 = lean_io_mono_nanos_now(x_169); -x_172 = !lean_is_exclusive(x_171); -if (x_172 == 0) +lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; uint8_t x_180; +x_176 = lean_ctor_get(x_127, 0); +x_177 = lean_ctor_get(x_127, 1); +x_178 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_178, 0, x_176); +x_179 = lean_io_mono_nanos_now(x_177); +x_180 = !lean_is_exclusive(x_179); +if (x_180 == 0) { -lean_object* x_173; lean_object* x_174; uint8_t x_175; lean_object* x_176; double x_177; double x_178; double x_179; double x_180; double x_181; lean_object* x_182; lean_object* x_183; -x_173 = lean_ctor_get(x_171, 0); -x_174 = lean_ctor_get(x_171, 1); -x_175 = 0; -x_176 = lean_unsigned_to_nat(0u); -x_177 = l_Float_ofScientific(x_117, x_175, x_176); -lean_dec(x_117); -x_178 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_179 = lean_float_div(x_177, x_178); -x_180 = l_Float_ofScientific(x_173, x_175, x_176); -lean_dec(x_173); -x_181 = lean_float_div(x_180, x_178); -x_182 = lean_box_float(x_179); -x_183 = lean_box_float(x_181); -lean_ctor_set(x_171, 1, x_183); -lean_ctor_set(x_171, 0, x_182); -lean_ctor_set_tag(x_119, 0); -lean_ctor_set(x_119, 1, x_171); -lean_ctor_set(x_119, 0, x_170); -x_20 = x_119; -x_21 = x_174; -goto block_115; +lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; +x_181 = lean_ctor_get(x_179, 0); +x_182 = lean_ctor_get(x_179, 1); +x_183 = 0; +x_184 = lean_unsigned_to_nat(0u); +x_185 = l_Float_ofScientific(x_125, x_183, x_184); +lean_dec(x_125); +x_186 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_187 = lean_float_div(x_185, x_186); +x_188 = l_Float_ofScientific(x_181, x_183, x_184); +lean_dec(x_181); +x_189 = lean_float_div(x_188, x_186); +x_190 = lean_box_float(x_187); +x_191 = lean_box_float(x_189); +lean_ctor_set(x_179, 1, x_191); +lean_ctor_set(x_179, 0, x_190); +lean_ctor_set_tag(x_127, 0); +lean_ctor_set(x_127, 1, x_179); +lean_ctor_set(x_127, 0, x_178); +x_20 = x_127; +x_21 = x_182; +goto block_123; } else { -lean_object* x_184; lean_object* x_185; uint8_t x_186; lean_object* x_187; double x_188; double x_189; double x_190; double x_191; double x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; -x_184 = lean_ctor_get(x_171, 0); -x_185 = lean_ctor_get(x_171, 1); -lean_inc(x_185); -lean_inc(x_184); -lean_dec(x_171); -x_186 = 0; -x_187 = lean_unsigned_to_nat(0u); -x_188 = l_Float_ofScientific(x_117, x_186, x_187); -lean_dec(x_117); -x_189 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_190 = lean_float_div(x_188, x_189); -x_191 = l_Float_ofScientific(x_184, x_186, x_187); -lean_dec(x_184); -x_192 = lean_float_div(x_191, x_189); -x_193 = lean_box_float(x_190); -x_194 = lean_box_float(x_192); -x_195 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_195, 0, x_193); -lean_ctor_set(x_195, 1, x_194); -lean_ctor_set_tag(x_119, 0); -lean_ctor_set(x_119, 1, x_195); -lean_ctor_set(x_119, 0, x_170); -x_20 = x_119; -x_21 = x_185; -goto block_115; +lean_object* x_192; lean_object* x_193; uint8_t x_194; lean_object* x_195; double x_196; double x_197; double x_198; double x_199; double x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; +x_192 = lean_ctor_get(x_179, 0); +x_193 = lean_ctor_get(x_179, 1); +lean_inc(x_193); +lean_inc(x_192); +lean_dec(x_179); +x_194 = 0; +x_195 = lean_unsigned_to_nat(0u); +x_196 = l_Float_ofScientific(x_125, x_194, x_195); +lean_dec(x_125); +x_197 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_198 = lean_float_div(x_196, x_197); +x_199 = l_Float_ofScientific(x_192, x_194, x_195); +lean_dec(x_192); +x_200 = lean_float_div(x_199, x_197); +x_201 = lean_box_float(x_198); +x_202 = lean_box_float(x_200); +x_203 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_203, 0, x_201); +lean_ctor_set(x_203, 1, x_202); +lean_ctor_set_tag(x_127, 0); +lean_ctor_set(x_127, 1, x_203); +lean_ctor_set(x_127, 0, x_178); +x_20 = x_127; +x_21 = x_193; +goto block_123; } } else { -lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; uint8_t x_203; lean_object* x_204; double x_205; double x_206; double x_207; double x_208; double x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; -x_196 = lean_ctor_get(x_119, 0); -x_197 = lean_ctor_get(x_119, 1); -lean_inc(x_197); -lean_inc(x_196); -lean_dec(x_119); -x_198 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_198, 0, x_196); -x_199 = lean_io_mono_nanos_now(x_197); -x_200 = lean_ctor_get(x_199, 0); -lean_inc(x_200); -x_201 = lean_ctor_get(x_199, 1); -lean_inc(x_201); -if (lean_is_exclusive(x_199)) { - lean_ctor_release(x_199, 0); - lean_ctor_release(x_199, 1); - x_202 = x_199; +lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; uint8_t x_211; lean_object* x_212; double x_213; double x_214; double x_215; double x_216; double x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; +x_204 = lean_ctor_get(x_127, 0); +x_205 = lean_ctor_get(x_127, 1); +lean_inc(x_205); +lean_inc(x_204); +lean_dec(x_127); +x_206 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_206, 0, x_204); +x_207 = lean_io_mono_nanos_now(x_205); +x_208 = lean_ctor_get(x_207, 0); +lean_inc(x_208); +x_209 = lean_ctor_get(x_207, 1); +lean_inc(x_209); +if (lean_is_exclusive(x_207)) { + lean_ctor_release(x_207, 0); + lean_ctor_release(x_207, 1); + x_210 = x_207; } else { - lean_dec_ref(x_199); - x_202 = lean_box(0); + lean_dec_ref(x_207); + x_210 = lean_box(0); } -x_203 = 0; -x_204 = lean_unsigned_to_nat(0u); -x_205 = l_Float_ofScientific(x_117, x_203, x_204); -lean_dec(x_117); -x_206 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_207 = lean_float_div(x_205, x_206); -x_208 = l_Float_ofScientific(x_200, x_203, x_204); -lean_dec(x_200); -x_209 = lean_float_div(x_208, x_206); -x_210 = lean_box_float(x_207); -x_211 = lean_box_float(x_209); -if (lean_is_scalar(x_202)) { - x_212 = lean_alloc_ctor(0, 2, 0); +x_211 = 0; +x_212 = lean_unsigned_to_nat(0u); +x_213 = l_Float_ofScientific(x_125, x_211, x_212); +lean_dec(x_125); +x_214 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_215 = lean_float_div(x_213, x_214); +x_216 = l_Float_ofScientific(x_208, x_211, x_212); +lean_dec(x_208); +x_217 = lean_float_div(x_216, x_214); +x_218 = lean_box_float(x_215); +x_219 = lean_box_float(x_217); +if (lean_is_scalar(x_210)) { + x_220 = lean_alloc_ctor(0, 2, 0); } else { - x_212 = x_202; + x_220 = x_210; } -lean_ctor_set(x_212, 0, x_210); -lean_ctor_set(x_212, 1, x_211); -x_213 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_213, 0, x_198); -lean_ctor_set(x_213, 1, x_212); -x_20 = x_213; -x_21 = x_201; -goto block_115; +lean_ctor_set(x_220, 0, x_218); +lean_ctor_set(x_220, 1, x_219); +x_221 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_221, 0, x_206); +lean_ctor_set(x_221, 1, x_220); +x_20 = x_221; +x_21 = x_209; +goto block_123; } } -block_115: +block_123: { -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_95; uint8_t x_96; +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; uint8_t x_28; x_22 = lean_ctor_get(x_20, 1); lean_inc(x_22); x_23 = lean_ctor_get(x_20, 0); @@ -18240,14 +18208,28 @@ lean_inc(x_24); x_25 = lean_ctor_get(x_22, 1); lean_inc(x_25); lean_dec(x_22); -x_95 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__2; -x_96 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_95); -if (x_96 == 0) +x_26 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__2; +x_27 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_26); +if (x_27 == 0) { -uint8_t x_97; -x_97 = 0; -x_26 = x_97; -goto block_94; +if (x_6 == 0) +{ +uint8_t x_93; +x_93 = 0; +x_28 = x_93; +goto block_92; +} +else +{ +lean_object* x_94; double x_95; double x_96; lean_object* x_97; +x_94 = lean_box(0); +x_95 = lean_unbox_float(x_24); +lean_dec(x_24); +x_96 = lean_unbox_float(x_25); +lean_dec(x_25); +x_97 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__3(x_2, x_3, x_4, x_16, x_23, x_27, x_95, x_96, x_5, x_94, x_9, x_10, x_11, x_12, x_13, x_21); +return x_97; +} } else { @@ -18257,6 +18239,8 @@ x_99 = lean_unbox_float(x_24); x_100 = lean_float_sub(x_98, x_99); if (x_19 == 0) { +if (x_6 == 0) +{ lean_object* x_101; lean_object* x_102; uint8_t x_103; lean_object* x_104; double x_105; double x_106; double x_107; uint8_t x_108; x_101 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__3; x_102 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_101); @@ -18267,899 +18251,939 @@ lean_dec(x_102); x_106 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__4; x_107 = lean_float_div(x_105, x_106); x_108 = lean_float_decLt(x_107, x_100); -x_26 = x_108; -goto block_94; +x_28 = x_108; +goto block_92; } else { -lean_object* x_109; lean_object* x_110; uint8_t x_111; lean_object* x_112; double x_113; uint8_t x_114; -x_109 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__3; -x_110 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_109); -x_111 = 0; -x_112 = lean_unsigned_to_nat(0u); -x_113 = l_Float_ofScientific(x_110, x_111, x_112); -lean_dec(x_110); -x_114 = lean_float_decLt(x_113, x_100); -x_26 = x_114; -goto block_94; +lean_object* x_109; double x_110; double x_111; lean_object* x_112; +x_109 = lean_box(0); +x_110 = lean_unbox_float(x_24); +lean_dec(x_24); +x_111 = lean_unbox_float(x_25); +lean_dec(x_25); +x_112 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__3(x_2, x_3, x_4, x_16, x_23, x_27, x_110, x_111, x_5, x_109, x_9, x_10, x_11, x_12, x_13, x_21); +return x_112; } } -block_94: +else { if (x_6 == 0) { -if (x_26 == 0) +lean_object* x_113; lean_object* x_114; uint8_t x_115; lean_object* x_116; double x_117; uint8_t x_118; +x_113 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__3; +x_114 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_113); +x_115 = 0; +x_116 = lean_unsigned_to_nat(0u); +x_117 = l_Float_ofScientific(x_114, x_115, x_116); +lean_dec(x_114); +x_118 = lean_float_decLt(x_117, x_100); +x_28 = x_118; +goto block_92; +} +else { -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; +lean_object* x_119; double x_120; double x_121; lean_object* x_122; +x_119 = lean_box(0); +x_120 = lean_unbox_float(x_24); +lean_dec(x_24); +x_121 = lean_unbox_float(x_25); +lean_dec(x_25); +x_122 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__3(x_2, x_3, x_4, x_16, x_23, x_27, x_120, x_121, x_5, x_119, x_9, x_10, x_11, x_12, x_13, x_21); +return x_122; +} +} +} +block_92: +{ +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; lean_dec(x_25); lean_dec(x_24); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_27 = lean_st_ref_take(x_13, x_21); -x_28 = lean_ctor_get(x_27, 0); -lean_inc(x_28); -x_29 = lean_ctor_get(x_28, 3); -lean_inc(x_29); -x_30 = lean_ctor_get(x_27, 1); +x_29 = lean_st_ref_take(x_13, x_21); +x_30 = lean_ctor_get(x_29, 0); lean_inc(x_30); -lean_dec(x_27); -x_31 = !lean_is_exclusive(x_28); -if (x_31 == 0) -{ -lean_object* x_32; uint8_t x_33; -x_32 = lean_ctor_get(x_28, 3); -lean_dec(x_32); -x_33 = !lean_is_exclusive(x_29); +x_31 = lean_ctor_get(x_30, 3); +lean_inc(x_31); +x_32 = lean_ctor_get(x_29, 1); +lean_inc(x_32); +lean_dec(x_29); +x_33 = !lean_is_exclusive(x_30); if (x_33 == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; -x_34 = lean_ctor_get(x_29, 0); -x_35 = l_Lean_PersistentArray_append___rarg(x_16, x_34); +lean_object* x_34; uint8_t x_35; +x_34 = lean_ctor_get(x_30, 3); lean_dec(x_34); -lean_ctor_set(x_29, 0, x_35); -x_36 = lean_st_ref_set(x_13, x_28, x_30); -x_37 = lean_ctor_get(x_36, 1); -lean_inc(x_37); +x_35 = !lean_is_exclusive(x_31); +if (x_35 == 0) +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_36 = lean_ctor_get(x_31, 0); +x_37 = l_Lean_PersistentArray_append___rarg(x_16, x_36); lean_dec(x_36); -x_38 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__4(x_23, x_9, x_10, x_11, x_12, x_13, x_37); +lean_ctor_set(x_31, 0, x_37); +x_38 = lean_st_ref_set(x_13, x_30, x_32); +x_39 = lean_ctor_get(x_38, 1); +lean_inc(x_39); +lean_dec(x_38); +x_40 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__4(x_23, x_9, x_10, x_11, x_12, x_13, x_39); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_23); -if (lean_obj_tag(x_38) == 0) +if (lean_obj_tag(x_40) == 0) { -uint8_t x_39; -x_39 = !lean_is_exclusive(x_38); -if (x_39 == 0) +uint8_t x_41; +x_41 = !lean_is_exclusive(x_40); +if (x_41 == 0) { -return x_38; +return x_40; } else { -lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_40 = lean_ctor_get(x_38, 0); -x_41 = lean_ctor_get(x_38, 1); -lean_inc(x_41); -lean_inc(x_40); -lean_dec(x_38); -x_42 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_42, 0, x_40); -lean_ctor_set(x_42, 1, x_41); -return x_42; +lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_42 = lean_ctor_get(x_40, 0); +x_43 = lean_ctor_get(x_40, 1); +lean_inc(x_43); +lean_inc(x_42); +lean_dec(x_40); +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_42); +lean_ctor_set(x_44, 1, x_43); +return x_44; } } else { -uint8_t x_43; -x_43 = !lean_is_exclusive(x_38); -if (x_43 == 0) +uint8_t x_45; +x_45 = !lean_is_exclusive(x_40); +if (x_45 == 0) { -return x_38; +return x_40; } else { -lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_44 = lean_ctor_get(x_38, 0); -x_45 = lean_ctor_get(x_38, 1); -lean_inc(x_45); -lean_inc(x_44); -lean_dec(x_38); -x_46 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_46, 0, x_44); -lean_ctor_set(x_46, 1, x_45); -return x_46; +lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_46 = lean_ctor_get(x_40, 0); +x_47 = lean_ctor_get(x_40, 1); +lean_inc(x_47); +lean_inc(x_46); +lean_dec(x_40); +x_48 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_47); +return x_48; } } } else { -uint64_t x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; -x_47 = lean_ctor_get_uint64(x_29, sizeof(void*)*1); -x_48 = lean_ctor_get(x_29, 0); -lean_inc(x_48); -lean_dec(x_29); -x_49 = l_Lean_PersistentArray_append___rarg(x_16, x_48); -lean_dec(x_48); -x_50 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_50, 0, x_49); -lean_ctor_set_uint64(x_50, sizeof(void*)*1, x_47); -lean_ctor_set(x_28, 3, x_50); -x_51 = lean_st_ref_set(x_13, x_28, x_30); -x_52 = lean_ctor_get(x_51, 1); -lean_inc(x_52); -lean_dec(x_51); -x_53 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__4(x_23, x_9, x_10, x_11, x_12, x_13, x_52); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_23); -if (lean_obj_tag(x_53) == 0) -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_54 = lean_ctor_get(x_53, 0); +uint64_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_49 = lean_ctor_get_uint64(x_31, sizeof(void*)*1); +x_50 = lean_ctor_get(x_31, 0); +lean_inc(x_50); +lean_dec(x_31); +x_51 = l_Lean_PersistentArray_append___rarg(x_16, x_50); +lean_dec(x_50); +x_52 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set_uint64(x_52, sizeof(void*)*1, x_49); +lean_ctor_set(x_30, 3, x_52); +x_53 = lean_st_ref_set(x_13, x_30, x_32); +x_54 = lean_ctor_get(x_53, 1); lean_inc(x_54); -x_55 = lean_ctor_get(x_53, 1); -lean_inc(x_55); -if (lean_is_exclusive(x_53)) { - lean_ctor_release(x_53, 0); - lean_ctor_release(x_53, 1); - x_56 = x_53; +lean_dec(x_53); +x_55 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__4(x_23, x_9, x_10, x_11, x_12, x_13, x_54); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_23); +if (lean_obj_tag(x_55) == 0) +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_56 = lean_ctor_get(x_55, 0); +lean_inc(x_56); +x_57 = lean_ctor_get(x_55, 1); +lean_inc(x_57); +if (lean_is_exclusive(x_55)) { + lean_ctor_release(x_55, 0); + lean_ctor_release(x_55, 1); + x_58 = x_55; } else { - lean_dec_ref(x_53); - x_56 = lean_box(0); + lean_dec_ref(x_55); + x_58 = lean_box(0); } -if (lean_is_scalar(x_56)) { - x_57 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_58)) { + x_59 = lean_alloc_ctor(0, 2, 0); } else { - x_57 = x_56; + x_59 = x_58; } -lean_ctor_set(x_57, 0, x_54); -lean_ctor_set(x_57, 1, x_55); -return x_57; +lean_ctor_set(x_59, 0, x_56); +lean_ctor_set(x_59, 1, x_57); +return x_59; } else { -lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; -x_58 = lean_ctor_get(x_53, 0); -lean_inc(x_58); -x_59 = lean_ctor_get(x_53, 1); -lean_inc(x_59); -if (lean_is_exclusive(x_53)) { - lean_ctor_release(x_53, 0); - lean_ctor_release(x_53, 1); - x_60 = x_53; +lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_60 = lean_ctor_get(x_55, 0); +lean_inc(x_60); +x_61 = lean_ctor_get(x_55, 1); +lean_inc(x_61); +if (lean_is_exclusive(x_55)) { + lean_ctor_release(x_55, 0); + lean_ctor_release(x_55, 1); + x_62 = x_55; } else { - lean_dec_ref(x_53); - x_60 = lean_box(0); + lean_dec_ref(x_55); + x_62 = lean_box(0); } -if (lean_is_scalar(x_60)) { - x_61 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_62)) { + x_63 = lean_alloc_ctor(1, 2, 0); } else { - x_61 = x_60; + x_63 = x_62; } -lean_ctor_set(x_61, 0, x_58); -lean_ctor_set(x_61, 1, x_59); -return x_61; +lean_ctor_set(x_63, 0, x_60); +lean_ctor_set(x_63, 1, x_61); +return x_63; } } } else { -lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; uint64_t x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; -x_62 = lean_ctor_get(x_28, 0); -x_63 = lean_ctor_get(x_28, 1); -x_64 = lean_ctor_get(x_28, 2); -x_65 = lean_ctor_get(x_28, 4); -x_66 = lean_ctor_get(x_28, 5); -x_67 = lean_ctor_get(x_28, 6); -x_68 = lean_ctor_get(x_28, 7); +lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; uint64_t x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; +x_64 = lean_ctor_get(x_30, 0); +x_65 = lean_ctor_get(x_30, 1); +x_66 = lean_ctor_get(x_30, 2); +x_67 = lean_ctor_get(x_30, 4); +x_68 = lean_ctor_get(x_30, 5); +x_69 = lean_ctor_get(x_30, 6); +x_70 = lean_ctor_get(x_30, 7); +lean_inc(x_70); +lean_inc(x_69); lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); -lean_inc(x_63); -lean_inc(x_62); -lean_dec(x_28); -x_69 = lean_ctor_get_uint64(x_29, sizeof(void*)*1); -x_70 = lean_ctor_get(x_29, 0); -lean_inc(x_70); -if (lean_is_exclusive(x_29)) { - lean_ctor_release(x_29, 0); - x_71 = x_29; +lean_dec(x_30); +x_71 = lean_ctor_get_uint64(x_31, sizeof(void*)*1); +x_72 = lean_ctor_get(x_31, 0); +lean_inc(x_72); +if (lean_is_exclusive(x_31)) { + lean_ctor_release(x_31, 0); + x_73 = x_31; } else { - lean_dec_ref(x_29); - x_71 = lean_box(0); + lean_dec_ref(x_31); + x_73 = lean_box(0); } -x_72 = l_Lean_PersistentArray_append___rarg(x_16, x_70); -lean_dec(x_70); -if (lean_is_scalar(x_71)) { - x_73 = lean_alloc_ctor(0, 1, 8); +x_74 = l_Lean_PersistentArray_append___rarg(x_16, x_72); +lean_dec(x_72); +if (lean_is_scalar(x_73)) { + x_75 = lean_alloc_ctor(0, 1, 8); } else { - x_73 = x_71; + x_75 = x_73; } -lean_ctor_set(x_73, 0, x_72); -lean_ctor_set_uint64(x_73, sizeof(void*)*1, x_69); -x_74 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_74, 0, x_62); -lean_ctor_set(x_74, 1, x_63); -lean_ctor_set(x_74, 2, x_64); -lean_ctor_set(x_74, 3, x_73); -lean_ctor_set(x_74, 4, x_65); -lean_ctor_set(x_74, 5, x_66); -lean_ctor_set(x_74, 6, x_67); -lean_ctor_set(x_74, 7, x_68); -x_75 = lean_st_ref_set(x_13, x_74, x_30); -x_76 = lean_ctor_get(x_75, 1); -lean_inc(x_76); -lean_dec(x_75); -x_77 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__4(x_23, x_9, x_10, x_11, x_12, x_13, x_76); +lean_ctor_set(x_75, 0, x_74); +lean_ctor_set_uint64(x_75, sizeof(void*)*1, x_71); +x_76 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_76, 0, x_64); +lean_ctor_set(x_76, 1, x_65); +lean_ctor_set(x_76, 2, x_66); +lean_ctor_set(x_76, 3, x_75); +lean_ctor_set(x_76, 4, x_67); +lean_ctor_set(x_76, 5, x_68); +lean_ctor_set(x_76, 6, x_69); +lean_ctor_set(x_76, 7, x_70); +x_77 = lean_st_ref_set(x_13, x_76, x_32); +x_78 = lean_ctor_get(x_77, 1); +lean_inc(x_78); +lean_dec(x_77); +x_79 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__4(x_23, x_9, x_10, x_11, x_12, x_13, x_78); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_23); -if (lean_obj_tag(x_77) == 0) +if (lean_obj_tag(x_79) == 0) { -lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; -x_78 = lean_ctor_get(x_77, 0); -lean_inc(x_78); -x_79 = lean_ctor_get(x_77, 1); -lean_inc(x_79); -if (lean_is_exclusive(x_77)) { - lean_ctor_release(x_77, 0); - lean_ctor_release(x_77, 1); - x_80 = x_77; +lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; +x_80 = lean_ctor_get(x_79, 0); +lean_inc(x_80); +x_81 = lean_ctor_get(x_79, 1); +lean_inc(x_81); +if (lean_is_exclusive(x_79)) { + lean_ctor_release(x_79, 0); + lean_ctor_release(x_79, 1); + x_82 = x_79; } else { - lean_dec_ref(x_77); - x_80 = lean_box(0); + lean_dec_ref(x_79); + x_82 = lean_box(0); } -if (lean_is_scalar(x_80)) { - x_81 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_82)) { + x_83 = lean_alloc_ctor(0, 2, 0); } else { - x_81 = x_80; + x_83 = x_82; } -lean_ctor_set(x_81, 0, x_78); -lean_ctor_set(x_81, 1, x_79); -return x_81; +lean_ctor_set(x_83, 0, x_80); +lean_ctor_set(x_83, 1, x_81); +return x_83; } else { -lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; -x_82 = lean_ctor_get(x_77, 0); -lean_inc(x_82); -x_83 = lean_ctor_get(x_77, 1); -lean_inc(x_83); -if (lean_is_exclusive(x_77)) { - lean_ctor_release(x_77, 0); - lean_ctor_release(x_77, 1); - x_84 = x_77; +lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_84 = lean_ctor_get(x_79, 0); +lean_inc(x_84); +x_85 = lean_ctor_get(x_79, 1); +lean_inc(x_85); +if (lean_is_exclusive(x_79)) { + lean_ctor_release(x_79, 0); + lean_ctor_release(x_79, 1); + x_86 = x_79; } else { - lean_dec_ref(x_77); - x_84 = lean_box(0); + lean_dec_ref(x_79); + x_86 = lean_box(0); } -if (lean_is_scalar(x_84)) { - x_85 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_86)) { + x_87 = lean_alloc_ctor(1, 2, 0); } else { - x_85 = x_84; + x_87 = x_86; } -lean_ctor_set(x_85, 0, x_82); -lean_ctor_set(x_85, 1, x_83); -return x_85; +lean_ctor_set(x_87, 0, x_84); +lean_ctor_set(x_87, 1, x_85); +return x_87; } } } else { -lean_object* x_86; double x_87; double x_88; lean_object* x_89; -x_86 = lean_box(0); -x_87 = lean_unbox_float(x_24); +lean_object* x_88; double x_89; double x_90; lean_object* x_91; +x_88 = lean_box(0); +x_89 = lean_unbox_float(x_24); lean_dec(x_24); -x_88 = lean_unbox_float(x_25); +x_90 = lean_unbox_float(x_25); lean_dec(x_25); -x_89 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__3(x_2, x_3, x_4, x_16, x_23, x_1, x_26, x_87, x_88, x_5, x_86, x_9, x_10, x_11, x_12, x_13, x_21); -return x_89; -} -} -else -{ -lean_object* x_90; double x_91; double x_92; lean_object* x_93; -x_90 = lean_box(0); -x_91 = lean_unbox_float(x_24); -lean_dec(x_24); -x_92 = lean_unbox_float(x_25); -lean_dec(x_25); -x_93 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__3(x_2, x_3, x_4, x_16, x_23, x_1, x_26, x_91, x_92, x_5, x_90, x_9, x_10, x_11, x_12, x_13, x_21); -return x_93; +x_91 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__3(x_2, x_3, x_4, x_16, x_23, x_27, x_89, x_90, x_5, x_88, x_9, x_10, x_11, x_12, x_13, x_21); +return x_91; } } } } else { -lean_object* x_214; lean_object* x_215; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; -x_310 = lean_io_get_num_heartbeats(x_17); -x_311 = lean_ctor_get(x_310, 0); -lean_inc(x_311); -x_312 = lean_ctor_get(x_310, 1); -lean_inc(x_312); -lean_dec(x_310); +lean_object* x_222; lean_object* x_223; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_326 = lean_io_get_num_heartbeats(x_17); +x_327 = lean_ctor_get(x_326, 0); +lean_inc(x_327); +x_328 = lean_ctor_get(x_326, 1); +lean_inc(x_328); +lean_dec(x_326); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_313 = lean_apply_6(x_7, x_9, x_10, x_11, x_12, x_13, x_312); -if (lean_obj_tag(x_313) == 0) +x_329 = lean_apply_6(x_7, x_9, x_10, x_11, x_12, x_13, x_328); +if (lean_obj_tag(x_329) == 0) { -uint8_t x_314; -x_314 = !lean_is_exclusive(x_313); -if (x_314 == 0) +uint8_t x_330; +x_330 = !lean_is_exclusive(x_329); +if (x_330 == 0) { -lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; uint8_t x_319; -x_315 = lean_ctor_get(x_313, 0); -x_316 = lean_ctor_get(x_313, 1); -x_317 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_317, 0, x_315); -x_318 = lean_io_get_num_heartbeats(x_316); -x_319 = !lean_is_exclusive(x_318); -if (x_319 == 0) +lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; uint8_t x_335; +x_331 = lean_ctor_get(x_329, 0); +x_332 = lean_ctor_get(x_329, 1); +x_333 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_333, 0, x_331); +x_334 = lean_io_get_num_heartbeats(x_332); +x_335 = !lean_is_exclusive(x_334); +if (x_335 == 0) { -lean_object* x_320; lean_object* x_321; uint8_t x_322; lean_object* x_323; double x_324; double x_325; lean_object* x_326; lean_object* x_327; -x_320 = lean_ctor_get(x_318, 0); -x_321 = lean_ctor_get(x_318, 1); -x_322 = 0; -x_323 = lean_unsigned_to_nat(0u); -x_324 = l_Float_ofScientific(x_311, x_322, x_323); -lean_dec(x_311); -x_325 = l_Float_ofScientific(x_320, x_322, x_323); -lean_dec(x_320); -x_326 = lean_box_float(x_324); -x_327 = lean_box_float(x_325); -lean_ctor_set(x_318, 1, x_327); -lean_ctor_set(x_318, 0, x_326); -lean_ctor_set(x_313, 1, x_318); -lean_ctor_set(x_313, 0, x_317); -x_214 = x_313; -x_215 = x_321; -goto block_309; +lean_object* x_336; lean_object* x_337; uint8_t x_338; lean_object* x_339; double x_340; double x_341; lean_object* x_342; lean_object* x_343; +x_336 = lean_ctor_get(x_334, 0); +x_337 = lean_ctor_get(x_334, 1); +x_338 = 0; +x_339 = lean_unsigned_to_nat(0u); +x_340 = l_Float_ofScientific(x_327, x_338, x_339); +lean_dec(x_327); +x_341 = l_Float_ofScientific(x_336, x_338, x_339); +lean_dec(x_336); +x_342 = lean_box_float(x_340); +x_343 = lean_box_float(x_341); +lean_ctor_set(x_334, 1, x_343); +lean_ctor_set(x_334, 0, x_342); +lean_ctor_set(x_329, 1, x_334); +lean_ctor_set(x_329, 0, x_333); +x_222 = x_329; +x_223 = x_337; +goto block_325; } else { -lean_object* x_328; lean_object* x_329; uint8_t x_330; lean_object* x_331; double x_332; double x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_328 = lean_ctor_get(x_318, 0); -x_329 = lean_ctor_get(x_318, 1); -lean_inc(x_329); -lean_inc(x_328); -lean_dec(x_318); -x_330 = 0; -x_331 = lean_unsigned_to_nat(0u); -x_332 = l_Float_ofScientific(x_311, x_330, x_331); -lean_dec(x_311); -x_333 = l_Float_ofScientific(x_328, x_330, x_331); -lean_dec(x_328); -x_334 = lean_box_float(x_332); -x_335 = lean_box_float(x_333); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_334); -lean_ctor_set(x_336, 1, x_335); -lean_ctor_set(x_313, 1, x_336); -lean_ctor_set(x_313, 0, x_317); -x_214 = x_313; -x_215 = x_329; -goto block_309; +lean_object* x_344; lean_object* x_345; uint8_t x_346; lean_object* x_347; double x_348; double x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; +x_344 = lean_ctor_get(x_334, 0); +x_345 = lean_ctor_get(x_334, 1); +lean_inc(x_345); +lean_inc(x_344); +lean_dec(x_334); +x_346 = 0; +x_347 = lean_unsigned_to_nat(0u); +x_348 = l_Float_ofScientific(x_327, x_346, x_347); +lean_dec(x_327); +x_349 = l_Float_ofScientific(x_344, x_346, x_347); +lean_dec(x_344); +x_350 = lean_box_float(x_348); +x_351 = lean_box_float(x_349); +x_352 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_352, 0, x_350); +lean_ctor_set(x_352, 1, x_351); +lean_ctor_set(x_329, 1, x_352); +lean_ctor_set(x_329, 0, x_333); +x_222 = x_329; +x_223 = x_345; +goto block_325; } } else { -lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; uint8_t x_344; lean_object* x_345; double x_346; double x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; -x_337 = lean_ctor_get(x_313, 0); -x_338 = lean_ctor_get(x_313, 1); -lean_inc(x_338); -lean_inc(x_337); -lean_dec(x_313); -x_339 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_339, 0, x_337); -x_340 = lean_io_get_num_heartbeats(x_338); -x_341 = lean_ctor_get(x_340, 0); -lean_inc(x_341); -x_342 = lean_ctor_get(x_340, 1); -lean_inc(x_342); -if (lean_is_exclusive(x_340)) { - lean_ctor_release(x_340, 0); - lean_ctor_release(x_340, 1); - x_343 = x_340; -} else { - lean_dec_ref(x_340); - x_343 = lean_box(0); -} -x_344 = 0; -x_345 = lean_unsigned_to_nat(0u); -x_346 = l_Float_ofScientific(x_311, x_344, x_345); -lean_dec(x_311); -x_347 = l_Float_ofScientific(x_341, x_344, x_345); -lean_dec(x_341); -x_348 = lean_box_float(x_346); -x_349 = lean_box_float(x_347); -if (lean_is_scalar(x_343)) { - x_350 = lean_alloc_ctor(0, 2, 0); -} else { - x_350 = x_343; -} -lean_ctor_set(x_350, 0, x_348); -lean_ctor_set(x_350, 1, x_349); -x_351 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_351, 0, x_339); -lean_ctor_set(x_351, 1, x_350); -x_214 = x_351; -x_215 = x_342; -goto block_309; -} -} -else -{ -uint8_t x_352; -x_352 = !lean_is_exclusive(x_313); -if (x_352 == 0) -{ -lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; uint8_t x_357; -x_353 = lean_ctor_get(x_313, 0); -x_354 = lean_ctor_get(x_313, 1); -x_355 = lean_alloc_ctor(0, 1, 0); +lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; uint8_t x_360; lean_object* x_361; double x_362; double x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_353 = lean_ctor_get(x_329, 0); +x_354 = lean_ctor_get(x_329, 1); +lean_inc(x_354); +lean_inc(x_353); +lean_dec(x_329); +x_355 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_355, 0, x_353); x_356 = lean_io_get_num_heartbeats(x_354); -x_357 = !lean_is_exclusive(x_356); -if (x_357 == 0) -{ -lean_object* x_358; lean_object* x_359; uint8_t x_360; lean_object* x_361; double x_362; double x_363; lean_object* x_364; lean_object* x_365; -x_358 = lean_ctor_get(x_356, 0); -x_359 = lean_ctor_get(x_356, 1); +x_357 = lean_ctor_get(x_356, 0); +lean_inc(x_357); +x_358 = lean_ctor_get(x_356, 1); +lean_inc(x_358); +if (lean_is_exclusive(x_356)) { + lean_ctor_release(x_356, 0); + lean_ctor_release(x_356, 1); + x_359 = x_356; +} else { + lean_dec_ref(x_356); + x_359 = lean_box(0); +} x_360 = 0; x_361 = lean_unsigned_to_nat(0u); -x_362 = l_Float_ofScientific(x_311, x_360, x_361); -lean_dec(x_311); -x_363 = l_Float_ofScientific(x_358, x_360, x_361); -lean_dec(x_358); +x_362 = l_Float_ofScientific(x_327, x_360, x_361); +lean_dec(x_327); +x_363 = l_Float_ofScientific(x_357, x_360, x_361); +lean_dec(x_357); x_364 = lean_box_float(x_362); x_365 = lean_box_float(x_363); -lean_ctor_set(x_356, 1, x_365); -lean_ctor_set(x_356, 0, x_364); -lean_ctor_set_tag(x_313, 0); -lean_ctor_set(x_313, 1, x_356); -lean_ctor_set(x_313, 0, x_355); -x_214 = x_313; -x_215 = x_359; -goto block_309; -} -else -{ -lean_object* x_366; lean_object* x_367; uint8_t x_368; lean_object* x_369; double x_370; double x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_366 = lean_ctor_get(x_356, 0); -x_367 = lean_ctor_get(x_356, 1); -lean_inc(x_367); -lean_inc(x_366); -lean_dec(x_356); -x_368 = 0; -x_369 = lean_unsigned_to_nat(0u); -x_370 = l_Float_ofScientific(x_311, x_368, x_369); -lean_dec(x_311); -x_371 = l_Float_ofScientific(x_366, x_368, x_369); -lean_dec(x_366); -x_372 = lean_box_float(x_370); -x_373 = lean_box_float(x_371); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_372); -lean_ctor_set(x_374, 1, x_373); -lean_ctor_set_tag(x_313, 0); -lean_ctor_set(x_313, 1, x_374); -lean_ctor_set(x_313, 0, x_355); -x_214 = x_313; -x_215 = x_367; -goto block_309; -} -} -else -{ -lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; uint8_t x_382; lean_object* x_383; double x_384; double x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; -x_375 = lean_ctor_get(x_313, 0); -x_376 = lean_ctor_get(x_313, 1); -lean_inc(x_376); -lean_inc(x_375); -lean_dec(x_313); -x_377 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_377, 0, x_375); -x_378 = lean_io_get_num_heartbeats(x_376); -x_379 = lean_ctor_get(x_378, 0); -lean_inc(x_379); -x_380 = lean_ctor_get(x_378, 1); -lean_inc(x_380); -if (lean_is_exclusive(x_378)) { - lean_ctor_release(x_378, 0); - lean_ctor_release(x_378, 1); - x_381 = x_378; +if (lean_is_scalar(x_359)) { + x_366 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_378); - x_381 = lean_box(0); + x_366 = x_359; } -x_382 = 0; -x_383 = lean_unsigned_to_nat(0u); -x_384 = l_Float_ofScientific(x_311, x_382, x_383); -lean_dec(x_311); -x_385 = l_Float_ofScientific(x_379, x_382, x_383); -lean_dec(x_379); -x_386 = lean_box_float(x_384); -x_387 = lean_box_float(x_385); -if (lean_is_scalar(x_381)) { - x_388 = lean_alloc_ctor(0, 2, 0); -} else { - x_388 = x_381; +lean_ctor_set(x_366, 0, x_364); +lean_ctor_set(x_366, 1, x_365); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_355); +lean_ctor_set(x_367, 1, x_366); +x_222 = x_367; +x_223 = x_358; +goto block_325; } -lean_ctor_set(x_388, 0, x_386); -lean_ctor_set(x_388, 1, x_387); -x_389 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_389, 0, x_377); -lean_ctor_set(x_389, 1, x_388); -x_214 = x_389; -x_215 = x_380; -goto block_309; -} -} -block_309: -{ -lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; uint8_t x_220; lean_object* x_289; uint8_t x_290; -x_216 = lean_ctor_get(x_214, 1); -lean_inc(x_216); -x_217 = lean_ctor_get(x_214, 0); -lean_inc(x_217); -lean_dec(x_214); -x_218 = lean_ctor_get(x_216, 0); -lean_inc(x_218); -x_219 = lean_ctor_get(x_216, 1); -lean_inc(x_219); -lean_dec(x_216); -x_289 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__2; -x_290 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_289); -if (x_290 == 0) -{ -uint8_t x_291; -x_291 = 0; -x_220 = x_291; -goto block_288; } else { -double x_292; double x_293; double x_294; -x_292 = lean_unbox_float(x_219); -x_293 = lean_unbox_float(x_218); -x_294 = lean_float_sub(x_292, x_293); +uint8_t x_368; +x_368 = !lean_is_exclusive(x_329); +if (x_368 == 0) +{ +lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; uint8_t x_373; +x_369 = lean_ctor_get(x_329, 0); +x_370 = lean_ctor_get(x_329, 1); +x_371 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_371, 0, x_369); +x_372 = lean_io_get_num_heartbeats(x_370); +x_373 = !lean_is_exclusive(x_372); +if (x_373 == 0) +{ +lean_object* x_374; lean_object* x_375; uint8_t x_376; lean_object* x_377; double x_378; double x_379; lean_object* x_380; lean_object* x_381; +x_374 = lean_ctor_get(x_372, 0); +x_375 = lean_ctor_get(x_372, 1); +x_376 = 0; +x_377 = lean_unsigned_to_nat(0u); +x_378 = l_Float_ofScientific(x_327, x_376, x_377); +lean_dec(x_327); +x_379 = l_Float_ofScientific(x_374, x_376, x_377); +lean_dec(x_374); +x_380 = lean_box_float(x_378); +x_381 = lean_box_float(x_379); +lean_ctor_set(x_372, 1, x_381); +lean_ctor_set(x_372, 0, x_380); +lean_ctor_set_tag(x_329, 0); +lean_ctor_set(x_329, 1, x_372); +lean_ctor_set(x_329, 0, x_371); +x_222 = x_329; +x_223 = x_375; +goto block_325; +} +else +{ +lean_object* x_382; lean_object* x_383; uint8_t x_384; lean_object* x_385; double x_386; double x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; +x_382 = lean_ctor_get(x_372, 0); +x_383 = lean_ctor_get(x_372, 1); +lean_inc(x_383); +lean_inc(x_382); +lean_dec(x_372); +x_384 = 0; +x_385 = lean_unsigned_to_nat(0u); +x_386 = l_Float_ofScientific(x_327, x_384, x_385); +lean_dec(x_327); +x_387 = l_Float_ofScientific(x_382, x_384, x_385); +lean_dec(x_382); +x_388 = lean_box_float(x_386); +x_389 = lean_box_float(x_387); +x_390 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_390, 0, x_388); +lean_ctor_set(x_390, 1, x_389); +lean_ctor_set_tag(x_329, 0); +lean_ctor_set(x_329, 1, x_390); +lean_ctor_set(x_329, 0, x_371); +x_222 = x_329; +x_223 = x_383; +goto block_325; +} +} +else +{ +lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; uint8_t x_398; lean_object* x_399; double x_400; double x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; +x_391 = lean_ctor_get(x_329, 0); +x_392 = lean_ctor_get(x_329, 1); +lean_inc(x_392); +lean_inc(x_391); +lean_dec(x_329); +x_393 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_393, 0, x_391); +x_394 = lean_io_get_num_heartbeats(x_392); +x_395 = lean_ctor_get(x_394, 0); +lean_inc(x_395); +x_396 = lean_ctor_get(x_394, 1); +lean_inc(x_396); +if (lean_is_exclusive(x_394)) { + lean_ctor_release(x_394, 0); + lean_ctor_release(x_394, 1); + x_397 = x_394; +} else { + lean_dec_ref(x_394); + x_397 = lean_box(0); +} +x_398 = 0; +x_399 = lean_unsigned_to_nat(0u); +x_400 = l_Float_ofScientific(x_327, x_398, x_399); +lean_dec(x_327); +x_401 = l_Float_ofScientific(x_395, x_398, x_399); +lean_dec(x_395); +x_402 = lean_box_float(x_400); +x_403 = lean_box_float(x_401); +if (lean_is_scalar(x_397)) { + x_404 = lean_alloc_ctor(0, 2, 0); +} else { + x_404 = x_397; +} +lean_ctor_set(x_404, 0, x_402); +lean_ctor_set(x_404, 1, x_403); +x_405 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_405, 0, x_393); +lean_ctor_set(x_405, 1, x_404); +x_222 = x_405; +x_223 = x_396; +goto block_325; +} +} +block_325: +{ +lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; uint8_t x_229; uint8_t x_230; +x_224 = lean_ctor_get(x_222, 1); +lean_inc(x_224); +x_225 = lean_ctor_get(x_222, 0); +lean_inc(x_225); +lean_dec(x_222); +x_226 = lean_ctor_get(x_224, 0); +lean_inc(x_226); +x_227 = lean_ctor_get(x_224, 1); +lean_inc(x_227); +lean_dec(x_224); +x_228 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__2; +x_229 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_228); +if (x_229 == 0) +{ +if (x_6 == 0) +{ +uint8_t x_295; +x_295 = 0; +x_230 = x_295; +goto block_294; +} +else +{ +lean_object* x_296; double x_297; double x_298; lean_object* x_299; +x_296 = lean_box(0); +x_297 = lean_unbox_float(x_226); +lean_dec(x_226); +x_298 = lean_unbox_float(x_227); +lean_dec(x_227); +x_299 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__3(x_2, x_3, x_4, x_16, x_225, x_229, x_297, x_298, x_5, x_296, x_9, x_10, x_11, x_12, x_13, x_223); +return x_299; +} +} +else +{ +double x_300; double x_301; double x_302; +x_300 = lean_unbox_float(x_227); +x_301 = lean_unbox_float(x_226); +x_302 = lean_float_sub(x_300, x_301); if (x_19 == 0) { -lean_object* x_295; lean_object* x_296; uint8_t x_297; lean_object* x_298; double x_299; double x_300; double x_301; uint8_t x_302; -x_295 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__3; -x_296 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_295); -x_297 = 0; -x_298 = lean_unsigned_to_nat(0u); -x_299 = l_Float_ofScientific(x_296, x_297, x_298); -lean_dec(x_296); -x_300 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__4; -x_301 = lean_float_div(x_299, x_300); -x_302 = lean_float_decLt(x_301, x_294); -x_220 = x_302; -goto block_288; -} -else +if (x_6 == 0) { -lean_object* x_303; lean_object* x_304; uint8_t x_305; lean_object* x_306; double x_307; uint8_t x_308; +lean_object* x_303; lean_object* x_304; uint8_t x_305; lean_object* x_306; double x_307; double x_308; double x_309; uint8_t x_310; x_303 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__3; x_304 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_303); x_305 = 0; x_306 = lean_unsigned_to_nat(0u); x_307 = l_Float_ofScientific(x_304, x_305, x_306); lean_dec(x_304); -x_308 = lean_float_decLt(x_307, x_294); -x_220 = x_308; -goto block_288; +x_308 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__4; +x_309 = lean_float_div(x_307, x_308); +x_310 = lean_float_decLt(x_309, x_302); +x_230 = x_310; +goto block_294; +} +else +{ +lean_object* x_311; double x_312; double x_313; lean_object* x_314; +x_311 = lean_box(0); +x_312 = lean_unbox_float(x_226); +lean_dec(x_226); +x_313 = lean_unbox_float(x_227); +lean_dec(x_227); +x_314 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__3(x_2, x_3, x_4, x_16, x_225, x_229, x_312, x_313, x_5, x_311, x_9, x_10, x_11, x_12, x_13, x_223); +return x_314; } } -block_288: +else { if (x_6 == 0) { -if (x_220 == 0) +lean_object* x_315; lean_object* x_316; uint8_t x_317; lean_object* x_318; double x_319; uint8_t x_320; +x_315 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__3; +x_316 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_315); +x_317 = 0; +x_318 = lean_unsigned_to_nat(0u); +x_319 = l_Float_ofScientific(x_316, x_317, x_318); +lean_dec(x_316); +x_320 = lean_float_decLt(x_319, x_302); +x_230 = x_320; +goto block_294; +} +else { -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; uint8_t x_225; -lean_dec(x_219); -lean_dec(x_218); +lean_object* x_321; double x_322; double x_323; lean_object* x_324; +x_321 = lean_box(0); +x_322 = lean_unbox_float(x_226); +lean_dec(x_226); +x_323 = lean_unbox_float(x_227); +lean_dec(x_227); +x_324 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__3(x_2, x_3, x_4, x_16, x_225, x_229, x_322, x_323, x_5, x_321, x_9, x_10, x_11, x_12, x_13, x_223); +return x_324; +} +} +} +block_294: +{ +if (x_230 == 0) +{ +lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; uint8_t x_235; +lean_dec(x_227); +lean_dec(x_226); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_221 = lean_st_ref_take(x_13, x_215); -x_222 = lean_ctor_get(x_221, 0); -lean_inc(x_222); -x_223 = lean_ctor_get(x_222, 3); -lean_inc(x_223); -x_224 = lean_ctor_get(x_221, 1); -lean_inc(x_224); -lean_dec(x_221); -x_225 = !lean_is_exclusive(x_222); -if (x_225 == 0) -{ -lean_object* x_226; uint8_t x_227; -x_226 = lean_ctor_get(x_222, 3); -lean_dec(x_226); -x_227 = !lean_is_exclusive(x_223); -if (x_227 == 0) -{ -lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; -x_228 = lean_ctor_get(x_223, 0); -x_229 = l_Lean_PersistentArray_append___rarg(x_16, x_228); -lean_dec(x_228); -lean_ctor_set(x_223, 0, x_229); -x_230 = lean_st_ref_set(x_13, x_222, x_224); -x_231 = lean_ctor_get(x_230, 1); -lean_inc(x_231); -lean_dec(x_230); -x_232 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__4(x_217, x_9, x_10, x_11, x_12, x_13, x_231); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_217); -if (lean_obj_tag(x_232) == 0) -{ -uint8_t x_233; -x_233 = !lean_is_exclusive(x_232); -if (x_233 == 0) -{ -return x_232; -} -else -{ -lean_object* x_234; lean_object* x_235; lean_object* x_236; -x_234 = lean_ctor_get(x_232, 0); -x_235 = lean_ctor_get(x_232, 1); -lean_inc(x_235); +x_231 = lean_st_ref_take(x_13, x_223); +x_232 = lean_ctor_get(x_231, 0); +lean_inc(x_232); +x_233 = lean_ctor_get(x_232, 3); +lean_inc(x_233); +x_234 = lean_ctor_get(x_231, 1); lean_inc(x_234); -lean_dec(x_232); -x_236 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_236, 0, x_234); -lean_ctor_set(x_236, 1, x_235); -return x_236; -} -} -else +lean_dec(x_231); +x_235 = !lean_is_exclusive(x_232); +if (x_235 == 0) { -uint8_t x_237; -x_237 = !lean_is_exclusive(x_232); +lean_object* x_236; uint8_t x_237; +x_236 = lean_ctor_get(x_232, 3); +lean_dec(x_236); +x_237 = !lean_is_exclusive(x_233); if (x_237 == 0) { -return x_232; +lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; +x_238 = lean_ctor_get(x_233, 0); +x_239 = l_Lean_PersistentArray_append___rarg(x_16, x_238); +lean_dec(x_238); +lean_ctor_set(x_233, 0, x_239); +x_240 = lean_st_ref_set(x_13, x_232, x_234); +x_241 = lean_ctor_get(x_240, 1); +lean_inc(x_241); +lean_dec(x_240); +x_242 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__4(x_225, x_9, x_10, x_11, x_12, x_13, x_241); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_225); +if (lean_obj_tag(x_242) == 0) +{ +uint8_t x_243; +x_243 = !lean_is_exclusive(x_242); +if (x_243 == 0) +{ +return x_242; } else { -lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_238 = lean_ctor_get(x_232, 0); -x_239 = lean_ctor_get(x_232, 1); -lean_inc(x_239); -lean_inc(x_238); -lean_dec(x_232); -x_240 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_240, 0, x_238); -lean_ctor_set(x_240, 1, x_239); -return x_240; -} -} -} -else -{ -uint64_t x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; -x_241 = lean_ctor_get_uint64(x_223, sizeof(void*)*1); -x_242 = lean_ctor_get(x_223, 0); -lean_inc(x_242); -lean_dec(x_223); -x_243 = l_Lean_PersistentArray_append___rarg(x_16, x_242); +lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_244 = lean_ctor_get(x_242, 0); +x_245 = lean_ctor_get(x_242, 1); +lean_inc(x_245); +lean_inc(x_244); lean_dec(x_242); -x_244 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_244, 0, x_243); -lean_ctor_set_uint64(x_244, sizeof(void*)*1, x_241); -lean_ctor_set(x_222, 3, x_244); -x_245 = lean_st_ref_set(x_13, x_222, x_224); -x_246 = lean_ctor_get(x_245, 1); -lean_inc(x_246); -lean_dec(x_245); -x_247 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__4(x_217, x_9, x_10, x_11, x_12, x_13, x_246); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_217); -if (lean_obj_tag(x_247) == 0) +x_246 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_246, 0, x_244); +lean_ctor_set(x_246, 1, x_245); +return x_246; +} +} +else { -lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; -x_248 = lean_ctor_get(x_247, 0); -lean_inc(x_248); -x_249 = lean_ctor_get(x_247, 1); +uint8_t x_247; +x_247 = !lean_is_exclusive(x_242); +if (x_247 == 0) +{ +return x_242; +} +else +{ +lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_248 = lean_ctor_get(x_242, 0); +x_249 = lean_ctor_get(x_242, 1); lean_inc(x_249); -if (lean_is_exclusive(x_247)) { - lean_ctor_release(x_247, 0); - lean_ctor_release(x_247, 1); - x_250 = x_247; -} else { - lean_dec_ref(x_247); - x_250 = lean_box(0); +lean_inc(x_248); +lean_dec(x_242); +x_250 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_250, 0, x_248); +lean_ctor_set(x_250, 1, x_249); +return x_250; } -if (lean_is_scalar(x_250)) { - x_251 = lean_alloc_ctor(0, 2, 0); -} else { - x_251 = x_250; } -lean_ctor_set(x_251, 0, x_248); -lean_ctor_set(x_251, 1, x_249); -return x_251; } else { -lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; -x_252 = lean_ctor_get(x_247, 0); +uint64_t x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; +x_251 = lean_ctor_get_uint64(x_233, sizeof(void*)*1); +x_252 = lean_ctor_get(x_233, 0); lean_inc(x_252); -x_253 = lean_ctor_get(x_247, 1); -lean_inc(x_253); -if (lean_is_exclusive(x_247)) { - lean_ctor_release(x_247, 0); - lean_ctor_release(x_247, 1); - x_254 = x_247; -} else { - lean_dec_ref(x_247); - x_254 = lean_box(0); -} -if (lean_is_scalar(x_254)) { - x_255 = lean_alloc_ctor(1, 2, 0); -} else { - x_255 = x_254; -} -lean_ctor_set(x_255, 0, x_252); -lean_ctor_set(x_255, 1, x_253); -return x_255; -} -} -} -else -{ -lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; uint64_t x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; -x_256 = lean_ctor_get(x_222, 0); -x_257 = lean_ctor_get(x_222, 1); -x_258 = lean_ctor_get(x_222, 2); -x_259 = lean_ctor_get(x_222, 4); -x_260 = lean_ctor_get(x_222, 5); -x_261 = lean_ctor_get(x_222, 6); -x_262 = lean_ctor_get(x_222, 7); -lean_inc(x_262); -lean_inc(x_261); -lean_inc(x_260); -lean_inc(x_259); -lean_inc(x_258); -lean_inc(x_257); +lean_dec(x_233); +x_253 = l_Lean_PersistentArray_append___rarg(x_16, x_252); +lean_dec(x_252); +x_254 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_254, 0, x_253); +lean_ctor_set_uint64(x_254, sizeof(void*)*1, x_251); +lean_ctor_set(x_232, 3, x_254); +x_255 = lean_st_ref_set(x_13, x_232, x_234); +x_256 = lean_ctor_get(x_255, 1); lean_inc(x_256); -lean_dec(x_222); -x_263 = lean_ctor_get_uint64(x_223, sizeof(void*)*1); -x_264 = lean_ctor_get(x_223, 0); -lean_inc(x_264); -if (lean_is_exclusive(x_223)) { - lean_ctor_release(x_223, 0); - x_265 = x_223; -} else { - lean_dec_ref(x_223); - x_265 = lean_box(0); -} -x_266 = l_Lean_PersistentArray_append___rarg(x_16, x_264); -lean_dec(x_264); -if (lean_is_scalar(x_265)) { - x_267 = lean_alloc_ctor(0, 1, 8); -} else { - x_267 = x_265; -} -lean_ctor_set(x_267, 0, x_266); -lean_ctor_set_uint64(x_267, sizeof(void*)*1, x_263); -x_268 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_268, 0, x_256); -lean_ctor_set(x_268, 1, x_257); -lean_ctor_set(x_268, 2, x_258); -lean_ctor_set(x_268, 3, x_267); -lean_ctor_set(x_268, 4, x_259); -lean_ctor_set(x_268, 5, x_260); -lean_ctor_set(x_268, 6, x_261); -lean_ctor_set(x_268, 7, x_262); -x_269 = lean_st_ref_set(x_13, x_268, x_224); -x_270 = lean_ctor_get(x_269, 1); -lean_inc(x_270); -lean_dec(x_269); -x_271 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__4(x_217, x_9, x_10, x_11, x_12, x_13, x_270); +lean_dec(x_255); +x_257 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__4(x_225, x_9, x_10, x_11, x_12, x_13, x_256); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_217); -if (lean_obj_tag(x_271) == 0) +lean_dec(x_225); +if (lean_obj_tag(x_257) == 0) { -lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; -x_272 = lean_ctor_get(x_271, 0); +lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; +x_258 = lean_ctor_get(x_257, 0); +lean_inc(x_258); +x_259 = lean_ctor_get(x_257, 1); +lean_inc(x_259); +if (lean_is_exclusive(x_257)) { + lean_ctor_release(x_257, 0); + lean_ctor_release(x_257, 1); + x_260 = x_257; +} else { + lean_dec_ref(x_257); + x_260 = lean_box(0); +} +if (lean_is_scalar(x_260)) { + x_261 = lean_alloc_ctor(0, 2, 0); +} else { + x_261 = x_260; +} +lean_ctor_set(x_261, 0, x_258); +lean_ctor_set(x_261, 1, x_259); +return x_261; +} +else +{ +lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; +x_262 = lean_ctor_get(x_257, 0); +lean_inc(x_262); +x_263 = lean_ctor_get(x_257, 1); +lean_inc(x_263); +if (lean_is_exclusive(x_257)) { + lean_ctor_release(x_257, 0); + lean_ctor_release(x_257, 1); + x_264 = x_257; +} else { + lean_dec_ref(x_257); + x_264 = lean_box(0); +} +if (lean_is_scalar(x_264)) { + x_265 = lean_alloc_ctor(1, 2, 0); +} else { + x_265 = x_264; +} +lean_ctor_set(x_265, 0, x_262); +lean_ctor_set(x_265, 1, x_263); +return x_265; +} +} +} +else +{ +lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; uint64_t x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; +x_266 = lean_ctor_get(x_232, 0); +x_267 = lean_ctor_get(x_232, 1); +x_268 = lean_ctor_get(x_232, 2); +x_269 = lean_ctor_get(x_232, 4); +x_270 = lean_ctor_get(x_232, 5); +x_271 = lean_ctor_get(x_232, 6); +x_272 = lean_ctor_get(x_232, 7); lean_inc(x_272); -x_273 = lean_ctor_get(x_271, 1); -lean_inc(x_273); -if (lean_is_exclusive(x_271)) { - lean_ctor_release(x_271, 0); - lean_ctor_release(x_271, 1); - x_274 = x_271; +lean_inc(x_271); +lean_inc(x_270); +lean_inc(x_269); +lean_inc(x_268); +lean_inc(x_267); +lean_inc(x_266); +lean_dec(x_232); +x_273 = lean_ctor_get_uint64(x_233, sizeof(void*)*1); +x_274 = lean_ctor_get(x_233, 0); +lean_inc(x_274); +if (lean_is_exclusive(x_233)) { + lean_ctor_release(x_233, 0); + x_275 = x_233; } else { - lean_dec_ref(x_271); - x_274 = lean_box(0); + lean_dec_ref(x_233); + x_275 = lean_box(0); } -if (lean_is_scalar(x_274)) { - x_275 = lean_alloc_ctor(0, 2, 0); +x_276 = l_Lean_PersistentArray_append___rarg(x_16, x_274); +lean_dec(x_274); +if (lean_is_scalar(x_275)) { + x_277 = lean_alloc_ctor(0, 1, 8); } else { - x_275 = x_274; + x_277 = x_275; } -lean_ctor_set(x_275, 0, x_272); -lean_ctor_set(x_275, 1, x_273); -return x_275; +lean_ctor_set(x_277, 0, x_276); +lean_ctor_set_uint64(x_277, sizeof(void*)*1, x_273); +x_278 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_278, 0, x_266); +lean_ctor_set(x_278, 1, x_267); +lean_ctor_set(x_278, 2, x_268); +lean_ctor_set(x_278, 3, x_277); +lean_ctor_set(x_278, 4, x_269); +lean_ctor_set(x_278, 5, x_270); +lean_ctor_set(x_278, 6, x_271); +lean_ctor_set(x_278, 7, x_272); +x_279 = lean_st_ref_set(x_13, x_278, x_234); +x_280 = lean_ctor_get(x_279, 1); +lean_inc(x_280); +lean_dec(x_279); +x_281 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__4(x_225, x_9, x_10, x_11, x_12, x_13, x_280); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_225); +if (lean_obj_tag(x_281) == 0) +{ +lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; +x_282 = lean_ctor_get(x_281, 0); +lean_inc(x_282); +x_283 = lean_ctor_get(x_281, 1); +lean_inc(x_283); +if (lean_is_exclusive(x_281)) { + lean_ctor_release(x_281, 0); + lean_ctor_release(x_281, 1); + x_284 = x_281; +} else { + lean_dec_ref(x_281); + x_284 = lean_box(0); +} +if (lean_is_scalar(x_284)) { + x_285 = lean_alloc_ctor(0, 2, 0); +} else { + x_285 = x_284; +} +lean_ctor_set(x_285, 0, x_282); +lean_ctor_set(x_285, 1, x_283); +return x_285; } else { -lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; -x_276 = lean_ctor_get(x_271, 0); -lean_inc(x_276); -x_277 = lean_ctor_get(x_271, 1); -lean_inc(x_277); -if (lean_is_exclusive(x_271)) { - lean_ctor_release(x_271, 0); - lean_ctor_release(x_271, 1); - x_278 = x_271; +lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; +x_286 = lean_ctor_get(x_281, 0); +lean_inc(x_286); +x_287 = lean_ctor_get(x_281, 1); +lean_inc(x_287); +if (lean_is_exclusive(x_281)) { + lean_ctor_release(x_281, 0); + lean_ctor_release(x_281, 1); + x_288 = x_281; } else { - lean_dec_ref(x_271); - x_278 = lean_box(0); + lean_dec_ref(x_281); + x_288 = lean_box(0); } -if (lean_is_scalar(x_278)) { - x_279 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_288)) { + x_289 = lean_alloc_ctor(1, 2, 0); } else { - x_279 = x_278; + x_289 = x_288; } -lean_ctor_set(x_279, 0, x_276); -lean_ctor_set(x_279, 1, x_277); -return x_279; +lean_ctor_set(x_289, 0, x_286); +lean_ctor_set(x_289, 1, x_287); +return x_289; } } } else { -lean_object* x_280; double x_281; double x_282; lean_object* x_283; -x_280 = lean_box(0); -x_281 = lean_unbox_float(x_218); -lean_dec(x_218); -x_282 = lean_unbox_float(x_219); -lean_dec(x_219); -x_283 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__3(x_2, x_3, x_4, x_16, x_217, x_1, x_220, x_281, x_282, x_5, x_280, x_9, x_10, x_11, x_12, x_13, x_215); -return x_283; -} -} -else -{ -lean_object* x_284; double x_285; double x_286; lean_object* x_287; -x_284 = lean_box(0); -x_285 = lean_unbox_float(x_218); -lean_dec(x_218); -x_286 = lean_unbox_float(x_219); -lean_dec(x_219); -x_287 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__3(x_2, x_3, x_4, x_16, x_217, x_1, x_220, x_285, x_286, x_5, x_284, x_9, x_10, x_11, x_12, x_13, x_215); -return x_287; +lean_object* x_290; double x_291; double x_292; lean_object* x_293; +x_290 = lean_box(0); +x_291 = lean_unbox_float(x_226); +lean_dec(x_226); +x_292 = lean_unbox_float(x_227); +lean_dec(x_227); +x_293 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__3(x_2, x_3, x_4, x_16, x_225, x_229, x_291, x_292, x_5, x_290, x_9, x_10, x_11, x_12, x_13, x_223); +return x_293; } } } @@ -20860,78 +20884,42 @@ lean_dec(x_4); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__2___boxed(lean_object** _args) { -lean_object* x_1 = _args[0]; -lean_object* x_2 = _args[1]; -lean_object* x_3 = _args[2]; -lean_object* x_4 = _args[3]; -lean_object* x_5 = _args[4]; -lean_object* x_6 = _args[5]; -lean_object* x_7 = _args[6]; -lean_object* x_8 = _args[7]; -lean_object* x_9 = _args[8]; -lean_object* x_10 = _args[9]; -lean_object* x_11 = _args[10]; -lean_object* x_12 = _args[11]; -lean_object* x_13 = _args[12]; -lean_object* x_14 = _args[13]; -lean_object* x_15 = _args[14]; -lean_object* x_16 = _args[15]; -lean_object* x_17 = _args[16]; +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; -x_18 = lean_unbox(x_2); +uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; +x_17 = lean_unbox(x_2); lean_dec(x_2); -x_19 = lean_unbox(x_8); +x_18 = lean_unbox(x_7); +lean_dec(x_7); +x_19 = lean_unbox_float(x_8); lean_dec(x_8); x_20 = lean_unbox_float(x_9); lean_dec(x_9); -x_21 = lean_unbox_float(x_10); -lean_dec(x_10); -x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__2(x_1, x_18, x_3, x_4, x_5, x_6, x_7, x_19, x_20, x_21, x_11, x_12, x_13, x_14, x_15, x_16, x_17); -lean_dec(x_16); -lean_dec(x_14); +x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +lean_dec(x_15); lean_dec(x_13); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_22; +return x_21; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__3___boxed(lean_object** _args) { -lean_object* x_1 = _args[0]; -lean_object* x_2 = _args[1]; -lean_object* x_3 = _args[2]; -lean_object* x_4 = _args[3]; -lean_object* x_5 = _args[4]; -lean_object* x_6 = _args[5]; -lean_object* x_7 = _args[6]; -lean_object* x_8 = _args[7]; -lean_object* x_9 = _args[8]; -lean_object* x_10 = _args[9]; -lean_object* x_11 = _args[10]; -lean_object* x_12 = _args[11]; -lean_object* x_13 = _args[12]; -lean_object* x_14 = _args[13]; -lean_object* x_15 = _args[14]; -lean_object* x_16 = _args[15]; -lean_object* x_17 = _args[16]; +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; -x_18 = lean_unbox(x_2); +uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; +x_17 = lean_unbox(x_2); lean_dec(x_2); -x_19 = lean_unbox(x_7); +x_18 = lean_unbox(x_6); +lean_dec(x_6); +x_19 = lean_unbox_float(x_7); lean_dec(x_7); x_20 = lean_unbox_float(x_8); lean_dec(x_8); -x_21 = lean_unbox_float(x_9); -lean_dec(x_9); -x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__3(x_1, x_18, x_3, x_4, x_5, x_6, x_19, x_20, x_21, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); -lean_dec(x_11); -lean_dec(x_6); -return x_22; +x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__3(x_1, x_17, x_3, x_4, x_5, x_18, x_19, x_20, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +lean_dec(x_10); +return x_21; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_closeWithBVReflection___spec__1___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { @@ -21079,103 +21067,78 @@ lean_dec(x_9); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -double x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_18 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_18, 0, x_1); -lean_ctor_set(x_18, 1, x_3); -lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); -lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); -lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___closed__2; -x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_19); -if (x_20 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___closed__1; +x_17 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_3); +lean_ctor_set_float(x_17, sizeof(void*)*2, x_16); +lean_ctor_set_float(x_17, sizeof(void*)*2 + 8, x_16); +lean_ctor_set_uint8(x_17, sizeof(void*)*2 + 16, x_2); +x_18 = lean_box(0); +x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_17, x_18, x_11, x_12, x_13, x_14, x_15); +return x_19; +} +else { -lean_object* x_21; lean_object* x_22; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); x_21 = lean_box(0); -x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_18, x_21, x_12, x_13, x_14, x_15, x_16); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15); return x_22; } -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_18); -x_23 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_3); -lean_ctor_set_float(x_23, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); -x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_23, x_24, x_12, x_13, x_14, x_15, x_16); -return x_25; } } -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_18); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16); -return x_28; -} -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 5); -lean_inc(x_17); -lean_inc(x_15); +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 5); +lean_inc(x_16); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_18 = lean_apply_6(x_10, x_5, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_18) == 0) +x_17 = lean_apply_6(x_9, x_5, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_14, x_15, x_20); -lean_dec(x_15); -lean_dec(x_13); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_13, x_14, x_19); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_21; +return x_20; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_14, x_15, x_22); -lean_dec(x_15); -lean_dec(x_13); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } } } @@ -21193,253 +21156,253 @@ x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblast x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_17); if (x_18 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_109 = lean_io_mono_nanos_now(x_16); -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_109, 1); -lean_inc(x_111); -lean_dec(x_109); +lean_object* x_19; lean_object* x_20; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_113 = lean_io_mono_nanos_now(x_16); +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +lean_dec(x_113); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_112 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_111); -if (lean_obj_tag(x_112) == 0) +x_116 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_115); +if (lean_obj_tag(x_116) == 0) { -uint8_t x_113; -x_113 = !lean_is_exclusive(x_112); -if (x_113 == 0) +uint8_t x_117; +x_117 = !lean_is_exclusive(x_116); +if (x_117 == 0) { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_114 = lean_ctor_get(x_112, 0); -x_115 = lean_ctor_get(x_112, 1); -x_116 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_116, 0, x_114); -x_117 = lean_io_mono_nanos_now(x_115); -x_118 = !lean_is_exclusive(x_117); -if (x_118 == 0) +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_118 = lean_ctor_get(x_116, 0); +x_119 = lean_ctor_get(x_116, 1); +x_120 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_120, 0, x_118); +x_121 = lean_io_mono_nanos_now(x_119); +x_122 = !lean_is_exclusive(x_121); +if (x_122 == 0) { -lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_122; double x_123; double x_124; double x_125; double x_126; double x_127; lean_object* x_128; lean_object* x_129; -x_119 = lean_ctor_get(x_117, 0); -x_120 = lean_ctor_get(x_117, 1); -x_121 = 0; -x_122 = lean_unsigned_to_nat(0u); -x_123 = l_Float_ofScientific(x_110, x_121, x_122); -lean_dec(x_110); -x_124 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_125 = lean_float_div(x_123, x_124); -x_126 = l_Float_ofScientific(x_119, x_121, x_122); -lean_dec(x_119); -x_127 = lean_float_div(x_126, x_124); -x_128 = lean_box_float(x_125); -x_129 = lean_box_float(x_127); -lean_ctor_set(x_117, 1, x_129); -lean_ctor_set(x_117, 0, x_128); -lean_ctor_set(x_112, 1, x_117); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_120; -goto block_108; +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; double x_130; double x_131; lean_object* x_132; lean_object* x_133; +x_123 = lean_ctor_get(x_121, 0); +x_124 = lean_ctor_get(x_121, 1); +x_125 = 0; +x_126 = lean_unsigned_to_nat(0u); +x_127 = l_Float_ofScientific(x_114, x_125, x_126); +lean_dec(x_114); +x_128 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_129 = lean_float_div(x_127, x_128); +x_130 = l_Float_ofScientific(x_123, x_125, x_126); +lean_dec(x_123); +x_131 = lean_float_div(x_130, x_128); +x_132 = lean_box_float(x_129); +x_133 = lean_box_float(x_131); +lean_ctor_set(x_121, 1, x_133); +lean_ctor_set(x_121, 0, x_132); +lean_ctor_set(x_116, 1, x_121); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_124; +goto block_112; } else { -lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; double x_134; double x_135; double x_136; double x_137; double x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_130 = lean_ctor_get(x_117, 0); -x_131 = lean_ctor_get(x_117, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_117); -x_132 = 0; -x_133 = lean_unsigned_to_nat(0u); -x_134 = l_Float_ofScientific(x_110, x_132, x_133); -lean_dec(x_110); -x_135 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_136 = lean_float_div(x_134, x_135); -x_137 = l_Float_ofScientific(x_130, x_132, x_133); -lean_dec(x_130); -x_138 = lean_float_div(x_137, x_135); -x_139 = lean_box_float(x_136); -x_140 = lean_box_float(x_138); -x_141 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -lean_ctor_set(x_112, 1, x_141); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_131; -goto block_108; +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_134 = lean_ctor_get(x_121, 0); +x_135 = lean_ctor_get(x_121, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_121); +x_136 = 0; +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Float_ofScientific(x_114, x_136, x_137); +lean_dec(x_114); +x_139 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_140 = lean_float_div(x_138, x_139); +x_141 = l_Float_ofScientific(x_134, x_136, x_137); +lean_dec(x_134); +x_142 = lean_float_div(x_141, x_139); +x_143 = lean_box_float(x_140); +x_144 = lean_box_float(x_142); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_116, 1, x_145); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_135; +goto block_112; } } else { -lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_142 = lean_ctor_get(x_112, 0); -x_143 = lean_ctor_get(x_112, 1); -lean_inc(x_143); -lean_inc(x_142); -lean_dec(x_112); -x_144 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_144, 0, x_142); -x_145 = lean_io_mono_nanos_now(x_143); -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; lean_object* x_154; double x_155; double x_156; double x_157; double x_158; double x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_146 = lean_ctor_get(x_116, 0); +x_147 = lean_ctor_get(x_116, 1); lean_inc(x_147); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - lean_ctor_release(x_145, 1); - x_148 = x_145; +lean_inc(x_146); +lean_dec(x_116); +x_148 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_148, 0, x_146); +x_149 = lean_io_mono_nanos_now(x_147); +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + lean_ctor_release(x_149, 1); + x_152 = x_149; } else { - lean_dec_ref(x_145); - x_148 = lean_box(0); + lean_dec_ref(x_149); + x_152 = lean_box(0); } -x_149 = 0; -x_150 = lean_unsigned_to_nat(0u); -x_151 = l_Float_ofScientific(x_110, x_149, x_150); -lean_dec(x_110); -x_152 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_153 = lean_float_div(x_151, x_152); -x_154 = l_Float_ofScientific(x_146, x_149, x_150); -lean_dec(x_146); -x_155 = lean_float_div(x_154, x_152); -x_156 = lean_box_float(x_153); -x_157 = lean_box_float(x_155); -if (lean_is_scalar(x_148)) { - x_158 = lean_alloc_ctor(0, 2, 0); +x_153 = 0; +x_154 = lean_unsigned_to_nat(0u); +x_155 = l_Float_ofScientific(x_114, x_153, x_154); +lean_dec(x_114); +x_156 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_157 = lean_float_div(x_155, x_156); +x_158 = l_Float_ofScientific(x_150, x_153, x_154); +lean_dec(x_150); +x_159 = lean_float_div(x_158, x_156); +x_160 = lean_box_float(x_157); +x_161 = lean_box_float(x_159); +if (lean_is_scalar(x_152)) { + x_162 = lean_alloc_ctor(0, 2, 0); } else { - x_158 = x_148; + x_162 = x_152; } -lean_ctor_set(x_158, 0, x_156); -lean_ctor_set(x_158, 1, x_157); -x_159 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_159, 0, x_144); -lean_ctor_set(x_159, 1, x_158); -x_19 = x_159; -x_20 = x_147; -goto block_108; +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_161); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_148); +lean_ctor_set(x_163, 1, x_162); +x_19 = x_163; +x_20 = x_151; +goto block_112; } } else { -uint8_t x_160; -x_160 = !lean_is_exclusive(x_112); -if (x_160 == 0) +uint8_t x_164; +x_164 = !lean_is_exclusive(x_116); +if (x_164 == 0) { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_161 = lean_ctor_get(x_112, 0); -x_162 = lean_ctor_get(x_112, 1); -x_163 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_163, 0, x_161); -x_164 = lean_io_mono_nanos_now(x_162); -x_165 = !lean_is_exclusive(x_164); -if (x_165 == 0) +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; +x_165 = lean_ctor_get(x_116, 0); +x_166 = lean_ctor_get(x_116, 1); +x_167 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_167, 0, x_165); +x_168 = lean_io_mono_nanos_now(x_166); +x_169 = !lean_is_exclusive(x_168); +if (x_169 == 0) { -lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; double x_170; double x_171; double x_172; double x_173; double x_174; lean_object* x_175; lean_object* x_176; -x_166 = lean_ctor_get(x_164, 0); -x_167 = lean_ctor_get(x_164, 1); -x_168 = 0; -x_169 = lean_unsigned_to_nat(0u); -x_170 = l_Float_ofScientific(x_110, x_168, x_169); -lean_dec(x_110); -x_171 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_172 = lean_float_div(x_170, x_171); -x_173 = l_Float_ofScientific(x_166, x_168, x_169); -lean_dec(x_166); -x_174 = lean_float_div(x_173, x_171); -x_175 = lean_box_float(x_172); -x_176 = lean_box_float(x_174); -lean_ctor_set(x_164, 1, x_176); -lean_ctor_set(x_164, 0, x_175); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_164); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_167; -goto block_108; +lean_object* x_170; lean_object* x_171; uint8_t x_172; lean_object* x_173; double x_174; double x_175; double x_176; double x_177; double x_178; lean_object* x_179; lean_object* x_180; +x_170 = lean_ctor_get(x_168, 0); +x_171 = lean_ctor_get(x_168, 1); +x_172 = 0; +x_173 = lean_unsigned_to_nat(0u); +x_174 = l_Float_ofScientific(x_114, x_172, x_173); +lean_dec(x_114); +x_175 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_176 = lean_float_div(x_174, x_175); +x_177 = l_Float_ofScientific(x_170, x_172, x_173); +lean_dec(x_170); +x_178 = lean_float_div(x_177, x_175); +x_179 = lean_box_float(x_176); +x_180 = lean_box_float(x_178); +lean_ctor_set(x_168, 1, x_180); +lean_ctor_set(x_168, 0, x_179); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_168); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_171; +goto block_112; } else { -lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_object* x_180; double x_181; double x_182; double x_183; double x_184; double x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_177 = lean_ctor_get(x_164, 0); -x_178 = lean_ctor_get(x_164, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_164); -x_179 = 0; -x_180 = lean_unsigned_to_nat(0u); -x_181 = l_Float_ofScientific(x_110, x_179, x_180); -lean_dec(x_110); -x_182 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_183 = lean_float_div(x_181, x_182); -x_184 = l_Float_ofScientific(x_177, x_179, x_180); -lean_dec(x_177); -x_185 = lean_float_div(x_184, x_182); -x_186 = lean_box_float(x_183); -x_187 = lean_box_float(x_185); -x_188 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_188); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_178; -goto block_108; +lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_181 = lean_ctor_get(x_168, 0); +x_182 = lean_ctor_get(x_168, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_168); +x_183 = 0; +x_184 = lean_unsigned_to_nat(0u); +x_185 = l_Float_ofScientific(x_114, x_183, x_184); +lean_dec(x_114); +x_186 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_187 = lean_float_div(x_185, x_186); +x_188 = l_Float_ofScientific(x_181, x_183, x_184); +lean_dec(x_181); +x_189 = lean_float_div(x_188, x_186); +x_190 = lean_box_float(x_187); +x_191 = lean_box_float(x_189); +x_192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_192); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_182; +goto block_112; } } else { -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_189 = lean_ctor_get(x_112, 0); -x_190 = lean_ctor_get(x_112, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_112); -x_191 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_191, 0, x_189); -x_192 = lean_io_mono_nanos_now(x_190); -x_193 = lean_ctor_get(x_192, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; lean_object* x_201; double x_202; double x_203; double x_204; double x_205; double x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_193 = lean_ctor_get(x_116, 0); +x_194 = lean_ctor_get(x_116, 1); lean_inc(x_194); -if (lean_is_exclusive(x_192)) { - lean_ctor_release(x_192, 0); - lean_ctor_release(x_192, 1); - x_195 = x_192; +lean_inc(x_193); +lean_dec(x_116); +x_195 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_195, 0, x_193); +x_196 = lean_io_mono_nanos_now(x_194); +x_197 = lean_ctor_get(x_196, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_196, 1); +lean_inc(x_198); +if (lean_is_exclusive(x_196)) { + lean_ctor_release(x_196, 0); + lean_ctor_release(x_196, 1); + x_199 = x_196; } else { - lean_dec_ref(x_192); - x_195 = lean_box(0); + lean_dec_ref(x_196); + x_199 = lean_box(0); } -x_196 = 0; -x_197 = lean_unsigned_to_nat(0u); -x_198 = l_Float_ofScientific(x_110, x_196, x_197); -lean_dec(x_110); -x_199 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; -x_200 = lean_float_div(x_198, x_199); -x_201 = l_Float_ofScientific(x_193, x_196, x_197); -lean_dec(x_193); -x_202 = lean_float_div(x_201, x_199); -x_203 = lean_box_float(x_200); -x_204 = lean_box_float(x_202); -if (lean_is_scalar(x_195)) { - x_205 = lean_alloc_ctor(0, 2, 0); +x_200 = 0; +x_201 = lean_unsigned_to_nat(0u); +x_202 = l_Float_ofScientific(x_114, x_200, x_201); +lean_dec(x_114); +x_203 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__5; +x_204 = lean_float_div(x_202, x_203); +x_205 = l_Float_ofScientific(x_197, x_200, x_201); +lean_dec(x_197); +x_206 = lean_float_div(x_205, x_203); +x_207 = lean_box_float(x_204); +x_208 = lean_box_float(x_206); +if (lean_is_scalar(x_199)) { + x_209 = lean_alloc_ctor(0, 2, 0); } else { - x_205 = x_195; + x_209 = x_199; } -lean_ctor_set(x_205, 0, x_203); -lean_ctor_set(x_205, 1, x_204); -x_206 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_206, 0, x_191); -lean_ctor_set(x_206, 1, x_205); -x_19 = x_206; -x_20 = x_194; -goto block_108; +lean_ctor_set(x_209, 0, x_207); +lean_ctor_set(x_209, 1, x_208); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_195); +lean_ctor_set(x_210, 1, x_209); +x_19 = x_210; +x_20 = x_198; +goto block_112; } } -block_108: +block_112: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_94; uint8_t x_95; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); x_22 = lean_ctor_get(x_19, 0); @@ -21450,17 +21413,33 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_21, 1); lean_inc(x_24); lean_dec(x_21); -x_94 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__2; -x_95 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_94); -if (x_95 == 0) +x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__2; +x_26 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_25); +if (x_26 == 0) { -uint8_t x_96; -x_96 = 0; -x_25 = x_96; -goto block_93; +if (x_6 == 0) +{ +uint8_t x_92; +x_92 = 0; +x_27 = x_92; +goto block_91; } else { +lean_object* x_93; double x_94; double x_95; lean_object* x_96; +x_93 = lean_box(0); +x_94 = lean_unbox_float(x_23); +lean_dec(x_23); +x_95 = lean_unbox_float(x_24); +lean_dec(x_24); +x_96 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_94, x_95, x_5, x_93, x_9, x_10, x_11, x_12, x_20); +return x_96; +} +} +else +{ +if (x_6 == 0) +{ double x_97; double x_98; double x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; double x_104; double x_105; double x_106; uint8_t x_107; x_97 = lean_unbox_float(x_24); x_98 = lean_unbox_float(x_23); @@ -21474,859 +21453,871 @@ lean_dec(x_101); x_105 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__4; x_106 = lean_float_div(x_104, x_105); x_107 = lean_float_decLt(x_106, x_99); -x_25 = x_107; -goto block_93; +x_27 = x_107; +goto block_91; } -block_93: +else { -if (x_6 == 0) +lean_object* x_108; double x_109; double x_110; lean_object* x_111; +x_108 = lean_box(0); +x_109 = lean_unbox_float(x_23); +lean_dec(x_23); +x_110 = lean_unbox_float(x_24); +lean_dec(x_24); +x_111 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_109, x_110, x_5, x_108, x_9, x_10, x_11, x_12, x_20); +return x_111; +} +} +block_91: { -if (x_25 == 0) +if (x_27 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_24); lean_dec(x_23); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_26 = lean_st_ref_take(x_12, x_20); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -x_29 = lean_ctor_get(x_26, 1); +x_28 = lean_st_ref_take(x_12, x_20); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -lean_dec(x_26); -x_30 = !lean_is_exclusive(x_27); -if (x_30 == 0) -{ -lean_object* x_31; uint8_t x_32; -x_31 = lean_ctor_get(x_27, 3); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_28); +x_30 = lean_ctor_get(x_29, 3); +lean_inc(x_30); +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = !lean_is_exclusive(x_29); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_33 = lean_ctor_get(x_28, 0); -x_34 = l_Lean_PersistentArray_append___rarg(x_15, x_33); +lean_object* x_33; uint8_t x_34; +x_33 = lean_ctor_get(x_29, 3); lean_dec(x_33); -lean_ctor_set(x_28, 0, x_34); -x_35 = lean_st_ref_set(x_12, x_27, x_29); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); +x_34 = !lean_is_exclusive(x_30); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_ctor_get(x_30, 0); +x_36 = l_Lean_PersistentArray_append___rarg(x_15, x_35); lean_dec(x_35); -x_37 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__2(x_22, x_9, x_10, x_11, x_12, x_36); +lean_ctor_set(x_30, 0, x_36); +x_37 = lean_st_ref_set(x_12, x_29, x_31); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +x_39 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__2(x_22, x_9, x_10, x_11, x_12, x_38); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_37) == 0) +if (lean_obj_tag(x_39) == 0) { -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -return x_37; +return x_39; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_ctor_get(x_37, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_37); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_39); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } else { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_37); -if (x_42 == 0) +uint8_t x_44; +x_44 = !lean_is_exclusive(x_39); +if (x_44 == 0) { -return x_37; +return x_39; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_37, 0); -x_44 = lean_ctor_get(x_37, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_37); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_39, 0); +x_46 = lean_ctor_get(x_39, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_39); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } } else { -uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_47 = lean_ctor_get(x_28, 0); -lean_inc(x_47); -lean_dec(x_28); -x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_47); -lean_dec(x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); -lean_ctor_set(x_27, 3, x_49); -x_50 = lean_st_ref_set(x_12, x_27, x_29); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -lean_dec(x_50); -x_52 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__2(x_22, x_9, x_10, x_11, x_12, x_51); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_22); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); +uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_49 = lean_ctor_get(x_30, 0); +lean_inc(x_49); +lean_dec(x_30); +x_50 = l_Lean_PersistentArray_append___rarg(x_15, x_49); +lean_dec(x_49); +x_51 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); +lean_ctor_set(x_29, 3, x_51); +x_52 = lean_st_ref_set(x_12, x_29, x_31); +x_53 = lean_ctor_get(x_52, 1); lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_55 = x_52; +lean_dec(x_52); +x_54 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__2(x_22, x_9, x_10, x_11, x_12, x_53); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_22); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; } else { - lean_dec_ref(x_52); - x_55 = lean_box(0); + lean_dec_ref(x_54); + x_57 = lean_box(0); } -if (lean_is_scalar(x_55)) { - x_56 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_57)) { + x_58 = lean_alloc_ctor(0, 2, 0); } else { - x_56 = x_55; + x_58 = x_57; } -lean_ctor_set(x_56, 0, x_53); -lean_ctor_set(x_56, 1, x_54); -return x_56; +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_56); +return x_58; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_52, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_52, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_59 = x_52; +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_54, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_54, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_61 = x_54; } else { - lean_dec_ref(x_52); - x_59 = lean_box(0); + lean_dec_ref(x_54); + x_61 = lean_box(0); } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(1, 2, 0); } else { - x_60 = x_59; + x_62 = x_61; } -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_58); -return x_60; +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; } } } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_61 = lean_ctor_get(x_27, 0); -x_62 = lean_ctor_get(x_27, 1); -x_63 = lean_ctor_get(x_27, 2); -x_64 = lean_ctor_get(x_27, 4); -x_65 = lean_ctor_get(x_27, 5); -x_66 = lean_ctor_get(x_27, 6); -x_67 = lean_ctor_get(x_27, 7); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_63 = lean_ctor_get(x_29, 0); +x_64 = lean_ctor_get(x_29, 1); +x_65 = lean_ctor_get(x_29, 2); +x_66 = lean_ctor_get(x_29, 4); +x_67 = lean_ctor_get(x_29, 5); +x_68 = lean_ctor_get(x_29, 6); +x_69 = lean_ctor_get(x_29, 7); +lean_inc(x_69); +lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_27); -x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_69 = lean_ctor_get(x_28, 0); -lean_inc(x_69); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - x_70 = x_28; +lean_dec(x_29); +x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_71 = lean_ctor_get(x_30, 0); +lean_inc(x_71); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + x_72 = x_30; } else { - lean_dec_ref(x_28); - x_70 = lean_box(0); + lean_dec_ref(x_30); + x_72 = lean_box(0); } -x_71 = l_Lean_PersistentArray_append___rarg(x_15, x_69); -lean_dec(x_69); -if (lean_is_scalar(x_70)) { - x_72 = lean_alloc_ctor(0, 1, 8); +x_73 = l_Lean_PersistentArray_append___rarg(x_15, x_71); +lean_dec(x_71); +if (lean_is_scalar(x_72)) { + x_74 = lean_alloc_ctor(0, 1, 8); } else { - x_72 = x_70; + x_74 = x_72; } -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); -x_73 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_73, 0, x_61); -lean_ctor_set(x_73, 1, x_62); -lean_ctor_set(x_73, 2, x_63); -lean_ctor_set(x_73, 3, x_72); -lean_ctor_set(x_73, 4, x_64); -lean_ctor_set(x_73, 5, x_65); -lean_ctor_set(x_73, 6, x_66); -lean_ctor_set(x_73, 7, x_67); -x_74 = lean_st_ref_set(x_12, x_73, x_29); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_76 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__2(x_22, x_9, x_10, x_11, x_12, x_75); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); +x_75 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_64); +lean_ctor_set(x_75, 2, x_65); +lean_ctor_set(x_75, 3, x_74); +lean_ctor_set(x_75, 4, x_66); +lean_ctor_set(x_75, 5, x_67); +lean_ctor_set(x_75, 6, x_68); +lean_ctor_set(x_75, 7, x_69); +x_76 = lean_st_ref_set(x_12, x_75, x_31); +x_77 = lean_ctor_get(x_76, 1); +lean_inc(x_77); +lean_dec(x_76); +x_78 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__2(x_22, x_9, x_10, x_11, x_12, x_77); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_76) == 0) +if (lean_obj_tag(x_78) == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_76, 0); -lean_inc(x_77); -x_78 = lean_ctor_get(x_76, 1); -lean_inc(x_78); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_79 = x_76; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_81 = x_78; } else { - lean_dec_ref(x_76); - x_79 = lean_box(0); + lean_dec_ref(x_78); + x_81 = lean_box(0); } -if (lean_is_scalar(x_79)) { - x_80 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(0, 2, 0); } else { - x_80 = x_79; + x_82 = x_81; } -lean_ctor_set(x_80, 0, x_77); -lean_ctor_set(x_80, 1, x_78); -return x_80; +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_80); +return x_82; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_81 = lean_ctor_get(x_76, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_76, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_83 = x_76; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_83 = lean_ctor_get(x_78, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_78, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_85 = x_78; } else { - lean_dec_ref(x_76); - x_83 = lean_box(0); + lean_dec_ref(x_78); + x_85 = lean_box(0); } -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); } else { - x_84 = x_83; + x_86 = x_85; } -lean_ctor_set(x_84, 0, x_81); -lean_ctor_set(x_84, 1, x_82); -return x_84; +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; } } } else { -lean_object* x_85; double x_86; double x_87; lean_object* x_88; -x_85 = lean_box(0); -x_86 = lean_unbox_float(x_23); +lean_object* x_87; double x_88; double x_89; lean_object* x_90; +x_87 = lean_box(0); +x_88 = lean_unbox_float(x_23); lean_dec(x_23); -x_87 = lean_unbox_float(x_24); +x_89 = lean_unbox_float(x_24); lean_dec(x_24); -x_88 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_86, x_87, x_5, x_85, x_9, x_10, x_11, x_12, x_20); -return x_88; -} -} -else -{ -lean_object* x_89; double x_90; double x_91; lean_object* x_92; -x_89 = lean_box(0); -x_90 = lean_unbox_float(x_23); -lean_dec(x_23); -x_91 = lean_unbox_float(x_24); -lean_dec(x_24); -x_92 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_20); -return x_92; +x_90 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_20); +return x_90; } } } } else { -lean_object* x_207; lean_object* x_208; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_16); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_211; lean_object* x_212; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_16); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_207 = x_336; -x_208 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_211 = x_344; +x_212 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_207 = x_374; -x_208 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_282; uint8_t x_283; -x_209 = lean_ctor_get(x_207, 1); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 0); -lean_inc(x_210); -lean_dec(x_207); -x_211 = lean_ctor_get(x_209, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 1); -lean_inc(x_212); -lean_dec(x_209); -x_282 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_213 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_212); -x_286 = lean_unbox_float(x_211); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_213 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_211 = x_382; +x_212 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; uint8_t x_219; +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 0); +lean_inc(x_214); +lean_dec(x_211); +x_215 = lean_ctor_get(x_213, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 1); +lean_inc(x_216); +lean_dec(x_213); +x_217 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__2; +x_218 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_217); +if (x_218 == 0) { if (x_6 == 0) { -if (x_213 == 0) +uint8_t x_284; +x_284 = 0; +x_219 = x_284; +goto block_283; +} +else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; -lean_dec(x_212); -lean_dec(x_211); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_215); +lean_dec(x_215); +x_287 = lean_unbox_float(x_216); +lean_dec(x_216); +x_288 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_212); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_216); +x_290 = lean_unbox_float(x_215); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_219 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_215); +lean_dec(x_215); +x_300 = lean_unbox_float(x_216); +lean_dec(x_216); +x_301 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_212); +return x_301; +} +} +block_283: +{ +if (x_219 == 0) +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; +lean_dec(x_216); +lean_dec(x_215); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_214 = lean_st_ref_take(x_12, x_208); -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_215, 3); -lean_inc(x_216); -x_217 = lean_ctor_get(x_214, 1); -lean_inc(x_217); -lean_dec(x_214); -x_218 = !lean_is_exclusive(x_215); -if (x_218 == 0) +x_220 = lean_st_ref_take(x_12, x_212); +x_221 = lean_ctor_get(x_220, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_221, 3); +lean_inc(x_222); +x_223 = lean_ctor_get(x_220, 1); +lean_inc(x_223); +lean_dec(x_220); +x_224 = !lean_is_exclusive(x_221); +if (x_224 == 0) { -lean_object* x_219; uint8_t x_220; -x_219 = lean_ctor_get(x_215, 3); -lean_dec(x_219); -x_220 = !lean_is_exclusive(x_216); -if (x_220 == 0) -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_221 = lean_ctor_get(x_216, 0); -x_222 = l_Lean_PersistentArray_append___rarg(x_15, x_221); -lean_dec(x_221); -lean_ctor_set(x_216, 0, x_222); -x_223 = lean_st_ref_set(x_12, x_215, x_217); -x_224 = lean_ctor_get(x_223, 1); -lean_inc(x_224); -lean_dec(x_223); -x_225 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__2(x_210, x_9, x_10, x_11, x_12, x_224); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_225) == 0) -{ -uint8_t x_226; -x_226 = !lean_is_exclusive(x_225); +lean_object* x_225; uint8_t x_226; +x_225 = lean_ctor_get(x_221, 3); +lean_dec(x_225); +x_226 = !lean_is_exclusive(x_222); if (x_226 == 0) { -return x_225; -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; -x_227 = lean_ctor_get(x_225, 0); -x_228 = lean_ctor_get(x_225, 1); -lean_inc(x_228); -lean_inc(x_227); -lean_dec(x_225); -x_229 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_229, 0, x_227); -lean_ctor_set(x_229, 1, x_228); -return x_229; -} -} -else -{ -uint8_t x_230; -x_230 = !lean_is_exclusive(x_225); -if (x_230 == 0) -{ -return x_225; -} -else -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_225, 0); -x_232 = lean_ctor_get(x_225, 1); -lean_inc(x_232); -lean_inc(x_231); -lean_dec(x_225); -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_231); -lean_ctor_set(x_233, 1, x_232); -return x_233; -} -} -} -else -{ -uint64_t x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_234 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_235 = lean_ctor_get(x_216, 0); -lean_inc(x_235); -lean_dec(x_216); -x_236 = l_Lean_PersistentArray_append___rarg(x_15, x_235); -lean_dec(x_235); -x_237 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_237, 0, x_236); -lean_ctor_set_uint64(x_237, sizeof(void*)*1, x_234); -lean_ctor_set(x_215, 3, x_237); -x_238 = lean_st_ref_set(x_12, x_215, x_217); -x_239 = lean_ctor_get(x_238, 1); -lean_inc(x_239); -lean_dec(x_238); -x_240 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__2(x_210, x_9, x_10, x_11, x_12, x_239); +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_227 = lean_ctor_get(x_222, 0); +x_228 = l_Lean_PersistentArray_append___rarg(x_15, x_227); +lean_dec(x_227); +lean_ctor_set(x_222, 0, x_228); +x_229 = lean_st_ref_set(x_12, x_221, x_223); +x_230 = lean_ctor_get(x_229, 1); +lean_inc(x_230); +lean_dec(x_229); +x_231 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__2(x_214, x_9, x_10, x_11, x_12, x_230); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_240) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_231) == 0) { -lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; -x_241 = lean_ctor_get(x_240, 0); +uint8_t x_232; +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +return x_231; +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_231, 0); +x_234 = lean_ctor_get(x_231, 1); +lean_inc(x_234); +lean_inc(x_233); +lean_dec(x_231); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +return x_235; +} +} +else +{ +uint8_t x_236; +x_236 = !lean_is_exclusive(x_231); +if (x_236 == 0) +{ +return x_231; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_231, 0); +x_238 = lean_ctor_get(x_231, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_231); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} +} +} +else +{ +uint64_t x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_240 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_241 = lean_ctor_get(x_222, 0); lean_inc(x_241); -x_242 = lean_ctor_get(x_240, 1); -lean_inc(x_242); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_243 = x_240; -} else { - lean_dec_ref(x_240); - x_243 = lean_box(0); -} -if (lean_is_scalar(x_243)) { - x_244 = lean_alloc_ctor(0, 2, 0); -} else { - x_244 = x_243; -} -lean_ctor_set(x_244, 0, x_241); -lean_ctor_set(x_244, 1, x_242); -return x_244; -} -else -{ -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_245 = lean_ctor_get(x_240, 0); +lean_dec(x_222); +x_242 = l_Lean_PersistentArray_append___rarg(x_15, x_241); +lean_dec(x_241); +x_243 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set_uint64(x_243, sizeof(void*)*1, x_240); +lean_ctor_set(x_221, 3, x_243); +x_244 = lean_st_ref_set(x_12, x_221, x_223); +x_245 = lean_ctor_get(x_244, 1); lean_inc(x_245); -x_246 = lean_ctor_get(x_240, 1); -lean_inc(x_246); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_247 = x_240; -} else { - lean_dec_ref(x_240); - x_247 = lean_box(0); -} -if (lean_is_scalar(x_247)) { - x_248 = lean_alloc_ctor(1, 2, 0); -} else { - x_248 = x_247; -} -lean_ctor_set(x_248, 0, x_245); -lean_ctor_set(x_248, 1, x_246); -return x_248; -} -} -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_249 = lean_ctor_get(x_215, 0); -x_250 = lean_ctor_get(x_215, 1); -x_251 = lean_ctor_get(x_215, 2); -x_252 = lean_ctor_get(x_215, 4); -x_253 = lean_ctor_get(x_215, 5); -x_254 = lean_ctor_get(x_215, 6); -x_255 = lean_ctor_get(x_215, 7); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_dec(x_215); -x_256 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_257 = lean_ctor_get(x_216, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_216)) { - lean_ctor_release(x_216, 0); - x_258 = x_216; -} else { - lean_dec_ref(x_216); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_15, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_261, 0, x_249); -lean_ctor_set(x_261, 1, x_250); -lean_ctor_set(x_261, 2, x_251); -lean_ctor_set(x_261, 3, x_260); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_255); -x_262 = lean_st_ref_set(x_12, x_261, x_217); -x_263 = lean_ctor_get(x_262, 1); -lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__2(x_210, x_9, x_10, x_11, x_12, x_263); +lean_dec(x_244); +x_246 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__2(x_214, x_9, x_10, x_11, x_12, x_245); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_246) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_247 = lean_ctor_get(x_246, 0); +lean_inc(x_247); +x_248 = lean_ctor_get(x_246, 1); +lean_inc(x_248); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_249 = x_246; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_246); + x_249 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_249)) { + x_250 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_250 = x_249; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_250, 0, x_247); +lean_ctor_set(x_250, 1, x_248); +return x_250; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_251 = lean_ctor_get(x_246, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_246, 1); +lean_inc(x_252); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_253 = x_246; +} else { + lean_dec_ref(x_246); + x_253 = lean_box(0); +} +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(1, 2, 0); +} else { + x_254 = x_253; +} +lean_ctor_set(x_254, 0, x_251); +lean_ctor_set(x_254, 1, x_252); +return x_254; +} +} +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_255 = lean_ctor_get(x_221, 0); +x_256 = lean_ctor_get(x_221, 1); +x_257 = lean_ctor_get(x_221, 2); +x_258 = lean_ctor_get(x_221, 4); +x_259 = lean_ctor_get(x_221, 5); +x_260 = lean_ctor_get(x_221, 6); +x_261 = lean_ctor_get(x_221, 7); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_221); +x_262 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_263 = lean_ctor_get(x_222, 0); +lean_inc(x_263); +if (lean_is_exclusive(x_222)) { + lean_ctor_release(x_222, 0); + x_264 = x_222; +} else { + lean_dec_ref(x_222); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_15, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_267, 0, x_255); +lean_ctor_set(x_267, 1, x_256); +lean_ctor_set(x_267, 2, x_257); +lean_ctor_set(x_267, 3, x_266); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_261); +x_268 = lean_st_ref_set(x_12, x_267, x_223); +x_269 = lean_ctor_get(x_268, 1); lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__2(x_214, x_9, x_10, x_11, x_12, x_269); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_214); +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_272 = x_271; + x_274 = x_273; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; +} else { + lean_dec_ref(x_270); + x_277 = lean_box(0); +} +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); +} else { + x_278 = x_277; +} +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_211); -lean_dec(x_211); -x_275 = lean_unbox_float(x_212); -lean_dec(x_212); -x_276 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_274, x_275, x_5, x_273, x_9, x_10, x_11, x_12, x_208); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_211); -lean_dec(x_211); -x_279 = lean_unbox_float(x_212); -lean_dec(x_212); -x_280 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_278, x_279, x_5, x_277, x_9, x_10, x_11, x_12, x_208); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_215); +lean_dec(x_215); +x_281 = lean_unbox_float(x_216); +lean_dec(x_216); +x_282 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_212); +return x_282; } } } @@ -22536,43 +22527,41 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_8); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); lean_dec(x_8); x_19 = lean_unbox_float(x_9); lean_dec(x_9); -x_20 = lean_unbox_float(x_10); -lean_dec(x_10); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_18, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_15); -lean_dec(x_13); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__2(x_1, x_16, x_3, x_4, x_5, x_6, x_17, x_18, x_19, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_14); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_21; +return x_20; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_7); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); lean_dec(x_7); x_19 = lean_unbox_float(x_8); lean_dec(x_8); -x_20 = lean_unbox_float(x_9); -lean_dec(x_9); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__3(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_11); -lean_dec(x_6); -return x_21; +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__3(x_1, x_16, x_3, x_4, x_5, x_17, x_18, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +return x_20; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_bvUnsat___spec__1___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -24347,8 +24336,6 @@ lean_mark_persistent(l_Lean_Elab_Tactic_BVDecide_Frontend_explainCounterExampleQ l_Lean_Elab_Tactic_BVDecide_Frontend_explainCounterExampleQuality___closed__9 = _init_l_Lean_Elab_Tactic_BVDecide_Frontend_explainCounterExampleQuality___closed__9(); lean_mark_persistent(l_Lean_Elab_Tactic_BVDecide_Frontend_explainCounterExampleQuality___closed__9); l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___closed__1(); -l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___closed__2(); -lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__2___closed__2); l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3___closed__1); l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_lratBitblaster___spec__1___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/BVDecide/Frontend/LRAT.c b/stage0/stdlib/Lean/Elab/Tactic/BVDecide/Frontend/LRAT.c index aae72a9ab0..73cee6d384 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/BVDecide/Frontend/LRAT.c +++ b/stage0/stdlib/Lean/Elab/Tactic/BVDecide/Frontend/LRAT.c @@ -23,13 +23,12 @@ static lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend lean_object* l_Lean_Elab_Tactic_BVDecide_External_satQuery___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___lambda__1___closed__1; LEAN_EXPORT lean_object* l_IO_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__4(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___spec__3___closed__1; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___lambda__9___closed__1; lean_object* l_Lean_mkNatLit(lean_object*); -extern lean_object* l_Lean_profiler; static lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__3; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); @@ -56,9 +55,9 @@ static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_TacticContext_new___clo static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___rarg___lambda__5___closed__1; lean_object* l_Lean_Elab_Term_mkAuxName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___lambda__1___closed__19; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_TacticContext_new___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Core_wrapAsyncAsSnapshot___spec__3___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -116,18 +115,18 @@ LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_F static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___lambda__1___closed__23; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__4(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_TacticContext_new___closed__6; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___lambda__4___closed__2; uint8_t lean_string_dec_eq(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Exception_toMessageData(lean_object*); lean_object* l_System_FilePath_pathExists(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___lambda__6___closed__1; uint8_t lean_int_dec_le(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_TacticContext_new_determineSolver___rarg___closed__3; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___rarg___closed__11; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___lambda__1(lean_object*); @@ -140,11 +139,11 @@ static lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Ela static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___rarg___lambda__3___closed__3; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___lambda__1___closed__24; lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___rarg___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___spec__2___closed__9; lean_object* l_Lean_mkStrLit(lean_object*); static lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___spec__2___closed__11; @@ -167,7 +166,7 @@ lean_object* l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(le lean_object* l_Lean_addTrace___at_Lean_Elab_Term_traceAtCmdPos___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___lambda__1___closed__21; lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at_Lean_Meta_processPostponed___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -199,7 +198,7 @@ LEAN_EXPORT lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lea static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___closed__2; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___lambda__1___closed__39; lean_object* l_Lean_addMessageContextPartial___at_Lean_Core_instAddMessageContextCoreM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___lambda__7___closed__1; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___lambda__1___closed__4; @@ -218,7 +217,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___boxe static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___lambda__4___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___lambda__1___closed__17; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___spec__3___closed__24; static lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___spec__2___closed__8; @@ -229,8 +228,8 @@ static lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Ela LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___spec__3___closed__12; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(lean_object*, lean_object*); extern lean_object* l_Lean_trace_profiler_threshold; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___lambda__1___closed__9; @@ -248,7 +247,6 @@ LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_F LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_BVDecide_LRAT_trim_M_run___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___rarg___lambda__5___closed__2; -static lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___closed__2; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__4(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___rarg___closed__10; static lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___spec__3___closed__13; @@ -268,7 +266,7 @@ static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_TacticContext_new___clo double l_Float_ofScientific(lean_object*, uint8_t, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___lambda__1___closed__3; lean_object* l_Lean_Name_mkStr6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___lambda__1___closed__26; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___closed__5; static lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___spec__3___closed__9; @@ -277,7 +275,7 @@ static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_TacticContext_new___clo static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___lambda__7___closed__1; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_TacticContext_new_determineSolver___rarg___closed__5; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___closed__3; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___lambda__1___closed__5; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___lambda__6___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_TacticContext_new___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -298,13 +296,13 @@ static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_TacticContext_new___clo LEAN_EXPORT lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___spec__2___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_TacticContext_new(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static double l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEqRefl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_app_path(lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___rarg___lambda__3___closed__2; static lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___spec__2___closed__4; @@ -388,7 +386,7 @@ LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Fro LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___spec__3___closed__25; extern uint8_t l_System_Platform_isWindows; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Repr_0__Nat_reprFast(lean_object*); static lean_object* l___private_Lean_ToExpr_0__Lean_List_toExprAux___at_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___spec__2___closed__13; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___lambda__5___closed__1; @@ -2443,69 +2441,36 @@ x_3 = l_Float_ofScientific(x_1, x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___closed__2() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___closed__1; +x_15 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_15, 0, x_1); +lean_ctor_set(x_15, 1, x_3); +lean_ctor_set_float(x_15, sizeof(void*)*2, x_14); +lean_ctor_set_float(x_15, sizeof(void*)*2 + 8, x_14); +lean_ctor_set_uint8(x_15, sizeof(void*)*2 + 16, x_2); +x_16 = lean_box(0); +x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__1(x_4, x_5, x_10, x_6, x_15, x_16, x_11, x_12, x_13); +return x_17; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { -_start: +else { -double x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_15 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_16 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_16, 0, x_1); -lean_ctor_set(x_16, 1, x_3); -lean_ctor_set_float(x_16, sizeof(void*)*2, x_15); -lean_ctor_set_float(x_16, sizeof(void*)*2 + 8, x_15); -lean_ctor_set_uint8(x_16, sizeof(void*)*2 + 16, x_2); -x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___closed__2; -x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_17); -if (x_18 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_19; lean_object* x_20; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_3); +lean_ctor_set_float(x_18, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); x_19 = lean_box(0); -x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_16, x_19, x_12, x_13, x_14); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__1(x_4, x_5, x_10, x_6, x_18, x_19, x_11, x_12, x_13); return x_20; } -else -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; -lean_dec(x_16); -x_21 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_21, 0, x_1); -lean_ctor_set(x_21, 1, x_3); -lean_ctor_set_float(x_21, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_21, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_21, sizeof(void*)*2 + 16, x_2); -x_22 = lean_box(0); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_21, x_22, x_12, x_13, x_14); -return x_23; -} -} -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -lean_dec(x_16); -x_24 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_24, 0, x_1); -lean_ctor_set(x_24, 1, x_3); -lean_ctor_set_float(x_24, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_24, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_24, sizeof(void*)*2 + 16, x_2); -x_25 = lean_box(0); -x_26 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_24, x_25, x_12, x_13, x_14); -return x_26; -} } } static lean_object* _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3___closed__1() { @@ -2525,40 +2490,40 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_15; lean_object* x_16; -x_15 = lean_ctor_get(x_12, 5); -lean_inc(x_15); -lean_inc(x_13); +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_11, 5); +lean_inc(x_14); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_16 = lean_apply_4(x_10, x_5, x_12, x_13, x_14); -if (lean_obj_tag(x_16) == 0) +x_15 = lean_apply_4(x_9, x_5, x_11, x_12, x_13); +if (lean_obj_tag(x_15) == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_ctor_get(x_16, 0); +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); lean_inc(x_17); -x_18 = lean_ctor_get(x_16, 1); -lean_inc(x_18); -lean_dec(x_16); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_15, x_5, x_6, x_7, x_8, x_9, x_17, x_12, x_13, x_18); -lean_dec(x_13); +lean_dec(x_15); +x_18 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_14, x_5, x_6, x_7, x_8, x_16, x_11, x_12, x_17); +lean_dec(x_12); lean_dec(x_5); -return x_19; +return x_18; } else { -lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_20 = lean_ctor_get(x_16, 1); -lean_inc(x_20); -lean_dec(x_16); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3___closed__2; -x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_15, x_5, x_6, x_7, x_8, x_9, x_21, x_12, x_13, x_20); -lean_dec(x_13); +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_15, 1); +lean_inc(x_19); +lean_dec(x_15); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3___closed__2; +x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_14, x_5, x_6, x_7, x_8, x_20, x_11, x_12, x_19); +lean_dec(x_12); lean_dec(x_5); -return x_22; +return x_21; } } } @@ -2622,251 +2587,251 @@ x_15 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofF x_16 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_15); if (x_16 == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; -x_107 = lean_io_mono_nanos_now(x_14); -x_108 = lean_ctor_get(x_107, 0); -lean_inc(x_108); -x_109 = lean_ctor_get(x_107, 1); -lean_inc(x_109); -lean_dec(x_107); +lean_object* x_17; lean_object* x_18; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; +x_111 = lean_io_mono_nanos_now(x_14); +x_112 = lean_ctor_get(x_111, 0); +lean_inc(x_112); +x_113 = lean_ctor_get(x_111, 1); +lean_inc(x_113); +lean_dec(x_111); lean_inc(x_10); lean_inc(x_9); -x_110 = lean_apply_3(x_7, x_9, x_10, x_109); -if (lean_obj_tag(x_110) == 0) +x_114 = lean_apply_3(x_7, x_9, x_10, x_113); +if (lean_obj_tag(x_114) == 0) { -uint8_t x_111; -x_111 = !lean_is_exclusive(x_110); -if (x_111 == 0) +uint8_t x_115; +x_115 = !lean_is_exclusive(x_114); +if (x_115 == 0) { -lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; uint8_t x_116; -x_112 = lean_ctor_get(x_110, 0); -x_113 = lean_ctor_get(x_110, 1); -x_114 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_114, 0, x_112); -x_115 = lean_io_mono_nanos_now(x_113); -x_116 = !lean_is_exclusive(x_115); -if (x_116 == 0) +lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; uint8_t x_120; +x_116 = lean_ctor_get(x_114, 0); +x_117 = lean_ctor_get(x_114, 1); +x_118 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_118, 0, x_116); +x_119 = lean_io_mono_nanos_now(x_117); +x_120 = !lean_is_exclusive(x_119); +if (x_120 == 0) { -lean_object* x_117; lean_object* x_118; uint8_t x_119; lean_object* x_120; double x_121; double x_122; double x_123; double x_124; double x_125; lean_object* x_126; lean_object* x_127; -x_117 = lean_ctor_get(x_115, 0); -x_118 = lean_ctor_get(x_115, 1); -x_119 = 0; -x_120 = lean_unsigned_to_nat(0u); -x_121 = l_Float_ofScientific(x_108, x_119, x_120); -lean_dec(x_108); -x_122 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_123 = lean_float_div(x_121, x_122); -x_124 = l_Float_ofScientific(x_117, x_119, x_120); -lean_dec(x_117); -x_125 = lean_float_div(x_124, x_122); -x_126 = lean_box_float(x_123); -x_127 = lean_box_float(x_125); -lean_ctor_set(x_115, 1, x_127); -lean_ctor_set(x_115, 0, x_126); -lean_ctor_set(x_110, 1, x_115); -lean_ctor_set(x_110, 0, x_114); -x_17 = x_110; -x_18 = x_118; -goto block_106; +lean_object* x_121; lean_object* x_122; uint8_t x_123; lean_object* x_124; double x_125; double x_126; double x_127; double x_128; double x_129; lean_object* x_130; lean_object* x_131; +x_121 = lean_ctor_get(x_119, 0); +x_122 = lean_ctor_get(x_119, 1); +x_123 = 0; +x_124 = lean_unsigned_to_nat(0u); +x_125 = l_Float_ofScientific(x_112, x_123, x_124); +lean_dec(x_112); +x_126 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_127 = lean_float_div(x_125, x_126); +x_128 = l_Float_ofScientific(x_121, x_123, x_124); +lean_dec(x_121); +x_129 = lean_float_div(x_128, x_126); +x_130 = lean_box_float(x_127); +x_131 = lean_box_float(x_129); +lean_ctor_set(x_119, 1, x_131); +lean_ctor_set(x_119, 0, x_130); +lean_ctor_set(x_114, 1, x_119); +lean_ctor_set(x_114, 0, x_118); +x_17 = x_114; +x_18 = x_122; +goto block_110; } else { -lean_object* x_128; lean_object* x_129; uint8_t x_130; lean_object* x_131; double x_132; double x_133; double x_134; double x_135; double x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; -x_128 = lean_ctor_get(x_115, 0); -x_129 = lean_ctor_get(x_115, 1); -lean_inc(x_129); -lean_inc(x_128); -lean_dec(x_115); -x_130 = 0; -x_131 = lean_unsigned_to_nat(0u); -x_132 = l_Float_ofScientific(x_108, x_130, x_131); -lean_dec(x_108); -x_133 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_134 = lean_float_div(x_132, x_133); -x_135 = l_Float_ofScientific(x_128, x_130, x_131); -lean_dec(x_128); -x_136 = lean_float_div(x_135, x_133); -x_137 = lean_box_float(x_134); -x_138 = lean_box_float(x_136); -x_139 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_139, 0, x_137); -lean_ctor_set(x_139, 1, x_138); -lean_ctor_set(x_110, 1, x_139); -lean_ctor_set(x_110, 0, x_114); -x_17 = x_110; -x_18 = x_129; -goto block_106; +lean_object* x_132; lean_object* x_133; uint8_t x_134; lean_object* x_135; double x_136; double x_137; double x_138; double x_139; double x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; +x_132 = lean_ctor_get(x_119, 0); +x_133 = lean_ctor_get(x_119, 1); +lean_inc(x_133); +lean_inc(x_132); +lean_dec(x_119); +x_134 = 0; +x_135 = lean_unsigned_to_nat(0u); +x_136 = l_Float_ofScientific(x_112, x_134, x_135); +lean_dec(x_112); +x_137 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_138 = lean_float_div(x_136, x_137); +x_139 = l_Float_ofScientific(x_132, x_134, x_135); +lean_dec(x_132); +x_140 = lean_float_div(x_139, x_137); +x_141 = lean_box_float(x_138); +x_142 = lean_box_float(x_140); +x_143 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_143, 0, x_141); +lean_ctor_set(x_143, 1, x_142); +lean_ctor_set(x_114, 1, x_143); +lean_ctor_set(x_114, 0, x_118); +x_17 = x_114; +x_18 = x_133; +goto block_110; } } else { -lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; uint8_t x_147; lean_object* x_148; double x_149; double x_150; double x_151; double x_152; double x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; -x_140 = lean_ctor_get(x_110, 0); -x_141 = lean_ctor_get(x_110, 1); -lean_inc(x_141); -lean_inc(x_140); -lean_dec(x_110); -x_142 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_142, 0, x_140); -x_143 = lean_io_mono_nanos_now(x_141); -x_144 = lean_ctor_get(x_143, 0); -lean_inc(x_144); -x_145 = lean_ctor_get(x_143, 1); +lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; uint8_t x_151; lean_object* x_152; double x_153; double x_154; double x_155; double x_156; double x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; +x_144 = lean_ctor_get(x_114, 0); +x_145 = lean_ctor_get(x_114, 1); lean_inc(x_145); -if (lean_is_exclusive(x_143)) { - lean_ctor_release(x_143, 0); - lean_ctor_release(x_143, 1); - x_146 = x_143; +lean_inc(x_144); +lean_dec(x_114); +x_146 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_146, 0, x_144); +x_147 = lean_io_mono_nanos_now(x_145); +x_148 = lean_ctor_get(x_147, 0); +lean_inc(x_148); +x_149 = lean_ctor_get(x_147, 1); +lean_inc(x_149); +if (lean_is_exclusive(x_147)) { + lean_ctor_release(x_147, 0); + lean_ctor_release(x_147, 1); + x_150 = x_147; } else { - lean_dec_ref(x_143); - x_146 = lean_box(0); + lean_dec_ref(x_147); + x_150 = lean_box(0); } -x_147 = 0; -x_148 = lean_unsigned_to_nat(0u); -x_149 = l_Float_ofScientific(x_108, x_147, x_148); -lean_dec(x_108); -x_150 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_151 = lean_float_div(x_149, x_150); -x_152 = l_Float_ofScientific(x_144, x_147, x_148); -lean_dec(x_144); -x_153 = lean_float_div(x_152, x_150); -x_154 = lean_box_float(x_151); -x_155 = lean_box_float(x_153); -if (lean_is_scalar(x_146)) { - x_156 = lean_alloc_ctor(0, 2, 0); +x_151 = 0; +x_152 = lean_unsigned_to_nat(0u); +x_153 = l_Float_ofScientific(x_112, x_151, x_152); +lean_dec(x_112); +x_154 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_155 = lean_float_div(x_153, x_154); +x_156 = l_Float_ofScientific(x_148, x_151, x_152); +lean_dec(x_148); +x_157 = lean_float_div(x_156, x_154); +x_158 = lean_box_float(x_155); +x_159 = lean_box_float(x_157); +if (lean_is_scalar(x_150)) { + x_160 = lean_alloc_ctor(0, 2, 0); } else { - x_156 = x_146; + x_160 = x_150; } -lean_ctor_set(x_156, 0, x_154); -lean_ctor_set(x_156, 1, x_155); -x_157 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_157, 0, x_142); -lean_ctor_set(x_157, 1, x_156); -x_17 = x_157; -x_18 = x_145; -goto block_106; +lean_ctor_set(x_160, 0, x_158); +lean_ctor_set(x_160, 1, x_159); +x_161 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_161, 0, x_146); +lean_ctor_set(x_161, 1, x_160); +x_17 = x_161; +x_18 = x_149; +goto block_110; } } else { -uint8_t x_158; -x_158 = !lean_is_exclusive(x_110); -if (x_158 == 0) +uint8_t x_162; +x_162 = !lean_is_exclusive(x_114); +if (x_162 == 0) { -lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; uint8_t x_163; -x_159 = lean_ctor_get(x_110, 0); -x_160 = lean_ctor_get(x_110, 1); -x_161 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_161, 0, x_159); -x_162 = lean_io_mono_nanos_now(x_160); -x_163 = !lean_is_exclusive(x_162); -if (x_163 == 0) +lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; uint8_t x_167; +x_163 = lean_ctor_get(x_114, 0); +x_164 = lean_ctor_get(x_114, 1); +x_165 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_165, 0, x_163); +x_166 = lean_io_mono_nanos_now(x_164); +x_167 = !lean_is_exclusive(x_166); +if (x_167 == 0) { -lean_object* x_164; lean_object* x_165; uint8_t x_166; lean_object* x_167; double x_168; double x_169; double x_170; double x_171; double x_172; lean_object* x_173; lean_object* x_174; -x_164 = lean_ctor_get(x_162, 0); -x_165 = lean_ctor_get(x_162, 1); -x_166 = 0; -x_167 = lean_unsigned_to_nat(0u); -x_168 = l_Float_ofScientific(x_108, x_166, x_167); -lean_dec(x_108); -x_169 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_170 = lean_float_div(x_168, x_169); -x_171 = l_Float_ofScientific(x_164, x_166, x_167); -lean_dec(x_164); -x_172 = lean_float_div(x_171, x_169); -x_173 = lean_box_float(x_170); -x_174 = lean_box_float(x_172); -lean_ctor_set(x_162, 1, x_174); -lean_ctor_set(x_162, 0, x_173); -lean_ctor_set_tag(x_110, 0); -lean_ctor_set(x_110, 1, x_162); -lean_ctor_set(x_110, 0, x_161); -x_17 = x_110; -x_18 = x_165; -goto block_106; +lean_object* x_168; lean_object* x_169; uint8_t x_170; lean_object* x_171; double x_172; double x_173; double x_174; double x_175; double x_176; lean_object* x_177; lean_object* x_178; +x_168 = lean_ctor_get(x_166, 0); +x_169 = lean_ctor_get(x_166, 1); +x_170 = 0; +x_171 = lean_unsigned_to_nat(0u); +x_172 = l_Float_ofScientific(x_112, x_170, x_171); +lean_dec(x_112); +x_173 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_174 = lean_float_div(x_172, x_173); +x_175 = l_Float_ofScientific(x_168, x_170, x_171); +lean_dec(x_168); +x_176 = lean_float_div(x_175, x_173); +x_177 = lean_box_float(x_174); +x_178 = lean_box_float(x_176); +lean_ctor_set(x_166, 1, x_178); +lean_ctor_set(x_166, 0, x_177); +lean_ctor_set_tag(x_114, 0); +lean_ctor_set(x_114, 1, x_166); +lean_ctor_set(x_114, 0, x_165); +x_17 = x_114; +x_18 = x_169; +goto block_110; } else { -lean_object* x_175; lean_object* x_176; uint8_t x_177; lean_object* x_178; double x_179; double x_180; double x_181; double x_182; double x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; -x_175 = lean_ctor_get(x_162, 0); -x_176 = lean_ctor_get(x_162, 1); -lean_inc(x_176); -lean_inc(x_175); -lean_dec(x_162); -x_177 = 0; -x_178 = lean_unsigned_to_nat(0u); -x_179 = l_Float_ofScientific(x_108, x_177, x_178); -lean_dec(x_108); -x_180 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_181 = lean_float_div(x_179, x_180); -x_182 = l_Float_ofScientific(x_175, x_177, x_178); -lean_dec(x_175); -x_183 = lean_float_div(x_182, x_180); -x_184 = lean_box_float(x_181); -x_185 = lean_box_float(x_183); -x_186 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_186, 0, x_184); -lean_ctor_set(x_186, 1, x_185); -lean_ctor_set_tag(x_110, 0); -lean_ctor_set(x_110, 1, x_186); -lean_ctor_set(x_110, 0, x_161); -x_17 = x_110; -x_18 = x_176; -goto block_106; +lean_object* x_179; lean_object* x_180; uint8_t x_181; lean_object* x_182; double x_183; double x_184; double x_185; double x_186; double x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; +x_179 = lean_ctor_get(x_166, 0); +x_180 = lean_ctor_get(x_166, 1); +lean_inc(x_180); +lean_inc(x_179); +lean_dec(x_166); +x_181 = 0; +x_182 = lean_unsigned_to_nat(0u); +x_183 = l_Float_ofScientific(x_112, x_181, x_182); +lean_dec(x_112); +x_184 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_185 = lean_float_div(x_183, x_184); +x_186 = l_Float_ofScientific(x_179, x_181, x_182); +lean_dec(x_179); +x_187 = lean_float_div(x_186, x_184); +x_188 = lean_box_float(x_185); +x_189 = lean_box_float(x_187); +x_190 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_190, 0, x_188); +lean_ctor_set(x_190, 1, x_189); +lean_ctor_set_tag(x_114, 0); +lean_ctor_set(x_114, 1, x_190); +lean_ctor_set(x_114, 0, x_165); +x_17 = x_114; +x_18 = x_180; +goto block_110; } } else { -lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; uint8_t x_194; lean_object* x_195; double x_196; double x_197; double x_198; double x_199; double x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; -x_187 = lean_ctor_get(x_110, 0); -x_188 = lean_ctor_get(x_110, 1); -lean_inc(x_188); -lean_inc(x_187); -lean_dec(x_110); -x_189 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_189, 0, x_187); -x_190 = lean_io_mono_nanos_now(x_188); -x_191 = lean_ctor_get(x_190, 0); -lean_inc(x_191); -x_192 = lean_ctor_get(x_190, 1); +lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; uint8_t x_198; lean_object* x_199; double x_200; double x_201; double x_202; double x_203; double x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; +x_191 = lean_ctor_get(x_114, 0); +x_192 = lean_ctor_get(x_114, 1); lean_inc(x_192); -if (lean_is_exclusive(x_190)) { - lean_ctor_release(x_190, 0); - lean_ctor_release(x_190, 1); - x_193 = x_190; +lean_inc(x_191); +lean_dec(x_114); +x_193 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_193, 0, x_191); +x_194 = lean_io_mono_nanos_now(x_192); +x_195 = lean_ctor_get(x_194, 0); +lean_inc(x_195); +x_196 = lean_ctor_get(x_194, 1); +lean_inc(x_196); +if (lean_is_exclusive(x_194)) { + lean_ctor_release(x_194, 0); + lean_ctor_release(x_194, 1); + x_197 = x_194; } else { - lean_dec_ref(x_190); - x_193 = lean_box(0); + lean_dec_ref(x_194); + x_197 = lean_box(0); } -x_194 = 0; -x_195 = lean_unsigned_to_nat(0u); -x_196 = l_Float_ofScientific(x_108, x_194, x_195); -lean_dec(x_108); -x_197 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_198 = lean_float_div(x_196, x_197); -x_199 = l_Float_ofScientific(x_191, x_194, x_195); -lean_dec(x_191); -x_200 = lean_float_div(x_199, x_197); -x_201 = lean_box_float(x_198); -x_202 = lean_box_float(x_200); -if (lean_is_scalar(x_193)) { - x_203 = lean_alloc_ctor(0, 2, 0); +x_198 = 0; +x_199 = lean_unsigned_to_nat(0u); +x_200 = l_Float_ofScientific(x_112, x_198, x_199); +lean_dec(x_112); +x_201 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_202 = lean_float_div(x_200, x_201); +x_203 = l_Float_ofScientific(x_195, x_198, x_199); +lean_dec(x_195); +x_204 = lean_float_div(x_203, x_201); +x_205 = lean_box_float(x_202); +x_206 = lean_box_float(x_204); +if (lean_is_scalar(x_197)) { + x_207 = lean_alloc_ctor(0, 2, 0); } else { - x_203 = x_193; + x_207 = x_197; } -lean_ctor_set(x_203, 0, x_201); -lean_ctor_set(x_203, 1, x_202); -x_204 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_204, 0, x_189); -lean_ctor_set(x_204, 1, x_203); -x_17 = x_204; -x_18 = x_192; -goto block_106; +lean_ctor_set(x_207, 0, x_205); +lean_ctor_set(x_207, 1, x_206); +x_208 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_208, 0, x_193); +lean_ctor_set(x_208, 1, x_207); +x_17 = x_208; +x_18 = x_196; +goto block_110; } } -block_106: +block_110: { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_92; uint8_t x_93; +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; uint8_t x_25; x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); x_20 = lean_ctor_get(x_17, 0); @@ -2877,17 +2842,33 @@ lean_inc(x_21); x_22 = lean_ctor_get(x_19, 1); lean_inc(x_22); lean_dec(x_19); -x_92 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__2; -x_93 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_92); -if (x_93 == 0) +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__2; +x_24 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_23); +if (x_24 == 0) { -uint8_t x_94; -x_94 = 0; -x_23 = x_94; -goto block_91; +if (x_6 == 0) +{ +uint8_t x_90; +x_90 = 0; +x_25 = x_90; +goto block_89; } else { +lean_object* x_91; double x_92; double x_93; lean_object* x_94; +x_91 = lean_box(0); +x_92 = lean_unbox_float(x_21); +lean_dec(x_21); +x_93 = lean_unbox_float(x_22); +lean_dec(x_22); +x_94 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_92, x_93, x_5, x_91, x_9, x_10, x_18); +return x_94; +} +} +else +{ +if (x_6 == 0) +{ double x_95; double x_96; double x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; lean_object* x_101; double x_102; double x_103; double x_104; uint8_t x_105; x_95 = lean_unbox_float(x_22); x_96 = lean_unbox_float(x_21); @@ -2901,845 +2882,857 @@ lean_dec(x_99); x_103 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__4; x_104 = lean_float_div(x_102, x_103); x_105 = lean_float_decLt(x_104, x_97); -x_23 = x_105; -goto block_91; +x_25 = x_105; +goto block_89; } -block_91: +else { -if (x_6 == 0) +lean_object* x_106; double x_107; double x_108; lean_object* x_109; +x_106 = lean_box(0); +x_107 = lean_unbox_float(x_21); +lean_dec(x_21); +x_108 = lean_unbox_float(x_22); +lean_dec(x_22); +x_109 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_107, x_108, x_5, x_106, x_9, x_10, x_18); +return x_109; +} +} +block_89: { -if (x_23 == 0) +if (x_25 == 0) { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_dec(x_22); lean_dec(x_21); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_24 = lean_st_ref_take(x_10, x_18); -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -x_26 = lean_ctor_get(x_25, 3); -lean_inc(x_26); -x_27 = lean_ctor_get(x_24, 1); +x_26 = lean_st_ref_take(x_10, x_18); +x_27 = lean_ctor_get(x_26, 0); lean_inc(x_27); -lean_dec(x_24); -x_28 = !lean_is_exclusive(x_25); -if (x_28 == 0) -{ -lean_object* x_29; uint8_t x_30; -x_29 = lean_ctor_get(x_25, 3); -lean_dec(x_29); -x_30 = !lean_is_exclusive(x_26); +x_28 = lean_ctor_get(x_27, 3); +lean_inc(x_28); +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); +lean_dec(x_26); +x_30 = !lean_is_exclusive(x_27); if (x_30 == 0) { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_31 = lean_ctor_get(x_26, 0); -x_32 = l_Lean_PersistentArray_append___rarg(x_13, x_31); +lean_object* x_31; uint8_t x_32; +x_31 = lean_ctor_get(x_27, 3); lean_dec(x_31); -lean_ctor_set(x_26, 0, x_32); -x_33 = lean_st_ref_set(x_10, x_25, x_27); -x_34 = lean_ctor_get(x_33, 1); -lean_inc(x_34); +x_32 = !lean_is_exclusive(x_28); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_33 = lean_ctor_get(x_28, 0); +x_34 = l_Lean_PersistentArray_append___rarg(x_13, x_33); lean_dec(x_33); -x_35 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__3(x_20, x_9, x_10, x_34); +lean_ctor_set(x_28, 0, x_34); +x_35 = lean_st_ref_set(x_10, x_27, x_29); +x_36 = lean_ctor_get(x_35, 1); +lean_inc(x_36); +lean_dec(x_35); +x_37 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__3(x_20, x_9, x_10, x_36); lean_dec(x_10); lean_dec(x_9); lean_dec(x_20); -if (lean_obj_tag(x_35) == 0) +if (lean_obj_tag(x_37) == 0) { -uint8_t x_36; -x_36 = !lean_is_exclusive(x_35); -if (x_36 == 0) +uint8_t x_38; +x_38 = !lean_is_exclusive(x_37); +if (x_38 == 0) { -return x_35; +return x_37; } else { -lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_37 = lean_ctor_get(x_35, 0); -x_38 = lean_ctor_get(x_35, 1); -lean_inc(x_38); -lean_inc(x_37); -lean_dec(x_35); -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_37); -lean_ctor_set(x_39, 1, x_38); -return x_39; +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_37, 0); +x_40 = lean_ctor_get(x_37, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_37); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +return x_41; } } else { -uint8_t x_40; -x_40 = !lean_is_exclusive(x_35); -if (x_40 == 0) +uint8_t x_42; +x_42 = !lean_is_exclusive(x_37); +if (x_42 == 0) { -return x_35; +return x_37; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_35, 0); -x_42 = lean_ctor_get(x_35, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_35); -x_43 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_42); -return x_43; +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_37, 0); +x_44 = lean_ctor_get(x_37, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_37); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; } } } else { -uint64_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_44 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); -x_45 = lean_ctor_get(x_26, 0); -lean_inc(x_45); -lean_dec(x_26); -x_46 = l_Lean_PersistentArray_append___rarg(x_13, x_45); -lean_dec(x_45); -x_47 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_47, 0, x_46); -lean_ctor_set_uint64(x_47, sizeof(void*)*1, x_44); -lean_ctor_set(x_25, 3, x_47); -x_48 = lean_st_ref_set(x_10, x_25, x_27); -x_49 = lean_ctor_get(x_48, 1); -lean_inc(x_49); -lean_dec(x_48); -x_50 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__3(x_20, x_9, x_10, x_49); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_20); -if (lean_obj_tag(x_50) == 0) -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_51 = lean_ctor_get(x_50, 0); +uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); +x_47 = lean_ctor_get(x_28, 0); +lean_inc(x_47); +lean_dec(x_28); +x_48 = l_Lean_PersistentArray_append___rarg(x_13, x_47); +lean_dec(x_47); +x_49 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); +lean_ctor_set(x_27, 3, x_49); +x_50 = lean_st_ref_set(x_10, x_27, x_29); +x_51 = lean_ctor_get(x_50, 1); lean_inc(x_51); -x_52 = lean_ctor_get(x_50, 1); -lean_inc(x_52); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_53 = x_50; +lean_dec(x_50); +x_52 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__3(x_20, x_9, x_10, x_51); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_20); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_52, 1); +lean_inc(x_54); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_55 = x_52; } else { - lean_dec_ref(x_50); - x_53 = lean_box(0); + lean_dec_ref(x_52); + x_55 = lean_box(0); } -if (lean_is_scalar(x_53)) { - x_54 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_55)) { + x_56 = lean_alloc_ctor(0, 2, 0); } else { - x_54 = x_53; + x_56 = x_55; } -lean_ctor_set(x_54, 0, x_51); -lean_ctor_set(x_54, 1, x_52); -return x_54; +lean_ctor_set(x_56, 0, x_53); +lean_ctor_set(x_56, 1, x_54); +return x_56; } else { -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_55 = lean_ctor_get(x_50, 0); -lean_inc(x_55); -x_56 = lean_ctor_get(x_50, 1); -lean_inc(x_56); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_57 = x_50; +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_57 = lean_ctor_get(x_52, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_52, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_59 = x_52; } else { - lean_dec_ref(x_50); - x_57 = lean_box(0); + lean_dec_ref(x_52); + x_59 = lean_box(0); } -if (lean_is_scalar(x_57)) { - x_58 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(1, 2, 0); } else { - x_58 = x_57; + x_60 = x_59; } -lean_ctor_set(x_58, 0, x_55); -lean_ctor_set(x_58, 1, x_56); -return x_58; +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_58); +return x_60; } } } else { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint64_t x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_59 = lean_ctor_get(x_25, 0); -x_60 = lean_ctor_get(x_25, 1); -x_61 = lean_ctor_get(x_25, 2); -x_62 = lean_ctor_get(x_25, 4); -x_63 = lean_ctor_get(x_25, 5); -x_64 = lean_ctor_get(x_25, 6); -x_65 = lean_ctor_get(x_25, 7); +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_61 = lean_ctor_get(x_27, 0); +x_62 = lean_ctor_get(x_27, 1); +x_63 = lean_ctor_get(x_27, 2); +x_64 = lean_ctor_get(x_27, 4); +x_65 = lean_ctor_get(x_27, 5); +x_66 = lean_ctor_get(x_27, 6); +x_67 = lean_ctor_get(x_27, 7); +lean_inc(x_67); +lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); lean_inc(x_62); lean_inc(x_61); -lean_inc(x_60); -lean_inc(x_59); -lean_dec(x_25); -x_66 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); -x_67 = lean_ctor_get(x_26, 0); -lean_inc(x_67); -if (lean_is_exclusive(x_26)) { - lean_ctor_release(x_26, 0); - x_68 = x_26; +lean_dec(x_27); +x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); +x_69 = lean_ctor_get(x_28, 0); +lean_inc(x_69); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + x_70 = x_28; } else { - lean_dec_ref(x_26); - x_68 = lean_box(0); + lean_dec_ref(x_28); + x_70 = lean_box(0); } -x_69 = l_Lean_PersistentArray_append___rarg(x_13, x_67); -lean_dec(x_67); -if (lean_is_scalar(x_68)) { - x_70 = lean_alloc_ctor(0, 1, 8); +x_71 = l_Lean_PersistentArray_append___rarg(x_13, x_69); +lean_dec(x_69); +if (lean_is_scalar(x_70)) { + x_72 = lean_alloc_ctor(0, 1, 8); } else { - x_70 = x_68; + x_72 = x_70; } -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set_uint64(x_70, sizeof(void*)*1, x_66); -x_71 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_71, 0, x_59); -lean_ctor_set(x_71, 1, x_60); -lean_ctor_set(x_71, 2, x_61); -lean_ctor_set(x_71, 3, x_70); -lean_ctor_set(x_71, 4, x_62); -lean_ctor_set(x_71, 5, x_63); -lean_ctor_set(x_71, 6, x_64); -lean_ctor_set(x_71, 7, x_65); -x_72 = lean_st_ref_set(x_10, x_71, x_27); -x_73 = lean_ctor_get(x_72, 1); -lean_inc(x_73); -lean_dec(x_72); -x_74 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__3(x_20, x_9, x_10, x_73); +lean_ctor_set(x_72, 0, x_71); +lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); +x_73 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_73, 0, x_61); +lean_ctor_set(x_73, 1, x_62); +lean_ctor_set(x_73, 2, x_63); +lean_ctor_set(x_73, 3, x_72); +lean_ctor_set(x_73, 4, x_64); +lean_ctor_set(x_73, 5, x_65); +lean_ctor_set(x_73, 6, x_66); +lean_ctor_set(x_73, 7, x_67); +x_74 = lean_st_ref_set(x_10, x_73, x_29); +x_75 = lean_ctor_get(x_74, 1); +lean_inc(x_75); +lean_dec(x_74); +x_76 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__3(x_20, x_9, x_10, x_75); lean_dec(x_10); lean_dec(x_9); lean_dec(x_20); -if (lean_obj_tag(x_74) == 0) +if (lean_obj_tag(x_76) == 0) { -lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_75 = lean_ctor_get(x_74, 0); -lean_inc(x_75); -x_76 = lean_ctor_get(x_74, 1); -lean_inc(x_76); -if (lean_is_exclusive(x_74)) { - lean_ctor_release(x_74, 0); - lean_ctor_release(x_74, 1); - x_77 = x_74; +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_77 = lean_ctor_get(x_76, 0); +lean_inc(x_77); +x_78 = lean_ctor_get(x_76, 1); +lean_inc(x_78); +if (lean_is_exclusive(x_76)) { + lean_ctor_release(x_76, 0); + lean_ctor_release(x_76, 1); + x_79 = x_76; } else { - lean_dec_ref(x_74); - x_77 = lean_box(0); + lean_dec_ref(x_76); + x_79 = lean_box(0); } -if (lean_is_scalar(x_77)) { - x_78 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_79)) { + x_80 = lean_alloc_ctor(0, 2, 0); } else { - x_78 = x_77; + x_80 = x_79; } -lean_ctor_set(x_78, 0, x_75); -lean_ctor_set(x_78, 1, x_76); -return x_78; +lean_ctor_set(x_80, 0, x_77); +lean_ctor_set(x_80, 1, x_78); +return x_80; } else { -lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_79 = lean_ctor_get(x_74, 0); -lean_inc(x_79); -x_80 = lean_ctor_get(x_74, 1); -lean_inc(x_80); -if (lean_is_exclusive(x_74)) { - lean_ctor_release(x_74, 0); - lean_ctor_release(x_74, 1); - x_81 = x_74; +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_81 = lean_ctor_get(x_76, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_76, 1); +lean_inc(x_82); +if (lean_is_exclusive(x_76)) { + lean_ctor_release(x_76, 0); + lean_ctor_release(x_76, 1); + x_83 = x_76; } else { - lean_dec_ref(x_74); - x_81 = lean_box(0); + lean_dec_ref(x_76); + x_83 = lean_box(0); } -if (lean_is_scalar(x_81)) { - x_82 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_83)) { + x_84 = lean_alloc_ctor(1, 2, 0); } else { - x_82 = x_81; + x_84 = x_83; } -lean_ctor_set(x_82, 0, x_79); -lean_ctor_set(x_82, 1, x_80); -return x_82; +lean_ctor_set(x_84, 0, x_81); +lean_ctor_set(x_84, 1, x_82); +return x_84; } } } else { -lean_object* x_83; double x_84; double x_85; lean_object* x_86; -x_83 = lean_box(0); -x_84 = lean_unbox_float(x_21); +lean_object* x_85; double x_86; double x_87; lean_object* x_88; +x_85 = lean_box(0); +x_86 = lean_unbox_float(x_21); lean_dec(x_21); -x_85 = lean_unbox_float(x_22); +x_87 = lean_unbox_float(x_22); lean_dec(x_22); -x_86 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3(x_2, x_3, x_4, x_13, x_20, x_1, x_23, x_84, x_85, x_5, x_83, x_9, x_10, x_18); -return x_86; -} -} -else -{ -lean_object* x_87; double x_88; double x_89; lean_object* x_90; -x_87 = lean_box(0); -x_88 = lean_unbox_float(x_21); -lean_dec(x_21); -x_89 = lean_unbox_float(x_22); -lean_dec(x_22); -x_90 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3(x_2, x_3, x_4, x_13, x_20, x_1, x_23, x_88, x_89, x_5, x_87, x_9, x_10, x_18); -return x_90; +x_88 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_86, x_87, x_5, x_85, x_9, x_10, x_18); +return x_88; } } } } else { -lean_object* x_205; lean_object* x_206; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; -x_293 = lean_io_get_num_heartbeats(x_14); -x_294 = lean_ctor_get(x_293, 0); -lean_inc(x_294); -x_295 = lean_ctor_get(x_293, 1); -lean_inc(x_295); -lean_dec(x_293); +lean_object* x_209; lean_object* x_210; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; +x_301 = lean_io_get_num_heartbeats(x_14); +x_302 = lean_ctor_get(x_301, 0); +lean_inc(x_302); +x_303 = lean_ctor_get(x_301, 1); +lean_inc(x_303); +lean_dec(x_301); lean_inc(x_10); lean_inc(x_9); -x_296 = lean_apply_3(x_7, x_9, x_10, x_295); -if (lean_obj_tag(x_296) == 0) +x_304 = lean_apply_3(x_7, x_9, x_10, x_303); +if (lean_obj_tag(x_304) == 0) { -uint8_t x_297; -x_297 = !lean_is_exclusive(x_296); -if (x_297 == 0) +uint8_t x_305; +x_305 = !lean_is_exclusive(x_304); +if (x_305 == 0) { -lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; uint8_t x_302; -x_298 = lean_ctor_get(x_296, 0); -x_299 = lean_ctor_get(x_296, 1); -x_300 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_300, 0, x_298); -x_301 = lean_io_get_num_heartbeats(x_299); -x_302 = !lean_is_exclusive(x_301); -if (x_302 == 0) +lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; uint8_t x_310; +x_306 = lean_ctor_get(x_304, 0); +x_307 = lean_ctor_get(x_304, 1); +x_308 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_308, 0, x_306); +x_309 = lean_io_get_num_heartbeats(x_307); +x_310 = !lean_is_exclusive(x_309); +if (x_310 == 0) { -lean_object* x_303; lean_object* x_304; uint8_t x_305; lean_object* x_306; double x_307; double x_308; lean_object* x_309; lean_object* x_310; -x_303 = lean_ctor_get(x_301, 0); -x_304 = lean_ctor_get(x_301, 1); -x_305 = 0; -x_306 = lean_unsigned_to_nat(0u); -x_307 = l_Float_ofScientific(x_294, x_305, x_306); -lean_dec(x_294); -x_308 = l_Float_ofScientific(x_303, x_305, x_306); -lean_dec(x_303); -x_309 = lean_box_float(x_307); -x_310 = lean_box_float(x_308); -lean_ctor_set(x_301, 1, x_310); -lean_ctor_set(x_301, 0, x_309); -lean_ctor_set(x_296, 1, x_301); -lean_ctor_set(x_296, 0, x_300); -x_205 = x_296; -x_206 = x_304; -goto block_292; -} -else -{ -lean_object* x_311; lean_object* x_312; uint8_t x_313; lean_object* x_314; double x_315; double x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; -x_311 = lean_ctor_get(x_301, 0); -x_312 = lean_ctor_get(x_301, 1); -lean_inc(x_312); -lean_inc(x_311); -lean_dec(x_301); +lean_object* x_311; lean_object* x_312; uint8_t x_313; lean_object* x_314; double x_315; double x_316; lean_object* x_317; lean_object* x_318; +x_311 = lean_ctor_get(x_309, 0); +x_312 = lean_ctor_get(x_309, 1); x_313 = 0; x_314 = lean_unsigned_to_nat(0u); -x_315 = l_Float_ofScientific(x_294, x_313, x_314); -lean_dec(x_294); +x_315 = l_Float_ofScientific(x_302, x_313, x_314); +lean_dec(x_302); x_316 = l_Float_ofScientific(x_311, x_313, x_314); lean_dec(x_311); x_317 = lean_box_float(x_315); x_318 = lean_box_float(x_316); -x_319 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_319, 0, x_317); -lean_ctor_set(x_319, 1, x_318); -lean_ctor_set(x_296, 1, x_319); -lean_ctor_set(x_296, 0, x_300); -x_205 = x_296; -x_206 = x_312; -goto block_292; -} +lean_ctor_set(x_309, 1, x_318); +lean_ctor_set(x_309, 0, x_317); +lean_ctor_set(x_304, 1, x_309); +lean_ctor_set(x_304, 0, x_308); +x_209 = x_304; +x_210 = x_312; +goto block_300; } else { -lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; uint8_t x_327; lean_object* x_328; double x_329; double x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; -x_320 = lean_ctor_get(x_296, 0); -x_321 = lean_ctor_get(x_296, 1); -lean_inc(x_321); +lean_object* x_319; lean_object* x_320; uint8_t x_321; lean_object* x_322; double x_323; double x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; +x_319 = lean_ctor_get(x_309, 0); +x_320 = lean_ctor_get(x_309, 1); lean_inc(x_320); -lean_dec(x_296); -x_322 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_322, 0, x_320); -x_323 = lean_io_get_num_heartbeats(x_321); -x_324 = lean_ctor_get(x_323, 0); -lean_inc(x_324); -x_325 = lean_ctor_get(x_323, 1); -lean_inc(x_325); -if (lean_is_exclusive(x_323)) { - lean_ctor_release(x_323, 0); - lean_ctor_release(x_323, 1); - x_326 = x_323; -} else { - lean_dec_ref(x_323); - x_326 = lean_box(0); -} -x_327 = 0; -x_328 = lean_unsigned_to_nat(0u); -x_329 = l_Float_ofScientific(x_294, x_327, x_328); -lean_dec(x_294); -x_330 = l_Float_ofScientific(x_324, x_327, x_328); -lean_dec(x_324); -x_331 = lean_box_float(x_329); -x_332 = lean_box_float(x_330); -if (lean_is_scalar(x_326)) { - x_333 = lean_alloc_ctor(0, 2, 0); -} else { - x_333 = x_326; -} -lean_ctor_set(x_333, 0, x_331); -lean_ctor_set(x_333, 1, x_332); -x_334 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_334, 0, x_322); -lean_ctor_set(x_334, 1, x_333); -x_205 = x_334; -x_206 = x_325; -goto block_292; +lean_inc(x_319); +lean_dec(x_309); +x_321 = 0; +x_322 = lean_unsigned_to_nat(0u); +x_323 = l_Float_ofScientific(x_302, x_321, x_322); +lean_dec(x_302); +x_324 = l_Float_ofScientific(x_319, x_321, x_322); +lean_dec(x_319); +x_325 = lean_box_float(x_323); +x_326 = lean_box_float(x_324); +x_327 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_327, 0, x_325); +lean_ctor_set(x_327, 1, x_326); +lean_ctor_set(x_304, 1, x_327); +lean_ctor_set(x_304, 0, x_308); +x_209 = x_304; +x_210 = x_320; +goto block_300; } } else { -uint8_t x_335; -x_335 = !lean_is_exclusive(x_296); -if (x_335 == 0) -{ -lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; uint8_t x_340; -x_336 = lean_ctor_get(x_296, 0); -x_337 = lean_ctor_get(x_296, 1); -x_338 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_338, 0, x_336); -x_339 = lean_io_get_num_heartbeats(x_337); -x_340 = !lean_is_exclusive(x_339); -if (x_340 == 0) -{ -lean_object* x_341; lean_object* x_342; uint8_t x_343; lean_object* x_344; double x_345; double x_346; lean_object* x_347; lean_object* x_348; -x_341 = lean_ctor_get(x_339, 0); -x_342 = lean_ctor_get(x_339, 1); -x_343 = 0; -x_344 = lean_unsigned_to_nat(0u); -x_345 = l_Float_ofScientific(x_294, x_343, x_344); -lean_dec(x_294); -x_346 = l_Float_ofScientific(x_341, x_343, x_344); -lean_dec(x_341); -x_347 = lean_box_float(x_345); -x_348 = lean_box_float(x_346); -lean_ctor_set(x_339, 1, x_348); -lean_ctor_set(x_339, 0, x_347); -lean_ctor_set_tag(x_296, 0); -lean_ctor_set(x_296, 1, x_339); -lean_ctor_set(x_296, 0, x_338); -x_205 = x_296; -x_206 = x_342; -goto block_292; +lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; uint8_t x_335; lean_object* x_336; double x_337; double x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; +x_328 = lean_ctor_get(x_304, 0); +x_329 = lean_ctor_get(x_304, 1); +lean_inc(x_329); +lean_inc(x_328); +lean_dec(x_304); +x_330 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_330, 0, x_328); +x_331 = lean_io_get_num_heartbeats(x_329); +x_332 = lean_ctor_get(x_331, 0); +lean_inc(x_332); +x_333 = lean_ctor_get(x_331, 1); +lean_inc(x_333); +if (lean_is_exclusive(x_331)) { + lean_ctor_release(x_331, 0); + lean_ctor_release(x_331, 1); + x_334 = x_331; +} else { + lean_dec_ref(x_331); + x_334 = lean_box(0); +} +x_335 = 0; +x_336 = lean_unsigned_to_nat(0u); +x_337 = l_Float_ofScientific(x_302, x_335, x_336); +lean_dec(x_302); +x_338 = l_Float_ofScientific(x_332, x_335, x_336); +lean_dec(x_332); +x_339 = lean_box_float(x_337); +x_340 = lean_box_float(x_338); +if (lean_is_scalar(x_334)) { + x_341 = lean_alloc_ctor(0, 2, 0); +} else { + x_341 = x_334; +} +lean_ctor_set(x_341, 0, x_339); +lean_ctor_set(x_341, 1, x_340); +x_342 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_342, 0, x_330); +lean_ctor_set(x_342, 1, x_341); +x_209 = x_342; +x_210 = x_333; +goto block_300; +} } else { -lean_object* x_349; lean_object* x_350; uint8_t x_351; lean_object* x_352; double x_353; double x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; -x_349 = lean_ctor_get(x_339, 0); -x_350 = lean_ctor_get(x_339, 1); -lean_inc(x_350); -lean_inc(x_349); -lean_dec(x_339); +uint8_t x_343; +x_343 = !lean_is_exclusive(x_304); +if (x_343 == 0) +{ +lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; uint8_t x_348; +x_344 = lean_ctor_get(x_304, 0); +x_345 = lean_ctor_get(x_304, 1); +x_346 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_346, 0, x_344); +x_347 = lean_io_get_num_heartbeats(x_345); +x_348 = !lean_is_exclusive(x_347); +if (x_348 == 0) +{ +lean_object* x_349; lean_object* x_350; uint8_t x_351; lean_object* x_352; double x_353; double x_354; lean_object* x_355; lean_object* x_356; +x_349 = lean_ctor_get(x_347, 0); +x_350 = lean_ctor_get(x_347, 1); x_351 = 0; x_352 = lean_unsigned_to_nat(0u); -x_353 = l_Float_ofScientific(x_294, x_351, x_352); -lean_dec(x_294); +x_353 = l_Float_ofScientific(x_302, x_351, x_352); +lean_dec(x_302); x_354 = l_Float_ofScientific(x_349, x_351, x_352); lean_dec(x_349); x_355 = lean_box_float(x_353); x_356 = lean_box_float(x_354); -x_357 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_357, 0, x_355); -lean_ctor_set(x_357, 1, x_356); -lean_ctor_set_tag(x_296, 0); -lean_ctor_set(x_296, 1, x_357); -lean_ctor_set(x_296, 0, x_338); -x_205 = x_296; -x_206 = x_350; -goto block_292; -} +lean_ctor_set(x_347, 1, x_356); +lean_ctor_set(x_347, 0, x_355); +lean_ctor_set_tag(x_304, 0); +lean_ctor_set(x_304, 1, x_347); +lean_ctor_set(x_304, 0, x_346); +x_209 = x_304; +x_210 = x_350; +goto block_300; } else { -lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; uint8_t x_365; lean_object* x_366; double x_367; double x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; -x_358 = lean_ctor_get(x_296, 0); -x_359 = lean_ctor_get(x_296, 1); -lean_inc(x_359); +lean_object* x_357; lean_object* x_358; uint8_t x_359; lean_object* x_360; double x_361; double x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; +x_357 = lean_ctor_get(x_347, 0); +x_358 = lean_ctor_get(x_347, 1); lean_inc(x_358); -lean_dec(x_296); -x_360 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_360, 0, x_358); -x_361 = lean_io_get_num_heartbeats(x_359); -x_362 = lean_ctor_get(x_361, 0); -lean_inc(x_362); -x_363 = lean_ctor_get(x_361, 1); -lean_inc(x_363); -if (lean_is_exclusive(x_361)) { - lean_ctor_release(x_361, 0); - lean_ctor_release(x_361, 1); - x_364 = x_361; -} else { - lean_dec_ref(x_361); - x_364 = lean_box(0); +lean_inc(x_357); +lean_dec(x_347); +x_359 = 0; +x_360 = lean_unsigned_to_nat(0u); +x_361 = l_Float_ofScientific(x_302, x_359, x_360); +lean_dec(x_302); +x_362 = l_Float_ofScientific(x_357, x_359, x_360); +lean_dec(x_357); +x_363 = lean_box_float(x_361); +x_364 = lean_box_float(x_362); +x_365 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_365, 0, x_363); +lean_ctor_set(x_365, 1, x_364); +lean_ctor_set_tag(x_304, 0); +lean_ctor_set(x_304, 1, x_365); +lean_ctor_set(x_304, 0, x_346); +x_209 = x_304; +x_210 = x_358; +goto block_300; } -x_365 = 0; -x_366 = lean_unsigned_to_nat(0u); -x_367 = l_Float_ofScientific(x_294, x_365, x_366); -lean_dec(x_294); -x_368 = l_Float_ofScientific(x_362, x_365, x_366); -lean_dec(x_362); -x_369 = lean_box_float(x_367); -x_370 = lean_box_float(x_368); -if (lean_is_scalar(x_364)) { - x_371 = lean_alloc_ctor(0, 2, 0); -} else { - x_371 = x_364; -} -lean_ctor_set(x_371, 0, x_369); -lean_ctor_set(x_371, 1, x_370); -x_372 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_372, 0, x_360); -lean_ctor_set(x_372, 1, x_371); -x_205 = x_372; -x_206 = x_363; -goto block_292; -} -} -block_292: -{ -lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; uint8_t x_211; lean_object* x_280; uint8_t x_281; -x_207 = lean_ctor_get(x_205, 1); -lean_inc(x_207); -x_208 = lean_ctor_get(x_205, 0); -lean_inc(x_208); -lean_dec(x_205); -x_209 = lean_ctor_get(x_207, 0); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 1); -lean_inc(x_210); -lean_dec(x_207); -x_280 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__2; -x_281 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_280); -if (x_281 == 0) -{ -uint8_t x_282; -x_282 = 0; -x_211 = x_282; -goto block_279; } else { -double x_283; double x_284; double x_285; lean_object* x_286; lean_object* x_287; uint8_t x_288; lean_object* x_289; double x_290; uint8_t x_291; -x_283 = lean_unbox_float(x_210); -x_284 = lean_unbox_float(x_209); -x_285 = lean_float_sub(x_283, x_284); -x_286 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__3; -x_287 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_286); -x_288 = 0; -x_289 = lean_unsigned_to_nat(0u); -x_290 = l_Float_ofScientific(x_287, x_288, x_289); -lean_dec(x_287); -x_291 = lean_float_decLt(x_290, x_285); -x_211 = x_291; -goto block_279; +lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; uint8_t x_373; lean_object* x_374; double x_375; double x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; +x_366 = lean_ctor_get(x_304, 0); +x_367 = lean_ctor_get(x_304, 1); +lean_inc(x_367); +lean_inc(x_366); +lean_dec(x_304); +x_368 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_368, 0, x_366); +x_369 = lean_io_get_num_heartbeats(x_367); +x_370 = lean_ctor_get(x_369, 0); +lean_inc(x_370); +x_371 = lean_ctor_get(x_369, 1); +lean_inc(x_371); +if (lean_is_exclusive(x_369)) { + lean_ctor_release(x_369, 0); + lean_ctor_release(x_369, 1); + x_372 = x_369; +} else { + lean_dec_ref(x_369); + x_372 = lean_box(0); } -block_279: +x_373 = 0; +x_374 = lean_unsigned_to_nat(0u); +x_375 = l_Float_ofScientific(x_302, x_373, x_374); +lean_dec(x_302); +x_376 = l_Float_ofScientific(x_370, x_373, x_374); +lean_dec(x_370); +x_377 = lean_box_float(x_375); +x_378 = lean_box_float(x_376); +if (lean_is_scalar(x_372)) { + x_379 = lean_alloc_ctor(0, 2, 0); +} else { + x_379 = x_372; +} +lean_ctor_set(x_379, 0, x_377); +lean_ctor_set(x_379, 1, x_378); +x_380 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_380, 0, x_368); +lean_ctor_set(x_380, 1, x_379); +x_209 = x_380; +x_210 = x_371; +goto block_300; +} +} +block_300: +{ +lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; uint8_t x_217; +x_211 = lean_ctor_get(x_209, 1); +lean_inc(x_211); +x_212 = lean_ctor_get(x_209, 0); +lean_inc(x_212); +lean_dec(x_209); +x_213 = lean_ctor_get(x_211, 0); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 1); +lean_inc(x_214); +lean_dec(x_211); +x_215 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__2; +x_216 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_215); +if (x_216 == 0) { if (x_6 == 0) { -if (x_211 == 0) +uint8_t x_282; +x_282 = 0; +x_217 = x_282; +goto block_281; +} +else { -lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; -lean_dec(x_210); -lean_dec(x_209); +lean_object* x_283; double x_284; double x_285; lean_object* x_286; +x_283 = lean_box(0); +x_284 = lean_unbox_float(x_213); +lean_dec(x_213); +x_285 = lean_unbox_float(x_214); +lean_dec(x_214); +x_286 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_284, x_285, x_5, x_283, x_9, x_10, x_210); +return x_286; +} +} +else +{ +if (x_6 == 0) +{ +double x_287; double x_288; double x_289; lean_object* x_290; lean_object* x_291; uint8_t x_292; lean_object* x_293; double x_294; uint8_t x_295; +x_287 = lean_unbox_float(x_214); +x_288 = lean_unbox_float(x_213); +x_289 = lean_float_sub(x_287, x_288); +x_290 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__3; +x_291 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_290); +x_292 = 0; +x_293 = lean_unsigned_to_nat(0u); +x_294 = l_Float_ofScientific(x_291, x_292, x_293); +lean_dec(x_291); +x_295 = lean_float_decLt(x_294, x_289); +x_217 = x_295; +goto block_281; +} +else +{ +lean_object* x_296; double x_297; double x_298; lean_object* x_299; +x_296 = lean_box(0); +x_297 = lean_unbox_float(x_213); +lean_dec(x_213); +x_298 = lean_unbox_float(x_214); +lean_dec(x_214); +x_299 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_297, x_298, x_5, x_296, x_9, x_10, x_210); +return x_299; +} +} +block_281: +{ +if (x_217 == 0) +{ +lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; uint8_t x_222; +lean_dec(x_214); +lean_dec(x_213); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_212 = lean_st_ref_take(x_10, x_206); -x_213 = lean_ctor_get(x_212, 0); -lean_inc(x_213); -x_214 = lean_ctor_get(x_213, 3); -lean_inc(x_214); -x_215 = lean_ctor_get(x_212, 1); -lean_inc(x_215); -lean_dec(x_212); -x_216 = !lean_is_exclusive(x_213); -if (x_216 == 0) +x_218 = lean_st_ref_take(x_10, x_210); +x_219 = lean_ctor_get(x_218, 0); +lean_inc(x_219); +x_220 = lean_ctor_get(x_219, 3); +lean_inc(x_220); +x_221 = lean_ctor_get(x_218, 1); +lean_inc(x_221); +lean_dec(x_218); +x_222 = !lean_is_exclusive(x_219); +if (x_222 == 0) { -lean_object* x_217; uint8_t x_218; -x_217 = lean_ctor_get(x_213, 3); -lean_dec(x_217); -x_218 = !lean_is_exclusive(x_214); -if (x_218 == 0) -{ -lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; -x_219 = lean_ctor_get(x_214, 0); -x_220 = l_Lean_PersistentArray_append___rarg(x_13, x_219); -lean_dec(x_219); -lean_ctor_set(x_214, 0, x_220); -x_221 = lean_st_ref_set(x_10, x_213, x_215); -x_222 = lean_ctor_get(x_221, 1); -lean_inc(x_222); -lean_dec(x_221); -x_223 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__3(x_208, x_9, x_10, x_222); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_223) == 0) -{ -uint8_t x_224; -x_224 = !lean_is_exclusive(x_223); +lean_object* x_223; uint8_t x_224; +x_223 = lean_ctor_get(x_219, 3); +lean_dec(x_223); +x_224 = !lean_is_exclusive(x_220); if (x_224 == 0) { -return x_223; -} -else -{ -lean_object* x_225; lean_object* x_226; lean_object* x_227; -x_225 = lean_ctor_get(x_223, 0); -x_226 = lean_ctor_get(x_223, 1); -lean_inc(x_226); -lean_inc(x_225); -lean_dec(x_223); -x_227 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_227, 0, x_225); -lean_ctor_set(x_227, 1, x_226); -return x_227; -} -} -else -{ -uint8_t x_228; -x_228 = !lean_is_exclusive(x_223); -if (x_228 == 0) -{ -return x_223; -} -else -{ -lean_object* x_229; lean_object* x_230; lean_object* x_231; -x_229 = lean_ctor_get(x_223, 0); -x_230 = lean_ctor_get(x_223, 1); -lean_inc(x_230); -lean_inc(x_229); -lean_dec(x_223); -x_231 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_231, 0, x_229); -lean_ctor_set(x_231, 1, x_230); -return x_231; -} -} -} -else -{ -uint64_t x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; -x_232 = lean_ctor_get_uint64(x_214, sizeof(void*)*1); -x_233 = lean_ctor_get(x_214, 0); -lean_inc(x_233); -lean_dec(x_214); -x_234 = l_Lean_PersistentArray_append___rarg(x_13, x_233); -lean_dec(x_233); -x_235 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_235, 0, x_234); -lean_ctor_set_uint64(x_235, sizeof(void*)*1, x_232); -lean_ctor_set(x_213, 3, x_235); -x_236 = lean_st_ref_set(x_10, x_213, x_215); -x_237 = lean_ctor_get(x_236, 1); -lean_inc(x_237); -lean_dec(x_236); -x_238 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__3(x_208, x_9, x_10, x_237); +lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; +x_225 = lean_ctor_get(x_220, 0); +x_226 = l_Lean_PersistentArray_append___rarg(x_13, x_225); +lean_dec(x_225); +lean_ctor_set(x_220, 0, x_226); +x_227 = lean_st_ref_set(x_10, x_219, x_221); +x_228 = lean_ctor_get(x_227, 1); +lean_inc(x_228); +lean_dec(x_227); +x_229 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__3(x_212, x_9, x_10, x_228); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_238) == 0) +lean_dec(x_212); +if (lean_obj_tag(x_229) == 0) { -lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; -x_239 = lean_ctor_get(x_238, 0); +uint8_t x_230; +x_230 = !lean_is_exclusive(x_229); +if (x_230 == 0) +{ +return x_229; +} +else +{ +lean_object* x_231; lean_object* x_232; lean_object* x_233; +x_231 = lean_ctor_get(x_229, 0); +x_232 = lean_ctor_get(x_229, 1); +lean_inc(x_232); +lean_inc(x_231); +lean_dec(x_229); +x_233 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_233, 0, x_231); +lean_ctor_set(x_233, 1, x_232); +return x_233; +} +} +else +{ +uint8_t x_234; +x_234 = !lean_is_exclusive(x_229); +if (x_234 == 0) +{ +return x_229; +} +else +{ +lean_object* x_235; lean_object* x_236; lean_object* x_237; +x_235 = lean_ctor_get(x_229, 0); +x_236 = lean_ctor_get(x_229, 1); +lean_inc(x_236); +lean_inc(x_235); +lean_dec(x_229); +x_237 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_237, 0, x_235); +lean_ctor_set(x_237, 1, x_236); +return x_237; +} +} +} +else +{ +uint64_t x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; +x_238 = lean_ctor_get_uint64(x_220, sizeof(void*)*1); +x_239 = lean_ctor_get(x_220, 0); lean_inc(x_239); -x_240 = lean_ctor_get(x_238, 1); -lean_inc(x_240); -if (lean_is_exclusive(x_238)) { - lean_ctor_release(x_238, 0); - lean_ctor_release(x_238, 1); - x_241 = x_238; -} else { - lean_dec_ref(x_238); - x_241 = lean_box(0); -} -if (lean_is_scalar(x_241)) { - x_242 = lean_alloc_ctor(0, 2, 0); -} else { - x_242 = x_241; -} -lean_ctor_set(x_242, 0, x_239); -lean_ctor_set(x_242, 1, x_240); -return x_242; -} -else -{ -lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; -x_243 = lean_ctor_get(x_238, 0); +lean_dec(x_220); +x_240 = l_Lean_PersistentArray_append___rarg(x_13, x_239); +lean_dec(x_239); +x_241 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_241, 0, x_240); +lean_ctor_set_uint64(x_241, sizeof(void*)*1, x_238); +lean_ctor_set(x_219, 3, x_241); +x_242 = lean_st_ref_set(x_10, x_219, x_221); +x_243 = lean_ctor_get(x_242, 1); lean_inc(x_243); -x_244 = lean_ctor_get(x_238, 1); -lean_inc(x_244); -if (lean_is_exclusive(x_238)) { - lean_ctor_release(x_238, 0); - lean_ctor_release(x_238, 1); - x_245 = x_238; -} else { - lean_dec_ref(x_238); - x_245 = lean_box(0); -} -if (lean_is_scalar(x_245)) { - x_246 = lean_alloc_ctor(1, 2, 0); -} else { - x_246 = x_245; -} -lean_ctor_set(x_246, 0, x_243); -lean_ctor_set(x_246, 1, x_244); -return x_246; -} -} -} -else -{ -lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; uint64_t x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; -x_247 = lean_ctor_get(x_213, 0); -x_248 = lean_ctor_get(x_213, 1); -x_249 = lean_ctor_get(x_213, 2); -x_250 = lean_ctor_get(x_213, 4); -x_251 = lean_ctor_get(x_213, 5); -x_252 = lean_ctor_get(x_213, 6); -x_253 = lean_ctor_get(x_213, 7); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_inc(x_248); -lean_inc(x_247); -lean_dec(x_213); -x_254 = lean_ctor_get_uint64(x_214, sizeof(void*)*1); -x_255 = lean_ctor_get(x_214, 0); -lean_inc(x_255); -if (lean_is_exclusive(x_214)) { - lean_ctor_release(x_214, 0); - x_256 = x_214; -} else { - lean_dec_ref(x_214); - x_256 = lean_box(0); -} -x_257 = l_Lean_PersistentArray_append___rarg(x_13, x_255); -lean_dec(x_255); -if (lean_is_scalar(x_256)) { - x_258 = lean_alloc_ctor(0, 1, 8); -} else { - x_258 = x_256; -} -lean_ctor_set(x_258, 0, x_257); -lean_ctor_set_uint64(x_258, sizeof(void*)*1, x_254); -x_259 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_259, 0, x_247); -lean_ctor_set(x_259, 1, x_248); -lean_ctor_set(x_259, 2, x_249); -lean_ctor_set(x_259, 3, x_258); -lean_ctor_set(x_259, 4, x_250); -lean_ctor_set(x_259, 5, x_251); -lean_ctor_set(x_259, 6, x_252); -lean_ctor_set(x_259, 7, x_253); -x_260 = lean_st_ref_set(x_10, x_259, x_215); -x_261 = lean_ctor_get(x_260, 1); -lean_inc(x_261); -lean_dec(x_260); -x_262 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__3(x_208, x_9, x_10, x_261); +lean_dec(x_242); +x_244 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__3(x_212, x_9, x_10, x_243); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_262) == 0) +lean_dec(x_212); +if (lean_obj_tag(x_244) == 0) { -lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; -x_263 = lean_ctor_get(x_262, 0); -lean_inc(x_263); -x_264 = lean_ctor_get(x_262, 1); -lean_inc(x_264); -if (lean_is_exclusive(x_262)) { - lean_ctor_release(x_262, 0); - lean_ctor_release(x_262, 1); - x_265 = x_262; +lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; +x_245 = lean_ctor_get(x_244, 0); +lean_inc(x_245); +x_246 = lean_ctor_get(x_244, 1); +lean_inc(x_246); +if (lean_is_exclusive(x_244)) { + lean_ctor_release(x_244, 0); + lean_ctor_release(x_244, 1); + x_247 = x_244; } else { - lean_dec_ref(x_262); - x_265 = lean_box(0); + lean_dec_ref(x_244); + x_247 = lean_box(0); } -if (lean_is_scalar(x_265)) { - x_266 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_247)) { + x_248 = lean_alloc_ctor(0, 2, 0); } else { - x_266 = x_265; + x_248 = x_247; } -lean_ctor_set(x_266, 0, x_263); -lean_ctor_set(x_266, 1, x_264); -return x_266; +lean_ctor_set(x_248, 0, x_245); +lean_ctor_set(x_248, 1, x_246); +return x_248; } else { -lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; -x_267 = lean_ctor_get(x_262, 0); +lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; +x_249 = lean_ctor_get(x_244, 0); +lean_inc(x_249); +x_250 = lean_ctor_get(x_244, 1); +lean_inc(x_250); +if (lean_is_exclusive(x_244)) { + lean_ctor_release(x_244, 0); + lean_ctor_release(x_244, 1); + x_251 = x_244; +} else { + lean_dec_ref(x_244); + x_251 = lean_box(0); +} +if (lean_is_scalar(x_251)) { + x_252 = lean_alloc_ctor(1, 2, 0); +} else { + x_252 = x_251; +} +lean_ctor_set(x_252, 0, x_249); +lean_ctor_set(x_252, 1, x_250); +return x_252; +} +} +} +else +{ +lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; uint64_t x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; +x_253 = lean_ctor_get(x_219, 0); +x_254 = lean_ctor_get(x_219, 1); +x_255 = lean_ctor_get(x_219, 2); +x_256 = lean_ctor_get(x_219, 4); +x_257 = lean_ctor_get(x_219, 5); +x_258 = lean_ctor_get(x_219, 6); +x_259 = lean_ctor_get(x_219, 7); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_inc(x_254); +lean_inc(x_253); +lean_dec(x_219); +x_260 = lean_ctor_get_uint64(x_220, sizeof(void*)*1); +x_261 = lean_ctor_get(x_220, 0); +lean_inc(x_261); +if (lean_is_exclusive(x_220)) { + lean_ctor_release(x_220, 0); + x_262 = x_220; +} else { + lean_dec_ref(x_220); + x_262 = lean_box(0); +} +x_263 = l_Lean_PersistentArray_append___rarg(x_13, x_261); +lean_dec(x_261); +if (lean_is_scalar(x_262)) { + x_264 = lean_alloc_ctor(0, 1, 8); +} else { + x_264 = x_262; +} +lean_ctor_set(x_264, 0, x_263); +lean_ctor_set_uint64(x_264, sizeof(void*)*1, x_260); +x_265 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_265, 0, x_253); +lean_ctor_set(x_265, 1, x_254); +lean_ctor_set(x_265, 2, x_255); +lean_ctor_set(x_265, 3, x_264); +lean_ctor_set(x_265, 4, x_256); +lean_ctor_set(x_265, 5, x_257); +lean_ctor_set(x_265, 6, x_258); +lean_ctor_set(x_265, 7, x_259); +x_266 = lean_st_ref_set(x_10, x_265, x_221); +x_267 = lean_ctor_get(x_266, 1); lean_inc(x_267); -x_268 = lean_ctor_get(x_262, 1); -lean_inc(x_268); -if (lean_is_exclusive(x_262)) { - lean_ctor_release(x_262, 0); - lean_ctor_release(x_262, 1); - x_269 = x_262; +lean_dec(x_266); +x_268 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__3(x_212, x_9, x_10, x_267); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_212); +if (lean_obj_tag(x_268) == 0) +{ +lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; +x_269 = lean_ctor_get(x_268, 0); +lean_inc(x_269); +x_270 = lean_ctor_get(x_268, 1); +lean_inc(x_270); +if (lean_is_exclusive(x_268)) { + lean_ctor_release(x_268, 0); + lean_ctor_release(x_268, 1); + x_271 = x_268; } else { - lean_dec_ref(x_262); - x_269 = lean_box(0); + lean_dec_ref(x_268); + x_271 = lean_box(0); } -if (lean_is_scalar(x_269)) { - x_270 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_271)) { + x_272 = lean_alloc_ctor(0, 2, 0); } else { - x_270 = x_269; + x_272 = x_271; } -lean_ctor_set(x_270, 0, x_267); -lean_ctor_set(x_270, 1, x_268); -return x_270; +lean_ctor_set(x_272, 0, x_269); +lean_ctor_set(x_272, 1, x_270); +return x_272; +} +else +{ +lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; +x_273 = lean_ctor_get(x_268, 0); +lean_inc(x_273); +x_274 = lean_ctor_get(x_268, 1); +lean_inc(x_274); +if (lean_is_exclusive(x_268)) { + lean_ctor_release(x_268, 0); + lean_ctor_release(x_268, 1); + x_275 = x_268; +} else { + lean_dec_ref(x_268); + x_275 = lean_box(0); +} +if (lean_is_scalar(x_275)) { + x_276 = lean_alloc_ctor(1, 2, 0); +} else { + x_276 = x_275; +} +lean_ctor_set(x_276, 0, x_273); +lean_ctor_set(x_276, 1, x_274); +return x_276; } } } else { -lean_object* x_271; double x_272; double x_273; lean_object* x_274; -x_271 = lean_box(0); -x_272 = lean_unbox_float(x_209); -lean_dec(x_209); -x_273 = lean_unbox_float(x_210); -lean_dec(x_210); -x_274 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3(x_2, x_3, x_4, x_13, x_208, x_1, x_211, x_272, x_273, x_5, x_271, x_9, x_10, x_206); -return x_274; -} -} -else -{ -lean_object* x_275; double x_276; double x_277; lean_object* x_278; -x_275 = lean_box(0); -x_276 = lean_unbox_float(x_209); -lean_dec(x_209); -x_277 = lean_unbox_float(x_210); -lean_dec(x_210); -x_278 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3(x_2, x_3, x_4, x_13, x_208, x_1, x_211, x_276, x_277, x_5, x_275, x_9, x_10, x_206); -return x_278; +lean_object* x_277; double x_278; double x_279; lean_object* x_280; +x_277 = lean_box(0); +x_278 = lean_unbox_float(x_213); +lean_dec(x_213); +x_279 = lean_unbox_float(x_214); +lean_dec(x_214); +x_280 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_278, x_279, x_5, x_277, x_9, x_10, x_210); +return x_280; } } } @@ -4585,41 +4578,39 @@ lean_dec(x_4); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; uint8_t x_16; double x_17; double x_18; lean_object* x_19; -x_15 = lean_unbox(x_2); +uint8_t x_14; uint8_t x_15; double x_16; double x_17; lean_object* x_18; +x_14 = lean_unbox(x_2); lean_dec(x_2); -x_16 = lean_unbox(x_8); +x_15 = lean_unbox(x_7); +lean_dec(x_7); +x_16 = lean_unbox_float(x_8); lean_dec(x_8); x_17 = lean_unbox_float(x_9); lean_dec(x_9); -x_18 = lean_unbox_float(x_10); -lean_dec(x_10); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2(x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_16, x_17, x_18, x_11, x_12, x_13, x_14); -lean_dec(x_13); -lean_dec(x_7); +x_18 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2(x_1, x_14, x_3, x_4, x_5, x_6, x_15, x_16, x_17, x_10, x_11, x_12, x_13); +lean_dec(x_12); lean_dec(x_6); -return x_19; +return x_18; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; uint8_t x_16; double x_17; double x_18; lean_object* x_19; -x_15 = lean_unbox(x_2); +uint8_t x_14; uint8_t x_15; double x_16; double x_17; lean_object* x_18; +x_14 = lean_unbox(x_2); lean_dec(x_2); -x_16 = lean_unbox(x_7); +x_15 = lean_unbox(x_6); +lean_dec(x_6); +x_16 = lean_unbox_float(x_7); lean_dec(x_7); x_17 = lean_unbox_float(x_8); lean_dec(x_8); -x_18 = lean_unbox_float(x_9); -lean_dec(x_9); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3(x_1, x_15, x_3, x_4, x_5, x_6, x_16, x_17, x_18, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_11); -lean_dec(x_6); -return x_19; +x_18 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3(x_1, x_14, x_3, x_4, x_5, x_15, x_16, x_17, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_10); +return x_18; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { @@ -4791,97 +4782,72 @@ lean_dec(x_7); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -double x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_15 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_16 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_16, 0, x_1); -lean_ctor_set(x_16, 1, x_3); -lean_ctor_set_float(x_16, sizeof(void*)*2, x_15); -lean_ctor_set_float(x_16, sizeof(void*)*2 + 8, x_15); -lean_ctor_set_uint8(x_16, sizeof(void*)*2 + 16, x_2); -x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___closed__2; -x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_17); -if (x_18 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___closed__1; +x_15 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_15, 0, x_1); +lean_ctor_set(x_15, 1, x_3); +lean_ctor_set_float(x_15, sizeof(void*)*2, x_14); +lean_ctor_set_float(x_15, sizeof(void*)*2 + 8, x_14); +lean_ctor_set_uint8(x_15, sizeof(void*)*2 + 16, x_2); +x_16 = lean_box(0); +x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_15, x_16, x_11, x_12, x_13); +return x_17; +} +else { -lean_object* x_19; lean_object* x_20; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_3); +lean_ctor_set_float(x_18, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); x_19 = lean_box(0); -x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_16, x_19, x_12, x_13, x_14); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_18, x_19, x_11, x_12, x_13); return x_20; } -else -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; -lean_dec(x_16); -x_21 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_21, 0, x_1); -lean_ctor_set(x_21, 1, x_3); -lean_ctor_set_float(x_21, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_21, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_21, sizeof(void*)*2 + 16, x_2); -x_22 = lean_box(0); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_21, x_22, x_12, x_13, x_14); -return x_23; } } -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -lean_dec(x_16); -x_24 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_24, 0, x_1); -lean_ctor_set(x_24, 1, x_3); -lean_ctor_set_float(x_24, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_24, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_24, sizeof(void*)*2 + 16, x_2); -x_25 = lean_box(0); -x_26 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_24, x_25, x_12, x_13, x_14); -return x_26; -} -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_15; lean_object* x_16; -x_15 = lean_ctor_get(x_12, 5); -lean_inc(x_15); -lean_inc(x_13); +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_11, 5); +lean_inc(x_14); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_16 = lean_apply_4(x_10, x_5, x_12, x_13, x_14); -if (lean_obj_tag(x_16) == 0) +x_15 = lean_apply_4(x_9, x_5, x_11, x_12, x_13); +if (lean_obj_tag(x_15) == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_ctor_get(x_16, 0); +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); lean_inc(x_17); -x_18 = lean_ctor_get(x_16, 1); -lean_inc(x_18); -lean_dec(x_16); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_15, x_5, x_6, x_7, x_8, x_9, x_17, x_12, x_13, x_18); -lean_dec(x_13); +lean_dec(x_15); +x_18 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_14, x_5, x_6, x_7, x_8, x_16, x_11, x_12, x_17); +lean_dec(x_12); lean_dec(x_5); -return x_19; +return x_18; } else { -lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_20 = lean_ctor_get(x_16, 1); -lean_inc(x_20); -lean_dec(x_16); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3___closed__2; -x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_15, x_5, x_6, x_7, x_8, x_9, x_21, x_12, x_13, x_20); -lean_dec(x_13); +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_15, 1); +lean_inc(x_19); +lean_dec(x_15); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3___closed__2; +x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_14, x_5, x_6, x_7, x_8, x_20, x_11, x_12, x_19); +lean_dec(x_12); lean_dec(x_5); -return x_22; +return x_21; } } } @@ -4899,251 +4865,251 @@ x_15 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofF x_16 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_15); if (x_16 == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; -x_107 = lean_io_mono_nanos_now(x_14); -x_108 = lean_ctor_get(x_107, 0); -lean_inc(x_108); -x_109 = lean_ctor_get(x_107, 1); -lean_inc(x_109); -lean_dec(x_107); +lean_object* x_17; lean_object* x_18; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; +x_111 = lean_io_mono_nanos_now(x_14); +x_112 = lean_ctor_get(x_111, 0); +lean_inc(x_112); +x_113 = lean_ctor_get(x_111, 1); +lean_inc(x_113); +lean_dec(x_111); lean_inc(x_10); lean_inc(x_9); -x_110 = lean_apply_3(x_7, x_9, x_10, x_109); -if (lean_obj_tag(x_110) == 0) +x_114 = lean_apply_3(x_7, x_9, x_10, x_113); +if (lean_obj_tag(x_114) == 0) { -uint8_t x_111; -x_111 = !lean_is_exclusive(x_110); -if (x_111 == 0) +uint8_t x_115; +x_115 = !lean_is_exclusive(x_114); +if (x_115 == 0) { -lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; uint8_t x_116; -x_112 = lean_ctor_get(x_110, 0); -x_113 = lean_ctor_get(x_110, 1); -x_114 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_114, 0, x_112); -x_115 = lean_io_mono_nanos_now(x_113); -x_116 = !lean_is_exclusive(x_115); -if (x_116 == 0) +lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; uint8_t x_120; +x_116 = lean_ctor_get(x_114, 0); +x_117 = lean_ctor_get(x_114, 1); +x_118 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_118, 0, x_116); +x_119 = lean_io_mono_nanos_now(x_117); +x_120 = !lean_is_exclusive(x_119); +if (x_120 == 0) { -lean_object* x_117; lean_object* x_118; uint8_t x_119; lean_object* x_120; double x_121; double x_122; double x_123; double x_124; double x_125; lean_object* x_126; lean_object* x_127; -x_117 = lean_ctor_get(x_115, 0); -x_118 = lean_ctor_get(x_115, 1); -x_119 = 0; -x_120 = lean_unsigned_to_nat(0u); -x_121 = l_Float_ofScientific(x_108, x_119, x_120); -lean_dec(x_108); -x_122 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_123 = lean_float_div(x_121, x_122); -x_124 = l_Float_ofScientific(x_117, x_119, x_120); -lean_dec(x_117); -x_125 = lean_float_div(x_124, x_122); -x_126 = lean_box_float(x_123); -x_127 = lean_box_float(x_125); -lean_ctor_set(x_115, 1, x_127); -lean_ctor_set(x_115, 0, x_126); -lean_ctor_set(x_110, 1, x_115); -lean_ctor_set(x_110, 0, x_114); -x_17 = x_110; -x_18 = x_118; -goto block_106; +lean_object* x_121; lean_object* x_122; uint8_t x_123; lean_object* x_124; double x_125; double x_126; double x_127; double x_128; double x_129; lean_object* x_130; lean_object* x_131; +x_121 = lean_ctor_get(x_119, 0); +x_122 = lean_ctor_get(x_119, 1); +x_123 = 0; +x_124 = lean_unsigned_to_nat(0u); +x_125 = l_Float_ofScientific(x_112, x_123, x_124); +lean_dec(x_112); +x_126 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_127 = lean_float_div(x_125, x_126); +x_128 = l_Float_ofScientific(x_121, x_123, x_124); +lean_dec(x_121); +x_129 = lean_float_div(x_128, x_126); +x_130 = lean_box_float(x_127); +x_131 = lean_box_float(x_129); +lean_ctor_set(x_119, 1, x_131); +lean_ctor_set(x_119, 0, x_130); +lean_ctor_set(x_114, 1, x_119); +lean_ctor_set(x_114, 0, x_118); +x_17 = x_114; +x_18 = x_122; +goto block_110; } else { -lean_object* x_128; lean_object* x_129; uint8_t x_130; lean_object* x_131; double x_132; double x_133; double x_134; double x_135; double x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; -x_128 = lean_ctor_get(x_115, 0); -x_129 = lean_ctor_get(x_115, 1); -lean_inc(x_129); -lean_inc(x_128); -lean_dec(x_115); -x_130 = 0; -x_131 = lean_unsigned_to_nat(0u); -x_132 = l_Float_ofScientific(x_108, x_130, x_131); -lean_dec(x_108); -x_133 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_134 = lean_float_div(x_132, x_133); -x_135 = l_Float_ofScientific(x_128, x_130, x_131); -lean_dec(x_128); -x_136 = lean_float_div(x_135, x_133); -x_137 = lean_box_float(x_134); -x_138 = lean_box_float(x_136); -x_139 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_139, 0, x_137); -lean_ctor_set(x_139, 1, x_138); -lean_ctor_set(x_110, 1, x_139); -lean_ctor_set(x_110, 0, x_114); -x_17 = x_110; -x_18 = x_129; -goto block_106; +lean_object* x_132; lean_object* x_133; uint8_t x_134; lean_object* x_135; double x_136; double x_137; double x_138; double x_139; double x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; +x_132 = lean_ctor_get(x_119, 0); +x_133 = lean_ctor_get(x_119, 1); +lean_inc(x_133); +lean_inc(x_132); +lean_dec(x_119); +x_134 = 0; +x_135 = lean_unsigned_to_nat(0u); +x_136 = l_Float_ofScientific(x_112, x_134, x_135); +lean_dec(x_112); +x_137 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_138 = lean_float_div(x_136, x_137); +x_139 = l_Float_ofScientific(x_132, x_134, x_135); +lean_dec(x_132); +x_140 = lean_float_div(x_139, x_137); +x_141 = lean_box_float(x_138); +x_142 = lean_box_float(x_140); +x_143 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_143, 0, x_141); +lean_ctor_set(x_143, 1, x_142); +lean_ctor_set(x_114, 1, x_143); +lean_ctor_set(x_114, 0, x_118); +x_17 = x_114; +x_18 = x_133; +goto block_110; } } else { -lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; uint8_t x_147; lean_object* x_148; double x_149; double x_150; double x_151; double x_152; double x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; -x_140 = lean_ctor_get(x_110, 0); -x_141 = lean_ctor_get(x_110, 1); -lean_inc(x_141); -lean_inc(x_140); -lean_dec(x_110); -x_142 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_142, 0, x_140); -x_143 = lean_io_mono_nanos_now(x_141); -x_144 = lean_ctor_get(x_143, 0); -lean_inc(x_144); -x_145 = lean_ctor_get(x_143, 1); +lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; uint8_t x_151; lean_object* x_152; double x_153; double x_154; double x_155; double x_156; double x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; +x_144 = lean_ctor_get(x_114, 0); +x_145 = lean_ctor_get(x_114, 1); lean_inc(x_145); -if (lean_is_exclusive(x_143)) { - lean_ctor_release(x_143, 0); - lean_ctor_release(x_143, 1); - x_146 = x_143; +lean_inc(x_144); +lean_dec(x_114); +x_146 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_146, 0, x_144); +x_147 = lean_io_mono_nanos_now(x_145); +x_148 = lean_ctor_get(x_147, 0); +lean_inc(x_148); +x_149 = lean_ctor_get(x_147, 1); +lean_inc(x_149); +if (lean_is_exclusive(x_147)) { + lean_ctor_release(x_147, 0); + lean_ctor_release(x_147, 1); + x_150 = x_147; } else { - lean_dec_ref(x_143); - x_146 = lean_box(0); + lean_dec_ref(x_147); + x_150 = lean_box(0); } -x_147 = 0; -x_148 = lean_unsigned_to_nat(0u); -x_149 = l_Float_ofScientific(x_108, x_147, x_148); -lean_dec(x_108); -x_150 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_151 = lean_float_div(x_149, x_150); -x_152 = l_Float_ofScientific(x_144, x_147, x_148); -lean_dec(x_144); -x_153 = lean_float_div(x_152, x_150); -x_154 = lean_box_float(x_151); -x_155 = lean_box_float(x_153); -if (lean_is_scalar(x_146)) { - x_156 = lean_alloc_ctor(0, 2, 0); +x_151 = 0; +x_152 = lean_unsigned_to_nat(0u); +x_153 = l_Float_ofScientific(x_112, x_151, x_152); +lean_dec(x_112); +x_154 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_155 = lean_float_div(x_153, x_154); +x_156 = l_Float_ofScientific(x_148, x_151, x_152); +lean_dec(x_148); +x_157 = lean_float_div(x_156, x_154); +x_158 = lean_box_float(x_155); +x_159 = lean_box_float(x_157); +if (lean_is_scalar(x_150)) { + x_160 = lean_alloc_ctor(0, 2, 0); } else { - x_156 = x_146; + x_160 = x_150; } -lean_ctor_set(x_156, 0, x_154); -lean_ctor_set(x_156, 1, x_155); -x_157 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_157, 0, x_142); -lean_ctor_set(x_157, 1, x_156); -x_17 = x_157; -x_18 = x_145; -goto block_106; +lean_ctor_set(x_160, 0, x_158); +lean_ctor_set(x_160, 1, x_159); +x_161 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_161, 0, x_146); +lean_ctor_set(x_161, 1, x_160); +x_17 = x_161; +x_18 = x_149; +goto block_110; } } else { -uint8_t x_158; -x_158 = !lean_is_exclusive(x_110); -if (x_158 == 0) +uint8_t x_162; +x_162 = !lean_is_exclusive(x_114); +if (x_162 == 0) { -lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; uint8_t x_163; -x_159 = lean_ctor_get(x_110, 0); -x_160 = lean_ctor_get(x_110, 1); -x_161 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_161, 0, x_159); -x_162 = lean_io_mono_nanos_now(x_160); -x_163 = !lean_is_exclusive(x_162); -if (x_163 == 0) +lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; uint8_t x_167; +x_163 = lean_ctor_get(x_114, 0); +x_164 = lean_ctor_get(x_114, 1); +x_165 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_165, 0, x_163); +x_166 = lean_io_mono_nanos_now(x_164); +x_167 = !lean_is_exclusive(x_166); +if (x_167 == 0) { -lean_object* x_164; lean_object* x_165; uint8_t x_166; lean_object* x_167; double x_168; double x_169; double x_170; double x_171; double x_172; lean_object* x_173; lean_object* x_174; -x_164 = lean_ctor_get(x_162, 0); -x_165 = lean_ctor_get(x_162, 1); -x_166 = 0; -x_167 = lean_unsigned_to_nat(0u); -x_168 = l_Float_ofScientific(x_108, x_166, x_167); -lean_dec(x_108); -x_169 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_170 = lean_float_div(x_168, x_169); -x_171 = l_Float_ofScientific(x_164, x_166, x_167); -lean_dec(x_164); -x_172 = lean_float_div(x_171, x_169); -x_173 = lean_box_float(x_170); -x_174 = lean_box_float(x_172); -lean_ctor_set(x_162, 1, x_174); -lean_ctor_set(x_162, 0, x_173); -lean_ctor_set_tag(x_110, 0); -lean_ctor_set(x_110, 1, x_162); -lean_ctor_set(x_110, 0, x_161); -x_17 = x_110; -x_18 = x_165; -goto block_106; +lean_object* x_168; lean_object* x_169; uint8_t x_170; lean_object* x_171; double x_172; double x_173; double x_174; double x_175; double x_176; lean_object* x_177; lean_object* x_178; +x_168 = lean_ctor_get(x_166, 0); +x_169 = lean_ctor_get(x_166, 1); +x_170 = 0; +x_171 = lean_unsigned_to_nat(0u); +x_172 = l_Float_ofScientific(x_112, x_170, x_171); +lean_dec(x_112); +x_173 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_174 = lean_float_div(x_172, x_173); +x_175 = l_Float_ofScientific(x_168, x_170, x_171); +lean_dec(x_168); +x_176 = lean_float_div(x_175, x_173); +x_177 = lean_box_float(x_174); +x_178 = lean_box_float(x_176); +lean_ctor_set(x_166, 1, x_178); +lean_ctor_set(x_166, 0, x_177); +lean_ctor_set_tag(x_114, 0); +lean_ctor_set(x_114, 1, x_166); +lean_ctor_set(x_114, 0, x_165); +x_17 = x_114; +x_18 = x_169; +goto block_110; } else { -lean_object* x_175; lean_object* x_176; uint8_t x_177; lean_object* x_178; double x_179; double x_180; double x_181; double x_182; double x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; -x_175 = lean_ctor_get(x_162, 0); -x_176 = lean_ctor_get(x_162, 1); -lean_inc(x_176); -lean_inc(x_175); -lean_dec(x_162); -x_177 = 0; -x_178 = lean_unsigned_to_nat(0u); -x_179 = l_Float_ofScientific(x_108, x_177, x_178); -lean_dec(x_108); -x_180 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_181 = lean_float_div(x_179, x_180); -x_182 = l_Float_ofScientific(x_175, x_177, x_178); -lean_dec(x_175); -x_183 = lean_float_div(x_182, x_180); -x_184 = lean_box_float(x_181); -x_185 = lean_box_float(x_183); -x_186 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_186, 0, x_184); -lean_ctor_set(x_186, 1, x_185); -lean_ctor_set_tag(x_110, 0); -lean_ctor_set(x_110, 1, x_186); -lean_ctor_set(x_110, 0, x_161); -x_17 = x_110; -x_18 = x_176; -goto block_106; +lean_object* x_179; lean_object* x_180; uint8_t x_181; lean_object* x_182; double x_183; double x_184; double x_185; double x_186; double x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; +x_179 = lean_ctor_get(x_166, 0); +x_180 = lean_ctor_get(x_166, 1); +lean_inc(x_180); +lean_inc(x_179); +lean_dec(x_166); +x_181 = 0; +x_182 = lean_unsigned_to_nat(0u); +x_183 = l_Float_ofScientific(x_112, x_181, x_182); +lean_dec(x_112); +x_184 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_185 = lean_float_div(x_183, x_184); +x_186 = l_Float_ofScientific(x_179, x_181, x_182); +lean_dec(x_179); +x_187 = lean_float_div(x_186, x_184); +x_188 = lean_box_float(x_185); +x_189 = lean_box_float(x_187); +x_190 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_190, 0, x_188); +lean_ctor_set(x_190, 1, x_189); +lean_ctor_set_tag(x_114, 0); +lean_ctor_set(x_114, 1, x_190); +lean_ctor_set(x_114, 0, x_165); +x_17 = x_114; +x_18 = x_180; +goto block_110; } } else { -lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; uint8_t x_194; lean_object* x_195; double x_196; double x_197; double x_198; double x_199; double x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; -x_187 = lean_ctor_get(x_110, 0); -x_188 = lean_ctor_get(x_110, 1); -lean_inc(x_188); -lean_inc(x_187); -lean_dec(x_110); -x_189 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_189, 0, x_187); -x_190 = lean_io_mono_nanos_now(x_188); -x_191 = lean_ctor_get(x_190, 0); -lean_inc(x_191); -x_192 = lean_ctor_get(x_190, 1); +lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; uint8_t x_198; lean_object* x_199; double x_200; double x_201; double x_202; double x_203; double x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; +x_191 = lean_ctor_get(x_114, 0); +x_192 = lean_ctor_get(x_114, 1); lean_inc(x_192); -if (lean_is_exclusive(x_190)) { - lean_ctor_release(x_190, 0); - lean_ctor_release(x_190, 1); - x_193 = x_190; +lean_inc(x_191); +lean_dec(x_114); +x_193 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_193, 0, x_191); +x_194 = lean_io_mono_nanos_now(x_192); +x_195 = lean_ctor_get(x_194, 0); +lean_inc(x_195); +x_196 = lean_ctor_get(x_194, 1); +lean_inc(x_196); +if (lean_is_exclusive(x_194)) { + lean_ctor_release(x_194, 0); + lean_ctor_release(x_194, 1); + x_197 = x_194; } else { - lean_dec_ref(x_190); - x_193 = lean_box(0); + lean_dec_ref(x_194); + x_197 = lean_box(0); } -x_194 = 0; -x_195 = lean_unsigned_to_nat(0u); -x_196 = l_Float_ofScientific(x_108, x_194, x_195); -lean_dec(x_108); -x_197 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_198 = lean_float_div(x_196, x_197); -x_199 = l_Float_ofScientific(x_191, x_194, x_195); -lean_dec(x_191); -x_200 = lean_float_div(x_199, x_197); -x_201 = lean_box_float(x_198); -x_202 = lean_box_float(x_200); -if (lean_is_scalar(x_193)) { - x_203 = lean_alloc_ctor(0, 2, 0); +x_198 = 0; +x_199 = lean_unsigned_to_nat(0u); +x_200 = l_Float_ofScientific(x_112, x_198, x_199); +lean_dec(x_112); +x_201 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_202 = lean_float_div(x_200, x_201); +x_203 = l_Float_ofScientific(x_195, x_198, x_199); +lean_dec(x_195); +x_204 = lean_float_div(x_203, x_201); +x_205 = lean_box_float(x_202); +x_206 = lean_box_float(x_204); +if (lean_is_scalar(x_197)) { + x_207 = lean_alloc_ctor(0, 2, 0); } else { - x_203 = x_193; + x_207 = x_197; } -lean_ctor_set(x_203, 0, x_201); -lean_ctor_set(x_203, 1, x_202); -x_204 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_204, 0, x_189); -lean_ctor_set(x_204, 1, x_203); -x_17 = x_204; -x_18 = x_192; -goto block_106; +lean_ctor_set(x_207, 0, x_205); +lean_ctor_set(x_207, 1, x_206); +x_208 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_208, 0, x_193); +lean_ctor_set(x_208, 1, x_207); +x_17 = x_208; +x_18 = x_196; +goto block_110; } } -block_106: +block_110: { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_92; uint8_t x_93; +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; uint8_t x_25; x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); x_20 = lean_ctor_get(x_17, 0); @@ -5154,17 +5120,33 @@ lean_inc(x_21); x_22 = lean_ctor_get(x_19, 1); lean_inc(x_22); lean_dec(x_19); -x_92 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__2; -x_93 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_92); -if (x_93 == 0) +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__2; +x_24 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_23); +if (x_24 == 0) { -uint8_t x_94; -x_94 = 0; -x_23 = x_94; -goto block_91; +if (x_6 == 0) +{ +uint8_t x_90; +x_90 = 0; +x_25 = x_90; +goto block_89; } else { +lean_object* x_91; double x_92; double x_93; lean_object* x_94; +x_91 = lean_box(0); +x_92 = lean_unbox_float(x_21); +lean_dec(x_21); +x_93 = lean_unbox_float(x_22); +lean_dec(x_22); +x_94 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_92, x_93, x_5, x_91, x_9, x_10, x_18); +return x_94; +} +} +else +{ +if (x_6 == 0) +{ double x_95; double x_96; double x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; lean_object* x_101; double x_102; double x_103; double x_104; uint8_t x_105; x_95 = lean_unbox_float(x_22); x_96 = lean_unbox_float(x_21); @@ -5178,845 +5160,857 @@ lean_dec(x_99); x_103 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__4; x_104 = lean_float_div(x_102, x_103); x_105 = lean_float_decLt(x_104, x_97); -x_23 = x_105; -goto block_91; +x_25 = x_105; +goto block_89; } -block_91: +else { -if (x_6 == 0) +lean_object* x_106; double x_107; double x_108; lean_object* x_109; +x_106 = lean_box(0); +x_107 = lean_unbox_float(x_21); +lean_dec(x_21); +x_108 = lean_unbox_float(x_22); +lean_dec(x_22); +x_109 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_107, x_108, x_5, x_106, x_9, x_10, x_18); +return x_109; +} +} +block_89: { -if (x_23 == 0) +if (x_25 == 0) { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_dec(x_22); lean_dec(x_21); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_24 = lean_st_ref_take(x_10, x_18); -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -x_26 = lean_ctor_get(x_25, 3); -lean_inc(x_26); -x_27 = lean_ctor_get(x_24, 1); +x_26 = lean_st_ref_take(x_10, x_18); +x_27 = lean_ctor_get(x_26, 0); lean_inc(x_27); -lean_dec(x_24); -x_28 = !lean_is_exclusive(x_25); -if (x_28 == 0) -{ -lean_object* x_29; uint8_t x_30; -x_29 = lean_ctor_get(x_25, 3); -lean_dec(x_29); -x_30 = !lean_is_exclusive(x_26); +x_28 = lean_ctor_get(x_27, 3); +lean_inc(x_28); +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); +lean_dec(x_26); +x_30 = !lean_is_exclusive(x_27); if (x_30 == 0) { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_31 = lean_ctor_get(x_26, 0); -x_32 = l_Lean_PersistentArray_append___rarg(x_13, x_31); +lean_object* x_31; uint8_t x_32; +x_31 = lean_ctor_get(x_27, 3); lean_dec(x_31); -lean_ctor_set(x_26, 0, x_32); -x_33 = lean_st_ref_set(x_10, x_25, x_27); -x_34 = lean_ctor_get(x_33, 1); -lean_inc(x_34); +x_32 = !lean_is_exclusive(x_28); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_33 = lean_ctor_get(x_28, 0); +x_34 = l_Lean_PersistentArray_append___rarg(x_13, x_33); lean_dec(x_33); -x_35 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__2(x_20, x_9, x_10, x_34); +lean_ctor_set(x_28, 0, x_34); +x_35 = lean_st_ref_set(x_10, x_27, x_29); +x_36 = lean_ctor_get(x_35, 1); +lean_inc(x_36); +lean_dec(x_35); +x_37 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__2(x_20, x_9, x_10, x_36); lean_dec(x_10); lean_dec(x_9); lean_dec(x_20); -if (lean_obj_tag(x_35) == 0) +if (lean_obj_tag(x_37) == 0) { -uint8_t x_36; -x_36 = !lean_is_exclusive(x_35); -if (x_36 == 0) +uint8_t x_38; +x_38 = !lean_is_exclusive(x_37); +if (x_38 == 0) { -return x_35; +return x_37; } else { -lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_37 = lean_ctor_get(x_35, 0); -x_38 = lean_ctor_get(x_35, 1); -lean_inc(x_38); -lean_inc(x_37); -lean_dec(x_35); -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_37); -lean_ctor_set(x_39, 1, x_38); -return x_39; +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_37, 0); +x_40 = lean_ctor_get(x_37, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_37); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +return x_41; } } else { -uint8_t x_40; -x_40 = !lean_is_exclusive(x_35); -if (x_40 == 0) +uint8_t x_42; +x_42 = !lean_is_exclusive(x_37); +if (x_42 == 0) { -return x_35; +return x_37; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_35, 0); -x_42 = lean_ctor_get(x_35, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_35); -x_43 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_42); -return x_43; +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_37, 0); +x_44 = lean_ctor_get(x_37, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_37); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; } } } else { -uint64_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_44 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); -x_45 = lean_ctor_get(x_26, 0); -lean_inc(x_45); -lean_dec(x_26); -x_46 = l_Lean_PersistentArray_append___rarg(x_13, x_45); -lean_dec(x_45); -x_47 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_47, 0, x_46); -lean_ctor_set_uint64(x_47, sizeof(void*)*1, x_44); -lean_ctor_set(x_25, 3, x_47); -x_48 = lean_st_ref_set(x_10, x_25, x_27); -x_49 = lean_ctor_get(x_48, 1); -lean_inc(x_49); -lean_dec(x_48); -x_50 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__2(x_20, x_9, x_10, x_49); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_20); -if (lean_obj_tag(x_50) == 0) -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_51 = lean_ctor_get(x_50, 0); +uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); +x_47 = lean_ctor_get(x_28, 0); +lean_inc(x_47); +lean_dec(x_28); +x_48 = l_Lean_PersistentArray_append___rarg(x_13, x_47); +lean_dec(x_47); +x_49 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); +lean_ctor_set(x_27, 3, x_49); +x_50 = lean_st_ref_set(x_10, x_27, x_29); +x_51 = lean_ctor_get(x_50, 1); lean_inc(x_51); -x_52 = lean_ctor_get(x_50, 1); -lean_inc(x_52); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_53 = x_50; +lean_dec(x_50); +x_52 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__2(x_20, x_9, x_10, x_51); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_20); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_52, 1); +lean_inc(x_54); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_55 = x_52; } else { - lean_dec_ref(x_50); - x_53 = lean_box(0); + lean_dec_ref(x_52); + x_55 = lean_box(0); } -if (lean_is_scalar(x_53)) { - x_54 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_55)) { + x_56 = lean_alloc_ctor(0, 2, 0); } else { - x_54 = x_53; + x_56 = x_55; } -lean_ctor_set(x_54, 0, x_51); -lean_ctor_set(x_54, 1, x_52); -return x_54; +lean_ctor_set(x_56, 0, x_53); +lean_ctor_set(x_56, 1, x_54); +return x_56; } else { -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_55 = lean_ctor_get(x_50, 0); -lean_inc(x_55); -x_56 = lean_ctor_get(x_50, 1); -lean_inc(x_56); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_57 = x_50; +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_57 = lean_ctor_get(x_52, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_52, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_59 = x_52; } else { - lean_dec_ref(x_50); - x_57 = lean_box(0); + lean_dec_ref(x_52); + x_59 = lean_box(0); } -if (lean_is_scalar(x_57)) { - x_58 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(1, 2, 0); } else { - x_58 = x_57; + x_60 = x_59; } -lean_ctor_set(x_58, 0, x_55); -lean_ctor_set(x_58, 1, x_56); -return x_58; +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_58); +return x_60; } } } else { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint64_t x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_59 = lean_ctor_get(x_25, 0); -x_60 = lean_ctor_get(x_25, 1); -x_61 = lean_ctor_get(x_25, 2); -x_62 = lean_ctor_get(x_25, 4); -x_63 = lean_ctor_get(x_25, 5); -x_64 = lean_ctor_get(x_25, 6); -x_65 = lean_ctor_get(x_25, 7); +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_61 = lean_ctor_get(x_27, 0); +x_62 = lean_ctor_get(x_27, 1); +x_63 = lean_ctor_get(x_27, 2); +x_64 = lean_ctor_get(x_27, 4); +x_65 = lean_ctor_get(x_27, 5); +x_66 = lean_ctor_get(x_27, 6); +x_67 = lean_ctor_get(x_27, 7); +lean_inc(x_67); +lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); lean_inc(x_62); lean_inc(x_61); -lean_inc(x_60); -lean_inc(x_59); -lean_dec(x_25); -x_66 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); -x_67 = lean_ctor_get(x_26, 0); -lean_inc(x_67); -if (lean_is_exclusive(x_26)) { - lean_ctor_release(x_26, 0); - x_68 = x_26; +lean_dec(x_27); +x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); +x_69 = lean_ctor_get(x_28, 0); +lean_inc(x_69); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + x_70 = x_28; } else { - lean_dec_ref(x_26); - x_68 = lean_box(0); + lean_dec_ref(x_28); + x_70 = lean_box(0); } -x_69 = l_Lean_PersistentArray_append___rarg(x_13, x_67); -lean_dec(x_67); -if (lean_is_scalar(x_68)) { - x_70 = lean_alloc_ctor(0, 1, 8); +x_71 = l_Lean_PersistentArray_append___rarg(x_13, x_69); +lean_dec(x_69); +if (lean_is_scalar(x_70)) { + x_72 = lean_alloc_ctor(0, 1, 8); } else { - x_70 = x_68; + x_72 = x_70; } -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set_uint64(x_70, sizeof(void*)*1, x_66); -x_71 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_71, 0, x_59); -lean_ctor_set(x_71, 1, x_60); -lean_ctor_set(x_71, 2, x_61); -lean_ctor_set(x_71, 3, x_70); -lean_ctor_set(x_71, 4, x_62); -lean_ctor_set(x_71, 5, x_63); -lean_ctor_set(x_71, 6, x_64); -lean_ctor_set(x_71, 7, x_65); -x_72 = lean_st_ref_set(x_10, x_71, x_27); -x_73 = lean_ctor_get(x_72, 1); -lean_inc(x_73); -lean_dec(x_72); -x_74 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__2(x_20, x_9, x_10, x_73); +lean_ctor_set(x_72, 0, x_71); +lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); +x_73 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_73, 0, x_61); +lean_ctor_set(x_73, 1, x_62); +lean_ctor_set(x_73, 2, x_63); +lean_ctor_set(x_73, 3, x_72); +lean_ctor_set(x_73, 4, x_64); +lean_ctor_set(x_73, 5, x_65); +lean_ctor_set(x_73, 6, x_66); +lean_ctor_set(x_73, 7, x_67); +x_74 = lean_st_ref_set(x_10, x_73, x_29); +x_75 = lean_ctor_get(x_74, 1); +lean_inc(x_75); +lean_dec(x_74); +x_76 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__2(x_20, x_9, x_10, x_75); lean_dec(x_10); lean_dec(x_9); lean_dec(x_20); -if (lean_obj_tag(x_74) == 0) +if (lean_obj_tag(x_76) == 0) { -lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_75 = lean_ctor_get(x_74, 0); -lean_inc(x_75); -x_76 = lean_ctor_get(x_74, 1); -lean_inc(x_76); -if (lean_is_exclusive(x_74)) { - lean_ctor_release(x_74, 0); - lean_ctor_release(x_74, 1); - x_77 = x_74; +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_77 = lean_ctor_get(x_76, 0); +lean_inc(x_77); +x_78 = lean_ctor_get(x_76, 1); +lean_inc(x_78); +if (lean_is_exclusive(x_76)) { + lean_ctor_release(x_76, 0); + lean_ctor_release(x_76, 1); + x_79 = x_76; } else { - lean_dec_ref(x_74); - x_77 = lean_box(0); + lean_dec_ref(x_76); + x_79 = lean_box(0); } -if (lean_is_scalar(x_77)) { - x_78 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_79)) { + x_80 = lean_alloc_ctor(0, 2, 0); } else { - x_78 = x_77; + x_80 = x_79; } -lean_ctor_set(x_78, 0, x_75); -lean_ctor_set(x_78, 1, x_76); -return x_78; +lean_ctor_set(x_80, 0, x_77); +lean_ctor_set(x_80, 1, x_78); +return x_80; } else { -lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_79 = lean_ctor_get(x_74, 0); -lean_inc(x_79); -x_80 = lean_ctor_get(x_74, 1); -lean_inc(x_80); -if (lean_is_exclusive(x_74)) { - lean_ctor_release(x_74, 0); - lean_ctor_release(x_74, 1); - x_81 = x_74; +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_81 = lean_ctor_get(x_76, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_76, 1); +lean_inc(x_82); +if (lean_is_exclusive(x_76)) { + lean_ctor_release(x_76, 0); + lean_ctor_release(x_76, 1); + x_83 = x_76; } else { - lean_dec_ref(x_74); - x_81 = lean_box(0); + lean_dec_ref(x_76); + x_83 = lean_box(0); } -if (lean_is_scalar(x_81)) { - x_82 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_83)) { + x_84 = lean_alloc_ctor(1, 2, 0); } else { - x_82 = x_81; + x_84 = x_83; } -lean_ctor_set(x_82, 0, x_79); -lean_ctor_set(x_82, 1, x_80); -return x_82; +lean_ctor_set(x_84, 0, x_81); +lean_ctor_set(x_84, 1, x_82); +return x_84; } } } else { -lean_object* x_83; double x_84; double x_85; lean_object* x_86; -x_83 = lean_box(0); -x_84 = lean_unbox_float(x_21); +lean_object* x_85; double x_86; double x_87; lean_object* x_88; +x_85 = lean_box(0); +x_86 = lean_unbox_float(x_21); lean_dec(x_21); -x_85 = lean_unbox_float(x_22); +x_87 = lean_unbox_float(x_22); lean_dec(x_22); -x_86 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_20, x_1, x_23, x_84, x_85, x_5, x_83, x_9, x_10, x_18); -return x_86; -} -} -else -{ -lean_object* x_87; double x_88; double x_89; lean_object* x_90; -x_87 = lean_box(0); -x_88 = lean_unbox_float(x_21); -lean_dec(x_21); -x_89 = lean_unbox_float(x_22); -lean_dec(x_22); -x_90 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_20, x_1, x_23, x_88, x_89, x_5, x_87, x_9, x_10, x_18); -return x_90; +x_88 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_86, x_87, x_5, x_85, x_9, x_10, x_18); +return x_88; } } } } else { -lean_object* x_205; lean_object* x_206; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; -x_293 = lean_io_get_num_heartbeats(x_14); -x_294 = lean_ctor_get(x_293, 0); -lean_inc(x_294); -x_295 = lean_ctor_get(x_293, 1); -lean_inc(x_295); -lean_dec(x_293); +lean_object* x_209; lean_object* x_210; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; +x_301 = lean_io_get_num_heartbeats(x_14); +x_302 = lean_ctor_get(x_301, 0); +lean_inc(x_302); +x_303 = lean_ctor_get(x_301, 1); +lean_inc(x_303); +lean_dec(x_301); lean_inc(x_10); lean_inc(x_9); -x_296 = lean_apply_3(x_7, x_9, x_10, x_295); -if (lean_obj_tag(x_296) == 0) +x_304 = lean_apply_3(x_7, x_9, x_10, x_303); +if (lean_obj_tag(x_304) == 0) { -uint8_t x_297; -x_297 = !lean_is_exclusive(x_296); -if (x_297 == 0) +uint8_t x_305; +x_305 = !lean_is_exclusive(x_304); +if (x_305 == 0) { -lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; uint8_t x_302; -x_298 = lean_ctor_get(x_296, 0); -x_299 = lean_ctor_get(x_296, 1); -x_300 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_300, 0, x_298); -x_301 = lean_io_get_num_heartbeats(x_299); -x_302 = !lean_is_exclusive(x_301); -if (x_302 == 0) +lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; uint8_t x_310; +x_306 = lean_ctor_get(x_304, 0); +x_307 = lean_ctor_get(x_304, 1); +x_308 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_308, 0, x_306); +x_309 = lean_io_get_num_heartbeats(x_307); +x_310 = !lean_is_exclusive(x_309); +if (x_310 == 0) { -lean_object* x_303; lean_object* x_304; uint8_t x_305; lean_object* x_306; double x_307; double x_308; lean_object* x_309; lean_object* x_310; -x_303 = lean_ctor_get(x_301, 0); -x_304 = lean_ctor_get(x_301, 1); -x_305 = 0; -x_306 = lean_unsigned_to_nat(0u); -x_307 = l_Float_ofScientific(x_294, x_305, x_306); -lean_dec(x_294); -x_308 = l_Float_ofScientific(x_303, x_305, x_306); -lean_dec(x_303); -x_309 = lean_box_float(x_307); -x_310 = lean_box_float(x_308); -lean_ctor_set(x_301, 1, x_310); -lean_ctor_set(x_301, 0, x_309); -lean_ctor_set(x_296, 1, x_301); -lean_ctor_set(x_296, 0, x_300); -x_205 = x_296; -x_206 = x_304; -goto block_292; -} -else -{ -lean_object* x_311; lean_object* x_312; uint8_t x_313; lean_object* x_314; double x_315; double x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; -x_311 = lean_ctor_get(x_301, 0); -x_312 = lean_ctor_get(x_301, 1); -lean_inc(x_312); -lean_inc(x_311); -lean_dec(x_301); +lean_object* x_311; lean_object* x_312; uint8_t x_313; lean_object* x_314; double x_315; double x_316; lean_object* x_317; lean_object* x_318; +x_311 = lean_ctor_get(x_309, 0); +x_312 = lean_ctor_get(x_309, 1); x_313 = 0; x_314 = lean_unsigned_to_nat(0u); -x_315 = l_Float_ofScientific(x_294, x_313, x_314); -lean_dec(x_294); +x_315 = l_Float_ofScientific(x_302, x_313, x_314); +lean_dec(x_302); x_316 = l_Float_ofScientific(x_311, x_313, x_314); lean_dec(x_311); x_317 = lean_box_float(x_315); x_318 = lean_box_float(x_316); -x_319 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_319, 0, x_317); -lean_ctor_set(x_319, 1, x_318); -lean_ctor_set(x_296, 1, x_319); -lean_ctor_set(x_296, 0, x_300); -x_205 = x_296; -x_206 = x_312; -goto block_292; -} +lean_ctor_set(x_309, 1, x_318); +lean_ctor_set(x_309, 0, x_317); +lean_ctor_set(x_304, 1, x_309); +lean_ctor_set(x_304, 0, x_308); +x_209 = x_304; +x_210 = x_312; +goto block_300; } else { -lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; uint8_t x_327; lean_object* x_328; double x_329; double x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; -x_320 = lean_ctor_get(x_296, 0); -x_321 = lean_ctor_get(x_296, 1); -lean_inc(x_321); +lean_object* x_319; lean_object* x_320; uint8_t x_321; lean_object* x_322; double x_323; double x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; +x_319 = lean_ctor_get(x_309, 0); +x_320 = lean_ctor_get(x_309, 1); lean_inc(x_320); -lean_dec(x_296); -x_322 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_322, 0, x_320); -x_323 = lean_io_get_num_heartbeats(x_321); -x_324 = lean_ctor_get(x_323, 0); -lean_inc(x_324); -x_325 = lean_ctor_get(x_323, 1); -lean_inc(x_325); -if (lean_is_exclusive(x_323)) { - lean_ctor_release(x_323, 0); - lean_ctor_release(x_323, 1); - x_326 = x_323; -} else { - lean_dec_ref(x_323); - x_326 = lean_box(0); -} -x_327 = 0; -x_328 = lean_unsigned_to_nat(0u); -x_329 = l_Float_ofScientific(x_294, x_327, x_328); -lean_dec(x_294); -x_330 = l_Float_ofScientific(x_324, x_327, x_328); -lean_dec(x_324); -x_331 = lean_box_float(x_329); -x_332 = lean_box_float(x_330); -if (lean_is_scalar(x_326)) { - x_333 = lean_alloc_ctor(0, 2, 0); -} else { - x_333 = x_326; -} -lean_ctor_set(x_333, 0, x_331); -lean_ctor_set(x_333, 1, x_332); -x_334 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_334, 0, x_322); -lean_ctor_set(x_334, 1, x_333); -x_205 = x_334; -x_206 = x_325; -goto block_292; +lean_inc(x_319); +lean_dec(x_309); +x_321 = 0; +x_322 = lean_unsigned_to_nat(0u); +x_323 = l_Float_ofScientific(x_302, x_321, x_322); +lean_dec(x_302); +x_324 = l_Float_ofScientific(x_319, x_321, x_322); +lean_dec(x_319); +x_325 = lean_box_float(x_323); +x_326 = lean_box_float(x_324); +x_327 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_327, 0, x_325); +lean_ctor_set(x_327, 1, x_326); +lean_ctor_set(x_304, 1, x_327); +lean_ctor_set(x_304, 0, x_308); +x_209 = x_304; +x_210 = x_320; +goto block_300; } } else { -uint8_t x_335; -x_335 = !lean_is_exclusive(x_296); -if (x_335 == 0) -{ -lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; uint8_t x_340; -x_336 = lean_ctor_get(x_296, 0); -x_337 = lean_ctor_get(x_296, 1); -x_338 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_338, 0, x_336); -x_339 = lean_io_get_num_heartbeats(x_337); -x_340 = !lean_is_exclusive(x_339); -if (x_340 == 0) -{ -lean_object* x_341; lean_object* x_342; uint8_t x_343; lean_object* x_344; double x_345; double x_346; lean_object* x_347; lean_object* x_348; -x_341 = lean_ctor_get(x_339, 0); -x_342 = lean_ctor_get(x_339, 1); -x_343 = 0; -x_344 = lean_unsigned_to_nat(0u); -x_345 = l_Float_ofScientific(x_294, x_343, x_344); -lean_dec(x_294); -x_346 = l_Float_ofScientific(x_341, x_343, x_344); -lean_dec(x_341); -x_347 = lean_box_float(x_345); -x_348 = lean_box_float(x_346); -lean_ctor_set(x_339, 1, x_348); -lean_ctor_set(x_339, 0, x_347); -lean_ctor_set_tag(x_296, 0); -lean_ctor_set(x_296, 1, x_339); -lean_ctor_set(x_296, 0, x_338); -x_205 = x_296; -x_206 = x_342; -goto block_292; +lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; uint8_t x_335; lean_object* x_336; double x_337; double x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; +x_328 = lean_ctor_get(x_304, 0); +x_329 = lean_ctor_get(x_304, 1); +lean_inc(x_329); +lean_inc(x_328); +lean_dec(x_304); +x_330 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_330, 0, x_328); +x_331 = lean_io_get_num_heartbeats(x_329); +x_332 = lean_ctor_get(x_331, 0); +lean_inc(x_332); +x_333 = lean_ctor_get(x_331, 1); +lean_inc(x_333); +if (lean_is_exclusive(x_331)) { + lean_ctor_release(x_331, 0); + lean_ctor_release(x_331, 1); + x_334 = x_331; +} else { + lean_dec_ref(x_331); + x_334 = lean_box(0); +} +x_335 = 0; +x_336 = lean_unsigned_to_nat(0u); +x_337 = l_Float_ofScientific(x_302, x_335, x_336); +lean_dec(x_302); +x_338 = l_Float_ofScientific(x_332, x_335, x_336); +lean_dec(x_332); +x_339 = lean_box_float(x_337); +x_340 = lean_box_float(x_338); +if (lean_is_scalar(x_334)) { + x_341 = lean_alloc_ctor(0, 2, 0); +} else { + x_341 = x_334; +} +lean_ctor_set(x_341, 0, x_339); +lean_ctor_set(x_341, 1, x_340); +x_342 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_342, 0, x_330); +lean_ctor_set(x_342, 1, x_341); +x_209 = x_342; +x_210 = x_333; +goto block_300; +} } else { -lean_object* x_349; lean_object* x_350; uint8_t x_351; lean_object* x_352; double x_353; double x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; -x_349 = lean_ctor_get(x_339, 0); -x_350 = lean_ctor_get(x_339, 1); -lean_inc(x_350); -lean_inc(x_349); -lean_dec(x_339); +uint8_t x_343; +x_343 = !lean_is_exclusive(x_304); +if (x_343 == 0) +{ +lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; uint8_t x_348; +x_344 = lean_ctor_get(x_304, 0); +x_345 = lean_ctor_get(x_304, 1); +x_346 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_346, 0, x_344); +x_347 = lean_io_get_num_heartbeats(x_345); +x_348 = !lean_is_exclusive(x_347); +if (x_348 == 0) +{ +lean_object* x_349; lean_object* x_350; uint8_t x_351; lean_object* x_352; double x_353; double x_354; lean_object* x_355; lean_object* x_356; +x_349 = lean_ctor_get(x_347, 0); +x_350 = lean_ctor_get(x_347, 1); x_351 = 0; x_352 = lean_unsigned_to_nat(0u); -x_353 = l_Float_ofScientific(x_294, x_351, x_352); -lean_dec(x_294); +x_353 = l_Float_ofScientific(x_302, x_351, x_352); +lean_dec(x_302); x_354 = l_Float_ofScientific(x_349, x_351, x_352); lean_dec(x_349); x_355 = lean_box_float(x_353); x_356 = lean_box_float(x_354); -x_357 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_357, 0, x_355); -lean_ctor_set(x_357, 1, x_356); -lean_ctor_set_tag(x_296, 0); -lean_ctor_set(x_296, 1, x_357); -lean_ctor_set(x_296, 0, x_338); -x_205 = x_296; -x_206 = x_350; -goto block_292; -} +lean_ctor_set(x_347, 1, x_356); +lean_ctor_set(x_347, 0, x_355); +lean_ctor_set_tag(x_304, 0); +lean_ctor_set(x_304, 1, x_347); +lean_ctor_set(x_304, 0, x_346); +x_209 = x_304; +x_210 = x_350; +goto block_300; } else { -lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; uint8_t x_365; lean_object* x_366; double x_367; double x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; -x_358 = lean_ctor_get(x_296, 0); -x_359 = lean_ctor_get(x_296, 1); -lean_inc(x_359); +lean_object* x_357; lean_object* x_358; uint8_t x_359; lean_object* x_360; double x_361; double x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; +x_357 = lean_ctor_get(x_347, 0); +x_358 = lean_ctor_get(x_347, 1); lean_inc(x_358); -lean_dec(x_296); -x_360 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_360, 0, x_358); -x_361 = lean_io_get_num_heartbeats(x_359); -x_362 = lean_ctor_get(x_361, 0); -lean_inc(x_362); -x_363 = lean_ctor_get(x_361, 1); -lean_inc(x_363); -if (lean_is_exclusive(x_361)) { - lean_ctor_release(x_361, 0); - lean_ctor_release(x_361, 1); - x_364 = x_361; -} else { - lean_dec_ref(x_361); - x_364 = lean_box(0); +lean_inc(x_357); +lean_dec(x_347); +x_359 = 0; +x_360 = lean_unsigned_to_nat(0u); +x_361 = l_Float_ofScientific(x_302, x_359, x_360); +lean_dec(x_302); +x_362 = l_Float_ofScientific(x_357, x_359, x_360); +lean_dec(x_357); +x_363 = lean_box_float(x_361); +x_364 = lean_box_float(x_362); +x_365 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_365, 0, x_363); +lean_ctor_set(x_365, 1, x_364); +lean_ctor_set_tag(x_304, 0); +lean_ctor_set(x_304, 1, x_365); +lean_ctor_set(x_304, 0, x_346); +x_209 = x_304; +x_210 = x_358; +goto block_300; } -x_365 = 0; -x_366 = lean_unsigned_to_nat(0u); -x_367 = l_Float_ofScientific(x_294, x_365, x_366); -lean_dec(x_294); -x_368 = l_Float_ofScientific(x_362, x_365, x_366); -lean_dec(x_362); -x_369 = lean_box_float(x_367); -x_370 = lean_box_float(x_368); -if (lean_is_scalar(x_364)) { - x_371 = lean_alloc_ctor(0, 2, 0); -} else { - x_371 = x_364; -} -lean_ctor_set(x_371, 0, x_369); -lean_ctor_set(x_371, 1, x_370); -x_372 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_372, 0, x_360); -lean_ctor_set(x_372, 1, x_371); -x_205 = x_372; -x_206 = x_363; -goto block_292; -} -} -block_292: -{ -lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; uint8_t x_211; lean_object* x_280; uint8_t x_281; -x_207 = lean_ctor_get(x_205, 1); -lean_inc(x_207); -x_208 = lean_ctor_get(x_205, 0); -lean_inc(x_208); -lean_dec(x_205); -x_209 = lean_ctor_get(x_207, 0); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 1); -lean_inc(x_210); -lean_dec(x_207); -x_280 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__2; -x_281 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_280); -if (x_281 == 0) -{ -uint8_t x_282; -x_282 = 0; -x_211 = x_282; -goto block_279; } else { -double x_283; double x_284; double x_285; lean_object* x_286; lean_object* x_287; uint8_t x_288; lean_object* x_289; double x_290; uint8_t x_291; -x_283 = lean_unbox_float(x_210); -x_284 = lean_unbox_float(x_209); -x_285 = lean_float_sub(x_283, x_284); -x_286 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__3; -x_287 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_286); -x_288 = 0; -x_289 = lean_unsigned_to_nat(0u); -x_290 = l_Float_ofScientific(x_287, x_288, x_289); -lean_dec(x_287); -x_291 = lean_float_decLt(x_290, x_285); -x_211 = x_291; -goto block_279; +lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; uint8_t x_373; lean_object* x_374; double x_375; double x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; +x_366 = lean_ctor_get(x_304, 0); +x_367 = lean_ctor_get(x_304, 1); +lean_inc(x_367); +lean_inc(x_366); +lean_dec(x_304); +x_368 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_368, 0, x_366); +x_369 = lean_io_get_num_heartbeats(x_367); +x_370 = lean_ctor_get(x_369, 0); +lean_inc(x_370); +x_371 = lean_ctor_get(x_369, 1); +lean_inc(x_371); +if (lean_is_exclusive(x_369)) { + lean_ctor_release(x_369, 0); + lean_ctor_release(x_369, 1); + x_372 = x_369; +} else { + lean_dec_ref(x_369); + x_372 = lean_box(0); } -block_279: +x_373 = 0; +x_374 = lean_unsigned_to_nat(0u); +x_375 = l_Float_ofScientific(x_302, x_373, x_374); +lean_dec(x_302); +x_376 = l_Float_ofScientific(x_370, x_373, x_374); +lean_dec(x_370); +x_377 = lean_box_float(x_375); +x_378 = lean_box_float(x_376); +if (lean_is_scalar(x_372)) { + x_379 = lean_alloc_ctor(0, 2, 0); +} else { + x_379 = x_372; +} +lean_ctor_set(x_379, 0, x_377); +lean_ctor_set(x_379, 1, x_378); +x_380 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_380, 0, x_368); +lean_ctor_set(x_380, 1, x_379); +x_209 = x_380; +x_210 = x_371; +goto block_300; +} +} +block_300: +{ +lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; uint8_t x_217; +x_211 = lean_ctor_get(x_209, 1); +lean_inc(x_211); +x_212 = lean_ctor_get(x_209, 0); +lean_inc(x_212); +lean_dec(x_209); +x_213 = lean_ctor_get(x_211, 0); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 1); +lean_inc(x_214); +lean_dec(x_211); +x_215 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__2; +x_216 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_215); +if (x_216 == 0) { if (x_6 == 0) { -if (x_211 == 0) +uint8_t x_282; +x_282 = 0; +x_217 = x_282; +goto block_281; +} +else { -lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; -lean_dec(x_210); -lean_dec(x_209); +lean_object* x_283; double x_284; double x_285; lean_object* x_286; +x_283 = lean_box(0); +x_284 = lean_unbox_float(x_213); +lean_dec(x_213); +x_285 = lean_unbox_float(x_214); +lean_dec(x_214); +x_286 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_284, x_285, x_5, x_283, x_9, x_10, x_210); +return x_286; +} +} +else +{ +if (x_6 == 0) +{ +double x_287; double x_288; double x_289; lean_object* x_290; lean_object* x_291; uint8_t x_292; lean_object* x_293; double x_294; uint8_t x_295; +x_287 = lean_unbox_float(x_214); +x_288 = lean_unbox_float(x_213); +x_289 = lean_float_sub(x_287, x_288); +x_290 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__3; +x_291 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_290); +x_292 = 0; +x_293 = lean_unsigned_to_nat(0u); +x_294 = l_Float_ofScientific(x_291, x_292, x_293); +lean_dec(x_291); +x_295 = lean_float_decLt(x_294, x_289); +x_217 = x_295; +goto block_281; +} +else +{ +lean_object* x_296; double x_297; double x_298; lean_object* x_299; +x_296 = lean_box(0); +x_297 = lean_unbox_float(x_213); +lean_dec(x_213); +x_298 = lean_unbox_float(x_214); +lean_dec(x_214); +x_299 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_297, x_298, x_5, x_296, x_9, x_10, x_210); +return x_299; +} +} +block_281: +{ +if (x_217 == 0) +{ +lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; uint8_t x_222; +lean_dec(x_214); +lean_dec(x_213); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_212 = lean_st_ref_take(x_10, x_206); -x_213 = lean_ctor_get(x_212, 0); -lean_inc(x_213); -x_214 = lean_ctor_get(x_213, 3); -lean_inc(x_214); -x_215 = lean_ctor_get(x_212, 1); -lean_inc(x_215); -lean_dec(x_212); -x_216 = !lean_is_exclusive(x_213); -if (x_216 == 0) +x_218 = lean_st_ref_take(x_10, x_210); +x_219 = lean_ctor_get(x_218, 0); +lean_inc(x_219); +x_220 = lean_ctor_get(x_219, 3); +lean_inc(x_220); +x_221 = lean_ctor_get(x_218, 1); +lean_inc(x_221); +lean_dec(x_218); +x_222 = !lean_is_exclusive(x_219); +if (x_222 == 0) { -lean_object* x_217; uint8_t x_218; -x_217 = lean_ctor_get(x_213, 3); -lean_dec(x_217); -x_218 = !lean_is_exclusive(x_214); -if (x_218 == 0) -{ -lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; -x_219 = lean_ctor_get(x_214, 0); -x_220 = l_Lean_PersistentArray_append___rarg(x_13, x_219); -lean_dec(x_219); -lean_ctor_set(x_214, 0, x_220); -x_221 = lean_st_ref_set(x_10, x_213, x_215); -x_222 = lean_ctor_get(x_221, 1); -lean_inc(x_222); -lean_dec(x_221); -x_223 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__2(x_208, x_9, x_10, x_222); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_223) == 0) -{ -uint8_t x_224; -x_224 = !lean_is_exclusive(x_223); +lean_object* x_223; uint8_t x_224; +x_223 = lean_ctor_get(x_219, 3); +lean_dec(x_223); +x_224 = !lean_is_exclusive(x_220); if (x_224 == 0) { -return x_223; -} -else -{ -lean_object* x_225; lean_object* x_226; lean_object* x_227; -x_225 = lean_ctor_get(x_223, 0); -x_226 = lean_ctor_get(x_223, 1); -lean_inc(x_226); -lean_inc(x_225); -lean_dec(x_223); -x_227 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_227, 0, x_225); -lean_ctor_set(x_227, 1, x_226); -return x_227; -} -} -else -{ -uint8_t x_228; -x_228 = !lean_is_exclusive(x_223); -if (x_228 == 0) -{ -return x_223; -} -else -{ -lean_object* x_229; lean_object* x_230; lean_object* x_231; -x_229 = lean_ctor_get(x_223, 0); -x_230 = lean_ctor_get(x_223, 1); -lean_inc(x_230); -lean_inc(x_229); -lean_dec(x_223); -x_231 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_231, 0, x_229); -lean_ctor_set(x_231, 1, x_230); -return x_231; -} -} -} -else -{ -uint64_t x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; -x_232 = lean_ctor_get_uint64(x_214, sizeof(void*)*1); -x_233 = lean_ctor_get(x_214, 0); -lean_inc(x_233); -lean_dec(x_214); -x_234 = l_Lean_PersistentArray_append___rarg(x_13, x_233); -lean_dec(x_233); -x_235 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_235, 0, x_234); -lean_ctor_set_uint64(x_235, sizeof(void*)*1, x_232); -lean_ctor_set(x_213, 3, x_235); -x_236 = lean_st_ref_set(x_10, x_213, x_215); -x_237 = lean_ctor_get(x_236, 1); -lean_inc(x_237); -lean_dec(x_236); -x_238 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__2(x_208, x_9, x_10, x_237); +lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; +x_225 = lean_ctor_get(x_220, 0); +x_226 = l_Lean_PersistentArray_append___rarg(x_13, x_225); +lean_dec(x_225); +lean_ctor_set(x_220, 0, x_226); +x_227 = lean_st_ref_set(x_10, x_219, x_221); +x_228 = lean_ctor_get(x_227, 1); +lean_inc(x_228); +lean_dec(x_227); +x_229 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__2(x_212, x_9, x_10, x_228); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_238) == 0) +lean_dec(x_212); +if (lean_obj_tag(x_229) == 0) { -lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; -x_239 = lean_ctor_get(x_238, 0); +uint8_t x_230; +x_230 = !lean_is_exclusive(x_229); +if (x_230 == 0) +{ +return x_229; +} +else +{ +lean_object* x_231; lean_object* x_232; lean_object* x_233; +x_231 = lean_ctor_get(x_229, 0); +x_232 = lean_ctor_get(x_229, 1); +lean_inc(x_232); +lean_inc(x_231); +lean_dec(x_229); +x_233 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_233, 0, x_231); +lean_ctor_set(x_233, 1, x_232); +return x_233; +} +} +else +{ +uint8_t x_234; +x_234 = !lean_is_exclusive(x_229); +if (x_234 == 0) +{ +return x_229; +} +else +{ +lean_object* x_235; lean_object* x_236; lean_object* x_237; +x_235 = lean_ctor_get(x_229, 0); +x_236 = lean_ctor_get(x_229, 1); +lean_inc(x_236); +lean_inc(x_235); +lean_dec(x_229); +x_237 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_237, 0, x_235); +lean_ctor_set(x_237, 1, x_236); +return x_237; +} +} +} +else +{ +uint64_t x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; +x_238 = lean_ctor_get_uint64(x_220, sizeof(void*)*1); +x_239 = lean_ctor_get(x_220, 0); lean_inc(x_239); -x_240 = lean_ctor_get(x_238, 1); -lean_inc(x_240); -if (lean_is_exclusive(x_238)) { - lean_ctor_release(x_238, 0); - lean_ctor_release(x_238, 1); - x_241 = x_238; -} else { - lean_dec_ref(x_238); - x_241 = lean_box(0); -} -if (lean_is_scalar(x_241)) { - x_242 = lean_alloc_ctor(0, 2, 0); -} else { - x_242 = x_241; -} -lean_ctor_set(x_242, 0, x_239); -lean_ctor_set(x_242, 1, x_240); -return x_242; -} -else -{ -lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; -x_243 = lean_ctor_get(x_238, 0); +lean_dec(x_220); +x_240 = l_Lean_PersistentArray_append___rarg(x_13, x_239); +lean_dec(x_239); +x_241 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_241, 0, x_240); +lean_ctor_set_uint64(x_241, sizeof(void*)*1, x_238); +lean_ctor_set(x_219, 3, x_241); +x_242 = lean_st_ref_set(x_10, x_219, x_221); +x_243 = lean_ctor_get(x_242, 1); lean_inc(x_243); -x_244 = lean_ctor_get(x_238, 1); -lean_inc(x_244); -if (lean_is_exclusive(x_238)) { - lean_ctor_release(x_238, 0); - lean_ctor_release(x_238, 1); - x_245 = x_238; -} else { - lean_dec_ref(x_238); - x_245 = lean_box(0); -} -if (lean_is_scalar(x_245)) { - x_246 = lean_alloc_ctor(1, 2, 0); -} else { - x_246 = x_245; -} -lean_ctor_set(x_246, 0, x_243); -lean_ctor_set(x_246, 1, x_244); -return x_246; -} -} -} -else -{ -lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; uint64_t x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; -x_247 = lean_ctor_get(x_213, 0); -x_248 = lean_ctor_get(x_213, 1); -x_249 = lean_ctor_get(x_213, 2); -x_250 = lean_ctor_get(x_213, 4); -x_251 = lean_ctor_get(x_213, 5); -x_252 = lean_ctor_get(x_213, 6); -x_253 = lean_ctor_get(x_213, 7); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_inc(x_248); -lean_inc(x_247); -lean_dec(x_213); -x_254 = lean_ctor_get_uint64(x_214, sizeof(void*)*1); -x_255 = lean_ctor_get(x_214, 0); -lean_inc(x_255); -if (lean_is_exclusive(x_214)) { - lean_ctor_release(x_214, 0); - x_256 = x_214; -} else { - lean_dec_ref(x_214); - x_256 = lean_box(0); -} -x_257 = l_Lean_PersistentArray_append___rarg(x_13, x_255); -lean_dec(x_255); -if (lean_is_scalar(x_256)) { - x_258 = lean_alloc_ctor(0, 1, 8); -} else { - x_258 = x_256; -} -lean_ctor_set(x_258, 0, x_257); -lean_ctor_set_uint64(x_258, sizeof(void*)*1, x_254); -x_259 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_259, 0, x_247); -lean_ctor_set(x_259, 1, x_248); -lean_ctor_set(x_259, 2, x_249); -lean_ctor_set(x_259, 3, x_258); -lean_ctor_set(x_259, 4, x_250); -lean_ctor_set(x_259, 5, x_251); -lean_ctor_set(x_259, 6, x_252); -lean_ctor_set(x_259, 7, x_253); -x_260 = lean_st_ref_set(x_10, x_259, x_215); -x_261 = lean_ctor_get(x_260, 1); -lean_inc(x_261); -lean_dec(x_260); -x_262 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__2(x_208, x_9, x_10, x_261); +lean_dec(x_242); +x_244 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__2(x_212, x_9, x_10, x_243); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_262) == 0) +lean_dec(x_212); +if (lean_obj_tag(x_244) == 0) { -lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; -x_263 = lean_ctor_get(x_262, 0); -lean_inc(x_263); -x_264 = lean_ctor_get(x_262, 1); -lean_inc(x_264); -if (lean_is_exclusive(x_262)) { - lean_ctor_release(x_262, 0); - lean_ctor_release(x_262, 1); - x_265 = x_262; +lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; +x_245 = lean_ctor_get(x_244, 0); +lean_inc(x_245); +x_246 = lean_ctor_get(x_244, 1); +lean_inc(x_246); +if (lean_is_exclusive(x_244)) { + lean_ctor_release(x_244, 0); + lean_ctor_release(x_244, 1); + x_247 = x_244; } else { - lean_dec_ref(x_262); - x_265 = lean_box(0); + lean_dec_ref(x_244); + x_247 = lean_box(0); } -if (lean_is_scalar(x_265)) { - x_266 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_247)) { + x_248 = lean_alloc_ctor(0, 2, 0); } else { - x_266 = x_265; + x_248 = x_247; } -lean_ctor_set(x_266, 0, x_263); -lean_ctor_set(x_266, 1, x_264); -return x_266; +lean_ctor_set(x_248, 0, x_245); +lean_ctor_set(x_248, 1, x_246); +return x_248; } else { -lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; -x_267 = lean_ctor_get(x_262, 0); +lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; +x_249 = lean_ctor_get(x_244, 0); +lean_inc(x_249); +x_250 = lean_ctor_get(x_244, 1); +lean_inc(x_250); +if (lean_is_exclusive(x_244)) { + lean_ctor_release(x_244, 0); + lean_ctor_release(x_244, 1); + x_251 = x_244; +} else { + lean_dec_ref(x_244); + x_251 = lean_box(0); +} +if (lean_is_scalar(x_251)) { + x_252 = lean_alloc_ctor(1, 2, 0); +} else { + x_252 = x_251; +} +lean_ctor_set(x_252, 0, x_249); +lean_ctor_set(x_252, 1, x_250); +return x_252; +} +} +} +else +{ +lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; uint64_t x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; +x_253 = lean_ctor_get(x_219, 0); +x_254 = lean_ctor_get(x_219, 1); +x_255 = lean_ctor_get(x_219, 2); +x_256 = lean_ctor_get(x_219, 4); +x_257 = lean_ctor_get(x_219, 5); +x_258 = lean_ctor_get(x_219, 6); +x_259 = lean_ctor_get(x_219, 7); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_inc(x_254); +lean_inc(x_253); +lean_dec(x_219); +x_260 = lean_ctor_get_uint64(x_220, sizeof(void*)*1); +x_261 = lean_ctor_get(x_220, 0); +lean_inc(x_261); +if (lean_is_exclusive(x_220)) { + lean_ctor_release(x_220, 0); + x_262 = x_220; +} else { + lean_dec_ref(x_220); + x_262 = lean_box(0); +} +x_263 = l_Lean_PersistentArray_append___rarg(x_13, x_261); +lean_dec(x_261); +if (lean_is_scalar(x_262)) { + x_264 = lean_alloc_ctor(0, 1, 8); +} else { + x_264 = x_262; +} +lean_ctor_set(x_264, 0, x_263); +lean_ctor_set_uint64(x_264, sizeof(void*)*1, x_260); +x_265 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_265, 0, x_253); +lean_ctor_set(x_265, 1, x_254); +lean_ctor_set(x_265, 2, x_255); +lean_ctor_set(x_265, 3, x_264); +lean_ctor_set(x_265, 4, x_256); +lean_ctor_set(x_265, 5, x_257); +lean_ctor_set(x_265, 6, x_258); +lean_ctor_set(x_265, 7, x_259); +x_266 = lean_st_ref_set(x_10, x_265, x_221); +x_267 = lean_ctor_get(x_266, 1); lean_inc(x_267); -x_268 = lean_ctor_get(x_262, 1); -lean_inc(x_268); -if (lean_is_exclusive(x_262)) { - lean_ctor_release(x_262, 0); - lean_ctor_release(x_262, 1); - x_269 = x_262; +lean_dec(x_266); +x_268 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__2(x_212, x_9, x_10, x_267); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_212); +if (lean_obj_tag(x_268) == 0) +{ +lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; +x_269 = lean_ctor_get(x_268, 0); +lean_inc(x_269); +x_270 = lean_ctor_get(x_268, 1); +lean_inc(x_270); +if (lean_is_exclusive(x_268)) { + lean_ctor_release(x_268, 0); + lean_ctor_release(x_268, 1); + x_271 = x_268; } else { - lean_dec_ref(x_262); - x_269 = lean_box(0); + lean_dec_ref(x_268); + x_271 = lean_box(0); } -if (lean_is_scalar(x_269)) { - x_270 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_271)) { + x_272 = lean_alloc_ctor(0, 2, 0); } else { - x_270 = x_269; + x_272 = x_271; } -lean_ctor_set(x_270, 0, x_267); -lean_ctor_set(x_270, 1, x_268); -return x_270; +lean_ctor_set(x_272, 0, x_269); +lean_ctor_set(x_272, 1, x_270); +return x_272; +} +else +{ +lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; +x_273 = lean_ctor_get(x_268, 0); +lean_inc(x_273); +x_274 = lean_ctor_get(x_268, 1); +lean_inc(x_274); +if (lean_is_exclusive(x_268)) { + lean_ctor_release(x_268, 0); + lean_ctor_release(x_268, 1); + x_275 = x_268; +} else { + lean_dec_ref(x_268); + x_275 = lean_box(0); +} +if (lean_is_scalar(x_275)) { + x_276 = lean_alloc_ctor(1, 2, 0); +} else { + x_276 = x_275; +} +lean_ctor_set(x_276, 0, x_273); +lean_ctor_set(x_276, 1, x_274); +return x_276; } } } else { -lean_object* x_271; double x_272; double x_273; lean_object* x_274; -x_271 = lean_box(0); -x_272 = lean_unbox_float(x_209); -lean_dec(x_209); -x_273 = lean_unbox_float(x_210); -lean_dec(x_210); -x_274 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_208, x_1, x_211, x_272, x_273, x_5, x_271, x_9, x_10, x_206); -return x_274; -} -} -else -{ -lean_object* x_275; double x_276; double x_277; lean_object* x_278; -x_275 = lean_box(0); -x_276 = lean_unbox_float(x_209); -lean_dec(x_209); -x_277 = lean_unbox_float(x_210); -lean_dec(x_210); -x_278 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_208, x_1, x_211, x_276, x_277, x_5, x_275, x_9, x_10, x_206); -return x_278; +lean_object* x_277; double x_278; double x_279; lean_object* x_280; +x_277 = lean_box(0); +x_278 = lean_unbox_float(x_213); +lean_dec(x_213); +x_279 = lean_unbox_float(x_214); +lean_dec(x_214); +x_280 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_278, x_279, x_5, x_277, x_9, x_10, x_210); +return x_280; } } } @@ -6161,97 +6155,72 @@ lean_dec(x_7); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -double x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_15 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_16 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_16, 0, x_1); -lean_ctor_set(x_16, 1, x_3); -lean_ctor_set_float(x_16, sizeof(void*)*2, x_15); -lean_ctor_set_float(x_16, sizeof(void*)*2 + 8, x_15); -lean_ctor_set_uint8(x_16, sizeof(void*)*2 + 16, x_2); -x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___closed__2; -x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_17); -if (x_18 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___closed__1; +x_15 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_15, 0, x_1); +lean_ctor_set(x_15, 1, x_3); +lean_ctor_set_float(x_15, sizeof(void*)*2, x_14); +lean_ctor_set_float(x_15, sizeof(void*)*2 + 8, x_14); +lean_ctor_set_uint8(x_15, sizeof(void*)*2 + 16, x_2); +x_16 = lean_box(0); +x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__1(x_4, x_5, x_10, x_6, x_15, x_16, x_11, x_12, x_13); +return x_17; +} +else { -lean_object* x_19; lean_object* x_20; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_3); +lean_ctor_set_float(x_18, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); x_19 = lean_box(0); -x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__1(x_4, x_5, x_11, x_6, x_16, x_19, x_12, x_13, x_14); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__1(x_4, x_5, x_10, x_6, x_18, x_19, x_11, x_12, x_13); return x_20; } -else -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; -lean_dec(x_16); -x_21 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_21, 0, x_1); -lean_ctor_set(x_21, 1, x_3); -lean_ctor_set_float(x_21, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_21, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_21, sizeof(void*)*2 + 16, x_2); -x_22 = lean_box(0); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__1(x_4, x_5, x_11, x_6, x_21, x_22, x_12, x_13, x_14); -return x_23; } } -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -lean_dec(x_16); -x_24 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_24, 0, x_1); -lean_ctor_set(x_24, 1, x_3); -lean_ctor_set_float(x_24, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_24, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_24, sizeof(void*)*2 + 16, x_2); -x_25 = lean_box(0); -x_26 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__1(x_4, x_5, x_11, x_6, x_24, x_25, x_12, x_13, x_14); -return x_26; -} -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_15; lean_object* x_16; -x_15 = lean_ctor_get(x_12, 5); -lean_inc(x_15); -lean_inc(x_13); +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_11, 5); +lean_inc(x_14); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_16 = lean_apply_4(x_10, x_5, x_12, x_13, x_14); -if (lean_obj_tag(x_16) == 0) +x_15 = lean_apply_4(x_9, x_5, x_11, x_12, x_13); +if (lean_obj_tag(x_15) == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_ctor_get(x_16, 0); +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); lean_inc(x_17); -x_18 = lean_ctor_get(x_16, 1); -lean_inc(x_18); -lean_dec(x_16); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_15, x_5, x_6, x_7, x_8, x_9, x_17, x_12, x_13, x_18); -lean_dec(x_13); +lean_dec(x_15); +x_18 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_14, x_5, x_6, x_7, x_8, x_16, x_11, x_12, x_17); +lean_dec(x_12); lean_dec(x_5); -return x_19; +return x_18; } else { -lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_20 = lean_ctor_get(x_16, 1); -lean_inc(x_20); -lean_dec(x_16); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3___closed__2; -x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_15, x_5, x_6, x_7, x_8, x_9, x_21, x_12, x_13, x_20); -lean_dec(x_13); +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_15, 1); +lean_inc(x_19); +lean_dec(x_15); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3___closed__2; +x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_14, x_5, x_6, x_7, x_8, x_20, x_11, x_12, x_19); +lean_dec(x_12); lean_dec(x_5); -return x_22; +return x_21; } } } @@ -6269,251 +6238,251 @@ x_15 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofF x_16 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_15); if (x_16 == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; -x_107 = lean_io_mono_nanos_now(x_14); -x_108 = lean_ctor_get(x_107, 0); -lean_inc(x_108); -x_109 = lean_ctor_get(x_107, 1); -lean_inc(x_109); -lean_dec(x_107); +lean_object* x_17; lean_object* x_18; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; +x_111 = lean_io_mono_nanos_now(x_14); +x_112 = lean_ctor_get(x_111, 0); +lean_inc(x_112); +x_113 = lean_ctor_get(x_111, 1); +lean_inc(x_113); +lean_dec(x_111); lean_inc(x_10); lean_inc(x_9); -x_110 = lean_apply_3(x_7, x_9, x_10, x_109); -if (lean_obj_tag(x_110) == 0) +x_114 = lean_apply_3(x_7, x_9, x_10, x_113); +if (lean_obj_tag(x_114) == 0) { -uint8_t x_111; -x_111 = !lean_is_exclusive(x_110); -if (x_111 == 0) +uint8_t x_115; +x_115 = !lean_is_exclusive(x_114); +if (x_115 == 0) { -lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; uint8_t x_116; -x_112 = lean_ctor_get(x_110, 0); -x_113 = lean_ctor_get(x_110, 1); -x_114 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_114, 0, x_112); -x_115 = lean_io_mono_nanos_now(x_113); -x_116 = !lean_is_exclusive(x_115); -if (x_116 == 0) +lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; uint8_t x_120; +x_116 = lean_ctor_get(x_114, 0); +x_117 = lean_ctor_get(x_114, 1); +x_118 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_118, 0, x_116); +x_119 = lean_io_mono_nanos_now(x_117); +x_120 = !lean_is_exclusive(x_119); +if (x_120 == 0) { -lean_object* x_117; lean_object* x_118; uint8_t x_119; lean_object* x_120; double x_121; double x_122; double x_123; double x_124; double x_125; lean_object* x_126; lean_object* x_127; -x_117 = lean_ctor_get(x_115, 0); -x_118 = lean_ctor_get(x_115, 1); -x_119 = 0; -x_120 = lean_unsigned_to_nat(0u); -x_121 = l_Float_ofScientific(x_108, x_119, x_120); -lean_dec(x_108); -x_122 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_123 = lean_float_div(x_121, x_122); -x_124 = l_Float_ofScientific(x_117, x_119, x_120); -lean_dec(x_117); -x_125 = lean_float_div(x_124, x_122); -x_126 = lean_box_float(x_123); -x_127 = lean_box_float(x_125); -lean_ctor_set(x_115, 1, x_127); -lean_ctor_set(x_115, 0, x_126); -lean_ctor_set(x_110, 1, x_115); -lean_ctor_set(x_110, 0, x_114); -x_17 = x_110; -x_18 = x_118; -goto block_106; +lean_object* x_121; lean_object* x_122; uint8_t x_123; lean_object* x_124; double x_125; double x_126; double x_127; double x_128; double x_129; lean_object* x_130; lean_object* x_131; +x_121 = lean_ctor_get(x_119, 0); +x_122 = lean_ctor_get(x_119, 1); +x_123 = 0; +x_124 = lean_unsigned_to_nat(0u); +x_125 = l_Float_ofScientific(x_112, x_123, x_124); +lean_dec(x_112); +x_126 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_127 = lean_float_div(x_125, x_126); +x_128 = l_Float_ofScientific(x_121, x_123, x_124); +lean_dec(x_121); +x_129 = lean_float_div(x_128, x_126); +x_130 = lean_box_float(x_127); +x_131 = lean_box_float(x_129); +lean_ctor_set(x_119, 1, x_131); +lean_ctor_set(x_119, 0, x_130); +lean_ctor_set(x_114, 1, x_119); +lean_ctor_set(x_114, 0, x_118); +x_17 = x_114; +x_18 = x_122; +goto block_110; } else { -lean_object* x_128; lean_object* x_129; uint8_t x_130; lean_object* x_131; double x_132; double x_133; double x_134; double x_135; double x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; -x_128 = lean_ctor_get(x_115, 0); -x_129 = lean_ctor_get(x_115, 1); -lean_inc(x_129); -lean_inc(x_128); -lean_dec(x_115); -x_130 = 0; -x_131 = lean_unsigned_to_nat(0u); -x_132 = l_Float_ofScientific(x_108, x_130, x_131); -lean_dec(x_108); -x_133 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_134 = lean_float_div(x_132, x_133); -x_135 = l_Float_ofScientific(x_128, x_130, x_131); -lean_dec(x_128); -x_136 = lean_float_div(x_135, x_133); -x_137 = lean_box_float(x_134); -x_138 = lean_box_float(x_136); -x_139 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_139, 0, x_137); -lean_ctor_set(x_139, 1, x_138); -lean_ctor_set(x_110, 1, x_139); -lean_ctor_set(x_110, 0, x_114); -x_17 = x_110; -x_18 = x_129; -goto block_106; +lean_object* x_132; lean_object* x_133; uint8_t x_134; lean_object* x_135; double x_136; double x_137; double x_138; double x_139; double x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; +x_132 = lean_ctor_get(x_119, 0); +x_133 = lean_ctor_get(x_119, 1); +lean_inc(x_133); +lean_inc(x_132); +lean_dec(x_119); +x_134 = 0; +x_135 = lean_unsigned_to_nat(0u); +x_136 = l_Float_ofScientific(x_112, x_134, x_135); +lean_dec(x_112); +x_137 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_138 = lean_float_div(x_136, x_137); +x_139 = l_Float_ofScientific(x_132, x_134, x_135); +lean_dec(x_132); +x_140 = lean_float_div(x_139, x_137); +x_141 = lean_box_float(x_138); +x_142 = lean_box_float(x_140); +x_143 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_143, 0, x_141); +lean_ctor_set(x_143, 1, x_142); +lean_ctor_set(x_114, 1, x_143); +lean_ctor_set(x_114, 0, x_118); +x_17 = x_114; +x_18 = x_133; +goto block_110; } } else { -lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; uint8_t x_147; lean_object* x_148; double x_149; double x_150; double x_151; double x_152; double x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; -x_140 = lean_ctor_get(x_110, 0); -x_141 = lean_ctor_get(x_110, 1); -lean_inc(x_141); -lean_inc(x_140); -lean_dec(x_110); -x_142 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_142, 0, x_140); -x_143 = lean_io_mono_nanos_now(x_141); -x_144 = lean_ctor_get(x_143, 0); -lean_inc(x_144); -x_145 = lean_ctor_get(x_143, 1); +lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; uint8_t x_151; lean_object* x_152; double x_153; double x_154; double x_155; double x_156; double x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; +x_144 = lean_ctor_get(x_114, 0); +x_145 = lean_ctor_get(x_114, 1); lean_inc(x_145); -if (lean_is_exclusive(x_143)) { - lean_ctor_release(x_143, 0); - lean_ctor_release(x_143, 1); - x_146 = x_143; +lean_inc(x_144); +lean_dec(x_114); +x_146 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_146, 0, x_144); +x_147 = lean_io_mono_nanos_now(x_145); +x_148 = lean_ctor_get(x_147, 0); +lean_inc(x_148); +x_149 = lean_ctor_get(x_147, 1); +lean_inc(x_149); +if (lean_is_exclusive(x_147)) { + lean_ctor_release(x_147, 0); + lean_ctor_release(x_147, 1); + x_150 = x_147; } else { - lean_dec_ref(x_143); - x_146 = lean_box(0); + lean_dec_ref(x_147); + x_150 = lean_box(0); } -x_147 = 0; -x_148 = lean_unsigned_to_nat(0u); -x_149 = l_Float_ofScientific(x_108, x_147, x_148); -lean_dec(x_108); -x_150 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_151 = lean_float_div(x_149, x_150); -x_152 = l_Float_ofScientific(x_144, x_147, x_148); -lean_dec(x_144); -x_153 = lean_float_div(x_152, x_150); -x_154 = lean_box_float(x_151); -x_155 = lean_box_float(x_153); -if (lean_is_scalar(x_146)) { - x_156 = lean_alloc_ctor(0, 2, 0); +x_151 = 0; +x_152 = lean_unsigned_to_nat(0u); +x_153 = l_Float_ofScientific(x_112, x_151, x_152); +lean_dec(x_112); +x_154 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_155 = lean_float_div(x_153, x_154); +x_156 = l_Float_ofScientific(x_148, x_151, x_152); +lean_dec(x_148); +x_157 = lean_float_div(x_156, x_154); +x_158 = lean_box_float(x_155); +x_159 = lean_box_float(x_157); +if (lean_is_scalar(x_150)) { + x_160 = lean_alloc_ctor(0, 2, 0); } else { - x_156 = x_146; + x_160 = x_150; } -lean_ctor_set(x_156, 0, x_154); -lean_ctor_set(x_156, 1, x_155); -x_157 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_157, 0, x_142); -lean_ctor_set(x_157, 1, x_156); -x_17 = x_157; -x_18 = x_145; -goto block_106; +lean_ctor_set(x_160, 0, x_158); +lean_ctor_set(x_160, 1, x_159); +x_161 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_161, 0, x_146); +lean_ctor_set(x_161, 1, x_160); +x_17 = x_161; +x_18 = x_149; +goto block_110; } } else { -uint8_t x_158; -x_158 = !lean_is_exclusive(x_110); -if (x_158 == 0) +uint8_t x_162; +x_162 = !lean_is_exclusive(x_114); +if (x_162 == 0) { -lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; uint8_t x_163; -x_159 = lean_ctor_get(x_110, 0); -x_160 = lean_ctor_get(x_110, 1); -x_161 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_161, 0, x_159); -x_162 = lean_io_mono_nanos_now(x_160); -x_163 = !lean_is_exclusive(x_162); -if (x_163 == 0) +lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; uint8_t x_167; +x_163 = lean_ctor_get(x_114, 0); +x_164 = lean_ctor_get(x_114, 1); +x_165 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_165, 0, x_163); +x_166 = lean_io_mono_nanos_now(x_164); +x_167 = !lean_is_exclusive(x_166); +if (x_167 == 0) { -lean_object* x_164; lean_object* x_165; uint8_t x_166; lean_object* x_167; double x_168; double x_169; double x_170; double x_171; double x_172; lean_object* x_173; lean_object* x_174; -x_164 = lean_ctor_get(x_162, 0); -x_165 = lean_ctor_get(x_162, 1); -x_166 = 0; -x_167 = lean_unsigned_to_nat(0u); -x_168 = l_Float_ofScientific(x_108, x_166, x_167); -lean_dec(x_108); -x_169 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_170 = lean_float_div(x_168, x_169); -x_171 = l_Float_ofScientific(x_164, x_166, x_167); -lean_dec(x_164); -x_172 = lean_float_div(x_171, x_169); -x_173 = lean_box_float(x_170); -x_174 = lean_box_float(x_172); -lean_ctor_set(x_162, 1, x_174); -lean_ctor_set(x_162, 0, x_173); -lean_ctor_set_tag(x_110, 0); -lean_ctor_set(x_110, 1, x_162); -lean_ctor_set(x_110, 0, x_161); -x_17 = x_110; -x_18 = x_165; -goto block_106; +lean_object* x_168; lean_object* x_169; uint8_t x_170; lean_object* x_171; double x_172; double x_173; double x_174; double x_175; double x_176; lean_object* x_177; lean_object* x_178; +x_168 = lean_ctor_get(x_166, 0); +x_169 = lean_ctor_get(x_166, 1); +x_170 = 0; +x_171 = lean_unsigned_to_nat(0u); +x_172 = l_Float_ofScientific(x_112, x_170, x_171); +lean_dec(x_112); +x_173 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_174 = lean_float_div(x_172, x_173); +x_175 = l_Float_ofScientific(x_168, x_170, x_171); +lean_dec(x_168); +x_176 = lean_float_div(x_175, x_173); +x_177 = lean_box_float(x_174); +x_178 = lean_box_float(x_176); +lean_ctor_set(x_166, 1, x_178); +lean_ctor_set(x_166, 0, x_177); +lean_ctor_set_tag(x_114, 0); +lean_ctor_set(x_114, 1, x_166); +lean_ctor_set(x_114, 0, x_165); +x_17 = x_114; +x_18 = x_169; +goto block_110; } else { -lean_object* x_175; lean_object* x_176; uint8_t x_177; lean_object* x_178; double x_179; double x_180; double x_181; double x_182; double x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; -x_175 = lean_ctor_get(x_162, 0); -x_176 = lean_ctor_get(x_162, 1); -lean_inc(x_176); -lean_inc(x_175); -lean_dec(x_162); -x_177 = 0; -x_178 = lean_unsigned_to_nat(0u); -x_179 = l_Float_ofScientific(x_108, x_177, x_178); -lean_dec(x_108); -x_180 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_181 = lean_float_div(x_179, x_180); -x_182 = l_Float_ofScientific(x_175, x_177, x_178); -lean_dec(x_175); -x_183 = lean_float_div(x_182, x_180); -x_184 = lean_box_float(x_181); -x_185 = lean_box_float(x_183); -x_186 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_186, 0, x_184); -lean_ctor_set(x_186, 1, x_185); -lean_ctor_set_tag(x_110, 0); -lean_ctor_set(x_110, 1, x_186); -lean_ctor_set(x_110, 0, x_161); -x_17 = x_110; -x_18 = x_176; -goto block_106; +lean_object* x_179; lean_object* x_180; uint8_t x_181; lean_object* x_182; double x_183; double x_184; double x_185; double x_186; double x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; +x_179 = lean_ctor_get(x_166, 0); +x_180 = lean_ctor_get(x_166, 1); +lean_inc(x_180); +lean_inc(x_179); +lean_dec(x_166); +x_181 = 0; +x_182 = lean_unsigned_to_nat(0u); +x_183 = l_Float_ofScientific(x_112, x_181, x_182); +lean_dec(x_112); +x_184 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_185 = lean_float_div(x_183, x_184); +x_186 = l_Float_ofScientific(x_179, x_181, x_182); +lean_dec(x_179); +x_187 = lean_float_div(x_186, x_184); +x_188 = lean_box_float(x_185); +x_189 = lean_box_float(x_187); +x_190 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_190, 0, x_188); +lean_ctor_set(x_190, 1, x_189); +lean_ctor_set_tag(x_114, 0); +lean_ctor_set(x_114, 1, x_190); +lean_ctor_set(x_114, 0, x_165); +x_17 = x_114; +x_18 = x_180; +goto block_110; } } else { -lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; uint8_t x_194; lean_object* x_195; double x_196; double x_197; double x_198; double x_199; double x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; -x_187 = lean_ctor_get(x_110, 0); -x_188 = lean_ctor_get(x_110, 1); -lean_inc(x_188); -lean_inc(x_187); -lean_dec(x_110); -x_189 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_189, 0, x_187); -x_190 = lean_io_mono_nanos_now(x_188); -x_191 = lean_ctor_get(x_190, 0); -lean_inc(x_191); -x_192 = lean_ctor_get(x_190, 1); +lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; uint8_t x_198; lean_object* x_199; double x_200; double x_201; double x_202; double x_203; double x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; +x_191 = lean_ctor_get(x_114, 0); +x_192 = lean_ctor_get(x_114, 1); lean_inc(x_192); -if (lean_is_exclusive(x_190)) { - lean_ctor_release(x_190, 0); - lean_ctor_release(x_190, 1); - x_193 = x_190; +lean_inc(x_191); +lean_dec(x_114); +x_193 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_193, 0, x_191); +x_194 = lean_io_mono_nanos_now(x_192); +x_195 = lean_ctor_get(x_194, 0); +lean_inc(x_195); +x_196 = lean_ctor_get(x_194, 1); +lean_inc(x_196); +if (lean_is_exclusive(x_194)) { + lean_ctor_release(x_194, 0); + lean_ctor_release(x_194, 1); + x_197 = x_194; } else { - lean_dec_ref(x_190); - x_193 = lean_box(0); + lean_dec_ref(x_194); + x_197 = lean_box(0); } -x_194 = 0; -x_195 = lean_unsigned_to_nat(0u); -x_196 = l_Float_ofScientific(x_108, x_194, x_195); -lean_dec(x_108); -x_197 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_198 = lean_float_div(x_196, x_197); -x_199 = l_Float_ofScientific(x_191, x_194, x_195); -lean_dec(x_191); -x_200 = lean_float_div(x_199, x_197); -x_201 = lean_box_float(x_198); -x_202 = lean_box_float(x_200); -if (lean_is_scalar(x_193)) { - x_203 = lean_alloc_ctor(0, 2, 0); +x_198 = 0; +x_199 = lean_unsigned_to_nat(0u); +x_200 = l_Float_ofScientific(x_112, x_198, x_199); +lean_dec(x_112); +x_201 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_202 = lean_float_div(x_200, x_201); +x_203 = l_Float_ofScientific(x_195, x_198, x_199); +lean_dec(x_195); +x_204 = lean_float_div(x_203, x_201); +x_205 = lean_box_float(x_202); +x_206 = lean_box_float(x_204); +if (lean_is_scalar(x_197)) { + x_207 = lean_alloc_ctor(0, 2, 0); } else { - x_203 = x_193; + x_207 = x_197; } -lean_ctor_set(x_203, 0, x_201); -lean_ctor_set(x_203, 1, x_202); -x_204 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_204, 0, x_189); -lean_ctor_set(x_204, 1, x_203); -x_17 = x_204; -x_18 = x_192; -goto block_106; +lean_ctor_set(x_207, 0, x_205); +lean_ctor_set(x_207, 1, x_206); +x_208 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_208, 0, x_193); +lean_ctor_set(x_208, 1, x_207); +x_17 = x_208; +x_18 = x_196; +goto block_110; } } -block_106: +block_110: { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_92; uint8_t x_93; +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; uint8_t x_25; x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); x_20 = lean_ctor_get(x_17, 0); @@ -6524,17 +6493,33 @@ lean_inc(x_21); x_22 = lean_ctor_get(x_19, 1); lean_inc(x_22); lean_dec(x_19); -x_92 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__2; -x_93 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_92); -if (x_93 == 0) +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__2; +x_24 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_23); +if (x_24 == 0) { -uint8_t x_94; -x_94 = 0; -x_23 = x_94; -goto block_91; +if (x_6 == 0) +{ +uint8_t x_90; +x_90 = 0; +x_25 = x_90; +goto block_89; } else { +lean_object* x_91; double x_92; double x_93; lean_object* x_94; +x_91 = lean_box(0); +x_92 = lean_unbox_float(x_21); +lean_dec(x_21); +x_93 = lean_unbox_float(x_22); +lean_dec(x_22); +x_94 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_92, x_93, x_5, x_91, x_9, x_10, x_18); +return x_94; +} +} +else +{ +if (x_6 == 0) +{ double x_95; double x_96; double x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; lean_object* x_101; double x_102; double x_103; double x_104; uint8_t x_105; x_95 = lean_unbox_float(x_22); x_96 = lean_unbox_float(x_21); @@ -6548,845 +6533,857 @@ lean_dec(x_99); x_103 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__4; x_104 = lean_float_div(x_102, x_103); x_105 = lean_float_decLt(x_104, x_97); -x_23 = x_105; -goto block_91; +x_25 = x_105; +goto block_89; } -block_91: +else { -if (x_6 == 0) +lean_object* x_106; double x_107; double x_108; lean_object* x_109; +x_106 = lean_box(0); +x_107 = lean_unbox_float(x_21); +lean_dec(x_21); +x_108 = lean_unbox_float(x_22); +lean_dec(x_22); +x_109 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_107, x_108, x_5, x_106, x_9, x_10, x_18); +return x_109; +} +} +block_89: { -if (x_23 == 0) +if (x_25 == 0) { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_dec(x_22); lean_dec(x_21); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_24 = lean_st_ref_take(x_10, x_18); -x_25 = lean_ctor_get(x_24, 0); -lean_inc(x_25); -x_26 = lean_ctor_get(x_25, 3); -lean_inc(x_26); -x_27 = lean_ctor_get(x_24, 1); +x_26 = lean_st_ref_take(x_10, x_18); +x_27 = lean_ctor_get(x_26, 0); lean_inc(x_27); -lean_dec(x_24); -x_28 = !lean_is_exclusive(x_25); -if (x_28 == 0) -{ -lean_object* x_29; uint8_t x_30; -x_29 = lean_ctor_get(x_25, 3); -lean_dec(x_29); -x_30 = !lean_is_exclusive(x_26); +x_28 = lean_ctor_get(x_27, 3); +lean_inc(x_28); +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); +lean_dec(x_26); +x_30 = !lean_is_exclusive(x_27); if (x_30 == 0) { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_31 = lean_ctor_get(x_26, 0); -x_32 = l_Lean_PersistentArray_append___rarg(x_13, x_31); +lean_object* x_31; uint8_t x_32; +x_31 = lean_ctor_get(x_27, 3); lean_dec(x_31); -lean_ctor_set(x_26, 0, x_32); -x_33 = lean_st_ref_set(x_10, x_25, x_27); -x_34 = lean_ctor_get(x_33, 1); -lean_inc(x_34); +x_32 = !lean_is_exclusive(x_28); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_33 = lean_ctor_get(x_28, 0); +x_34 = l_Lean_PersistentArray_append___rarg(x_13, x_33); lean_dec(x_33); -x_35 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__4(x_20, x_9, x_10, x_34); +lean_ctor_set(x_28, 0, x_34); +x_35 = lean_st_ref_set(x_10, x_27, x_29); +x_36 = lean_ctor_get(x_35, 1); +lean_inc(x_36); +lean_dec(x_35); +x_37 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__4(x_20, x_9, x_10, x_36); lean_dec(x_10); lean_dec(x_9); lean_dec(x_20); -if (lean_obj_tag(x_35) == 0) +if (lean_obj_tag(x_37) == 0) { -uint8_t x_36; -x_36 = !lean_is_exclusive(x_35); -if (x_36 == 0) +uint8_t x_38; +x_38 = !lean_is_exclusive(x_37); +if (x_38 == 0) { -return x_35; +return x_37; } else { -lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_37 = lean_ctor_get(x_35, 0); -x_38 = lean_ctor_get(x_35, 1); -lean_inc(x_38); -lean_inc(x_37); -lean_dec(x_35); -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_37); -lean_ctor_set(x_39, 1, x_38); -return x_39; +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_37, 0); +x_40 = lean_ctor_get(x_37, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_37); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +return x_41; } } else { -uint8_t x_40; -x_40 = !lean_is_exclusive(x_35); -if (x_40 == 0) +uint8_t x_42; +x_42 = !lean_is_exclusive(x_37); +if (x_42 == 0) { -return x_35; +return x_37; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_35, 0); -x_42 = lean_ctor_get(x_35, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_35); -x_43 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_42); -return x_43; +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_37, 0); +x_44 = lean_ctor_get(x_37, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_37); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; } } } else { -uint64_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_44 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); -x_45 = lean_ctor_get(x_26, 0); -lean_inc(x_45); -lean_dec(x_26); -x_46 = l_Lean_PersistentArray_append___rarg(x_13, x_45); -lean_dec(x_45); -x_47 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_47, 0, x_46); -lean_ctor_set_uint64(x_47, sizeof(void*)*1, x_44); -lean_ctor_set(x_25, 3, x_47); -x_48 = lean_st_ref_set(x_10, x_25, x_27); -x_49 = lean_ctor_get(x_48, 1); -lean_inc(x_49); -lean_dec(x_48); -x_50 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__4(x_20, x_9, x_10, x_49); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_20); -if (lean_obj_tag(x_50) == 0) -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_51 = lean_ctor_get(x_50, 0); +uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); +x_47 = lean_ctor_get(x_28, 0); +lean_inc(x_47); +lean_dec(x_28); +x_48 = l_Lean_PersistentArray_append___rarg(x_13, x_47); +lean_dec(x_47); +x_49 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); +lean_ctor_set(x_27, 3, x_49); +x_50 = lean_st_ref_set(x_10, x_27, x_29); +x_51 = lean_ctor_get(x_50, 1); lean_inc(x_51); -x_52 = lean_ctor_get(x_50, 1); -lean_inc(x_52); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_53 = x_50; +lean_dec(x_50); +x_52 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__4(x_20, x_9, x_10, x_51); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_20); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_52, 1); +lean_inc(x_54); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_55 = x_52; } else { - lean_dec_ref(x_50); - x_53 = lean_box(0); + lean_dec_ref(x_52); + x_55 = lean_box(0); } -if (lean_is_scalar(x_53)) { - x_54 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_55)) { + x_56 = lean_alloc_ctor(0, 2, 0); } else { - x_54 = x_53; + x_56 = x_55; } -lean_ctor_set(x_54, 0, x_51); -lean_ctor_set(x_54, 1, x_52); -return x_54; +lean_ctor_set(x_56, 0, x_53); +lean_ctor_set(x_56, 1, x_54); +return x_56; } else { -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_55 = lean_ctor_get(x_50, 0); -lean_inc(x_55); -x_56 = lean_ctor_get(x_50, 1); -lean_inc(x_56); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_57 = x_50; +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_57 = lean_ctor_get(x_52, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_52, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_59 = x_52; } else { - lean_dec_ref(x_50); - x_57 = lean_box(0); + lean_dec_ref(x_52); + x_59 = lean_box(0); } -if (lean_is_scalar(x_57)) { - x_58 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(1, 2, 0); } else { - x_58 = x_57; + x_60 = x_59; } -lean_ctor_set(x_58, 0, x_55); -lean_ctor_set(x_58, 1, x_56); -return x_58; +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_58); +return x_60; } } } else { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint64_t x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_59 = lean_ctor_get(x_25, 0); -x_60 = lean_ctor_get(x_25, 1); -x_61 = lean_ctor_get(x_25, 2); -x_62 = lean_ctor_get(x_25, 4); -x_63 = lean_ctor_get(x_25, 5); -x_64 = lean_ctor_get(x_25, 6); -x_65 = lean_ctor_get(x_25, 7); +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_61 = lean_ctor_get(x_27, 0); +x_62 = lean_ctor_get(x_27, 1); +x_63 = lean_ctor_get(x_27, 2); +x_64 = lean_ctor_get(x_27, 4); +x_65 = lean_ctor_get(x_27, 5); +x_66 = lean_ctor_get(x_27, 6); +x_67 = lean_ctor_get(x_27, 7); +lean_inc(x_67); +lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); lean_inc(x_62); lean_inc(x_61); -lean_inc(x_60); -lean_inc(x_59); -lean_dec(x_25); -x_66 = lean_ctor_get_uint64(x_26, sizeof(void*)*1); -x_67 = lean_ctor_get(x_26, 0); -lean_inc(x_67); -if (lean_is_exclusive(x_26)) { - lean_ctor_release(x_26, 0); - x_68 = x_26; +lean_dec(x_27); +x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); +x_69 = lean_ctor_get(x_28, 0); +lean_inc(x_69); +if (lean_is_exclusive(x_28)) { + lean_ctor_release(x_28, 0); + x_70 = x_28; } else { - lean_dec_ref(x_26); - x_68 = lean_box(0); + lean_dec_ref(x_28); + x_70 = lean_box(0); } -x_69 = l_Lean_PersistentArray_append___rarg(x_13, x_67); -lean_dec(x_67); -if (lean_is_scalar(x_68)) { - x_70 = lean_alloc_ctor(0, 1, 8); +x_71 = l_Lean_PersistentArray_append___rarg(x_13, x_69); +lean_dec(x_69); +if (lean_is_scalar(x_70)) { + x_72 = lean_alloc_ctor(0, 1, 8); } else { - x_70 = x_68; + x_72 = x_70; } -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set_uint64(x_70, sizeof(void*)*1, x_66); -x_71 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_71, 0, x_59); -lean_ctor_set(x_71, 1, x_60); -lean_ctor_set(x_71, 2, x_61); -lean_ctor_set(x_71, 3, x_70); -lean_ctor_set(x_71, 4, x_62); -lean_ctor_set(x_71, 5, x_63); -lean_ctor_set(x_71, 6, x_64); -lean_ctor_set(x_71, 7, x_65); -x_72 = lean_st_ref_set(x_10, x_71, x_27); -x_73 = lean_ctor_get(x_72, 1); -lean_inc(x_73); -lean_dec(x_72); -x_74 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__4(x_20, x_9, x_10, x_73); +lean_ctor_set(x_72, 0, x_71); +lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); +x_73 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_73, 0, x_61); +lean_ctor_set(x_73, 1, x_62); +lean_ctor_set(x_73, 2, x_63); +lean_ctor_set(x_73, 3, x_72); +lean_ctor_set(x_73, 4, x_64); +lean_ctor_set(x_73, 5, x_65); +lean_ctor_set(x_73, 6, x_66); +lean_ctor_set(x_73, 7, x_67); +x_74 = lean_st_ref_set(x_10, x_73, x_29); +x_75 = lean_ctor_get(x_74, 1); +lean_inc(x_75); +lean_dec(x_74); +x_76 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__4(x_20, x_9, x_10, x_75); lean_dec(x_10); lean_dec(x_9); lean_dec(x_20); -if (lean_obj_tag(x_74) == 0) +if (lean_obj_tag(x_76) == 0) { -lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_75 = lean_ctor_get(x_74, 0); -lean_inc(x_75); -x_76 = lean_ctor_get(x_74, 1); -lean_inc(x_76); -if (lean_is_exclusive(x_74)) { - lean_ctor_release(x_74, 0); - lean_ctor_release(x_74, 1); - x_77 = x_74; +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_77 = lean_ctor_get(x_76, 0); +lean_inc(x_77); +x_78 = lean_ctor_get(x_76, 1); +lean_inc(x_78); +if (lean_is_exclusive(x_76)) { + lean_ctor_release(x_76, 0); + lean_ctor_release(x_76, 1); + x_79 = x_76; } else { - lean_dec_ref(x_74); - x_77 = lean_box(0); + lean_dec_ref(x_76); + x_79 = lean_box(0); } -if (lean_is_scalar(x_77)) { - x_78 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_79)) { + x_80 = lean_alloc_ctor(0, 2, 0); } else { - x_78 = x_77; + x_80 = x_79; } -lean_ctor_set(x_78, 0, x_75); -lean_ctor_set(x_78, 1, x_76); -return x_78; +lean_ctor_set(x_80, 0, x_77); +lean_ctor_set(x_80, 1, x_78); +return x_80; } else { -lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_79 = lean_ctor_get(x_74, 0); -lean_inc(x_79); -x_80 = lean_ctor_get(x_74, 1); -lean_inc(x_80); -if (lean_is_exclusive(x_74)) { - lean_ctor_release(x_74, 0); - lean_ctor_release(x_74, 1); - x_81 = x_74; +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_81 = lean_ctor_get(x_76, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_76, 1); +lean_inc(x_82); +if (lean_is_exclusive(x_76)) { + lean_ctor_release(x_76, 0); + lean_ctor_release(x_76, 1); + x_83 = x_76; } else { - lean_dec_ref(x_74); - x_81 = lean_box(0); + lean_dec_ref(x_76); + x_83 = lean_box(0); } -if (lean_is_scalar(x_81)) { - x_82 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_83)) { + x_84 = lean_alloc_ctor(1, 2, 0); } else { - x_82 = x_81; + x_84 = x_83; } -lean_ctor_set(x_82, 0, x_79); -lean_ctor_set(x_82, 1, x_80); -return x_82; +lean_ctor_set(x_84, 0, x_81); +lean_ctor_set(x_84, 1, x_82); +return x_84; } } } else { -lean_object* x_83; double x_84; double x_85; lean_object* x_86; -x_83 = lean_box(0); -x_84 = lean_unbox_float(x_21); +lean_object* x_85; double x_86; double x_87; lean_object* x_88; +x_85 = lean_box(0); +x_86 = lean_unbox_float(x_21); lean_dec(x_21); -x_85 = lean_unbox_float(x_22); +x_87 = lean_unbox_float(x_22); lean_dec(x_22); -x_86 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__3(x_2, x_3, x_4, x_13, x_20, x_1, x_23, x_84, x_85, x_5, x_83, x_9, x_10, x_18); -return x_86; -} -} -else -{ -lean_object* x_87; double x_88; double x_89; lean_object* x_90; -x_87 = lean_box(0); -x_88 = lean_unbox_float(x_21); -lean_dec(x_21); -x_89 = lean_unbox_float(x_22); -lean_dec(x_22); -x_90 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__3(x_2, x_3, x_4, x_13, x_20, x_1, x_23, x_88, x_89, x_5, x_87, x_9, x_10, x_18); -return x_90; +x_88 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__3(x_2, x_3, x_4, x_13, x_20, x_24, x_86, x_87, x_5, x_85, x_9, x_10, x_18); +return x_88; } } } } else { -lean_object* x_205; lean_object* x_206; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; -x_293 = lean_io_get_num_heartbeats(x_14); -x_294 = lean_ctor_get(x_293, 0); -lean_inc(x_294); -x_295 = lean_ctor_get(x_293, 1); -lean_inc(x_295); -lean_dec(x_293); +lean_object* x_209; lean_object* x_210; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; +x_301 = lean_io_get_num_heartbeats(x_14); +x_302 = lean_ctor_get(x_301, 0); +lean_inc(x_302); +x_303 = lean_ctor_get(x_301, 1); +lean_inc(x_303); +lean_dec(x_301); lean_inc(x_10); lean_inc(x_9); -x_296 = lean_apply_3(x_7, x_9, x_10, x_295); -if (lean_obj_tag(x_296) == 0) +x_304 = lean_apply_3(x_7, x_9, x_10, x_303); +if (lean_obj_tag(x_304) == 0) { -uint8_t x_297; -x_297 = !lean_is_exclusive(x_296); -if (x_297 == 0) +uint8_t x_305; +x_305 = !lean_is_exclusive(x_304); +if (x_305 == 0) { -lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; uint8_t x_302; -x_298 = lean_ctor_get(x_296, 0); -x_299 = lean_ctor_get(x_296, 1); -x_300 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_300, 0, x_298); -x_301 = lean_io_get_num_heartbeats(x_299); -x_302 = !lean_is_exclusive(x_301); -if (x_302 == 0) +lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; uint8_t x_310; +x_306 = lean_ctor_get(x_304, 0); +x_307 = lean_ctor_get(x_304, 1); +x_308 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_308, 0, x_306); +x_309 = lean_io_get_num_heartbeats(x_307); +x_310 = !lean_is_exclusive(x_309); +if (x_310 == 0) { -lean_object* x_303; lean_object* x_304; uint8_t x_305; lean_object* x_306; double x_307; double x_308; lean_object* x_309; lean_object* x_310; -x_303 = lean_ctor_get(x_301, 0); -x_304 = lean_ctor_get(x_301, 1); -x_305 = 0; -x_306 = lean_unsigned_to_nat(0u); -x_307 = l_Float_ofScientific(x_294, x_305, x_306); -lean_dec(x_294); -x_308 = l_Float_ofScientific(x_303, x_305, x_306); -lean_dec(x_303); -x_309 = lean_box_float(x_307); -x_310 = lean_box_float(x_308); -lean_ctor_set(x_301, 1, x_310); -lean_ctor_set(x_301, 0, x_309); -lean_ctor_set(x_296, 1, x_301); -lean_ctor_set(x_296, 0, x_300); -x_205 = x_296; -x_206 = x_304; -goto block_292; -} -else -{ -lean_object* x_311; lean_object* x_312; uint8_t x_313; lean_object* x_314; double x_315; double x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; -x_311 = lean_ctor_get(x_301, 0); -x_312 = lean_ctor_get(x_301, 1); -lean_inc(x_312); -lean_inc(x_311); -lean_dec(x_301); +lean_object* x_311; lean_object* x_312; uint8_t x_313; lean_object* x_314; double x_315; double x_316; lean_object* x_317; lean_object* x_318; +x_311 = lean_ctor_get(x_309, 0); +x_312 = lean_ctor_get(x_309, 1); x_313 = 0; x_314 = lean_unsigned_to_nat(0u); -x_315 = l_Float_ofScientific(x_294, x_313, x_314); -lean_dec(x_294); +x_315 = l_Float_ofScientific(x_302, x_313, x_314); +lean_dec(x_302); x_316 = l_Float_ofScientific(x_311, x_313, x_314); lean_dec(x_311); x_317 = lean_box_float(x_315); x_318 = lean_box_float(x_316); -x_319 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_319, 0, x_317); -lean_ctor_set(x_319, 1, x_318); -lean_ctor_set(x_296, 1, x_319); -lean_ctor_set(x_296, 0, x_300); -x_205 = x_296; -x_206 = x_312; -goto block_292; -} +lean_ctor_set(x_309, 1, x_318); +lean_ctor_set(x_309, 0, x_317); +lean_ctor_set(x_304, 1, x_309); +lean_ctor_set(x_304, 0, x_308); +x_209 = x_304; +x_210 = x_312; +goto block_300; } else { -lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; uint8_t x_327; lean_object* x_328; double x_329; double x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; -x_320 = lean_ctor_get(x_296, 0); -x_321 = lean_ctor_get(x_296, 1); -lean_inc(x_321); +lean_object* x_319; lean_object* x_320; uint8_t x_321; lean_object* x_322; double x_323; double x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; +x_319 = lean_ctor_get(x_309, 0); +x_320 = lean_ctor_get(x_309, 1); lean_inc(x_320); -lean_dec(x_296); -x_322 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_322, 0, x_320); -x_323 = lean_io_get_num_heartbeats(x_321); -x_324 = lean_ctor_get(x_323, 0); -lean_inc(x_324); -x_325 = lean_ctor_get(x_323, 1); -lean_inc(x_325); -if (lean_is_exclusive(x_323)) { - lean_ctor_release(x_323, 0); - lean_ctor_release(x_323, 1); - x_326 = x_323; -} else { - lean_dec_ref(x_323); - x_326 = lean_box(0); -} -x_327 = 0; -x_328 = lean_unsigned_to_nat(0u); -x_329 = l_Float_ofScientific(x_294, x_327, x_328); -lean_dec(x_294); -x_330 = l_Float_ofScientific(x_324, x_327, x_328); -lean_dec(x_324); -x_331 = lean_box_float(x_329); -x_332 = lean_box_float(x_330); -if (lean_is_scalar(x_326)) { - x_333 = lean_alloc_ctor(0, 2, 0); -} else { - x_333 = x_326; -} -lean_ctor_set(x_333, 0, x_331); -lean_ctor_set(x_333, 1, x_332); -x_334 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_334, 0, x_322); -lean_ctor_set(x_334, 1, x_333); -x_205 = x_334; -x_206 = x_325; -goto block_292; +lean_inc(x_319); +lean_dec(x_309); +x_321 = 0; +x_322 = lean_unsigned_to_nat(0u); +x_323 = l_Float_ofScientific(x_302, x_321, x_322); +lean_dec(x_302); +x_324 = l_Float_ofScientific(x_319, x_321, x_322); +lean_dec(x_319); +x_325 = lean_box_float(x_323); +x_326 = lean_box_float(x_324); +x_327 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_327, 0, x_325); +lean_ctor_set(x_327, 1, x_326); +lean_ctor_set(x_304, 1, x_327); +lean_ctor_set(x_304, 0, x_308); +x_209 = x_304; +x_210 = x_320; +goto block_300; } } else { -uint8_t x_335; -x_335 = !lean_is_exclusive(x_296); -if (x_335 == 0) -{ -lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; uint8_t x_340; -x_336 = lean_ctor_get(x_296, 0); -x_337 = lean_ctor_get(x_296, 1); -x_338 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_338, 0, x_336); -x_339 = lean_io_get_num_heartbeats(x_337); -x_340 = !lean_is_exclusive(x_339); -if (x_340 == 0) -{ -lean_object* x_341; lean_object* x_342; uint8_t x_343; lean_object* x_344; double x_345; double x_346; lean_object* x_347; lean_object* x_348; -x_341 = lean_ctor_get(x_339, 0); -x_342 = lean_ctor_get(x_339, 1); -x_343 = 0; -x_344 = lean_unsigned_to_nat(0u); -x_345 = l_Float_ofScientific(x_294, x_343, x_344); -lean_dec(x_294); -x_346 = l_Float_ofScientific(x_341, x_343, x_344); -lean_dec(x_341); -x_347 = lean_box_float(x_345); -x_348 = lean_box_float(x_346); -lean_ctor_set(x_339, 1, x_348); -lean_ctor_set(x_339, 0, x_347); -lean_ctor_set_tag(x_296, 0); -lean_ctor_set(x_296, 1, x_339); -lean_ctor_set(x_296, 0, x_338); -x_205 = x_296; -x_206 = x_342; -goto block_292; +lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; uint8_t x_335; lean_object* x_336; double x_337; double x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; +x_328 = lean_ctor_get(x_304, 0); +x_329 = lean_ctor_get(x_304, 1); +lean_inc(x_329); +lean_inc(x_328); +lean_dec(x_304); +x_330 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_330, 0, x_328); +x_331 = lean_io_get_num_heartbeats(x_329); +x_332 = lean_ctor_get(x_331, 0); +lean_inc(x_332); +x_333 = lean_ctor_get(x_331, 1); +lean_inc(x_333); +if (lean_is_exclusive(x_331)) { + lean_ctor_release(x_331, 0); + lean_ctor_release(x_331, 1); + x_334 = x_331; +} else { + lean_dec_ref(x_331); + x_334 = lean_box(0); +} +x_335 = 0; +x_336 = lean_unsigned_to_nat(0u); +x_337 = l_Float_ofScientific(x_302, x_335, x_336); +lean_dec(x_302); +x_338 = l_Float_ofScientific(x_332, x_335, x_336); +lean_dec(x_332); +x_339 = lean_box_float(x_337); +x_340 = lean_box_float(x_338); +if (lean_is_scalar(x_334)) { + x_341 = lean_alloc_ctor(0, 2, 0); +} else { + x_341 = x_334; +} +lean_ctor_set(x_341, 0, x_339); +lean_ctor_set(x_341, 1, x_340); +x_342 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_342, 0, x_330); +lean_ctor_set(x_342, 1, x_341); +x_209 = x_342; +x_210 = x_333; +goto block_300; +} } else { -lean_object* x_349; lean_object* x_350; uint8_t x_351; lean_object* x_352; double x_353; double x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; -x_349 = lean_ctor_get(x_339, 0); -x_350 = lean_ctor_get(x_339, 1); -lean_inc(x_350); -lean_inc(x_349); -lean_dec(x_339); +uint8_t x_343; +x_343 = !lean_is_exclusive(x_304); +if (x_343 == 0) +{ +lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; uint8_t x_348; +x_344 = lean_ctor_get(x_304, 0); +x_345 = lean_ctor_get(x_304, 1); +x_346 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_346, 0, x_344); +x_347 = lean_io_get_num_heartbeats(x_345); +x_348 = !lean_is_exclusive(x_347); +if (x_348 == 0) +{ +lean_object* x_349; lean_object* x_350; uint8_t x_351; lean_object* x_352; double x_353; double x_354; lean_object* x_355; lean_object* x_356; +x_349 = lean_ctor_get(x_347, 0); +x_350 = lean_ctor_get(x_347, 1); x_351 = 0; x_352 = lean_unsigned_to_nat(0u); -x_353 = l_Float_ofScientific(x_294, x_351, x_352); -lean_dec(x_294); +x_353 = l_Float_ofScientific(x_302, x_351, x_352); +lean_dec(x_302); x_354 = l_Float_ofScientific(x_349, x_351, x_352); lean_dec(x_349); x_355 = lean_box_float(x_353); x_356 = lean_box_float(x_354); -x_357 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_357, 0, x_355); -lean_ctor_set(x_357, 1, x_356); -lean_ctor_set_tag(x_296, 0); -lean_ctor_set(x_296, 1, x_357); -lean_ctor_set(x_296, 0, x_338); -x_205 = x_296; -x_206 = x_350; -goto block_292; -} +lean_ctor_set(x_347, 1, x_356); +lean_ctor_set(x_347, 0, x_355); +lean_ctor_set_tag(x_304, 0); +lean_ctor_set(x_304, 1, x_347); +lean_ctor_set(x_304, 0, x_346); +x_209 = x_304; +x_210 = x_350; +goto block_300; } else { -lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; uint8_t x_365; lean_object* x_366; double x_367; double x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; -x_358 = lean_ctor_get(x_296, 0); -x_359 = lean_ctor_get(x_296, 1); -lean_inc(x_359); +lean_object* x_357; lean_object* x_358; uint8_t x_359; lean_object* x_360; double x_361; double x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; +x_357 = lean_ctor_get(x_347, 0); +x_358 = lean_ctor_get(x_347, 1); lean_inc(x_358); -lean_dec(x_296); -x_360 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_360, 0, x_358); -x_361 = lean_io_get_num_heartbeats(x_359); -x_362 = lean_ctor_get(x_361, 0); -lean_inc(x_362); -x_363 = lean_ctor_get(x_361, 1); -lean_inc(x_363); -if (lean_is_exclusive(x_361)) { - lean_ctor_release(x_361, 0); - lean_ctor_release(x_361, 1); - x_364 = x_361; -} else { - lean_dec_ref(x_361); - x_364 = lean_box(0); +lean_inc(x_357); +lean_dec(x_347); +x_359 = 0; +x_360 = lean_unsigned_to_nat(0u); +x_361 = l_Float_ofScientific(x_302, x_359, x_360); +lean_dec(x_302); +x_362 = l_Float_ofScientific(x_357, x_359, x_360); +lean_dec(x_357); +x_363 = lean_box_float(x_361); +x_364 = lean_box_float(x_362); +x_365 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_365, 0, x_363); +lean_ctor_set(x_365, 1, x_364); +lean_ctor_set_tag(x_304, 0); +lean_ctor_set(x_304, 1, x_365); +lean_ctor_set(x_304, 0, x_346); +x_209 = x_304; +x_210 = x_358; +goto block_300; } -x_365 = 0; -x_366 = lean_unsigned_to_nat(0u); -x_367 = l_Float_ofScientific(x_294, x_365, x_366); -lean_dec(x_294); -x_368 = l_Float_ofScientific(x_362, x_365, x_366); -lean_dec(x_362); -x_369 = lean_box_float(x_367); -x_370 = lean_box_float(x_368); -if (lean_is_scalar(x_364)) { - x_371 = lean_alloc_ctor(0, 2, 0); -} else { - x_371 = x_364; -} -lean_ctor_set(x_371, 0, x_369); -lean_ctor_set(x_371, 1, x_370); -x_372 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_372, 0, x_360); -lean_ctor_set(x_372, 1, x_371); -x_205 = x_372; -x_206 = x_363; -goto block_292; -} -} -block_292: -{ -lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; uint8_t x_211; lean_object* x_280; uint8_t x_281; -x_207 = lean_ctor_get(x_205, 1); -lean_inc(x_207); -x_208 = lean_ctor_get(x_205, 0); -lean_inc(x_208); -lean_dec(x_205); -x_209 = lean_ctor_get(x_207, 0); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 1); -lean_inc(x_210); -lean_dec(x_207); -x_280 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__2; -x_281 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_280); -if (x_281 == 0) -{ -uint8_t x_282; -x_282 = 0; -x_211 = x_282; -goto block_279; } else { -double x_283; double x_284; double x_285; lean_object* x_286; lean_object* x_287; uint8_t x_288; lean_object* x_289; double x_290; uint8_t x_291; -x_283 = lean_unbox_float(x_210); -x_284 = lean_unbox_float(x_209); -x_285 = lean_float_sub(x_283, x_284); -x_286 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__3; -x_287 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_286); -x_288 = 0; -x_289 = lean_unsigned_to_nat(0u); -x_290 = l_Float_ofScientific(x_287, x_288, x_289); -lean_dec(x_287); -x_291 = lean_float_decLt(x_290, x_285); -x_211 = x_291; -goto block_279; +lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; uint8_t x_373; lean_object* x_374; double x_375; double x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; +x_366 = lean_ctor_get(x_304, 0); +x_367 = lean_ctor_get(x_304, 1); +lean_inc(x_367); +lean_inc(x_366); +lean_dec(x_304); +x_368 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_368, 0, x_366); +x_369 = lean_io_get_num_heartbeats(x_367); +x_370 = lean_ctor_get(x_369, 0); +lean_inc(x_370); +x_371 = lean_ctor_get(x_369, 1); +lean_inc(x_371); +if (lean_is_exclusive(x_369)) { + lean_ctor_release(x_369, 0); + lean_ctor_release(x_369, 1); + x_372 = x_369; +} else { + lean_dec_ref(x_369); + x_372 = lean_box(0); } -block_279: +x_373 = 0; +x_374 = lean_unsigned_to_nat(0u); +x_375 = l_Float_ofScientific(x_302, x_373, x_374); +lean_dec(x_302); +x_376 = l_Float_ofScientific(x_370, x_373, x_374); +lean_dec(x_370); +x_377 = lean_box_float(x_375); +x_378 = lean_box_float(x_376); +if (lean_is_scalar(x_372)) { + x_379 = lean_alloc_ctor(0, 2, 0); +} else { + x_379 = x_372; +} +lean_ctor_set(x_379, 0, x_377); +lean_ctor_set(x_379, 1, x_378); +x_380 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_380, 0, x_368); +lean_ctor_set(x_380, 1, x_379); +x_209 = x_380; +x_210 = x_371; +goto block_300; +} +} +block_300: +{ +lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; uint8_t x_217; +x_211 = lean_ctor_get(x_209, 1); +lean_inc(x_211); +x_212 = lean_ctor_get(x_209, 0); +lean_inc(x_212); +lean_dec(x_209); +x_213 = lean_ctor_get(x_211, 0); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 1); +lean_inc(x_214); +lean_dec(x_211); +x_215 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__2; +x_216 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_215); +if (x_216 == 0) { if (x_6 == 0) { -if (x_211 == 0) +uint8_t x_282; +x_282 = 0; +x_217 = x_282; +goto block_281; +} +else { -lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; -lean_dec(x_210); -lean_dec(x_209); +lean_object* x_283; double x_284; double x_285; lean_object* x_286; +x_283 = lean_box(0); +x_284 = lean_unbox_float(x_213); +lean_dec(x_213); +x_285 = lean_unbox_float(x_214); +lean_dec(x_214); +x_286 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_284, x_285, x_5, x_283, x_9, x_10, x_210); +return x_286; +} +} +else +{ +if (x_6 == 0) +{ +double x_287; double x_288; double x_289; lean_object* x_290; lean_object* x_291; uint8_t x_292; lean_object* x_293; double x_294; uint8_t x_295; +x_287 = lean_unbox_float(x_214); +x_288 = lean_unbox_float(x_213); +x_289 = lean_float_sub(x_287, x_288); +x_290 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__3; +x_291 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_290); +x_292 = 0; +x_293 = lean_unsigned_to_nat(0u); +x_294 = l_Float_ofScientific(x_291, x_292, x_293); +lean_dec(x_291); +x_295 = lean_float_decLt(x_294, x_289); +x_217 = x_295; +goto block_281; +} +else +{ +lean_object* x_296; double x_297; double x_298; lean_object* x_299; +x_296 = lean_box(0); +x_297 = lean_unbox_float(x_213); +lean_dec(x_213); +x_298 = lean_unbox_float(x_214); +lean_dec(x_214); +x_299 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_297, x_298, x_5, x_296, x_9, x_10, x_210); +return x_299; +} +} +block_281: +{ +if (x_217 == 0) +{ +lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; uint8_t x_222; +lean_dec(x_214); +lean_dec(x_213); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_212 = lean_st_ref_take(x_10, x_206); -x_213 = lean_ctor_get(x_212, 0); -lean_inc(x_213); -x_214 = lean_ctor_get(x_213, 3); -lean_inc(x_214); -x_215 = lean_ctor_get(x_212, 1); -lean_inc(x_215); -lean_dec(x_212); -x_216 = !lean_is_exclusive(x_213); -if (x_216 == 0) +x_218 = lean_st_ref_take(x_10, x_210); +x_219 = lean_ctor_get(x_218, 0); +lean_inc(x_219); +x_220 = lean_ctor_get(x_219, 3); +lean_inc(x_220); +x_221 = lean_ctor_get(x_218, 1); +lean_inc(x_221); +lean_dec(x_218); +x_222 = !lean_is_exclusive(x_219); +if (x_222 == 0) { -lean_object* x_217; uint8_t x_218; -x_217 = lean_ctor_get(x_213, 3); -lean_dec(x_217); -x_218 = !lean_is_exclusive(x_214); -if (x_218 == 0) -{ -lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; -x_219 = lean_ctor_get(x_214, 0); -x_220 = l_Lean_PersistentArray_append___rarg(x_13, x_219); -lean_dec(x_219); -lean_ctor_set(x_214, 0, x_220); -x_221 = lean_st_ref_set(x_10, x_213, x_215); -x_222 = lean_ctor_get(x_221, 1); -lean_inc(x_222); -lean_dec(x_221); -x_223 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__4(x_208, x_9, x_10, x_222); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_223) == 0) -{ -uint8_t x_224; -x_224 = !lean_is_exclusive(x_223); +lean_object* x_223; uint8_t x_224; +x_223 = lean_ctor_get(x_219, 3); +lean_dec(x_223); +x_224 = !lean_is_exclusive(x_220); if (x_224 == 0) { -return x_223; -} -else -{ -lean_object* x_225; lean_object* x_226; lean_object* x_227; -x_225 = lean_ctor_get(x_223, 0); -x_226 = lean_ctor_get(x_223, 1); -lean_inc(x_226); -lean_inc(x_225); -lean_dec(x_223); -x_227 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_227, 0, x_225); -lean_ctor_set(x_227, 1, x_226); -return x_227; -} -} -else -{ -uint8_t x_228; -x_228 = !lean_is_exclusive(x_223); -if (x_228 == 0) -{ -return x_223; -} -else -{ -lean_object* x_229; lean_object* x_230; lean_object* x_231; -x_229 = lean_ctor_get(x_223, 0); -x_230 = lean_ctor_get(x_223, 1); -lean_inc(x_230); -lean_inc(x_229); -lean_dec(x_223); -x_231 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_231, 0, x_229); -lean_ctor_set(x_231, 1, x_230); -return x_231; -} -} -} -else -{ -uint64_t x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; -x_232 = lean_ctor_get_uint64(x_214, sizeof(void*)*1); -x_233 = lean_ctor_get(x_214, 0); -lean_inc(x_233); -lean_dec(x_214); -x_234 = l_Lean_PersistentArray_append___rarg(x_13, x_233); -lean_dec(x_233); -x_235 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_235, 0, x_234); -lean_ctor_set_uint64(x_235, sizeof(void*)*1, x_232); -lean_ctor_set(x_213, 3, x_235); -x_236 = lean_st_ref_set(x_10, x_213, x_215); -x_237 = lean_ctor_get(x_236, 1); -lean_inc(x_237); -lean_dec(x_236); -x_238 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__4(x_208, x_9, x_10, x_237); +lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; +x_225 = lean_ctor_get(x_220, 0); +x_226 = l_Lean_PersistentArray_append___rarg(x_13, x_225); +lean_dec(x_225); +lean_ctor_set(x_220, 0, x_226); +x_227 = lean_st_ref_set(x_10, x_219, x_221); +x_228 = lean_ctor_get(x_227, 1); +lean_inc(x_228); +lean_dec(x_227); +x_229 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__4(x_212, x_9, x_10, x_228); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_238) == 0) +lean_dec(x_212); +if (lean_obj_tag(x_229) == 0) { -lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; -x_239 = lean_ctor_get(x_238, 0); +uint8_t x_230; +x_230 = !lean_is_exclusive(x_229); +if (x_230 == 0) +{ +return x_229; +} +else +{ +lean_object* x_231; lean_object* x_232; lean_object* x_233; +x_231 = lean_ctor_get(x_229, 0); +x_232 = lean_ctor_get(x_229, 1); +lean_inc(x_232); +lean_inc(x_231); +lean_dec(x_229); +x_233 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_233, 0, x_231); +lean_ctor_set(x_233, 1, x_232); +return x_233; +} +} +else +{ +uint8_t x_234; +x_234 = !lean_is_exclusive(x_229); +if (x_234 == 0) +{ +return x_229; +} +else +{ +lean_object* x_235; lean_object* x_236; lean_object* x_237; +x_235 = lean_ctor_get(x_229, 0); +x_236 = lean_ctor_get(x_229, 1); +lean_inc(x_236); +lean_inc(x_235); +lean_dec(x_229); +x_237 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_237, 0, x_235); +lean_ctor_set(x_237, 1, x_236); +return x_237; +} +} +} +else +{ +uint64_t x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; +x_238 = lean_ctor_get_uint64(x_220, sizeof(void*)*1); +x_239 = lean_ctor_get(x_220, 0); lean_inc(x_239); -x_240 = lean_ctor_get(x_238, 1); -lean_inc(x_240); -if (lean_is_exclusive(x_238)) { - lean_ctor_release(x_238, 0); - lean_ctor_release(x_238, 1); - x_241 = x_238; -} else { - lean_dec_ref(x_238); - x_241 = lean_box(0); -} -if (lean_is_scalar(x_241)) { - x_242 = lean_alloc_ctor(0, 2, 0); -} else { - x_242 = x_241; -} -lean_ctor_set(x_242, 0, x_239); -lean_ctor_set(x_242, 1, x_240); -return x_242; -} -else -{ -lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; -x_243 = lean_ctor_get(x_238, 0); +lean_dec(x_220); +x_240 = l_Lean_PersistentArray_append___rarg(x_13, x_239); +lean_dec(x_239); +x_241 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_241, 0, x_240); +lean_ctor_set_uint64(x_241, sizeof(void*)*1, x_238); +lean_ctor_set(x_219, 3, x_241); +x_242 = lean_st_ref_set(x_10, x_219, x_221); +x_243 = lean_ctor_get(x_242, 1); lean_inc(x_243); -x_244 = lean_ctor_get(x_238, 1); -lean_inc(x_244); -if (lean_is_exclusive(x_238)) { - lean_ctor_release(x_238, 0); - lean_ctor_release(x_238, 1); - x_245 = x_238; -} else { - lean_dec_ref(x_238); - x_245 = lean_box(0); -} -if (lean_is_scalar(x_245)) { - x_246 = lean_alloc_ctor(1, 2, 0); -} else { - x_246 = x_245; -} -lean_ctor_set(x_246, 0, x_243); -lean_ctor_set(x_246, 1, x_244); -return x_246; -} -} -} -else -{ -lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; uint64_t x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; -x_247 = lean_ctor_get(x_213, 0); -x_248 = lean_ctor_get(x_213, 1); -x_249 = lean_ctor_get(x_213, 2); -x_250 = lean_ctor_get(x_213, 4); -x_251 = lean_ctor_get(x_213, 5); -x_252 = lean_ctor_get(x_213, 6); -x_253 = lean_ctor_get(x_213, 7); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_inc(x_248); -lean_inc(x_247); -lean_dec(x_213); -x_254 = lean_ctor_get_uint64(x_214, sizeof(void*)*1); -x_255 = lean_ctor_get(x_214, 0); -lean_inc(x_255); -if (lean_is_exclusive(x_214)) { - lean_ctor_release(x_214, 0); - x_256 = x_214; -} else { - lean_dec_ref(x_214); - x_256 = lean_box(0); -} -x_257 = l_Lean_PersistentArray_append___rarg(x_13, x_255); -lean_dec(x_255); -if (lean_is_scalar(x_256)) { - x_258 = lean_alloc_ctor(0, 1, 8); -} else { - x_258 = x_256; -} -lean_ctor_set(x_258, 0, x_257); -lean_ctor_set_uint64(x_258, sizeof(void*)*1, x_254); -x_259 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_259, 0, x_247); -lean_ctor_set(x_259, 1, x_248); -lean_ctor_set(x_259, 2, x_249); -lean_ctor_set(x_259, 3, x_258); -lean_ctor_set(x_259, 4, x_250); -lean_ctor_set(x_259, 5, x_251); -lean_ctor_set(x_259, 6, x_252); -lean_ctor_set(x_259, 7, x_253); -x_260 = lean_st_ref_set(x_10, x_259, x_215); -x_261 = lean_ctor_get(x_260, 1); -lean_inc(x_261); -lean_dec(x_260); -x_262 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__4(x_208, x_9, x_10, x_261); +lean_dec(x_242); +x_244 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__4(x_212, x_9, x_10, x_243); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_208); -if (lean_obj_tag(x_262) == 0) +lean_dec(x_212); +if (lean_obj_tag(x_244) == 0) { -lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; -x_263 = lean_ctor_get(x_262, 0); -lean_inc(x_263); -x_264 = lean_ctor_get(x_262, 1); -lean_inc(x_264); -if (lean_is_exclusive(x_262)) { - lean_ctor_release(x_262, 0); - lean_ctor_release(x_262, 1); - x_265 = x_262; +lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; +x_245 = lean_ctor_get(x_244, 0); +lean_inc(x_245); +x_246 = lean_ctor_get(x_244, 1); +lean_inc(x_246); +if (lean_is_exclusive(x_244)) { + lean_ctor_release(x_244, 0); + lean_ctor_release(x_244, 1); + x_247 = x_244; } else { - lean_dec_ref(x_262); - x_265 = lean_box(0); + lean_dec_ref(x_244); + x_247 = lean_box(0); } -if (lean_is_scalar(x_265)) { - x_266 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_247)) { + x_248 = lean_alloc_ctor(0, 2, 0); } else { - x_266 = x_265; + x_248 = x_247; } -lean_ctor_set(x_266, 0, x_263); -lean_ctor_set(x_266, 1, x_264); -return x_266; +lean_ctor_set(x_248, 0, x_245); +lean_ctor_set(x_248, 1, x_246); +return x_248; } else { -lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; -x_267 = lean_ctor_get(x_262, 0); +lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; +x_249 = lean_ctor_get(x_244, 0); +lean_inc(x_249); +x_250 = lean_ctor_get(x_244, 1); +lean_inc(x_250); +if (lean_is_exclusive(x_244)) { + lean_ctor_release(x_244, 0); + lean_ctor_release(x_244, 1); + x_251 = x_244; +} else { + lean_dec_ref(x_244); + x_251 = lean_box(0); +} +if (lean_is_scalar(x_251)) { + x_252 = lean_alloc_ctor(1, 2, 0); +} else { + x_252 = x_251; +} +lean_ctor_set(x_252, 0, x_249); +lean_ctor_set(x_252, 1, x_250); +return x_252; +} +} +} +else +{ +lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; uint64_t x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; +x_253 = lean_ctor_get(x_219, 0); +x_254 = lean_ctor_get(x_219, 1); +x_255 = lean_ctor_get(x_219, 2); +x_256 = lean_ctor_get(x_219, 4); +x_257 = lean_ctor_get(x_219, 5); +x_258 = lean_ctor_get(x_219, 6); +x_259 = lean_ctor_get(x_219, 7); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_inc(x_254); +lean_inc(x_253); +lean_dec(x_219); +x_260 = lean_ctor_get_uint64(x_220, sizeof(void*)*1); +x_261 = lean_ctor_get(x_220, 0); +lean_inc(x_261); +if (lean_is_exclusive(x_220)) { + lean_ctor_release(x_220, 0); + x_262 = x_220; +} else { + lean_dec_ref(x_220); + x_262 = lean_box(0); +} +x_263 = l_Lean_PersistentArray_append___rarg(x_13, x_261); +lean_dec(x_261); +if (lean_is_scalar(x_262)) { + x_264 = lean_alloc_ctor(0, 1, 8); +} else { + x_264 = x_262; +} +lean_ctor_set(x_264, 0, x_263); +lean_ctor_set_uint64(x_264, sizeof(void*)*1, x_260); +x_265 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_265, 0, x_253); +lean_ctor_set(x_265, 1, x_254); +lean_ctor_set(x_265, 2, x_255); +lean_ctor_set(x_265, 3, x_264); +lean_ctor_set(x_265, 4, x_256); +lean_ctor_set(x_265, 5, x_257); +lean_ctor_set(x_265, 6, x_258); +lean_ctor_set(x_265, 7, x_259); +x_266 = lean_st_ref_set(x_10, x_265, x_221); +x_267 = lean_ctor_get(x_266, 1); lean_inc(x_267); -x_268 = lean_ctor_get(x_262, 1); -lean_inc(x_268); -if (lean_is_exclusive(x_262)) { - lean_ctor_release(x_262, 0); - lean_ctor_release(x_262, 1); - x_269 = x_262; +lean_dec(x_266); +x_268 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__4(x_212, x_9, x_10, x_267); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_212); +if (lean_obj_tag(x_268) == 0) +{ +lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; +x_269 = lean_ctor_get(x_268, 0); +lean_inc(x_269); +x_270 = lean_ctor_get(x_268, 1); +lean_inc(x_270); +if (lean_is_exclusive(x_268)) { + lean_ctor_release(x_268, 0); + lean_ctor_release(x_268, 1); + x_271 = x_268; } else { - lean_dec_ref(x_262); - x_269 = lean_box(0); + lean_dec_ref(x_268); + x_271 = lean_box(0); } -if (lean_is_scalar(x_269)) { - x_270 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_271)) { + x_272 = lean_alloc_ctor(0, 2, 0); } else { - x_270 = x_269; + x_272 = x_271; } -lean_ctor_set(x_270, 0, x_267); -lean_ctor_set(x_270, 1, x_268); -return x_270; +lean_ctor_set(x_272, 0, x_269); +lean_ctor_set(x_272, 1, x_270); +return x_272; +} +else +{ +lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; +x_273 = lean_ctor_get(x_268, 0); +lean_inc(x_273); +x_274 = lean_ctor_get(x_268, 1); +lean_inc(x_274); +if (lean_is_exclusive(x_268)) { + lean_ctor_release(x_268, 0); + lean_ctor_release(x_268, 1); + x_275 = x_268; +} else { + lean_dec_ref(x_268); + x_275 = lean_box(0); +} +if (lean_is_scalar(x_275)) { + x_276 = lean_alloc_ctor(1, 2, 0); +} else { + x_276 = x_275; +} +lean_ctor_set(x_276, 0, x_273); +lean_ctor_set(x_276, 1, x_274); +return x_276; } } } else { -lean_object* x_271; double x_272; double x_273; lean_object* x_274; -x_271 = lean_box(0); -x_272 = lean_unbox_float(x_209); -lean_dec(x_209); -x_273 = lean_unbox_float(x_210); -lean_dec(x_210); -x_274 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__3(x_2, x_3, x_4, x_13, x_208, x_1, x_211, x_272, x_273, x_5, x_271, x_9, x_10, x_206); -return x_274; -} -} -else -{ -lean_object* x_275; double x_276; double x_277; lean_object* x_278; -x_275 = lean_box(0); -x_276 = lean_unbox_float(x_209); -lean_dec(x_209); -x_277 = lean_unbox_float(x_210); -lean_dec(x_210); -x_278 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__3(x_2, x_3, x_4, x_13, x_208, x_1, x_211, x_276, x_277, x_5, x_275, x_9, x_10, x_206); -return x_278; +lean_object* x_277; double x_278; double x_279; lean_object* x_280; +x_277 = lean_box(0); +x_278 = lean_unbox_float(x_213); +lean_dec(x_213); +x_279 = lean_unbox_float(x_214); +lean_dec(x_214); +x_280 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__3(x_2, x_3, x_4, x_13, x_212, x_216, x_278, x_279, x_5, x_277, x_9, x_10, x_210); +return x_280; } } } @@ -8494,41 +8491,39 @@ lean_dec(x_4); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; uint8_t x_16; double x_17; double x_18; lean_object* x_19; -x_15 = lean_unbox(x_2); +uint8_t x_14; uint8_t x_15; double x_16; double x_17; lean_object* x_18; +x_14 = lean_unbox(x_2); lean_dec(x_2); -x_16 = lean_unbox(x_8); +x_15 = lean_unbox(x_7); +lean_dec(x_7); +x_16 = lean_unbox_float(x_8); lean_dec(x_8); x_17 = lean_unbox_float(x_9); lean_dec(x_9); -x_18 = lean_unbox_float(x_10); -lean_dec(x_10); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__2(x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_16, x_17, x_18, x_11, x_12, x_13, x_14); -lean_dec(x_13); -lean_dec(x_7); +x_18 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__2(x_1, x_14, x_3, x_4, x_5, x_6, x_15, x_16, x_17, x_10, x_11, x_12, x_13); +lean_dec(x_12); lean_dec(x_6); -return x_19; +return x_18; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; uint8_t x_16; double x_17; double x_18; lean_object* x_19; -x_15 = lean_unbox(x_2); +uint8_t x_14; uint8_t x_15; double x_16; double x_17; lean_object* x_18; +x_14 = lean_unbox(x_2); lean_dec(x_2); -x_16 = lean_unbox(x_7); +x_15 = lean_unbox(x_6); +lean_dec(x_6); +x_16 = lean_unbox_float(x_7); lean_dec(x_7); x_17 = lean_unbox_float(x_8); lean_dec(x_8); -x_18 = lean_unbox_float(x_9); -lean_dec(x_9); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__3(x_1, x_15, x_3, x_4, x_5, x_6, x_16, x_17, x_18, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_11); -lean_dec(x_6); -return x_19; +x_18 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__3(x_1, x_14, x_3, x_4, x_5, x_15, x_16, x_17, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_10); +return x_18; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__1___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { @@ -8577,41 +8572,39 @@ lean_dec(x_4); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; uint8_t x_16; double x_17; double x_18; lean_object* x_19; -x_15 = lean_unbox(x_2); +uint8_t x_14; uint8_t x_15; double x_16; double x_17; lean_object* x_18; +x_14 = lean_unbox(x_2); lean_dec(x_2); -x_16 = lean_unbox(x_8); +x_15 = lean_unbox(x_7); +lean_dec(x_7); +x_16 = lean_unbox_float(x_8); lean_dec(x_8); x_17 = lean_unbox_float(x_9); lean_dec(x_9); -x_18 = lean_unbox_float(x_10); -lean_dec(x_10); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__2(x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_16, x_17, x_18, x_11, x_12, x_13, x_14); -lean_dec(x_13); -lean_dec(x_7); +x_18 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__2(x_1, x_14, x_3, x_4, x_5, x_6, x_15, x_16, x_17, x_10, x_11, x_12, x_13); +lean_dec(x_12); lean_dec(x_6); -return x_19; +return x_18; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -uint8_t x_15; uint8_t x_16; double x_17; double x_18; lean_object* x_19; -x_15 = lean_unbox(x_2); +uint8_t x_14; uint8_t x_15; double x_16; double x_17; lean_object* x_18; +x_14 = lean_unbox(x_2); lean_dec(x_2); -x_16 = lean_unbox(x_7); +x_15 = lean_unbox(x_6); +lean_dec(x_6); +x_16 = lean_unbox_float(x_7); lean_dec(x_7); x_17 = lean_unbox_float(x_8); lean_dec(x_8); -x_18 = lean_unbox_float(x_9); -lean_dec(x_9); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__3(x_1, x_15, x_3, x_4, x_5, x_6, x_16, x_17, x_18, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_11); -lean_dec(x_6); -return x_19; +x_18 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__3(x_1, x_14, x_3, x_4, x_5, x_15, x_16, x_17, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_10); +return x_18; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_runExternal___spec__3___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { @@ -8792,103 +8785,78 @@ lean_dec(x_9); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -double x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_18 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_18, 0, x_1); -lean_ctor_set(x_18, 1, x_3); -lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); -lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); -lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___closed__2; -x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_19); -if (x_20 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___closed__1; +x_17 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_3); +lean_ctor_set_float(x_17, sizeof(void*)*2, x_16); +lean_ctor_set_float(x_17, sizeof(void*)*2 + 8, x_16); +lean_ctor_set_uint8(x_17, sizeof(void*)*2 + 16, x_2); +x_18 = lean_box(0); +x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_17, x_18, x_11, x_12, x_13, x_14, x_15); +return x_19; +} +else { -lean_object* x_21; lean_object* x_22; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); x_21 = lean_box(0); -x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_18, x_21, x_12, x_13, x_14, x_15, x_16); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15); return x_22; } -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_18); -x_23 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_3); -lean_ctor_set_float(x_23, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); -x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_23, x_24, x_12, x_13, x_14, x_15, x_16); -return x_25; } } -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_18); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16); -return x_28; -} -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 5); -lean_inc(x_17); -lean_inc(x_15); +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 5); +lean_inc(x_16); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_18 = lean_apply_6(x_10, x_5, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_18) == 0) +x_17 = lean_apply_6(x_9, x_5, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_14, x_15, x_20); -lean_dec(x_15); -lean_dec(x_13); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_13, x_14, x_19); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_21; +return x_20; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_14, x_15, x_22); -lean_dec(x_15); -lean_dec(x_13); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } } } @@ -8906,253 +8874,253 @@ x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofF x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_17); if (x_18 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_109 = lean_io_mono_nanos_now(x_16); -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_109, 1); -lean_inc(x_111); -lean_dec(x_109); +lean_object* x_19; lean_object* x_20; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_113 = lean_io_mono_nanos_now(x_16); +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +lean_dec(x_113); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_112 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_111); -if (lean_obj_tag(x_112) == 0) +x_116 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_115); +if (lean_obj_tag(x_116) == 0) { -uint8_t x_113; -x_113 = !lean_is_exclusive(x_112); -if (x_113 == 0) +uint8_t x_117; +x_117 = !lean_is_exclusive(x_116); +if (x_117 == 0) { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_114 = lean_ctor_get(x_112, 0); -x_115 = lean_ctor_get(x_112, 1); -x_116 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_116, 0, x_114); -x_117 = lean_io_mono_nanos_now(x_115); -x_118 = !lean_is_exclusive(x_117); -if (x_118 == 0) +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_118 = lean_ctor_get(x_116, 0); +x_119 = lean_ctor_get(x_116, 1); +x_120 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_120, 0, x_118); +x_121 = lean_io_mono_nanos_now(x_119); +x_122 = !lean_is_exclusive(x_121); +if (x_122 == 0) { -lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_122; double x_123; double x_124; double x_125; double x_126; double x_127; lean_object* x_128; lean_object* x_129; -x_119 = lean_ctor_get(x_117, 0); -x_120 = lean_ctor_get(x_117, 1); -x_121 = 0; -x_122 = lean_unsigned_to_nat(0u); -x_123 = l_Float_ofScientific(x_110, x_121, x_122); -lean_dec(x_110); -x_124 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_125 = lean_float_div(x_123, x_124); -x_126 = l_Float_ofScientific(x_119, x_121, x_122); -lean_dec(x_119); -x_127 = lean_float_div(x_126, x_124); -x_128 = lean_box_float(x_125); -x_129 = lean_box_float(x_127); -lean_ctor_set(x_117, 1, x_129); -lean_ctor_set(x_117, 0, x_128); -lean_ctor_set(x_112, 1, x_117); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_120; -goto block_108; +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; double x_130; double x_131; lean_object* x_132; lean_object* x_133; +x_123 = lean_ctor_get(x_121, 0); +x_124 = lean_ctor_get(x_121, 1); +x_125 = 0; +x_126 = lean_unsigned_to_nat(0u); +x_127 = l_Float_ofScientific(x_114, x_125, x_126); +lean_dec(x_114); +x_128 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_129 = lean_float_div(x_127, x_128); +x_130 = l_Float_ofScientific(x_123, x_125, x_126); +lean_dec(x_123); +x_131 = lean_float_div(x_130, x_128); +x_132 = lean_box_float(x_129); +x_133 = lean_box_float(x_131); +lean_ctor_set(x_121, 1, x_133); +lean_ctor_set(x_121, 0, x_132); +lean_ctor_set(x_116, 1, x_121); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_124; +goto block_112; } else { -lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; double x_134; double x_135; double x_136; double x_137; double x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_130 = lean_ctor_get(x_117, 0); -x_131 = lean_ctor_get(x_117, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_117); -x_132 = 0; -x_133 = lean_unsigned_to_nat(0u); -x_134 = l_Float_ofScientific(x_110, x_132, x_133); -lean_dec(x_110); -x_135 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_136 = lean_float_div(x_134, x_135); -x_137 = l_Float_ofScientific(x_130, x_132, x_133); -lean_dec(x_130); -x_138 = lean_float_div(x_137, x_135); -x_139 = lean_box_float(x_136); -x_140 = lean_box_float(x_138); -x_141 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -lean_ctor_set(x_112, 1, x_141); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_131; -goto block_108; +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_134 = lean_ctor_get(x_121, 0); +x_135 = lean_ctor_get(x_121, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_121); +x_136 = 0; +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Float_ofScientific(x_114, x_136, x_137); +lean_dec(x_114); +x_139 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_140 = lean_float_div(x_138, x_139); +x_141 = l_Float_ofScientific(x_134, x_136, x_137); +lean_dec(x_134); +x_142 = lean_float_div(x_141, x_139); +x_143 = lean_box_float(x_140); +x_144 = lean_box_float(x_142); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_116, 1, x_145); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_135; +goto block_112; } } else { -lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_142 = lean_ctor_get(x_112, 0); -x_143 = lean_ctor_get(x_112, 1); -lean_inc(x_143); -lean_inc(x_142); -lean_dec(x_112); -x_144 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_144, 0, x_142); -x_145 = lean_io_mono_nanos_now(x_143); -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; lean_object* x_154; double x_155; double x_156; double x_157; double x_158; double x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_146 = lean_ctor_get(x_116, 0); +x_147 = lean_ctor_get(x_116, 1); lean_inc(x_147); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - lean_ctor_release(x_145, 1); - x_148 = x_145; +lean_inc(x_146); +lean_dec(x_116); +x_148 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_148, 0, x_146); +x_149 = lean_io_mono_nanos_now(x_147); +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + lean_ctor_release(x_149, 1); + x_152 = x_149; } else { - lean_dec_ref(x_145); - x_148 = lean_box(0); + lean_dec_ref(x_149); + x_152 = lean_box(0); } -x_149 = 0; -x_150 = lean_unsigned_to_nat(0u); -x_151 = l_Float_ofScientific(x_110, x_149, x_150); -lean_dec(x_110); -x_152 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_153 = lean_float_div(x_151, x_152); -x_154 = l_Float_ofScientific(x_146, x_149, x_150); -lean_dec(x_146); -x_155 = lean_float_div(x_154, x_152); -x_156 = lean_box_float(x_153); -x_157 = lean_box_float(x_155); -if (lean_is_scalar(x_148)) { - x_158 = lean_alloc_ctor(0, 2, 0); +x_153 = 0; +x_154 = lean_unsigned_to_nat(0u); +x_155 = l_Float_ofScientific(x_114, x_153, x_154); +lean_dec(x_114); +x_156 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_157 = lean_float_div(x_155, x_156); +x_158 = l_Float_ofScientific(x_150, x_153, x_154); +lean_dec(x_150); +x_159 = lean_float_div(x_158, x_156); +x_160 = lean_box_float(x_157); +x_161 = lean_box_float(x_159); +if (lean_is_scalar(x_152)) { + x_162 = lean_alloc_ctor(0, 2, 0); } else { - x_158 = x_148; + x_162 = x_152; } -lean_ctor_set(x_158, 0, x_156); -lean_ctor_set(x_158, 1, x_157); -x_159 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_159, 0, x_144); -lean_ctor_set(x_159, 1, x_158); -x_19 = x_159; -x_20 = x_147; -goto block_108; +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_161); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_148); +lean_ctor_set(x_163, 1, x_162); +x_19 = x_163; +x_20 = x_151; +goto block_112; } } else { -uint8_t x_160; -x_160 = !lean_is_exclusive(x_112); -if (x_160 == 0) +uint8_t x_164; +x_164 = !lean_is_exclusive(x_116); +if (x_164 == 0) { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_161 = lean_ctor_get(x_112, 0); -x_162 = lean_ctor_get(x_112, 1); -x_163 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_163, 0, x_161); -x_164 = lean_io_mono_nanos_now(x_162); -x_165 = !lean_is_exclusive(x_164); -if (x_165 == 0) +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; +x_165 = lean_ctor_get(x_116, 0); +x_166 = lean_ctor_get(x_116, 1); +x_167 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_167, 0, x_165); +x_168 = lean_io_mono_nanos_now(x_166); +x_169 = !lean_is_exclusive(x_168); +if (x_169 == 0) { -lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; double x_170; double x_171; double x_172; double x_173; double x_174; lean_object* x_175; lean_object* x_176; -x_166 = lean_ctor_get(x_164, 0); -x_167 = lean_ctor_get(x_164, 1); -x_168 = 0; -x_169 = lean_unsigned_to_nat(0u); -x_170 = l_Float_ofScientific(x_110, x_168, x_169); -lean_dec(x_110); -x_171 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_172 = lean_float_div(x_170, x_171); -x_173 = l_Float_ofScientific(x_166, x_168, x_169); -lean_dec(x_166); -x_174 = lean_float_div(x_173, x_171); -x_175 = lean_box_float(x_172); -x_176 = lean_box_float(x_174); -lean_ctor_set(x_164, 1, x_176); -lean_ctor_set(x_164, 0, x_175); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_164); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_167; -goto block_108; +lean_object* x_170; lean_object* x_171; uint8_t x_172; lean_object* x_173; double x_174; double x_175; double x_176; double x_177; double x_178; lean_object* x_179; lean_object* x_180; +x_170 = lean_ctor_get(x_168, 0); +x_171 = lean_ctor_get(x_168, 1); +x_172 = 0; +x_173 = lean_unsigned_to_nat(0u); +x_174 = l_Float_ofScientific(x_114, x_172, x_173); +lean_dec(x_114); +x_175 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_176 = lean_float_div(x_174, x_175); +x_177 = l_Float_ofScientific(x_170, x_172, x_173); +lean_dec(x_170); +x_178 = lean_float_div(x_177, x_175); +x_179 = lean_box_float(x_176); +x_180 = lean_box_float(x_178); +lean_ctor_set(x_168, 1, x_180); +lean_ctor_set(x_168, 0, x_179); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_168); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_171; +goto block_112; } else { -lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_object* x_180; double x_181; double x_182; double x_183; double x_184; double x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_177 = lean_ctor_get(x_164, 0); -x_178 = lean_ctor_get(x_164, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_164); -x_179 = 0; -x_180 = lean_unsigned_to_nat(0u); -x_181 = l_Float_ofScientific(x_110, x_179, x_180); -lean_dec(x_110); -x_182 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_183 = lean_float_div(x_181, x_182); -x_184 = l_Float_ofScientific(x_177, x_179, x_180); -lean_dec(x_177); -x_185 = lean_float_div(x_184, x_182); -x_186 = lean_box_float(x_183); -x_187 = lean_box_float(x_185); -x_188 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_188); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_178; -goto block_108; +lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_181 = lean_ctor_get(x_168, 0); +x_182 = lean_ctor_get(x_168, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_168); +x_183 = 0; +x_184 = lean_unsigned_to_nat(0u); +x_185 = l_Float_ofScientific(x_114, x_183, x_184); +lean_dec(x_114); +x_186 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_187 = lean_float_div(x_185, x_186); +x_188 = l_Float_ofScientific(x_181, x_183, x_184); +lean_dec(x_181); +x_189 = lean_float_div(x_188, x_186); +x_190 = lean_box_float(x_187); +x_191 = lean_box_float(x_189); +x_192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_192); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_182; +goto block_112; } } else { -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_189 = lean_ctor_get(x_112, 0); -x_190 = lean_ctor_get(x_112, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_112); -x_191 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_191, 0, x_189); -x_192 = lean_io_mono_nanos_now(x_190); -x_193 = lean_ctor_get(x_192, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; lean_object* x_201; double x_202; double x_203; double x_204; double x_205; double x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_193 = lean_ctor_get(x_116, 0); +x_194 = lean_ctor_get(x_116, 1); lean_inc(x_194); -if (lean_is_exclusive(x_192)) { - lean_ctor_release(x_192, 0); - lean_ctor_release(x_192, 1); - x_195 = x_192; +lean_inc(x_193); +lean_dec(x_116); +x_195 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_195, 0, x_193); +x_196 = lean_io_mono_nanos_now(x_194); +x_197 = lean_ctor_get(x_196, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_196, 1); +lean_inc(x_198); +if (lean_is_exclusive(x_196)) { + lean_ctor_release(x_196, 0); + lean_ctor_release(x_196, 1); + x_199 = x_196; } else { - lean_dec_ref(x_192); - x_195 = lean_box(0); + lean_dec_ref(x_196); + x_199 = lean_box(0); } -x_196 = 0; -x_197 = lean_unsigned_to_nat(0u); -x_198 = l_Float_ofScientific(x_110, x_196, x_197); -lean_dec(x_110); -x_199 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_200 = lean_float_div(x_198, x_199); -x_201 = l_Float_ofScientific(x_193, x_196, x_197); -lean_dec(x_193); -x_202 = lean_float_div(x_201, x_199); -x_203 = lean_box_float(x_200); -x_204 = lean_box_float(x_202); -if (lean_is_scalar(x_195)) { - x_205 = lean_alloc_ctor(0, 2, 0); +x_200 = 0; +x_201 = lean_unsigned_to_nat(0u); +x_202 = l_Float_ofScientific(x_114, x_200, x_201); +lean_dec(x_114); +x_203 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_204 = lean_float_div(x_202, x_203); +x_205 = l_Float_ofScientific(x_197, x_200, x_201); +lean_dec(x_197); +x_206 = lean_float_div(x_205, x_203); +x_207 = lean_box_float(x_204); +x_208 = lean_box_float(x_206); +if (lean_is_scalar(x_199)) { + x_209 = lean_alloc_ctor(0, 2, 0); } else { - x_205 = x_195; + x_209 = x_199; } -lean_ctor_set(x_205, 0, x_203); -lean_ctor_set(x_205, 1, x_204); -x_206 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_206, 0, x_191); -lean_ctor_set(x_206, 1, x_205); -x_19 = x_206; -x_20 = x_194; -goto block_108; +lean_ctor_set(x_209, 0, x_207); +lean_ctor_set(x_209, 1, x_208); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_195); +lean_ctor_set(x_210, 1, x_209); +x_19 = x_210; +x_20 = x_198; +goto block_112; } } -block_108: +block_112: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_94; uint8_t x_95; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); x_22 = lean_ctor_get(x_19, 0); @@ -9163,17 +9131,33 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_21, 1); lean_inc(x_24); lean_dec(x_21); -x_94 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__2; -x_95 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_94); -if (x_95 == 0) +x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__2; +x_26 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_25); +if (x_26 == 0) { -uint8_t x_96; -x_96 = 0; -x_25 = x_96; -goto block_93; +if (x_6 == 0) +{ +uint8_t x_92; +x_92 = 0; +x_27 = x_92; +goto block_91; } else { +lean_object* x_93; double x_94; double x_95; lean_object* x_96; +x_93 = lean_box(0); +x_94 = lean_unbox_float(x_23); +lean_dec(x_23); +x_95 = lean_unbox_float(x_24); +lean_dec(x_24); +x_96 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_94, x_95, x_5, x_93, x_9, x_10, x_11, x_12, x_20); +return x_96; +} +} +else +{ +if (x_6 == 0) +{ double x_97; double x_98; double x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; double x_104; double x_105; double x_106; uint8_t x_107; x_97 = lean_unbox_float(x_24); x_98 = lean_unbox_float(x_23); @@ -9187,859 +9171,871 @@ lean_dec(x_101); x_105 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__4; x_106 = lean_float_div(x_104, x_105); x_107 = lean_float_decLt(x_106, x_99); -x_25 = x_107; -goto block_93; +x_27 = x_107; +goto block_91; } -block_93: +else { -if (x_6 == 0) +lean_object* x_108; double x_109; double x_110; lean_object* x_111; +x_108 = lean_box(0); +x_109 = lean_unbox_float(x_23); +lean_dec(x_23); +x_110 = lean_unbox_float(x_24); +lean_dec(x_24); +x_111 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_109, x_110, x_5, x_108, x_9, x_10, x_11, x_12, x_20); +return x_111; +} +} +block_91: { -if (x_25 == 0) +if (x_27 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_24); lean_dec(x_23); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_26 = lean_st_ref_take(x_12, x_20); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -x_29 = lean_ctor_get(x_26, 1); +x_28 = lean_st_ref_take(x_12, x_20); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -lean_dec(x_26); -x_30 = !lean_is_exclusive(x_27); -if (x_30 == 0) -{ -lean_object* x_31; uint8_t x_32; -x_31 = lean_ctor_get(x_27, 3); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_28); +x_30 = lean_ctor_get(x_29, 3); +lean_inc(x_30); +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = !lean_is_exclusive(x_29); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_33 = lean_ctor_get(x_28, 0); -x_34 = l_Lean_PersistentArray_append___rarg(x_15, x_33); +lean_object* x_33; uint8_t x_34; +x_33 = lean_ctor_get(x_29, 3); lean_dec(x_33); -lean_ctor_set(x_28, 0, x_34); -x_35 = lean_st_ref_set(x_12, x_27, x_29); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); +x_34 = !lean_is_exclusive(x_30); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_ctor_get(x_30, 0); +x_36 = l_Lean_PersistentArray_append___rarg(x_15, x_35); lean_dec(x_35); -x_37 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__2(x_22, x_9, x_10, x_11, x_12, x_36); +lean_ctor_set(x_30, 0, x_36); +x_37 = lean_st_ref_set(x_12, x_29, x_31); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +x_39 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__2(x_22, x_9, x_10, x_11, x_12, x_38); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_37) == 0) +if (lean_obj_tag(x_39) == 0) { -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -return x_37; +return x_39; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_ctor_get(x_37, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_37); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_39); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } else { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_37); -if (x_42 == 0) +uint8_t x_44; +x_44 = !lean_is_exclusive(x_39); +if (x_44 == 0) { -return x_37; +return x_39; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_37, 0); -x_44 = lean_ctor_get(x_37, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_37); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_39, 0); +x_46 = lean_ctor_get(x_39, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_39); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } } else { -uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_47 = lean_ctor_get(x_28, 0); -lean_inc(x_47); -lean_dec(x_28); -x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_47); -lean_dec(x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); -lean_ctor_set(x_27, 3, x_49); -x_50 = lean_st_ref_set(x_12, x_27, x_29); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -lean_dec(x_50); -x_52 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__2(x_22, x_9, x_10, x_11, x_12, x_51); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_22); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); +uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_49 = lean_ctor_get(x_30, 0); +lean_inc(x_49); +lean_dec(x_30); +x_50 = l_Lean_PersistentArray_append___rarg(x_15, x_49); +lean_dec(x_49); +x_51 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); +lean_ctor_set(x_29, 3, x_51); +x_52 = lean_st_ref_set(x_12, x_29, x_31); +x_53 = lean_ctor_get(x_52, 1); lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_55 = x_52; +lean_dec(x_52); +x_54 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__2(x_22, x_9, x_10, x_11, x_12, x_53); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_22); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; } else { - lean_dec_ref(x_52); - x_55 = lean_box(0); + lean_dec_ref(x_54); + x_57 = lean_box(0); } -if (lean_is_scalar(x_55)) { - x_56 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_57)) { + x_58 = lean_alloc_ctor(0, 2, 0); } else { - x_56 = x_55; + x_58 = x_57; } -lean_ctor_set(x_56, 0, x_53); -lean_ctor_set(x_56, 1, x_54); -return x_56; +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_56); +return x_58; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_52, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_52, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_59 = x_52; +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_54, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_54, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_61 = x_54; } else { - lean_dec_ref(x_52); - x_59 = lean_box(0); + lean_dec_ref(x_54); + x_61 = lean_box(0); } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(1, 2, 0); } else { - x_60 = x_59; + x_62 = x_61; } -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_58); -return x_60; +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; } } } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_61 = lean_ctor_get(x_27, 0); -x_62 = lean_ctor_get(x_27, 1); -x_63 = lean_ctor_get(x_27, 2); -x_64 = lean_ctor_get(x_27, 4); -x_65 = lean_ctor_get(x_27, 5); -x_66 = lean_ctor_get(x_27, 6); -x_67 = lean_ctor_get(x_27, 7); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_63 = lean_ctor_get(x_29, 0); +x_64 = lean_ctor_get(x_29, 1); +x_65 = lean_ctor_get(x_29, 2); +x_66 = lean_ctor_get(x_29, 4); +x_67 = lean_ctor_get(x_29, 5); +x_68 = lean_ctor_get(x_29, 6); +x_69 = lean_ctor_get(x_29, 7); +lean_inc(x_69); +lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_27); -x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_69 = lean_ctor_get(x_28, 0); -lean_inc(x_69); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - x_70 = x_28; +lean_dec(x_29); +x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_71 = lean_ctor_get(x_30, 0); +lean_inc(x_71); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + x_72 = x_30; } else { - lean_dec_ref(x_28); - x_70 = lean_box(0); + lean_dec_ref(x_30); + x_72 = lean_box(0); } -x_71 = l_Lean_PersistentArray_append___rarg(x_15, x_69); -lean_dec(x_69); -if (lean_is_scalar(x_70)) { - x_72 = lean_alloc_ctor(0, 1, 8); +x_73 = l_Lean_PersistentArray_append___rarg(x_15, x_71); +lean_dec(x_71); +if (lean_is_scalar(x_72)) { + x_74 = lean_alloc_ctor(0, 1, 8); } else { - x_72 = x_70; + x_74 = x_72; } -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); -x_73 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_73, 0, x_61); -lean_ctor_set(x_73, 1, x_62); -lean_ctor_set(x_73, 2, x_63); -lean_ctor_set(x_73, 3, x_72); -lean_ctor_set(x_73, 4, x_64); -lean_ctor_set(x_73, 5, x_65); -lean_ctor_set(x_73, 6, x_66); -lean_ctor_set(x_73, 7, x_67); -x_74 = lean_st_ref_set(x_12, x_73, x_29); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_76 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__2(x_22, x_9, x_10, x_11, x_12, x_75); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); +x_75 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_64); +lean_ctor_set(x_75, 2, x_65); +lean_ctor_set(x_75, 3, x_74); +lean_ctor_set(x_75, 4, x_66); +lean_ctor_set(x_75, 5, x_67); +lean_ctor_set(x_75, 6, x_68); +lean_ctor_set(x_75, 7, x_69); +x_76 = lean_st_ref_set(x_12, x_75, x_31); +x_77 = lean_ctor_get(x_76, 1); +lean_inc(x_77); +lean_dec(x_76); +x_78 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__2(x_22, x_9, x_10, x_11, x_12, x_77); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_76) == 0) +if (lean_obj_tag(x_78) == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_76, 0); -lean_inc(x_77); -x_78 = lean_ctor_get(x_76, 1); -lean_inc(x_78); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_79 = x_76; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_81 = x_78; } else { - lean_dec_ref(x_76); - x_79 = lean_box(0); + lean_dec_ref(x_78); + x_81 = lean_box(0); } -if (lean_is_scalar(x_79)) { - x_80 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(0, 2, 0); } else { - x_80 = x_79; + x_82 = x_81; } -lean_ctor_set(x_80, 0, x_77); -lean_ctor_set(x_80, 1, x_78); -return x_80; +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_80); +return x_82; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_81 = lean_ctor_get(x_76, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_76, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_83 = x_76; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_83 = lean_ctor_get(x_78, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_78, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_85 = x_78; } else { - lean_dec_ref(x_76); - x_83 = lean_box(0); + lean_dec_ref(x_78); + x_85 = lean_box(0); } -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); } else { - x_84 = x_83; + x_86 = x_85; } -lean_ctor_set(x_84, 0, x_81); -lean_ctor_set(x_84, 1, x_82); -return x_84; +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; } } } else { -lean_object* x_85; double x_86; double x_87; lean_object* x_88; -x_85 = lean_box(0); -x_86 = lean_unbox_float(x_23); +lean_object* x_87; double x_88; double x_89; lean_object* x_90; +x_87 = lean_box(0); +x_88 = lean_unbox_float(x_23); lean_dec(x_23); -x_87 = lean_unbox_float(x_24); +x_89 = lean_unbox_float(x_24); lean_dec(x_24); -x_88 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_86, x_87, x_5, x_85, x_9, x_10, x_11, x_12, x_20); -return x_88; -} -} -else -{ -lean_object* x_89; double x_90; double x_91; lean_object* x_92; -x_89 = lean_box(0); -x_90 = lean_unbox_float(x_23); -lean_dec(x_23); -x_91 = lean_unbox_float(x_24); -lean_dec(x_24); -x_92 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_20); -return x_92; +x_90 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_20); +return x_90; } } } } else { -lean_object* x_207; lean_object* x_208; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_16); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_211; lean_object* x_212; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_16); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_207 = x_336; -x_208 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_211 = x_344; +x_212 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_207 = x_374; -x_208 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_282; uint8_t x_283; -x_209 = lean_ctor_get(x_207, 1); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 0); -lean_inc(x_210); -lean_dec(x_207); -x_211 = lean_ctor_get(x_209, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 1); -lean_inc(x_212); -lean_dec(x_209); -x_282 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_213 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_212); -x_286 = lean_unbox_float(x_211); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_213 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_211 = x_382; +x_212 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; uint8_t x_219; +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 0); +lean_inc(x_214); +lean_dec(x_211); +x_215 = lean_ctor_get(x_213, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 1); +lean_inc(x_216); +lean_dec(x_213); +x_217 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__2; +x_218 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_217); +if (x_218 == 0) { if (x_6 == 0) { -if (x_213 == 0) +uint8_t x_284; +x_284 = 0; +x_219 = x_284; +goto block_283; +} +else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; -lean_dec(x_212); -lean_dec(x_211); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_215); +lean_dec(x_215); +x_287 = lean_unbox_float(x_216); +lean_dec(x_216); +x_288 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_212); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_216); +x_290 = lean_unbox_float(x_215); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_219 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_215); +lean_dec(x_215); +x_300 = lean_unbox_float(x_216); +lean_dec(x_216); +x_301 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_212); +return x_301; +} +} +block_283: +{ +if (x_219 == 0) +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; +lean_dec(x_216); +lean_dec(x_215); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_214 = lean_st_ref_take(x_12, x_208); -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_215, 3); -lean_inc(x_216); -x_217 = lean_ctor_get(x_214, 1); -lean_inc(x_217); -lean_dec(x_214); -x_218 = !lean_is_exclusive(x_215); -if (x_218 == 0) +x_220 = lean_st_ref_take(x_12, x_212); +x_221 = lean_ctor_get(x_220, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_221, 3); +lean_inc(x_222); +x_223 = lean_ctor_get(x_220, 1); +lean_inc(x_223); +lean_dec(x_220); +x_224 = !lean_is_exclusive(x_221); +if (x_224 == 0) { -lean_object* x_219; uint8_t x_220; -x_219 = lean_ctor_get(x_215, 3); -lean_dec(x_219); -x_220 = !lean_is_exclusive(x_216); -if (x_220 == 0) -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_221 = lean_ctor_get(x_216, 0); -x_222 = l_Lean_PersistentArray_append___rarg(x_15, x_221); -lean_dec(x_221); -lean_ctor_set(x_216, 0, x_222); -x_223 = lean_st_ref_set(x_12, x_215, x_217); -x_224 = lean_ctor_get(x_223, 1); -lean_inc(x_224); -lean_dec(x_223); -x_225 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__2(x_210, x_9, x_10, x_11, x_12, x_224); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_225) == 0) -{ -uint8_t x_226; -x_226 = !lean_is_exclusive(x_225); +lean_object* x_225; uint8_t x_226; +x_225 = lean_ctor_get(x_221, 3); +lean_dec(x_225); +x_226 = !lean_is_exclusive(x_222); if (x_226 == 0) { -return x_225; -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; -x_227 = lean_ctor_get(x_225, 0); -x_228 = lean_ctor_get(x_225, 1); -lean_inc(x_228); -lean_inc(x_227); -lean_dec(x_225); -x_229 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_229, 0, x_227); -lean_ctor_set(x_229, 1, x_228); -return x_229; -} -} -else -{ -uint8_t x_230; -x_230 = !lean_is_exclusive(x_225); -if (x_230 == 0) -{ -return x_225; -} -else -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_225, 0); -x_232 = lean_ctor_get(x_225, 1); -lean_inc(x_232); -lean_inc(x_231); -lean_dec(x_225); -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_231); -lean_ctor_set(x_233, 1, x_232); -return x_233; -} -} -} -else -{ -uint64_t x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_234 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_235 = lean_ctor_get(x_216, 0); -lean_inc(x_235); -lean_dec(x_216); -x_236 = l_Lean_PersistentArray_append___rarg(x_15, x_235); -lean_dec(x_235); -x_237 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_237, 0, x_236); -lean_ctor_set_uint64(x_237, sizeof(void*)*1, x_234); -lean_ctor_set(x_215, 3, x_237); -x_238 = lean_st_ref_set(x_12, x_215, x_217); -x_239 = lean_ctor_get(x_238, 1); -lean_inc(x_239); -lean_dec(x_238); -x_240 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__2(x_210, x_9, x_10, x_11, x_12, x_239); +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_227 = lean_ctor_get(x_222, 0); +x_228 = l_Lean_PersistentArray_append___rarg(x_15, x_227); +lean_dec(x_227); +lean_ctor_set(x_222, 0, x_228); +x_229 = lean_st_ref_set(x_12, x_221, x_223); +x_230 = lean_ctor_get(x_229, 1); +lean_inc(x_230); +lean_dec(x_229); +x_231 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__2(x_214, x_9, x_10, x_11, x_12, x_230); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_240) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_231) == 0) { -lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; -x_241 = lean_ctor_get(x_240, 0); +uint8_t x_232; +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +return x_231; +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_231, 0); +x_234 = lean_ctor_get(x_231, 1); +lean_inc(x_234); +lean_inc(x_233); +lean_dec(x_231); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +return x_235; +} +} +else +{ +uint8_t x_236; +x_236 = !lean_is_exclusive(x_231); +if (x_236 == 0) +{ +return x_231; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_231, 0); +x_238 = lean_ctor_get(x_231, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_231); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} +} +} +else +{ +uint64_t x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_240 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_241 = lean_ctor_get(x_222, 0); lean_inc(x_241); -x_242 = lean_ctor_get(x_240, 1); -lean_inc(x_242); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_243 = x_240; -} else { - lean_dec_ref(x_240); - x_243 = lean_box(0); -} -if (lean_is_scalar(x_243)) { - x_244 = lean_alloc_ctor(0, 2, 0); -} else { - x_244 = x_243; -} -lean_ctor_set(x_244, 0, x_241); -lean_ctor_set(x_244, 1, x_242); -return x_244; -} -else -{ -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_245 = lean_ctor_get(x_240, 0); +lean_dec(x_222); +x_242 = l_Lean_PersistentArray_append___rarg(x_15, x_241); +lean_dec(x_241); +x_243 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set_uint64(x_243, sizeof(void*)*1, x_240); +lean_ctor_set(x_221, 3, x_243); +x_244 = lean_st_ref_set(x_12, x_221, x_223); +x_245 = lean_ctor_get(x_244, 1); lean_inc(x_245); -x_246 = lean_ctor_get(x_240, 1); -lean_inc(x_246); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_247 = x_240; -} else { - lean_dec_ref(x_240); - x_247 = lean_box(0); -} -if (lean_is_scalar(x_247)) { - x_248 = lean_alloc_ctor(1, 2, 0); -} else { - x_248 = x_247; -} -lean_ctor_set(x_248, 0, x_245); -lean_ctor_set(x_248, 1, x_246); -return x_248; -} -} -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_249 = lean_ctor_get(x_215, 0); -x_250 = lean_ctor_get(x_215, 1); -x_251 = lean_ctor_get(x_215, 2); -x_252 = lean_ctor_get(x_215, 4); -x_253 = lean_ctor_get(x_215, 5); -x_254 = lean_ctor_get(x_215, 6); -x_255 = lean_ctor_get(x_215, 7); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_dec(x_215); -x_256 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_257 = lean_ctor_get(x_216, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_216)) { - lean_ctor_release(x_216, 0); - x_258 = x_216; -} else { - lean_dec_ref(x_216); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_15, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_261, 0, x_249); -lean_ctor_set(x_261, 1, x_250); -lean_ctor_set(x_261, 2, x_251); -lean_ctor_set(x_261, 3, x_260); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_255); -x_262 = lean_st_ref_set(x_12, x_261, x_217); -x_263 = lean_ctor_get(x_262, 1); -lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__2(x_210, x_9, x_10, x_11, x_12, x_263); +lean_dec(x_244); +x_246 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__2(x_214, x_9, x_10, x_11, x_12, x_245); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_246) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_247 = lean_ctor_get(x_246, 0); +lean_inc(x_247); +x_248 = lean_ctor_get(x_246, 1); +lean_inc(x_248); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_249 = x_246; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_246); + x_249 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_249)) { + x_250 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_250 = x_249; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_250, 0, x_247); +lean_ctor_set(x_250, 1, x_248); +return x_250; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_251 = lean_ctor_get(x_246, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_246, 1); +lean_inc(x_252); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_253 = x_246; +} else { + lean_dec_ref(x_246); + x_253 = lean_box(0); +} +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(1, 2, 0); +} else { + x_254 = x_253; +} +lean_ctor_set(x_254, 0, x_251); +lean_ctor_set(x_254, 1, x_252); +return x_254; +} +} +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_255 = lean_ctor_get(x_221, 0); +x_256 = lean_ctor_get(x_221, 1); +x_257 = lean_ctor_get(x_221, 2); +x_258 = lean_ctor_get(x_221, 4); +x_259 = lean_ctor_get(x_221, 5); +x_260 = lean_ctor_get(x_221, 6); +x_261 = lean_ctor_get(x_221, 7); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_221); +x_262 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_263 = lean_ctor_get(x_222, 0); +lean_inc(x_263); +if (lean_is_exclusive(x_222)) { + lean_ctor_release(x_222, 0); + x_264 = x_222; +} else { + lean_dec_ref(x_222); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_15, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_267, 0, x_255); +lean_ctor_set(x_267, 1, x_256); +lean_ctor_set(x_267, 2, x_257); +lean_ctor_set(x_267, 3, x_266); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_261); +x_268 = lean_st_ref_set(x_12, x_267, x_223); +x_269 = lean_ctor_get(x_268, 1); lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__2(x_214, x_9, x_10, x_11, x_12, x_269); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_214); +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_272 = x_271; + x_274 = x_273; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; +} else { + lean_dec_ref(x_270); + x_277 = lean_box(0); +} +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); +} else { + x_278 = x_277; +} +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_211); -lean_dec(x_211); -x_275 = lean_unbox_float(x_212); -lean_dec(x_212); -x_276 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_274, x_275, x_5, x_273, x_9, x_10, x_11, x_12, x_208); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_211); -lean_dec(x_211); -x_279 = lean_unbox_float(x_212); -lean_dec(x_212); -x_280 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_278, x_279, x_5, x_277, x_9, x_10, x_11, x_12, x_208); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_215); +lean_dec(x_215); +x_281 = lean_unbox_float(x_216); +lean_dec(x_216); +x_282 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_212); +return x_282; } } } @@ -10184,103 +10180,78 @@ lean_dec(x_9); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -double x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_18 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_18, 0, x_1); -lean_ctor_set(x_18, 1, x_3); -lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); -lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); -lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___closed__2; -x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_19); -if (x_20 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___closed__1; +x_17 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_3); +lean_ctor_set_float(x_17, sizeof(void*)*2, x_16); +lean_ctor_set_float(x_17, sizeof(void*)*2 + 8, x_16); +lean_ctor_set_uint8(x_17, sizeof(void*)*2 + 16, x_2); +x_18 = lean_box(0); +x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__1(x_4, x_5, x_10, x_6, x_17, x_18, x_11, x_12, x_13, x_14, x_15); +return x_19; +} +else { -lean_object* x_21; lean_object* x_22; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); x_21 = lean_box(0); -x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__1(x_4, x_5, x_11, x_6, x_18, x_21, x_12, x_13, x_14, x_15, x_16); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15); return x_22; } -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_18); -x_23 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_3); -lean_ctor_set_float(x_23, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); -x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__1(x_4, x_5, x_11, x_6, x_23, x_24, x_12, x_13, x_14, x_15, x_16); -return x_25; } } -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_18); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16); -return x_28; -} -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 5); -lean_inc(x_17); -lean_inc(x_15); +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 5); +lean_inc(x_16); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_18 = lean_apply_6(x_10, x_5, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_18) == 0) +x_17 = lean_apply_6(x_9, x_5, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_14, x_15, x_20); -lean_dec(x_15); -lean_dec(x_13); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_13, x_14, x_19); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_21; +return x_20; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_14, x_15, x_22); -lean_dec(x_15); -lean_dec(x_13); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } } } @@ -10298,253 +10269,253 @@ x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofF x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_17); if (x_18 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_109 = lean_io_mono_nanos_now(x_16); -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_109, 1); -lean_inc(x_111); -lean_dec(x_109); +lean_object* x_19; lean_object* x_20; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_113 = lean_io_mono_nanos_now(x_16); +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +lean_dec(x_113); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_112 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_111); -if (lean_obj_tag(x_112) == 0) +x_116 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_115); +if (lean_obj_tag(x_116) == 0) { -uint8_t x_113; -x_113 = !lean_is_exclusive(x_112); -if (x_113 == 0) +uint8_t x_117; +x_117 = !lean_is_exclusive(x_116); +if (x_117 == 0) { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_114 = lean_ctor_get(x_112, 0); -x_115 = lean_ctor_get(x_112, 1); -x_116 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_116, 0, x_114); -x_117 = lean_io_mono_nanos_now(x_115); -x_118 = !lean_is_exclusive(x_117); -if (x_118 == 0) +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_118 = lean_ctor_get(x_116, 0); +x_119 = lean_ctor_get(x_116, 1); +x_120 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_120, 0, x_118); +x_121 = lean_io_mono_nanos_now(x_119); +x_122 = !lean_is_exclusive(x_121); +if (x_122 == 0) { -lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_122; double x_123; double x_124; double x_125; double x_126; double x_127; lean_object* x_128; lean_object* x_129; -x_119 = lean_ctor_get(x_117, 0); -x_120 = lean_ctor_get(x_117, 1); -x_121 = 0; -x_122 = lean_unsigned_to_nat(0u); -x_123 = l_Float_ofScientific(x_110, x_121, x_122); -lean_dec(x_110); -x_124 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_125 = lean_float_div(x_123, x_124); -x_126 = l_Float_ofScientific(x_119, x_121, x_122); -lean_dec(x_119); -x_127 = lean_float_div(x_126, x_124); -x_128 = lean_box_float(x_125); -x_129 = lean_box_float(x_127); -lean_ctor_set(x_117, 1, x_129); -lean_ctor_set(x_117, 0, x_128); -lean_ctor_set(x_112, 1, x_117); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_120; -goto block_108; +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; double x_130; double x_131; lean_object* x_132; lean_object* x_133; +x_123 = lean_ctor_get(x_121, 0); +x_124 = lean_ctor_get(x_121, 1); +x_125 = 0; +x_126 = lean_unsigned_to_nat(0u); +x_127 = l_Float_ofScientific(x_114, x_125, x_126); +lean_dec(x_114); +x_128 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_129 = lean_float_div(x_127, x_128); +x_130 = l_Float_ofScientific(x_123, x_125, x_126); +lean_dec(x_123); +x_131 = lean_float_div(x_130, x_128); +x_132 = lean_box_float(x_129); +x_133 = lean_box_float(x_131); +lean_ctor_set(x_121, 1, x_133); +lean_ctor_set(x_121, 0, x_132); +lean_ctor_set(x_116, 1, x_121); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_124; +goto block_112; } else { -lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; double x_134; double x_135; double x_136; double x_137; double x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_130 = lean_ctor_get(x_117, 0); -x_131 = lean_ctor_get(x_117, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_117); -x_132 = 0; -x_133 = lean_unsigned_to_nat(0u); -x_134 = l_Float_ofScientific(x_110, x_132, x_133); -lean_dec(x_110); -x_135 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_136 = lean_float_div(x_134, x_135); -x_137 = l_Float_ofScientific(x_130, x_132, x_133); -lean_dec(x_130); -x_138 = lean_float_div(x_137, x_135); -x_139 = lean_box_float(x_136); -x_140 = lean_box_float(x_138); -x_141 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -lean_ctor_set(x_112, 1, x_141); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_131; -goto block_108; +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_134 = lean_ctor_get(x_121, 0); +x_135 = lean_ctor_get(x_121, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_121); +x_136 = 0; +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Float_ofScientific(x_114, x_136, x_137); +lean_dec(x_114); +x_139 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_140 = lean_float_div(x_138, x_139); +x_141 = l_Float_ofScientific(x_134, x_136, x_137); +lean_dec(x_134); +x_142 = lean_float_div(x_141, x_139); +x_143 = lean_box_float(x_140); +x_144 = lean_box_float(x_142); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_116, 1, x_145); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_135; +goto block_112; } } else { -lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_142 = lean_ctor_get(x_112, 0); -x_143 = lean_ctor_get(x_112, 1); -lean_inc(x_143); -lean_inc(x_142); -lean_dec(x_112); -x_144 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_144, 0, x_142); -x_145 = lean_io_mono_nanos_now(x_143); -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; lean_object* x_154; double x_155; double x_156; double x_157; double x_158; double x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_146 = lean_ctor_get(x_116, 0); +x_147 = lean_ctor_get(x_116, 1); lean_inc(x_147); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - lean_ctor_release(x_145, 1); - x_148 = x_145; +lean_inc(x_146); +lean_dec(x_116); +x_148 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_148, 0, x_146); +x_149 = lean_io_mono_nanos_now(x_147); +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + lean_ctor_release(x_149, 1); + x_152 = x_149; } else { - lean_dec_ref(x_145); - x_148 = lean_box(0); + lean_dec_ref(x_149); + x_152 = lean_box(0); } -x_149 = 0; -x_150 = lean_unsigned_to_nat(0u); -x_151 = l_Float_ofScientific(x_110, x_149, x_150); -lean_dec(x_110); -x_152 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_153 = lean_float_div(x_151, x_152); -x_154 = l_Float_ofScientific(x_146, x_149, x_150); -lean_dec(x_146); -x_155 = lean_float_div(x_154, x_152); -x_156 = lean_box_float(x_153); -x_157 = lean_box_float(x_155); -if (lean_is_scalar(x_148)) { - x_158 = lean_alloc_ctor(0, 2, 0); +x_153 = 0; +x_154 = lean_unsigned_to_nat(0u); +x_155 = l_Float_ofScientific(x_114, x_153, x_154); +lean_dec(x_114); +x_156 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_157 = lean_float_div(x_155, x_156); +x_158 = l_Float_ofScientific(x_150, x_153, x_154); +lean_dec(x_150); +x_159 = lean_float_div(x_158, x_156); +x_160 = lean_box_float(x_157); +x_161 = lean_box_float(x_159); +if (lean_is_scalar(x_152)) { + x_162 = lean_alloc_ctor(0, 2, 0); } else { - x_158 = x_148; + x_162 = x_152; } -lean_ctor_set(x_158, 0, x_156); -lean_ctor_set(x_158, 1, x_157); -x_159 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_159, 0, x_144); -lean_ctor_set(x_159, 1, x_158); -x_19 = x_159; -x_20 = x_147; -goto block_108; +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_161); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_148); +lean_ctor_set(x_163, 1, x_162); +x_19 = x_163; +x_20 = x_151; +goto block_112; } } else { -uint8_t x_160; -x_160 = !lean_is_exclusive(x_112); -if (x_160 == 0) +uint8_t x_164; +x_164 = !lean_is_exclusive(x_116); +if (x_164 == 0) { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_161 = lean_ctor_get(x_112, 0); -x_162 = lean_ctor_get(x_112, 1); -x_163 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_163, 0, x_161); -x_164 = lean_io_mono_nanos_now(x_162); -x_165 = !lean_is_exclusive(x_164); -if (x_165 == 0) +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; +x_165 = lean_ctor_get(x_116, 0); +x_166 = lean_ctor_get(x_116, 1); +x_167 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_167, 0, x_165); +x_168 = lean_io_mono_nanos_now(x_166); +x_169 = !lean_is_exclusive(x_168); +if (x_169 == 0) { -lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; double x_170; double x_171; double x_172; double x_173; double x_174; lean_object* x_175; lean_object* x_176; -x_166 = lean_ctor_get(x_164, 0); -x_167 = lean_ctor_get(x_164, 1); -x_168 = 0; -x_169 = lean_unsigned_to_nat(0u); -x_170 = l_Float_ofScientific(x_110, x_168, x_169); -lean_dec(x_110); -x_171 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_172 = lean_float_div(x_170, x_171); -x_173 = l_Float_ofScientific(x_166, x_168, x_169); -lean_dec(x_166); -x_174 = lean_float_div(x_173, x_171); -x_175 = lean_box_float(x_172); -x_176 = lean_box_float(x_174); -lean_ctor_set(x_164, 1, x_176); -lean_ctor_set(x_164, 0, x_175); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_164); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_167; -goto block_108; +lean_object* x_170; lean_object* x_171; uint8_t x_172; lean_object* x_173; double x_174; double x_175; double x_176; double x_177; double x_178; lean_object* x_179; lean_object* x_180; +x_170 = lean_ctor_get(x_168, 0); +x_171 = lean_ctor_get(x_168, 1); +x_172 = 0; +x_173 = lean_unsigned_to_nat(0u); +x_174 = l_Float_ofScientific(x_114, x_172, x_173); +lean_dec(x_114); +x_175 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_176 = lean_float_div(x_174, x_175); +x_177 = l_Float_ofScientific(x_170, x_172, x_173); +lean_dec(x_170); +x_178 = lean_float_div(x_177, x_175); +x_179 = lean_box_float(x_176); +x_180 = lean_box_float(x_178); +lean_ctor_set(x_168, 1, x_180); +lean_ctor_set(x_168, 0, x_179); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_168); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_171; +goto block_112; } else { -lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_object* x_180; double x_181; double x_182; double x_183; double x_184; double x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_177 = lean_ctor_get(x_164, 0); -x_178 = lean_ctor_get(x_164, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_164); -x_179 = 0; -x_180 = lean_unsigned_to_nat(0u); -x_181 = l_Float_ofScientific(x_110, x_179, x_180); -lean_dec(x_110); -x_182 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_183 = lean_float_div(x_181, x_182); -x_184 = l_Float_ofScientific(x_177, x_179, x_180); -lean_dec(x_177); -x_185 = lean_float_div(x_184, x_182); -x_186 = lean_box_float(x_183); -x_187 = lean_box_float(x_185); -x_188 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_188); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_178; -goto block_108; +lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_181 = lean_ctor_get(x_168, 0); +x_182 = lean_ctor_get(x_168, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_168); +x_183 = 0; +x_184 = lean_unsigned_to_nat(0u); +x_185 = l_Float_ofScientific(x_114, x_183, x_184); +lean_dec(x_114); +x_186 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_187 = lean_float_div(x_185, x_186); +x_188 = l_Float_ofScientific(x_181, x_183, x_184); +lean_dec(x_181); +x_189 = lean_float_div(x_188, x_186); +x_190 = lean_box_float(x_187); +x_191 = lean_box_float(x_189); +x_192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_192); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_182; +goto block_112; } } else { -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_189 = lean_ctor_get(x_112, 0); -x_190 = lean_ctor_get(x_112, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_112); -x_191 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_191, 0, x_189); -x_192 = lean_io_mono_nanos_now(x_190); -x_193 = lean_ctor_get(x_192, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; lean_object* x_201; double x_202; double x_203; double x_204; double x_205; double x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_193 = lean_ctor_get(x_116, 0); +x_194 = lean_ctor_get(x_116, 1); lean_inc(x_194); -if (lean_is_exclusive(x_192)) { - lean_ctor_release(x_192, 0); - lean_ctor_release(x_192, 1); - x_195 = x_192; +lean_inc(x_193); +lean_dec(x_116); +x_195 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_195, 0, x_193); +x_196 = lean_io_mono_nanos_now(x_194); +x_197 = lean_ctor_get(x_196, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_196, 1); +lean_inc(x_198); +if (lean_is_exclusive(x_196)) { + lean_ctor_release(x_196, 0); + lean_ctor_release(x_196, 1); + x_199 = x_196; } else { - lean_dec_ref(x_192); - x_195 = lean_box(0); + lean_dec_ref(x_196); + x_199 = lean_box(0); } -x_196 = 0; -x_197 = lean_unsigned_to_nat(0u); -x_198 = l_Float_ofScientific(x_110, x_196, x_197); -lean_dec(x_110); -x_199 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; -x_200 = lean_float_div(x_198, x_199); -x_201 = l_Float_ofScientific(x_193, x_196, x_197); -lean_dec(x_193); -x_202 = lean_float_div(x_201, x_199); -x_203 = lean_box_float(x_200); -x_204 = lean_box_float(x_202); -if (lean_is_scalar(x_195)) { - x_205 = lean_alloc_ctor(0, 2, 0); +x_200 = 0; +x_201 = lean_unsigned_to_nat(0u); +x_202 = l_Float_ofScientific(x_114, x_200, x_201); +lean_dec(x_114); +x_203 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__5; +x_204 = lean_float_div(x_202, x_203); +x_205 = l_Float_ofScientific(x_197, x_200, x_201); +lean_dec(x_197); +x_206 = lean_float_div(x_205, x_203); +x_207 = lean_box_float(x_204); +x_208 = lean_box_float(x_206); +if (lean_is_scalar(x_199)) { + x_209 = lean_alloc_ctor(0, 2, 0); } else { - x_205 = x_195; + x_209 = x_199; } -lean_ctor_set(x_205, 0, x_203); -lean_ctor_set(x_205, 1, x_204); -x_206 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_206, 0, x_191); -lean_ctor_set(x_206, 1, x_205); -x_19 = x_206; -x_20 = x_194; -goto block_108; +lean_ctor_set(x_209, 0, x_207); +lean_ctor_set(x_209, 1, x_208); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_195); +lean_ctor_set(x_210, 1, x_209); +x_19 = x_210; +x_20 = x_198; +goto block_112; } } -block_108: +block_112: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_94; uint8_t x_95; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); x_22 = lean_ctor_get(x_19, 0); @@ -10555,17 +10526,33 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_21, 1); lean_inc(x_24); lean_dec(x_21); -x_94 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__2; -x_95 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_94); -if (x_95 == 0) +x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__2; +x_26 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_25); +if (x_26 == 0) { -uint8_t x_96; -x_96 = 0; -x_25 = x_96; -goto block_93; +if (x_6 == 0) +{ +uint8_t x_92; +x_92 = 0; +x_27 = x_92; +goto block_91; } else { +lean_object* x_93; double x_94; double x_95; lean_object* x_96; +x_93 = lean_box(0); +x_94 = lean_unbox_float(x_23); +lean_dec(x_23); +x_95 = lean_unbox_float(x_24); +lean_dec(x_24); +x_96 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_94, x_95, x_5, x_93, x_9, x_10, x_11, x_12, x_20); +return x_96; +} +} +else +{ +if (x_6 == 0) +{ double x_97; double x_98; double x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; double x_104; double x_105; double x_106; uint8_t x_107; x_97 = lean_unbox_float(x_24); x_98 = lean_unbox_float(x_23); @@ -10579,859 +10566,871 @@ lean_dec(x_101); x_105 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__4; x_106 = lean_float_div(x_104, x_105); x_107 = lean_float_decLt(x_106, x_99); -x_25 = x_107; -goto block_93; +x_27 = x_107; +goto block_91; } -block_93: +else { -if (x_6 == 0) +lean_object* x_108; double x_109; double x_110; lean_object* x_111; +x_108 = lean_box(0); +x_109 = lean_unbox_float(x_23); +lean_dec(x_23); +x_110 = lean_unbox_float(x_24); +lean_dec(x_24); +x_111 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_109, x_110, x_5, x_108, x_9, x_10, x_11, x_12, x_20); +return x_111; +} +} +block_91: { -if (x_25 == 0) +if (x_27 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_24); lean_dec(x_23); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_26 = lean_st_ref_take(x_12, x_20); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -x_29 = lean_ctor_get(x_26, 1); +x_28 = lean_st_ref_take(x_12, x_20); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -lean_dec(x_26); -x_30 = !lean_is_exclusive(x_27); -if (x_30 == 0) -{ -lean_object* x_31; uint8_t x_32; -x_31 = lean_ctor_get(x_27, 3); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_28); +x_30 = lean_ctor_get(x_29, 3); +lean_inc(x_30); +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = !lean_is_exclusive(x_29); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_33 = lean_ctor_get(x_28, 0); -x_34 = l_Lean_PersistentArray_append___rarg(x_15, x_33); +lean_object* x_33; uint8_t x_34; +x_33 = lean_ctor_get(x_29, 3); lean_dec(x_33); -lean_ctor_set(x_28, 0, x_34); -x_35 = lean_st_ref_set(x_12, x_27, x_29); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); +x_34 = !lean_is_exclusive(x_30); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_ctor_get(x_30, 0); +x_36 = l_Lean_PersistentArray_append___rarg(x_15, x_35); lean_dec(x_35); -x_37 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__4(x_22, x_9, x_10, x_11, x_12, x_36); +lean_ctor_set(x_30, 0, x_36); +x_37 = lean_st_ref_set(x_12, x_29, x_31); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +x_39 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__4(x_22, x_9, x_10, x_11, x_12, x_38); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_37) == 0) +if (lean_obj_tag(x_39) == 0) { -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -return x_37; +return x_39; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_ctor_get(x_37, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_37); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_39); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } else { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_37); -if (x_42 == 0) +uint8_t x_44; +x_44 = !lean_is_exclusive(x_39); +if (x_44 == 0) { -return x_37; +return x_39; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_37, 0); -x_44 = lean_ctor_get(x_37, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_37); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_39, 0); +x_46 = lean_ctor_get(x_39, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_39); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } } else { -uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_47 = lean_ctor_get(x_28, 0); -lean_inc(x_47); -lean_dec(x_28); -x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_47); -lean_dec(x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); -lean_ctor_set(x_27, 3, x_49); -x_50 = lean_st_ref_set(x_12, x_27, x_29); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -lean_dec(x_50); -x_52 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__4(x_22, x_9, x_10, x_11, x_12, x_51); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_22); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); +uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_49 = lean_ctor_get(x_30, 0); +lean_inc(x_49); +lean_dec(x_30); +x_50 = l_Lean_PersistentArray_append___rarg(x_15, x_49); +lean_dec(x_49); +x_51 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); +lean_ctor_set(x_29, 3, x_51); +x_52 = lean_st_ref_set(x_12, x_29, x_31); +x_53 = lean_ctor_get(x_52, 1); lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_55 = x_52; +lean_dec(x_52); +x_54 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__4(x_22, x_9, x_10, x_11, x_12, x_53); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_22); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; } else { - lean_dec_ref(x_52); - x_55 = lean_box(0); + lean_dec_ref(x_54); + x_57 = lean_box(0); } -if (lean_is_scalar(x_55)) { - x_56 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_57)) { + x_58 = lean_alloc_ctor(0, 2, 0); } else { - x_56 = x_55; + x_58 = x_57; } -lean_ctor_set(x_56, 0, x_53); -lean_ctor_set(x_56, 1, x_54); -return x_56; +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_56); +return x_58; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_52, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_52, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_59 = x_52; +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_54, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_54, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_61 = x_54; } else { - lean_dec_ref(x_52); - x_59 = lean_box(0); + lean_dec_ref(x_54); + x_61 = lean_box(0); } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(1, 2, 0); } else { - x_60 = x_59; + x_62 = x_61; } -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_58); -return x_60; +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; } } } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_61 = lean_ctor_get(x_27, 0); -x_62 = lean_ctor_get(x_27, 1); -x_63 = lean_ctor_get(x_27, 2); -x_64 = lean_ctor_get(x_27, 4); -x_65 = lean_ctor_get(x_27, 5); -x_66 = lean_ctor_get(x_27, 6); -x_67 = lean_ctor_get(x_27, 7); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_63 = lean_ctor_get(x_29, 0); +x_64 = lean_ctor_get(x_29, 1); +x_65 = lean_ctor_get(x_29, 2); +x_66 = lean_ctor_get(x_29, 4); +x_67 = lean_ctor_get(x_29, 5); +x_68 = lean_ctor_get(x_29, 6); +x_69 = lean_ctor_get(x_29, 7); +lean_inc(x_69); +lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_27); -x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_69 = lean_ctor_get(x_28, 0); -lean_inc(x_69); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - x_70 = x_28; +lean_dec(x_29); +x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_71 = lean_ctor_get(x_30, 0); +lean_inc(x_71); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + x_72 = x_30; } else { - lean_dec_ref(x_28); - x_70 = lean_box(0); + lean_dec_ref(x_30); + x_72 = lean_box(0); } -x_71 = l_Lean_PersistentArray_append___rarg(x_15, x_69); -lean_dec(x_69); -if (lean_is_scalar(x_70)) { - x_72 = lean_alloc_ctor(0, 1, 8); +x_73 = l_Lean_PersistentArray_append___rarg(x_15, x_71); +lean_dec(x_71); +if (lean_is_scalar(x_72)) { + x_74 = lean_alloc_ctor(0, 1, 8); } else { - x_72 = x_70; + x_74 = x_72; } -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); -x_73 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_73, 0, x_61); -lean_ctor_set(x_73, 1, x_62); -lean_ctor_set(x_73, 2, x_63); -lean_ctor_set(x_73, 3, x_72); -lean_ctor_set(x_73, 4, x_64); -lean_ctor_set(x_73, 5, x_65); -lean_ctor_set(x_73, 6, x_66); -lean_ctor_set(x_73, 7, x_67); -x_74 = lean_st_ref_set(x_12, x_73, x_29); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_76 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__4(x_22, x_9, x_10, x_11, x_12, x_75); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); +x_75 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_64); +lean_ctor_set(x_75, 2, x_65); +lean_ctor_set(x_75, 3, x_74); +lean_ctor_set(x_75, 4, x_66); +lean_ctor_set(x_75, 5, x_67); +lean_ctor_set(x_75, 6, x_68); +lean_ctor_set(x_75, 7, x_69); +x_76 = lean_st_ref_set(x_12, x_75, x_31); +x_77 = lean_ctor_get(x_76, 1); +lean_inc(x_77); +lean_dec(x_76); +x_78 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__4(x_22, x_9, x_10, x_11, x_12, x_77); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_76) == 0) +if (lean_obj_tag(x_78) == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_76, 0); -lean_inc(x_77); -x_78 = lean_ctor_get(x_76, 1); -lean_inc(x_78); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_79 = x_76; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_81 = x_78; } else { - lean_dec_ref(x_76); - x_79 = lean_box(0); + lean_dec_ref(x_78); + x_81 = lean_box(0); } -if (lean_is_scalar(x_79)) { - x_80 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(0, 2, 0); } else { - x_80 = x_79; + x_82 = x_81; } -lean_ctor_set(x_80, 0, x_77); -lean_ctor_set(x_80, 1, x_78); -return x_80; +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_80); +return x_82; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_81 = lean_ctor_get(x_76, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_76, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_83 = x_76; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_83 = lean_ctor_get(x_78, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_78, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_85 = x_78; } else { - lean_dec_ref(x_76); - x_83 = lean_box(0); + lean_dec_ref(x_78); + x_85 = lean_box(0); } -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); } else { - x_84 = x_83; + x_86 = x_85; } -lean_ctor_set(x_84, 0, x_81); -lean_ctor_set(x_84, 1, x_82); -return x_84; +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; } } } else { -lean_object* x_85; double x_86; double x_87; lean_object* x_88; -x_85 = lean_box(0); -x_86 = lean_unbox_float(x_23); +lean_object* x_87; double x_88; double x_89; lean_object* x_90; +x_87 = lean_box(0); +x_88 = lean_unbox_float(x_23); lean_dec(x_23); -x_87 = lean_unbox_float(x_24); +x_89 = lean_unbox_float(x_24); lean_dec(x_24); -x_88 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_86, x_87, x_5, x_85, x_9, x_10, x_11, x_12, x_20); -return x_88; -} -} -else -{ -lean_object* x_89; double x_90; double x_91; lean_object* x_92; -x_89 = lean_box(0); -x_90 = lean_unbox_float(x_23); -lean_dec(x_23); -x_91 = lean_unbox_float(x_24); -lean_dec(x_24); -x_92 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_20); -return x_92; +x_90 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_20); +return x_90; } } } } else { -lean_object* x_207; lean_object* x_208; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_16); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_211; lean_object* x_212; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_16); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_207 = x_336; -x_208 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_211 = x_344; +x_212 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_207 = x_374; -x_208 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_282; uint8_t x_283; -x_209 = lean_ctor_get(x_207, 1); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 0); -lean_inc(x_210); -lean_dec(x_207); -x_211 = lean_ctor_get(x_209, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 1); -lean_inc(x_212); -lean_dec(x_209); -x_282 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_213 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_212); -x_286 = lean_unbox_float(x_211); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_213 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_211 = x_382; +x_212 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; uint8_t x_219; +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 0); +lean_inc(x_214); +lean_dec(x_211); +x_215 = lean_ctor_get(x_213, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 1); +lean_inc(x_216); +lean_dec(x_213); +x_217 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__2; +x_218 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_217); +if (x_218 == 0) { if (x_6 == 0) { -if (x_213 == 0) +uint8_t x_284; +x_284 = 0; +x_219 = x_284; +goto block_283; +} +else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; -lean_dec(x_212); -lean_dec(x_211); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_215); +lean_dec(x_215); +x_287 = lean_unbox_float(x_216); +lean_dec(x_216); +x_288 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_212); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_216); +x_290 = lean_unbox_float(x_215); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_219 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_215); +lean_dec(x_215); +x_300 = lean_unbox_float(x_216); +lean_dec(x_216); +x_301 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_212); +return x_301; +} +} +block_283: +{ +if (x_219 == 0) +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; +lean_dec(x_216); +lean_dec(x_215); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_214 = lean_st_ref_take(x_12, x_208); -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_215, 3); -lean_inc(x_216); -x_217 = lean_ctor_get(x_214, 1); -lean_inc(x_217); -lean_dec(x_214); -x_218 = !lean_is_exclusive(x_215); -if (x_218 == 0) +x_220 = lean_st_ref_take(x_12, x_212); +x_221 = lean_ctor_get(x_220, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_221, 3); +lean_inc(x_222); +x_223 = lean_ctor_get(x_220, 1); +lean_inc(x_223); +lean_dec(x_220); +x_224 = !lean_is_exclusive(x_221); +if (x_224 == 0) { -lean_object* x_219; uint8_t x_220; -x_219 = lean_ctor_get(x_215, 3); -lean_dec(x_219); -x_220 = !lean_is_exclusive(x_216); -if (x_220 == 0) -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_221 = lean_ctor_get(x_216, 0); -x_222 = l_Lean_PersistentArray_append___rarg(x_15, x_221); -lean_dec(x_221); -lean_ctor_set(x_216, 0, x_222); -x_223 = lean_st_ref_set(x_12, x_215, x_217); -x_224 = lean_ctor_get(x_223, 1); -lean_inc(x_224); -lean_dec(x_223); -x_225 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__4(x_210, x_9, x_10, x_11, x_12, x_224); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_225) == 0) -{ -uint8_t x_226; -x_226 = !lean_is_exclusive(x_225); +lean_object* x_225; uint8_t x_226; +x_225 = lean_ctor_get(x_221, 3); +lean_dec(x_225); +x_226 = !lean_is_exclusive(x_222); if (x_226 == 0) { -return x_225; -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; -x_227 = lean_ctor_get(x_225, 0); -x_228 = lean_ctor_get(x_225, 1); -lean_inc(x_228); -lean_inc(x_227); -lean_dec(x_225); -x_229 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_229, 0, x_227); -lean_ctor_set(x_229, 1, x_228); -return x_229; -} -} -else -{ -uint8_t x_230; -x_230 = !lean_is_exclusive(x_225); -if (x_230 == 0) -{ -return x_225; -} -else -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_225, 0); -x_232 = lean_ctor_get(x_225, 1); -lean_inc(x_232); -lean_inc(x_231); -lean_dec(x_225); -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_231); -lean_ctor_set(x_233, 1, x_232); -return x_233; -} -} -} -else -{ -uint64_t x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_234 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_235 = lean_ctor_get(x_216, 0); -lean_inc(x_235); -lean_dec(x_216); -x_236 = l_Lean_PersistentArray_append___rarg(x_15, x_235); -lean_dec(x_235); -x_237 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_237, 0, x_236); -lean_ctor_set_uint64(x_237, sizeof(void*)*1, x_234); -lean_ctor_set(x_215, 3, x_237); -x_238 = lean_st_ref_set(x_12, x_215, x_217); -x_239 = lean_ctor_get(x_238, 1); -lean_inc(x_239); -lean_dec(x_238); -x_240 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__4(x_210, x_9, x_10, x_11, x_12, x_239); +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_227 = lean_ctor_get(x_222, 0); +x_228 = l_Lean_PersistentArray_append___rarg(x_15, x_227); +lean_dec(x_227); +lean_ctor_set(x_222, 0, x_228); +x_229 = lean_st_ref_set(x_12, x_221, x_223); +x_230 = lean_ctor_get(x_229, 1); +lean_inc(x_230); +lean_dec(x_229); +x_231 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__4(x_214, x_9, x_10, x_11, x_12, x_230); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_240) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_231) == 0) { -lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; -x_241 = lean_ctor_get(x_240, 0); +uint8_t x_232; +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +return x_231; +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_231, 0); +x_234 = lean_ctor_get(x_231, 1); +lean_inc(x_234); +lean_inc(x_233); +lean_dec(x_231); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +return x_235; +} +} +else +{ +uint8_t x_236; +x_236 = !lean_is_exclusive(x_231); +if (x_236 == 0) +{ +return x_231; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_231, 0); +x_238 = lean_ctor_get(x_231, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_231); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} +} +} +else +{ +uint64_t x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_240 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_241 = lean_ctor_get(x_222, 0); lean_inc(x_241); -x_242 = lean_ctor_get(x_240, 1); -lean_inc(x_242); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_243 = x_240; -} else { - lean_dec_ref(x_240); - x_243 = lean_box(0); -} -if (lean_is_scalar(x_243)) { - x_244 = lean_alloc_ctor(0, 2, 0); -} else { - x_244 = x_243; -} -lean_ctor_set(x_244, 0, x_241); -lean_ctor_set(x_244, 1, x_242); -return x_244; -} -else -{ -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_245 = lean_ctor_get(x_240, 0); +lean_dec(x_222); +x_242 = l_Lean_PersistentArray_append___rarg(x_15, x_241); +lean_dec(x_241); +x_243 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set_uint64(x_243, sizeof(void*)*1, x_240); +lean_ctor_set(x_221, 3, x_243); +x_244 = lean_st_ref_set(x_12, x_221, x_223); +x_245 = lean_ctor_get(x_244, 1); lean_inc(x_245); -x_246 = lean_ctor_get(x_240, 1); -lean_inc(x_246); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_247 = x_240; -} else { - lean_dec_ref(x_240); - x_247 = lean_box(0); -} -if (lean_is_scalar(x_247)) { - x_248 = lean_alloc_ctor(1, 2, 0); -} else { - x_248 = x_247; -} -lean_ctor_set(x_248, 0, x_245); -lean_ctor_set(x_248, 1, x_246); -return x_248; -} -} -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_249 = lean_ctor_get(x_215, 0); -x_250 = lean_ctor_get(x_215, 1); -x_251 = lean_ctor_get(x_215, 2); -x_252 = lean_ctor_get(x_215, 4); -x_253 = lean_ctor_get(x_215, 5); -x_254 = lean_ctor_get(x_215, 6); -x_255 = lean_ctor_get(x_215, 7); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_dec(x_215); -x_256 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_257 = lean_ctor_get(x_216, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_216)) { - lean_ctor_release(x_216, 0); - x_258 = x_216; -} else { - lean_dec_ref(x_216); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_15, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_261, 0, x_249); -lean_ctor_set(x_261, 1, x_250); -lean_ctor_set(x_261, 2, x_251); -lean_ctor_set(x_261, 3, x_260); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_255); -x_262 = lean_st_ref_set(x_12, x_261, x_217); -x_263 = lean_ctor_get(x_262, 1); -lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__4(x_210, x_9, x_10, x_11, x_12, x_263); +lean_dec(x_244); +x_246 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__4(x_214, x_9, x_10, x_11, x_12, x_245); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_246) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_247 = lean_ctor_get(x_246, 0); +lean_inc(x_247); +x_248 = lean_ctor_get(x_246, 1); +lean_inc(x_248); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_249 = x_246; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_246); + x_249 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_249)) { + x_250 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_250 = x_249; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_250, 0, x_247); +lean_ctor_set(x_250, 1, x_248); +return x_250; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_251 = lean_ctor_get(x_246, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_246, 1); +lean_inc(x_252); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_253 = x_246; +} else { + lean_dec_ref(x_246); + x_253 = lean_box(0); +} +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(1, 2, 0); +} else { + x_254 = x_253; +} +lean_ctor_set(x_254, 0, x_251); +lean_ctor_set(x_254, 1, x_252); +return x_254; +} +} +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_255 = lean_ctor_get(x_221, 0); +x_256 = lean_ctor_get(x_221, 1); +x_257 = lean_ctor_get(x_221, 2); +x_258 = lean_ctor_get(x_221, 4); +x_259 = lean_ctor_get(x_221, 5); +x_260 = lean_ctor_get(x_221, 6); +x_261 = lean_ctor_get(x_221, 7); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_221); +x_262 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_263 = lean_ctor_get(x_222, 0); +lean_inc(x_263); +if (lean_is_exclusive(x_222)) { + lean_ctor_release(x_222, 0); + x_264 = x_222; +} else { + lean_dec_ref(x_222); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_15, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_267, 0, x_255); +lean_ctor_set(x_267, 1, x_256); +lean_ctor_set(x_267, 2, x_257); +lean_ctor_set(x_267, 3, x_266); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_261); +x_268 = lean_st_ref_set(x_12, x_267, x_223); +x_269 = lean_ctor_get(x_268, 1); lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__4(x_214, x_9, x_10, x_11, x_12, x_269); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_214); +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_272 = x_271; + x_274 = x_273; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; +} else { + lean_dec_ref(x_270); + x_277 = lean_box(0); +} +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); +} else { + x_278 = x_277; +} +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_211); -lean_dec(x_211); -x_275 = lean_unbox_float(x_212); -lean_dec(x_212); -x_276 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_274, x_275, x_5, x_273, x_9, x_10, x_11, x_12, x_208); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_211); -lean_dec(x_211); -x_279 = lean_unbox_float(x_212); -lean_dec(x_212); -x_280 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_278, x_279, x_5, x_277, x_9, x_10, x_11, x_12, x_208); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_215); +lean_dec(x_215); +x_281 = lean_unbox_float(x_216); +lean_dec(x_216); +x_282 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_212); +return x_282; } } } @@ -12311,43 +12310,41 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_8); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); lean_dec(x_8); x_19 = lean_unbox_float(x_9); lean_dec(x_9); -x_20 = lean_unbox_float(x_10); -lean_dec(x_10); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_18, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_15); -lean_dec(x_13); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__2(x_1, x_16, x_3, x_4, x_5, x_6, x_17, x_18, x_19, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_14); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_21; +return x_20; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_7); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); lean_dec(x_7); x_19 = lean_unbox_float(x_8); lean_dec(x_8); -x_20 = lean_unbox_float(x_9); -lean_dec(x_9); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__3(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_11); -lean_dec(x_6); -return x_21; +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__3(x_1, x_16, x_3, x_4, x_5, x_17, x_18, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +return x_20; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__1___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -12400,43 +12397,41 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_8); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); lean_dec(x_8); x_19 = lean_unbox_float(x_9); lean_dec(x_9); -x_20 = lean_unbox_float(x_10); -lean_dec(x_10); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_18, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_15); -lean_dec(x_13); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__2(x_1, x_16, x_3, x_4, x_5, x_6, x_17, x_18, x_19, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_14); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_21; +return x_20; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_7); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); lean_dec(x_7); x_19 = lean_unbox_float(x_8); lean_dec(x_8); -x_20 = lean_unbox_float(x_9); -lean_dec(x_9); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__3(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_11); -lean_dec(x_6); -return x_21; +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__3(x_1, x_16, x_3, x_4, x_5, x_17, x_18, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +return x_20; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_toReflectionProof___spec__3___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -12765,8 +12760,6 @@ lean_mark_persistent(l_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction___ l_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction = _init_l_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction(); lean_mark_persistent(l_Lean_Elab_Tactic_BVDecide_Frontend_instToExprIntAction); l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___closed__1(); -l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___closed__2(); -lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__2___closed__2); l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3___closed__1); l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_LratCert_ofFile___spec__2___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/BVDecide/Frontend/Normalize.c b/stage0/stdlib/Lean/Elab/Tactic/BVDecide/Frontend/Normalize.c index ddeb91ebdb..3cb1d4e487 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/BVDecide/Frontend/Normalize.c +++ b/stage0/stdlib/Lean/Elab/Tactic/BVDecide/Frontend/Normalize.c @@ -33,7 +33,6 @@ static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_bvNormalize__ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_embeddedConstraintPass___elambda__1___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_neg__eq__not__add___lambda__1___closed__8; static lean_object* l___regBuiltin_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_bv__udiv__of__two__pow_declare__1____x40_Lean_Elab_Tactic_BVDecide_Frontend_Normalize___hyg_4165____closed__12; -extern lean_object* l_Lean_profiler; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_eqToBEq___lambda__2___closed__1; static lean_object* l___regBuiltin_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_bv__udiv__of__two__pow_declare__1____x40_Lean_Elab_Tactic_BVDecide_Frontend_Normalize___hyg_4165____closed__4; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_embeddedConstraintPass___elambda__1___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -118,7 +117,7 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_BVDe LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_embeddedConstraintPass___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_andOnes___closed__4; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_bv__udiv__of__two__pow___closed__2; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_embeddedConstraintPass___elambda__1___lambda__1___closed__3; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_acNormalizePass___closed__1; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_rewriteRulesPass___closed__2; @@ -185,7 +184,7 @@ lean_object* l_BitVec_neg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_rewriteRulesPass___elambda__1___closed__11; lean_object* lean_st_ref_take(lean_object*, lean_object*); lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Meta_processPostponed___spec__2___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_eqToBEq_declare__1____x40_Lean_Elab_Tactic_BVDecide_Frontend_Normalize___hyg_312_(lean_object*); extern lean_object* l_Lean_Meta_sevalSimpExtension; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_andFlatteningPass; @@ -305,7 +304,7 @@ static lean_object* l_List_foldlM___at_Lean_Elab_Tactic_BVDecide_Frontend_Normal LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_bvNormalize___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_andFlatteningPass_trySplit___lambda__1___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_passPipeline(lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_rewriteRulesPass___elambda__1___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_neg__eq__not__add___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_andOnes_declare__1____x40_Lean_Elab_Tactic_BVDecide_Frontend_Normalize___hyg_676____closed__7; @@ -407,7 +406,7 @@ static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_rewriteR static lean_object* l___regBuiltin_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_maxUlt_declare__1____x40_Lean_Elab_Tactic_BVDecide_Frontend_Normalize___hyg_1315____closed__5; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_neg__eq__not__add___lambda__1___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_bv__add__const_x27___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_eqToBEq___lambda__2___closed__19; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_bv__add__const___lambda__1___closed__5; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_andFlatteningPass_trySplit___lambda__5___closed__2; @@ -441,7 +440,6 @@ static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_embedded size_t lean_usize_add(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_andFlatteningPass_trySplit___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_maxUlt_declare__1____x40_Lean_Elab_Tactic_BVDecide_Frontend_Normalize___hyg_1315____closed__4; -static lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2___closed__2; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_neg__eq__not__add___lambda__1___closed__5; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_bv__add__const___lambda__1___closed__2; @@ -10536,69 +10534,36 @@ x_3 = l_Float_ofScientific(x_1, x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2___closed__2() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2___closed__1; +x_17 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_3); +lean_ctor_set_float(x_17, sizeof(void*)*2, x_16); +lean_ctor_set_float(x_17, sizeof(void*)*2 + 8, x_16); +lean_ctor_set_uint8(x_17, sizeof(void*)*2 + 16, x_2); +x_18 = lean_box(0); +x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_17, x_18, x_11, x_12, x_13, x_14, x_15); +return x_19; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { -_start: +else { -double x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_18 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_18, 0, x_1); -lean_ctor_set(x_18, 1, x_3); -lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); -lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); -lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2___closed__2; -x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_19); -if (x_20 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_21; lean_object* x_22; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); x_21 = lean_box(0); -x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_18, x_21, x_12, x_13, x_14, x_15, x_16); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15); return x_22; } -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_18); -x_23 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_3); -lean_ctor_set_float(x_23, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); -x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_23, x_24, x_12, x_13, x_14, x_15, x_16); -return x_25; -} -} -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_18); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16); -return x_28; -} } } static lean_object* _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3___closed__1() { @@ -10618,46 +10583,46 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 5); -lean_inc(x_17); -lean_inc(x_15); +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 5); +lean_inc(x_16); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_18 = lean_apply_6(x_10, x_5, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_18) == 0) +x_17 = lean_apply_6(x_9, x_5, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_14, x_15, x_20); -lean_dec(x_15); -lean_dec(x_13); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_13, x_14, x_19); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_21; +return x_20; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_14, x_15, x_22); -lean_dec(x_15); -lean_dec(x_13); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } } } @@ -10721,253 +10686,253 @@ x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pa x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_17); if (x_18 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_109 = lean_io_mono_nanos_now(x_16); -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_109, 1); -lean_inc(x_111); -lean_dec(x_109); +lean_object* x_19; lean_object* x_20; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_113 = lean_io_mono_nanos_now(x_16); +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +lean_dec(x_113); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_112 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_111); -if (lean_obj_tag(x_112) == 0) +x_116 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_115); +if (lean_obj_tag(x_116) == 0) { -uint8_t x_113; -x_113 = !lean_is_exclusive(x_112); -if (x_113 == 0) +uint8_t x_117; +x_117 = !lean_is_exclusive(x_116); +if (x_117 == 0) { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_114 = lean_ctor_get(x_112, 0); -x_115 = lean_ctor_get(x_112, 1); -x_116 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_116, 0, x_114); -x_117 = lean_io_mono_nanos_now(x_115); -x_118 = !lean_is_exclusive(x_117); -if (x_118 == 0) +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_118 = lean_ctor_get(x_116, 0); +x_119 = lean_ctor_get(x_116, 1); +x_120 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_120, 0, x_118); +x_121 = lean_io_mono_nanos_now(x_119); +x_122 = !lean_is_exclusive(x_121); +if (x_122 == 0) { -lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_122; double x_123; double x_124; double x_125; double x_126; double x_127; lean_object* x_128; lean_object* x_129; -x_119 = lean_ctor_get(x_117, 0); -x_120 = lean_ctor_get(x_117, 1); -x_121 = 0; -x_122 = lean_unsigned_to_nat(0u); -x_123 = l_Float_ofScientific(x_110, x_121, x_122); -lean_dec(x_110); -x_124 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__4___closed__5; -x_125 = lean_float_div(x_123, x_124); -x_126 = l_Float_ofScientific(x_119, x_121, x_122); -lean_dec(x_119); -x_127 = lean_float_div(x_126, x_124); -x_128 = lean_box_float(x_125); -x_129 = lean_box_float(x_127); -lean_ctor_set(x_117, 1, x_129); -lean_ctor_set(x_117, 0, x_128); -lean_ctor_set(x_112, 1, x_117); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_120; -goto block_108; +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; double x_130; double x_131; lean_object* x_132; lean_object* x_133; +x_123 = lean_ctor_get(x_121, 0); +x_124 = lean_ctor_get(x_121, 1); +x_125 = 0; +x_126 = lean_unsigned_to_nat(0u); +x_127 = l_Float_ofScientific(x_114, x_125, x_126); +lean_dec(x_114); +x_128 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__4___closed__5; +x_129 = lean_float_div(x_127, x_128); +x_130 = l_Float_ofScientific(x_123, x_125, x_126); +lean_dec(x_123); +x_131 = lean_float_div(x_130, x_128); +x_132 = lean_box_float(x_129); +x_133 = lean_box_float(x_131); +lean_ctor_set(x_121, 1, x_133); +lean_ctor_set(x_121, 0, x_132); +lean_ctor_set(x_116, 1, x_121); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_124; +goto block_112; } else { -lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; double x_134; double x_135; double x_136; double x_137; double x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_130 = lean_ctor_get(x_117, 0); -x_131 = lean_ctor_get(x_117, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_117); -x_132 = 0; -x_133 = lean_unsigned_to_nat(0u); -x_134 = l_Float_ofScientific(x_110, x_132, x_133); -lean_dec(x_110); -x_135 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__4___closed__5; -x_136 = lean_float_div(x_134, x_135); -x_137 = l_Float_ofScientific(x_130, x_132, x_133); -lean_dec(x_130); -x_138 = lean_float_div(x_137, x_135); -x_139 = lean_box_float(x_136); -x_140 = lean_box_float(x_138); -x_141 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -lean_ctor_set(x_112, 1, x_141); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_131; -goto block_108; +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_134 = lean_ctor_get(x_121, 0); +x_135 = lean_ctor_get(x_121, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_121); +x_136 = 0; +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Float_ofScientific(x_114, x_136, x_137); +lean_dec(x_114); +x_139 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__4___closed__5; +x_140 = lean_float_div(x_138, x_139); +x_141 = l_Float_ofScientific(x_134, x_136, x_137); +lean_dec(x_134); +x_142 = lean_float_div(x_141, x_139); +x_143 = lean_box_float(x_140); +x_144 = lean_box_float(x_142); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_116, 1, x_145); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_135; +goto block_112; } } else { -lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_142 = lean_ctor_get(x_112, 0); -x_143 = lean_ctor_get(x_112, 1); -lean_inc(x_143); -lean_inc(x_142); -lean_dec(x_112); -x_144 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_144, 0, x_142); -x_145 = lean_io_mono_nanos_now(x_143); -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; lean_object* x_154; double x_155; double x_156; double x_157; double x_158; double x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_146 = lean_ctor_get(x_116, 0); +x_147 = lean_ctor_get(x_116, 1); lean_inc(x_147); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - lean_ctor_release(x_145, 1); - x_148 = x_145; +lean_inc(x_146); +lean_dec(x_116); +x_148 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_148, 0, x_146); +x_149 = lean_io_mono_nanos_now(x_147); +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + lean_ctor_release(x_149, 1); + x_152 = x_149; } else { - lean_dec_ref(x_145); - x_148 = lean_box(0); + lean_dec_ref(x_149); + x_152 = lean_box(0); } -x_149 = 0; -x_150 = lean_unsigned_to_nat(0u); -x_151 = l_Float_ofScientific(x_110, x_149, x_150); -lean_dec(x_110); -x_152 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__4___closed__5; -x_153 = lean_float_div(x_151, x_152); -x_154 = l_Float_ofScientific(x_146, x_149, x_150); -lean_dec(x_146); -x_155 = lean_float_div(x_154, x_152); -x_156 = lean_box_float(x_153); -x_157 = lean_box_float(x_155); -if (lean_is_scalar(x_148)) { - x_158 = lean_alloc_ctor(0, 2, 0); +x_153 = 0; +x_154 = lean_unsigned_to_nat(0u); +x_155 = l_Float_ofScientific(x_114, x_153, x_154); +lean_dec(x_114); +x_156 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__4___closed__5; +x_157 = lean_float_div(x_155, x_156); +x_158 = l_Float_ofScientific(x_150, x_153, x_154); +lean_dec(x_150); +x_159 = lean_float_div(x_158, x_156); +x_160 = lean_box_float(x_157); +x_161 = lean_box_float(x_159); +if (lean_is_scalar(x_152)) { + x_162 = lean_alloc_ctor(0, 2, 0); } else { - x_158 = x_148; + x_162 = x_152; } -lean_ctor_set(x_158, 0, x_156); -lean_ctor_set(x_158, 1, x_157); -x_159 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_159, 0, x_144); -lean_ctor_set(x_159, 1, x_158); -x_19 = x_159; -x_20 = x_147; -goto block_108; +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_161); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_148); +lean_ctor_set(x_163, 1, x_162); +x_19 = x_163; +x_20 = x_151; +goto block_112; } } else { -uint8_t x_160; -x_160 = !lean_is_exclusive(x_112); -if (x_160 == 0) +uint8_t x_164; +x_164 = !lean_is_exclusive(x_116); +if (x_164 == 0) { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_161 = lean_ctor_get(x_112, 0); -x_162 = lean_ctor_get(x_112, 1); -x_163 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_163, 0, x_161); -x_164 = lean_io_mono_nanos_now(x_162); -x_165 = !lean_is_exclusive(x_164); -if (x_165 == 0) +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; +x_165 = lean_ctor_get(x_116, 0); +x_166 = lean_ctor_get(x_116, 1); +x_167 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_167, 0, x_165); +x_168 = lean_io_mono_nanos_now(x_166); +x_169 = !lean_is_exclusive(x_168); +if (x_169 == 0) { -lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; double x_170; double x_171; double x_172; double x_173; double x_174; lean_object* x_175; lean_object* x_176; -x_166 = lean_ctor_get(x_164, 0); -x_167 = lean_ctor_get(x_164, 1); -x_168 = 0; -x_169 = lean_unsigned_to_nat(0u); -x_170 = l_Float_ofScientific(x_110, x_168, x_169); -lean_dec(x_110); -x_171 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__4___closed__5; -x_172 = lean_float_div(x_170, x_171); -x_173 = l_Float_ofScientific(x_166, x_168, x_169); -lean_dec(x_166); -x_174 = lean_float_div(x_173, x_171); -x_175 = lean_box_float(x_172); -x_176 = lean_box_float(x_174); -lean_ctor_set(x_164, 1, x_176); -lean_ctor_set(x_164, 0, x_175); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_164); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_167; -goto block_108; +lean_object* x_170; lean_object* x_171; uint8_t x_172; lean_object* x_173; double x_174; double x_175; double x_176; double x_177; double x_178; lean_object* x_179; lean_object* x_180; +x_170 = lean_ctor_get(x_168, 0); +x_171 = lean_ctor_get(x_168, 1); +x_172 = 0; +x_173 = lean_unsigned_to_nat(0u); +x_174 = l_Float_ofScientific(x_114, x_172, x_173); +lean_dec(x_114); +x_175 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__4___closed__5; +x_176 = lean_float_div(x_174, x_175); +x_177 = l_Float_ofScientific(x_170, x_172, x_173); +lean_dec(x_170); +x_178 = lean_float_div(x_177, x_175); +x_179 = lean_box_float(x_176); +x_180 = lean_box_float(x_178); +lean_ctor_set(x_168, 1, x_180); +lean_ctor_set(x_168, 0, x_179); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_168); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_171; +goto block_112; } else { -lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_object* x_180; double x_181; double x_182; double x_183; double x_184; double x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_177 = lean_ctor_get(x_164, 0); -x_178 = lean_ctor_get(x_164, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_164); -x_179 = 0; -x_180 = lean_unsigned_to_nat(0u); -x_181 = l_Float_ofScientific(x_110, x_179, x_180); -lean_dec(x_110); -x_182 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__4___closed__5; -x_183 = lean_float_div(x_181, x_182); -x_184 = l_Float_ofScientific(x_177, x_179, x_180); -lean_dec(x_177); -x_185 = lean_float_div(x_184, x_182); -x_186 = lean_box_float(x_183); -x_187 = lean_box_float(x_185); -x_188 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_188); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_178; -goto block_108; +lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_181 = lean_ctor_get(x_168, 0); +x_182 = lean_ctor_get(x_168, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_168); +x_183 = 0; +x_184 = lean_unsigned_to_nat(0u); +x_185 = l_Float_ofScientific(x_114, x_183, x_184); +lean_dec(x_114); +x_186 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__4___closed__5; +x_187 = lean_float_div(x_185, x_186); +x_188 = l_Float_ofScientific(x_181, x_183, x_184); +lean_dec(x_181); +x_189 = lean_float_div(x_188, x_186); +x_190 = lean_box_float(x_187); +x_191 = lean_box_float(x_189); +x_192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_192); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_182; +goto block_112; } } else { -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_189 = lean_ctor_get(x_112, 0); -x_190 = lean_ctor_get(x_112, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_112); -x_191 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_191, 0, x_189); -x_192 = lean_io_mono_nanos_now(x_190); -x_193 = lean_ctor_get(x_192, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; lean_object* x_201; double x_202; double x_203; double x_204; double x_205; double x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_193 = lean_ctor_get(x_116, 0); +x_194 = lean_ctor_get(x_116, 1); lean_inc(x_194); -if (lean_is_exclusive(x_192)) { - lean_ctor_release(x_192, 0); - lean_ctor_release(x_192, 1); - x_195 = x_192; +lean_inc(x_193); +lean_dec(x_116); +x_195 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_195, 0, x_193); +x_196 = lean_io_mono_nanos_now(x_194); +x_197 = lean_ctor_get(x_196, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_196, 1); +lean_inc(x_198); +if (lean_is_exclusive(x_196)) { + lean_ctor_release(x_196, 0); + lean_ctor_release(x_196, 1); + x_199 = x_196; } else { - lean_dec_ref(x_192); - x_195 = lean_box(0); + lean_dec_ref(x_196); + x_199 = lean_box(0); } -x_196 = 0; -x_197 = lean_unsigned_to_nat(0u); -x_198 = l_Float_ofScientific(x_110, x_196, x_197); -lean_dec(x_110); -x_199 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__4___closed__5; -x_200 = lean_float_div(x_198, x_199); -x_201 = l_Float_ofScientific(x_193, x_196, x_197); -lean_dec(x_193); -x_202 = lean_float_div(x_201, x_199); -x_203 = lean_box_float(x_200); -x_204 = lean_box_float(x_202); -if (lean_is_scalar(x_195)) { - x_205 = lean_alloc_ctor(0, 2, 0); +x_200 = 0; +x_201 = lean_unsigned_to_nat(0u); +x_202 = l_Float_ofScientific(x_114, x_200, x_201); +lean_dec(x_114); +x_203 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__4___closed__5; +x_204 = lean_float_div(x_202, x_203); +x_205 = l_Float_ofScientific(x_197, x_200, x_201); +lean_dec(x_197); +x_206 = lean_float_div(x_205, x_203); +x_207 = lean_box_float(x_204); +x_208 = lean_box_float(x_206); +if (lean_is_scalar(x_199)) { + x_209 = lean_alloc_ctor(0, 2, 0); } else { - x_205 = x_195; + x_209 = x_199; } -lean_ctor_set(x_205, 0, x_203); -lean_ctor_set(x_205, 1, x_204); -x_206 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_206, 0, x_191); -lean_ctor_set(x_206, 1, x_205); -x_19 = x_206; -x_20 = x_194; -goto block_108; +lean_ctor_set(x_209, 0, x_207); +lean_ctor_set(x_209, 1, x_208); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_195); +lean_ctor_set(x_210, 1, x_209); +x_19 = x_210; +x_20 = x_198; +goto block_112; } } -block_108: +block_112: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_94; uint8_t x_95; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); x_22 = lean_ctor_get(x_19, 0); @@ -10978,17 +10943,33 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_21, 1); lean_inc(x_24); lean_dec(x_21); -x_94 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__4___closed__2; -x_95 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_94); -if (x_95 == 0) +x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__4___closed__2; +x_26 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_25); +if (x_26 == 0) { -uint8_t x_96; -x_96 = 0; -x_25 = x_96; -goto block_93; +if (x_6 == 0) +{ +uint8_t x_92; +x_92 = 0; +x_27 = x_92; +goto block_91; } else { +lean_object* x_93; double x_94; double x_95; lean_object* x_96; +x_93 = lean_box(0); +x_94 = lean_unbox_float(x_23); +lean_dec(x_23); +x_95 = lean_unbox_float(x_24); +lean_dec(x_24); +x_96 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_94, x_95, x_5, x_93, x_9, x_10, x_11, x_12, x_20); +return x_96; +} +} +else +{ +if (x_6 == 0) +{ double x_97; double x_98; double x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; double x_104; double x_105; double x_106; uint8_t x_107; x_97 = lean_unbox_float(x_24); x_98 = lean_unbox_float(x_23); @@ -11002,859 +10983,871 @@ lean_dec(x_101); x_105 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__4___closed__4; x_106 = lean_float_div(x_104, x_105); x_107 = lean_float_decLt(x_106, x_99); -x_25 = x_107; -goto block_93; +x_27 = x_107; +goto block_91; } -block_93: +else { -if (x_6 == 0) +lean_object* x_108; double x_109; double x_110; lean_object* x_111; +x_108 = lean_box(0); +x_109 = lean_unbox_float(x_23); +lean_dec(x_23); +x_110 = lean_unbox_float(x_24); +lean_dec(x_24); +x_111 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_109, x_110, x_5, x_108, x_9, x_10, x_11, x_12, x_20); +return x_111; +} +} +block_91: { -if (x_25 == 0) +if (x_27 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_24); lean_dec(x_23); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_26 = lean_st_ref_take(x_12, x_20); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -x_29 = lean_ctor_get(x_26, 1); +x_28 = lean_st_ref_take(x_12, x_20); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -lean_dec(x_26); -x_30 = !lean_is_exclusive(x_27); -if (x_30 == 0) -{ -lean_object* x_31; uint8_t x_32; -x_31 = lean_ctor_get(x_27, 3); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_28); +x_30 = lean_ctor_get(x_29, 3); +lean_inc(x_30); +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = !lean_is_exclusive(x_29); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_33 = lean_ctor_get(x_28, 0); -x_34 = l_Lean_PersistentArray_append___rarg(x_15, x_33); +lean_object* x_33; uint8_t x_34; +x_33 = lean_ctor_get(x_29, 3); lean_dec(x_33); -lean_ctor_set(x_28, 0, x_34); -x_35 = lean_st_ref_set(x_12, x_27, x_29); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); +x_34 = !lean_is_exclusive(x_30); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_ctor_get(x_30, 0); +x_36 = l_Lean_PersistentArray_append___rarg(x_15, x_35); lean_dec(x_35); -x_37 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__2(x_22, x_9, x_10, x_11, x_12, x_36); +lean_ctor_set(x_30, 0, x_36); +x_37 = lean_st_ref_set(x_12, x_29, x_31); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +x_39 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__2(x_22, x_9, x_10, x_11, x_12, x_38); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_37) == 0) +if (lean_obj_tag(x_39) == 0) { -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -return x_37; +return x_39; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_ctor_get(x_37, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_37); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_39); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } else { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_37); -if (x_42 == 0) +uint8_t x_44; +x_44 = !lean_is_exclusive(x_39); +if (x_44 == 0) { -return x_37; +return x_39; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_37, 0); -x_44 = lean_ctor_get(x_37, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_37); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_39, 0); +x_46 = lean_ctor_get(x_39, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_39); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } } else { -uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_47 = lean_ctor_get(x_28, 0); -lean_inc(x_47); -lean_dec(x_28); -x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_47); -lean_dec(x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); -lean_ctor_set(x_27, 3, x_49); -x_50 = lean_st_ref_set(x_12, x_27, x_29); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -lean_dec(x_50); -x_52 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__2(x_22, x_9, x_10, x_11, x_12, x_51); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_22); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); +uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_49 = lean_ctor_get(x_30, 0); +lean_inc(x_49); +lean_dec(x_30); +x_50 = l_Lean_PersistentArray_append___rarg(x_15, x_49); +lean_dec(x_49); +x_51 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); +lean_ctor_set(x_29, 3, x_51); +x_52 = lean_st_ref_set(x_12, x_29, x_31); +x_53 = lean_ctor_get(x_52, 1); lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_55 = x_52; +lean_dec(x_52); +x_54 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__2(x_22, x_9, x_10, x_11, x_12, x_53); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_22); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; } else { - lean_dec_ref(x_52); - x_55 = lean_box(0); + lean_dec_ref(x_54); + x_57 = lean_box(0); } -if (lean_is_scalar(x_55)) { - x_56 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_57)) { + x_58 = lean_alloc_ctor(0, 2, 0); } else { - x_56 = x_55; + x_58 = x_57; } -lean_ctor_set(x_56, 0, x_53); -lean_ctor_set(x_56, 1, x_54); -return x_56; +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_56); +return x_58; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_52, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_52, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_59 = x_52; +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_54, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_54, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_61 = x_54; } else { - lean_dec_ref(x_52); - x_59 = lean_box(0); + lean_dec_ref(x_54); + x_61 = lean_box(0); } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(1, 2, 0); } else { - x_60 = x_59; + x_62 = x_61; } -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_58); -return x_60; +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; } } } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_61 = lean_ctor_get(x_27, 0); -x_62 = lean_ctor_get(x_27, 1); -x_63 = lean_ctor_get(x_27, 2); -x_64 = lean_ctor_get(x_27, 4); -x_65 = lean_ctor_get(x_27, 5); -x_66 = lean_ctor_get(x_27, 6); -x_67 = lean_ctor_get(x_27, 7); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_63 = lean_ctor_get(x_29, 0); +x_64 = lean_ctor_get(x_29, 1); +x_65 = lean_ctor_get(x_29, 2); +x_66 = lean_ctor_get(x_29, 4); +x_67 = lean_ctor_get(x_29, 5); +x_68 = lean_ctor_get(x_29, 6); +x_69 = lean_ctor_get(x_29, 7); +lean_inc(x_69); +lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_27); -x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_69 = lean_ctor_get(x_28, 0); -lean_inc(x_69); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - x_70 = x_28; +lean_dec(x_29); +x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_71 = lean_ctor_get(x_30, 0); +lean_inc(x_71); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + x_72 = x_30; } else { - lean_dec_ref(x_28); - x_70 = lean_box(0); + lean_dec_ref(x_30); + x_72 = lean_box(0); } -x_71 = l_Lean_PersistentArray_append___rarg(x_15, x_69); -lean_dec(x_69); -if (lean_is_scalar(x_70)) { - x_72 = lean_alloc_ctor(0, 1, 8); +x_73 = l_Lean_PersistentArray_append___rarg(x_15, x_71); +lean_dec(x_71); +if (lean_is_scalar(x_72)) { + x_74 = lean_alloc_ctor(0, 1, 8); } else { - x_72 = x_70; + x_74 = x_72; } -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); -x_73 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_73, 0, x_61); -lean_ctor_set(x_73, 1, x_62); -lean_ctor_set(x_73, 2, x_63); -lean_ctor_set(x_73, 3, x_72); -lean_ctor_set(x_73, 4, x_64); -lean_ctor_set(x_73, 5, x_65); -lean_ctor_set(x_73, 6, x_66); -lean_ctor_set(x_73, 7, x_67); -x_74 = lean_st_ref_set(x_12, x_73, x_29); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_76 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__2(x_22, x_9, x_10, x_11, x_12, x_75); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); +x_75 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_64); +lean_ctor_set(x_75, 2, x_65); +lean_ctor_set(x_75, 3, x_74); +lean_ctor_set(x_75, 4, x_66); +lean_ctor_set(x_75, 5, x_67); +lean_ctor_set(x_75, 6, x_68); +lean_ctor_set(x_75, 7, x_69); +x_76 = lean_st_ref_set(x_12, x_75, x_31); +x_77 = lean_ctor_get(x_76, 1); +lean_inc(x_77); +lean_dec(x_76); +x_78 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__2(x_22, x_9, x_10, x_11, x_12, x_77); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_76) == 0) +if (lean_obj_tag(x_78) == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_76, 0); -lean_inc(x_77); -x_78 = lean_ctor_get(x_76, 1); -lean_inc(x_78); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_79 = x_76; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_81 = x_78; } else { - lean_dec_ref(x_76); - x_79 = lean_box(0); + lean_dec_ref(x_78); + x_81 = lean_box(0); } -if (lean_is_scalar(x_79)) { - x_80 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(0, 2, 0); } else { - x_80 = x_79; + x_82 = x_81; } -lean_ctor_set(x_80, 0, x_77); -lean_ctor_set(x_80, 1, x_78); -return x_80; +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_80); +return x_82; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_81 = lean_ctor_get(x_76, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_76, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_83 = x_76; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_83 = lean_ctor_get(x_78, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_78, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_85 = x_78; } else { - lean_dec_ref(x_76); - x_83 = lean_box(0); + lean_dec_ref(x_78); + x_85 = lean_box(0); } -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); } else { - x_84 = x_83; + x_86 = x_85; } -lean_ctor_set(x_84, 0, x_81); -lean_ctor_set(x_84, 1, x_82); -return x_84; +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; } } } else { -lean_object* x_85; double x_86; double x_87; lean_object* x_88; -x_85 = lean_box(0); -x_86 = lean_unbox_float(x_23); +lean_object* x_87; double x_88; double x_89; lean_object* x_90; +x_87 = lean_box(0); +x_88 = lean_unbox_float(x_23); lean_dec(x_23); -x_87 = lean_unbox_float(x_24); +x_89 = lean_unbox_float(x_24); lean_dec(x_24); -x_88 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_86, x_87, x_5, x_85, x_9, x_10, x_11, x_12, x_20); -return x_88; -} -} -else -{ -lean_object* x_89; double x_90; double x_91; lean_object* x_92; -x_89 = lean_box(0); -x_90 = lean_unbox_float(x_23); -lean_dec(x_23); -x_91 = lean_unbox_float(x_24); -lean_dec(x_24); -x_92 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_20); -return x_92; +x_90 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_20); +return x_90; } } } } else { -lean_object* x_207; lean_object* x_208; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_16); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_211; lean_object* x_212; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_16); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_207 = x_336; -x_208 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_211 = x_344; +x_212 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_207 = x_374; -x_208 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_282; uint8_t x_283; -x_209 = lean_ctor_get(x_207, 1); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 0); -lean_inc(x_210); -lean_dec(x_207); -x_211 = lean_ctor_get(x_209, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 1); -lean_inc(x_212); -lean_dec(x_209); -x_282 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_213 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_212); -x_286 = lean_unbox_float(x_211); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_213 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_211 = x_382; +x_212 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; uint8_t x_219; +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 0); +lean_inc(x_214); +lean_dec(x_211); +x_215 = lean_ctor_get(x_213, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 1); +lean_inc(x_216); +lean_dec(x_213); +x_217 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__4___closed__2; +x_218 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_217); +if (x_218 == 0) { if (x_6 == 0) { -if (x_213 == 0) +uint8_t x_284; +x_284 = 0; +x_219 = x_284; +goto block_283; +} +else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; -lean_dec(x_212); -lean_dec(x_211); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_215); +lean_dec(x_215); +x_287 = lean_unbox_float(x_216); +lean_dec(x_216); +x_288 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_212); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_216); +x_290 = lean_unbox_float(x_215); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_219 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_215); +lean_dec(x_215); +x_300 = lean_unbox_float(x_216); +lean_dec(x_216); +x_301 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_212); +return x_301; +} +} +block_283: +{ +if (x_219 == 0) +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; +lean_dec(x_216); +lean_dec(x_215); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_214 = lean_st_ref_take(x_12, x_208); -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_215, 3); -lean_inc(x_216); -x_217 = lean_ctor_get(x_214, 1); -lean_inc(x_217); -lean_dec(x_214); -x_218 = !lean_is_exclusive(x_215); -if (x_218 == 0) +x_220 = lean_st_ref_take(x_12, x_212); +x_221 = lean_ctor_get(x_220, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_221, 3); +lean_inc(x_222); +x_223 = lean_ctor_get(x_220, 1); +lean_inc(x_223); +lean_dec(x_220); +x_224 = !lean_is_exclusive(x_221); +if (x_224 == 0) { -lean_object* x_219; uint8_t x_220; -x_219 = lean_ctor_get(x_215, 3); -lean_dec(x_219); -x_220 = !lean_is_exclusive(x_216); -if (x_220 == 0) -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_221 = lean_ctor_get(x_216, 0); -x_222 = l_Lean_PersistentArray_append___rarg(x_15, x_221); -lean_dec(x_221); -lean_ctor_set(x_216, 0, x_222); -x_223 = lean_st_ref_set(x_12, x_215, x_217); -x_224 = lean_ctor_get(x_223, 1); -lean_inc(x_224); -lean_dec(x_223); -x_225 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__2(x_210, x_9, x_10, x_11, x_12, x_224); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_225) == 0) -{ -uint8_t x_226; -x_226 = !lean_is_exclusive(x_225); +lean_object* x_225; uint8_t x_226; +x_225 = lean_ctor_get(x_221, 3); +lean_dec(x_225); +x_226 = !lean_is_exclusive(x_222); if (x_226 == 0) { -return x_225; -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; -x_227 = lean_ctor_get(x_225, 0); -x_228 = lean_ctor_get(x_225, 1); -lean_inc(x_228); -lean_inc(x_227); -lean_dec(x_225); -x_229 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_229, 0, x_227); -lean_ctor_set(x_229, 1, x_228); -return x_229; -} -} -else -{ -uint8_t x_230; -x_230 = !lean_is_exclusive(x_225); -if (x_230 == 0) -{ -return x_225; -} -else -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_225, 0); -x_232 = lean_ctor_get(x_225, 1); -lean_inc(x_232); -lean_inc(x_231); -lean_dec(x_225); -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_231); -lean_ctor_set(x_233, 1, x_232); -return x_233; -} -} -} -else -{ -uint64_t x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_234 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_235 = lean_ctor_get(x_216, 0); -lean_inc(x_235); -lean_dec(x_216); -x_236 = l_Lean_PersistentArray_append___rarg(x_15, x_235); -lean_dec(x_235); -x_237 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_237, 0, x_236); -lean_ctor_set_uint64(x_237, sizeof(void*)*1, x_234); -lean_ctor_set(x_215, 3, x_237); -x_238 = lean_st_ref_set(x_12, x_215, x_217); -x_239 = lean_ctor_get(x_238, 1); -lean_inc(x_239); -lean_dec(x_238); -x_240 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__2(x_210, x_9, x_10, x_11, x_12, x_239); +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_227 = lean_ctor_get(x_222, 0); +x_228 = l_Lean_PersistentArray_append___rarg(x_15, x_227); +lean_dec(x_227); +lean_ctor_set(x_222, 0, x_228); +x_229 = lean_st_ref_set(x_12, x_221, x_223); +x_230 = lean_ctor_get(x_229, 1); +lean_inc(x_230); +lean_dec(x_229); +x_231 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__2(x_214, x_9, x_10, x_11, x_12, x_230); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_240) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_231) == 0) { -lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; -x_241 = lean_ctor_get(x_240, 0); +uint8_t x_232; +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +return x_231; +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_231, 0); +x_234 = lean_ctor_get(x_231, 1); +lean_inc(x_234); +lean_inc(x_233); +lean_dec(x_231); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +return x_235; +} +} +else +{ +uint8_t x_236; +x_236 = !lean_is_exclusive(x_231); +if (x_236 == 0) +{ +return x_231; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_231, 0); +x_238 = lean_ctor_get(x_231, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_231); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} +} +} +else +{ +uint64_t x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_240 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_241 = lean_ctor_get(x_222, 0); lean_inc(x_241); -x_242 = lean_ctor_get(x_240, 1); -lean_inc(x_242); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_243 = x_240; -} else { - lean_dec_ref(x_240); - x_243 = lean_box(0); -} -if (lean_is_scalar(x_243)) { - x_244 = lean_alloc_ctor(0, 2, 0); -} else { - x_244 = x_243; -} -lean_ctor_set(x_244, 0, x_241); -lean_ctor_set(x_244, 1, x_242); -return x_244; -} -else -{ -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_245 = lean_ctor_get(x_240, 0); +lean_dec(x_222); +x_242 = l_Lean_PersistentArray_append___rarg(x_15, x_241); +lean_dec(x_241); +x_243 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set_uint64(x_243, sizeof(void*)*1, x_240); +lean_ctor_set(x_221, 3, x_243); +x_244 = lean_st_ref_set(x_12, x_221, x_223); +x_245 = lean_ctor_get(x_244, 1); lean_inc(x_245); -x_246 = lean_ctor_get(x_240, 1); -lean_inc(x_246); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_247 = x_240; -} else { - lean_dec_ref(x_240); - x_247 = lean_box(0); -} -if (lean_is_scalar(x_247)) { - x_248 = lean_alloc_ctor(1, 2, 0); -} else { - x_248 = x_247; -} -lean_ctor_set(x_248, 0, x_245); -lean_ctor_set(x_248, 1, x_246); -return x_248; -} -} -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_249 = lean_ctor_get(x_215, 0); -x_250 = lean_ctor_get(x_215, 1); -x_251 = lean_ctor_get(x_215, 2); -x_252 = lean_ctor_get(x_215, 4); -x_253 = lean_ctor_get(x_215, 5); -x_254 = lean_ctor_get(x_215, 6); -x_255 = lean_ctor_get(x_215, 7); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_dec(x_215); -x_256 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_257 = lean_ctor_get(x_216, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_216)) { - lean_ctor_release(x_216, 0); - x_258 = x_216; -} else { - lean_dec_ref(x_216); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_15, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_261, 0, x_249); -lean_ctor_set(x_261, 1, x_250); -lean_ctor_set(x_261, 2, x_251); -lean_ctor_set(x_261, 3, x_260); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_255); -x_262 = lean_st_ref_set(x_12, x_261, x_217); -x_263 = lean_ctor_get(x_262, 1); -lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__2(x_210, x_9, x_10, x_11, x_12, x_263); +lean_dec(x_244); +x_246 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__2(x_214, x_9, x_10, x_11, x_12, x_245); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_246) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_247 = lean_ctor_get(x_246, 0); +lean_inc(x_247); +x_248 = lean_ctor_get(x_246, 1); +lean_inc(x_248); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_249 = x_246; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_246); + x_249 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_249)) { + x_250 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_250 = x_249; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_250, 0, x_247); +lean_ctor_set(x_250, 1, x_248); +return x_250; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_251 = lean_ctor_get(x_246, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_246, 1); +lean_inc(x_252); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_253 = x_246; +} else { + lean_dec_ref(x_246); + x_253 = lean_box(0); +} +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(1, 2, 0); +} else { + x_254 = x_253; +} +lean_ctor_set(x_254, 0, x_251); +lean_ctor_set(x_254, 1, x_252); +return x_254; +} +} +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_255 = lean_ctor_get(x_221, 0); +x_256 = lean_ctor_get(x_221, 1); +x_257 = lean_ctor_get(x_221, 2); +x_258 = lean_ctor_get(x_221, 4); +x_259 = lean_ctor_get(x_221, 5); +x_260 = lean_ctor_get(x_221, 6); +x_261 = lean_ctor_get(x_221, 7); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_221); +x_262 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_263 = lean_ctor_get(x_222, 0); +lean_inc(x_263); +if (lean_is_exclusive(x_222)) { + lean_ctor_release(x_222, 0); + x_264 = x_222; +} else { + lean_dec_ref(x_222); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_15, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_267, 0, x_255); +lean_ctor_set(x_267, 1, x_256); +lean_ctor_set(x_267, 2, x_257); +lean_ctor_set(x_267, 3, x_266); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_261); +x_268 = lean_st_ref_set(x_12, x_267, x_223); +x_269 = lean_ctor_get(x_268, 1); lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__2(x_214, x_9, x_10, x_11, x_12, x_269); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_214); +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_272 = x_271; + x_274 = x_273; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; +} else { + lean_dec_ref(x_270); + x_277 = lean_box(0); +} +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); +} else { + x_278 = x_277; +} +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_211); -lean_dec(x_211); -x_275 = lean_unbox_float(x_212); -lean_dec(x_212); -x_276 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_274, x_275, x_5, x_273, x_9, x_10, x_11, x_12, x_208); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_211); -lean_dec(x_211); -x_279 = lean_unbox_float(x_212); -lean_dec(x_212); -x_280 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_278, x_279, x_5, x_277, x_9, x_10, x_11, x_12, x_208); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_215); +lean_dec(x_215); +x_281 = lean_unbox_float(x_216); +lean_dec(x_216); +x_282 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_212); +return x_282; } } } @@ -12567,43 +12560,41 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_8); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); lean_dec(x_8); x_19 = lean_unbox_float(x_9); lean_dec(x_9); -x_20 = lean_unbox_float(x_10); -lean_dec(x_10); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_18, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_15); -lean_dec(x_13); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2(x_1, x_16, x_3, x_4, x_5, x_6, x_17, x_18, x_19, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_14); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_21; +return x_20; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_7); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); lean_dec(x_7); x_19 = lean_unbox_float(x_8); lean_dec(x_8); -x_20 = lean_unbox_float(x_9); -lean_dec(x_9); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_11); -lean_dec(x_6); -return x_21; +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3(x_1, x_16, x_3, x_4, x_5, x_17, x_18, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +return x_20; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -18170,8 +18161,6 @@ if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_ if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2___closed__1(); -l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2___closed__2(); -lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__2___closed__2); l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3___closed__1); l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___spec__1___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Basic.c b/stage0/stdlib/Lean/Elab/Tactic/Basic.c index 46ac55204b..cc4823cb8b 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Basic.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Basic.c @@ -35,7 +35,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_liftMetaTactic1___lambda__1(lean_obj static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_8548____closed__3; static lean_object* l_Lean_Elab_Tactic_mkTacticAttribute___closed__9; static lean_object* l_Lean_Elab_Tactic_instAlternativeTacticM___lambda__1___closed__1; -extern lean_object* l_Lean_profiler; uint8_t l_Lean_Elab_isAbortExceptionId(lean_object*); lean_object* l_Lean_Meta_throwTacticEx___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); @@ -306,7 +305,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at static lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Elab_Tactic_evalTactic_expandEval___spec__5___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_liftMetaMAtMain___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_mk_ref(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_instAlternativeTacticM___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_instApplicativeOfMonad___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Tactic_evalTactic_expandEval___spec__1___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -343,7 +342,7 @@ LEAN_EXPORT lean_object* l_Lean_log___at_Lean_Elab_Term_reportUnsolvedGoals___sp LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at_Lean_Elab_Tactic_tagUntaggedGoals___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_profileitM___at_Lean_Elab_Tactic_evalTactic___spec__9(lean_object*); lean_object* l_Lean_Core_withFreshMacroScope___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalTactic___lambda__1___boxed(lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_getResetInfoTrees___at_Lean_Elab_Tactic_withTacticInfoContext___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -430,7 +429,6 @@ static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hy static lean_object* l_Lean_Elab_Tactic_evalTactic_expandEval___lambda__3___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_getCurrMacroScope___rarg___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Elab_Tactic_evalTactic_expandEval___spec__5___closed__4; -static lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Tactic_evalTactic_expandEval___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalTactic___lambda__4___closed__3; LEAN_EXPORT lean_object* l_Lean_profileitM___at_Lean_Elab_Tactic_evalTactic___spec__9___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -13041,69 +13039,36 @@ lean_dec(x_13); return x_18; } } -static lean_object* _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__2___closed__1() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_20 = l_Lean_addTrace___at_Lean_Elab_Tactic_evalTactic_handleEx___spec__2___closed__1; +x_21 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_21, 0, x_1); +lean_ctor_set(x_21, 1, x_3); +lean_ctor_set_float(x_21, sizeof(void*)*2, x_20); +lean_ctor_set_float(x_21, sizeof(void*)*2 + 8, x_20); +lean_ctor_set_uint8(x_21, sizeof(void*)*2 + 16, x_2); +x_22 = lean_box(0); +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__1(x_4, x_5, x_10, x_6, x_21, x_22, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +return x_23; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20) { -_start: +else { -double x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; -x_21 = l_Lean_addTrace___at_Lean_Elab_Tactic_evalTactic_handleEx___spec__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_22 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_22, 0, x_1); -lean_ctor_set(x_22, 1, x_3); -lean_ctor_set_float(x_22, sizeof(void*)*2, x_21); -lean_ctor_set_float(x_22, sizeof(void*)*2 + 8, x_21); -lean_ctor_set_uint8(x_22, sizeof(void*)*2 + 16, x_2); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__2___closed__1; -x_24 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_23); -if (x_24 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_25; lean_object* x_26; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_24, 0, x_1); +lean_ctor_set(x_24, 1, x_3); +lean_ctor_set_float(x_24, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_24, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_24, sizeof(void*)*2 + 16, x_2); x_25 = lean_box(0); -x_26 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__1(x_4, x_5, x_11, x_6, x_22, x_25, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); +x_26 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__1(x_4, x_5, x_10, x_6, x_24, x_25, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); return x_26; } -else -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; -lean_dec(x_22); -x_27 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_27, 0, x_1); -lean_ctor_set(x_27, 1, x_3); -lean_ctor_set_float(x_27, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_27, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_27, sizeof(void*)*2 + 16, x_2); -x_28 = lean_box(0); -x_29 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__1(x_4, x_5, x_11, x_6, x_27, x_28, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); -return x_29; -} -} -else -{ -lean_object* x_30; lean_object* x_31; lean_object* x_32; -lean_dec(x_22); -x_30 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_30, 0, x_1); -lean_ctor_set(x_30, 1, x_3); -lean_ctor_set_float(x_30, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_30, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_30, sizeof(void*)*2 + 16, x_2); -x_31 = lean_box(0); -x_32 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__1(x_4, x_5, x_11, x_6, x_30, x_31, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); -return x_32; -} } } static lean_object* _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3___closed__1() { @@ -13123,13 +13088,12 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { _start: { -lean_object* x_21; lean_object* x_22; -x_21 = lean_ctor_get(x_18, 5); -lean_inc(x_21); -lean_inc(x_19); +lean_object* x_20; lean_object* x_21; +x_20 = lean_ctor_get(x_17, 5); +lean_inc(x_20); lean_inc(x_18); lean_inc(x_17); lean_inc(x_16); @@ -13137,44 +13101,45 @@ lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_22 = lean_apply_10(x_10, x_5, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); -if (lean_obj_tag(x_22) == 0) +x_21 = lean_apply_10(x_9, x_5, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +if (lean_obj_tag(x_21) == 0) { -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_ctor_get(x_22, 0); +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_22); +x_23 = lean_ctor_get(x_21, 1); lean_inc(x_23); -x_24 = lean_ctor_get(x_22, 1); -lean_inc(x_24); -lean_dec(x_22); -x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_21, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_24); -lean_dec(x_19); -lean_dec(x_17); +lean_dec(x_21); +x_24 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_20, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_23); +lean_dec(x_18); lean_dec(x_16); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_25; +return x_24; } else { -lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_26 = lean_ctor_get(x_22, 1); -lean_inc(x_26); -lean_dec(x_22); -x_27 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3___closed__2; -x_28 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_21, x_5, x_6, x_7, x_8, x_9, x_27, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_26); -lean_dec(x_19); -lean_dec(x_17); +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_21, 1); +lean_inc(x_25); +lean_dec(x_21); +x_26 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3___closed__2; +x_27 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_20, x_5, x_6, x_7, x_8, x_26, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_25); +lean_dec(x_18); lean_dec(x_16); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_28; +return x_27; } } } @@ -13238,13 +13203,13 @@ x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda_ x_22 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_21); if (x_22 == 0) { -lean_object* x_23; lean_object* x_24; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; -x_113 = lean_io_mono_nanos_now(x_20); -x_114 = lean_ctor_get(x_113, 0); -lean_inc(x_114); -x_115 = lean_ctor_get(x_113, 1); -lean_inc(x_115); -lean_dec(x_113); +lean_object* x_23; lean_object* x_24; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; +x_117 = lean_io_mono_nanos_now(x_20); +x_118 = lean_ctor_get(x_117, 0); +lean_inc(x_118); +x_119 = lean_ctor_get(x_117, 1); +lean_inc(x_119); +lean_dec(x_117); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); @@ -13253,242 +13218,242 @@ lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_116 = lean_apply_9(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_115); -if (lean_obj_tag(x_116) == 0) +x_120 = lean_apply_9(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_119); +if (lean_obj_tag(x_120) == 0) { -uint8_t x_117; -x_117 = !lean_is_exclusive(x_116); -if (x_117 == 0) +uint8_t x_121; +x_121 = !lean_is_exclusive(x_120); +if (x_121 == 0) { -lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; -x_118 = lean_ctor_get(x_116, 0); -x_119 = lean_ctor_get(x_116, 1); -x_120 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_120, 0, x_118); -x_121 = lean_io_mono_nanos_now(x_119); -x_122 = !lean_is_exclusive(x_121); -if (x_122 == 0) +lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; uint8_t x_126; +x_122 = lean_ctor_get(x_120, 0); +x_123 = lean_ctor_get(x_120, 1); +x_124 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_124, 0, x_122); +x_125 = lean_io_mono_nanos_now(x_123); +x_126 = !lean_is_exclusive(x_125); +if (x_126 == 0) { -lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; double x_130; double x_131; lean_object* x_132; lean_object* x_133; -x_123 = lean_ctor_get(x_121, 0); -x_124 = lean_ctor_get(x_121, 1); -x_125 = 0; -x_126 = lean_unsigned_to_nat(0u); -x_127 = l_Float_ofScientific(x_114, x_125, x_126); -lean_dec(x_114); -x_128 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__4___closed__5; -x_129 = lean_float_div(x_127, x_128); -x_130 = l_Float_ofScientific(x_123, x_125, x_126); -lean_dec(x_123); -x_131 = lean_float_div(x_130, x_128); -x_132 = lean_box_float(x_129); -x_133 = lean_box_float(x_131); -lean_ctor_set(x_121, 1, x_133); -lean_ctor_set(x_121, 0, x_132); -lean_ctor_set(x_116, 1, x_121); -lean_ctor_set(x_116, 0, x_120); -x_23 = x_116; -x_24 = x_124; -goto block_112; +lean_object* x_127; lean_object* x_128; uint8_t x_129; lean_object* x_130; double x_131; double x_132; double x_133; double x_134; double x_135; lean_object* x_136; lean_object* x_137; +x_127 = lean_ctor_get(x_125, 0); +x_128 = lean_ctor_get(x_125, 1); +x_129 = 0; +x_130 = lean_unsigned_to_nat(0u); +x_131 = l_Float_ofScientific(x_118, x_129, x_130); +lean_dec(x_118); +x_132 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__4___closed__5; +x_133 = lean_float_div(x_131, x_132); +x_134 = l_Float_ofScientific(x_127, x_129, x_130); +lean_dec(x_127); +x_135 = lean_float_div(x_134, x_132); +x_136 = lean_box_float(x_133); +x_137 = lean_box_float(x_135); +lean_ctor_set(x_125, 1, x_137); +lean_ctor_set(x_125, 0, x_136); +lean_ctor_set(x_120, 1, x_125); +lean_ctor_set(x_120, 0, x_124); +x_23 = x_120; +x_24 = x_128; +goto block_116; } else { -lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; -x_134 = lean_ctor_get(x_121, 0); -x_135 = lean_ctor_get(x_121, 1); -lean_inc(x_135); -lean_inc(x_134); -lean_dec(x_121); -x_136 = 0; -x_137 = lean_unsigned_to_nat(0u); -x_138 = l_Float_ofScientific(x_114, x_136, x_137); -lean_dec(x_114); -x_139 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__4___closed__5; -x_140 = lean_float_div(x_138, x_139); -x_141 = l_Float_ofScientific(x_134, x_136, x_137); -lean_dec(x_134); -x_142 = lean_float_div(x_141, x_139); -x_143 = lean_box_float(x_140); -x_144 = lean_box_float(x_142); -x_145 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_145, 0, x_143); -lean_ctor_set(x_145, 1, x_144); -lean_ctor_set(x_116, 1, x_145); -lean_ctor_set(x_116, 0, x_120); -x_23 = x_116; -x_24 = x_135; -goto block_112; +lean_object* x_138; lean_object* x_139; uint8_t x_140; lean_object* x_141; double x_142; double x_143; double x_144; double x_145; double x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; +x_138 = lean_ctor_get(x_125, 0); +x_139 = lean_ctor_get(x_125, 1); +lean_inc(x_139); +lean_inc(x_138); +lean_dec(x_125); +x_140 = 0; +x_141 = lean_unsigned_to_nat(0u); +x_142 = l_Float_ofScientific(x_118, x_140, x_141); +lean_dec(x_118); +x_143 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__4___closed__5; +x_144 = lean_float_div(x_142, x_143); +x_145 = l_Float_ofScientific(x_138, x_140, x_141); +lean_dec(x_138); +x_146 = lean_float_div(x_145, x_143); +x_147 = lean_box_float(x_144); +x_148 = lean_box_float(x_146); +x_149 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_149, 0, x_147); +lean_ctor_set(x_149, 1, x_148); +lean_ctor_set(x_120, 1, x_149); +lean_ctor_set(x_120, 0, x_124); +x_23 = x_120; +x_24 = x_139; +goto block_116; } } else { -lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; lean_object* x_154; double x_155; double x_156; double x_157; double x_158; double x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; -x_146 = lean_ctor_get(x_116, 0); -x_147 = lean_ctor_get(x_116, 1); -lean_inc(x_147); -lean_inc(x_146); -lean_dec(x_116); -x_148 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_148, 0, x_146); -x_149 = lean_io_mono_nanos_now(x_147); -x_150 = lean_ctor_get(x_149, 0); -lean_inc(x_150); -x_151 = lean_ctor_get(x_149, 1); +lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; uint8_t x_157; lean_object* x_158; double x_159; double x_160; double x_161; double x_162; double x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; +x_150 = lean_ctor_get(x_120, 0); +x_151 = lean_ctor_get(x_120, 1); lean_inc(x_151); -if (lean_is_exclusive(x_149)) { - lean_ctor_release(x_149, 0); - lean_ctor_release(x_149, 1); - x_152 = x_149; +lean_inc(x_150); +lean_dec(x_120); +x_152 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_152, 0, x_150); +x_153 = lean_io_mono_nanos_now(x_151); +x_154 = lean_ctor_get(x_153, 0); +lean_inc(x_154); +x_155 = lean_ctor_get(x_153, 1); +lean_inc(x_155); +if (lean_is_exclusive(x_153)) { + lean_ctor_release(x_153, 0); + lean_ctor_release(x_153, 1); + x_156 = x_153; } else { - lean_dec_ref(x_149); - x_152 = lean_box(0); + lean_dec_ref(x_153); + x_156 = lean_box(0); } -x_153 = 0; -x_154 = lean_unsigned_to_nat(0u); -x_155 = l_Float_ofScientific(x_114, x_153, x_154); -lean_dec(x_114); -x_156 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__4___closed__5; -x_157 = lean_float_div(x_155, x_156); -x_158 = l_Float_ofScientific(x_150, x_153, x_154); -lean_dec(x_150); -x_159 = lean_float_div(x_158, x_156); -x_160 = lean_box_float(x_157); -x_161 = lean_box_float(x_159); -if (lean_is_scalar(x_152)) { - x_162 = lean_alloc_ctor(0, 2, 0); +x_157 = 0; +x_158 = lean_unsigned_to_nat(0u); +x_159 = l_Float_ofScientific(x_118, x_157, x_158); +lean_dec(x_118); +x_160 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__4___closed__5; +x_161 = lean_float_div(x_159, x_160); +x_162 = l_Float_ofScientific(x_154, x_157, x_158); +lean_dec(x_154); +x_163 = lean_float_div(x_162, x_160); +x_164 = lean_box_float(x_161); +x_165 = lean_box_float(x_163); +if (lean_is_scalar(x_156)) { + x_166 = lean_alloc_ctor(0, 2, 0); } else { - x_162 = x_152; + x_166 = x_156; } -lean_ctor_set(x_162, 0, x_160); -lean_ctor_set(x_162, 1, x_161); -x_163 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_163, 0, x_148); -lean_ctor_set(x_163, 1, x_162); -x_23 = x_163; -x_24 = x_151; -goto block_112; +lean_ctor_set(x_166, 0, x_164); +lean_ctor_set(x_166, 1, x_165); +x_167 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_167, 0, x_152); +lean_ctor_set(x_167, 1, x_166); +x_23 = x_167; +x_24 = x_155; +goto block_116; } } else { -uint8_t x_164; -x_164 = !lean_is_exclusive(x_116); -if (x_164 == 0) +uint8_t x_168; +x_168 = !lean_is_exclusive(x_120); +if (x_168 == 0) { -lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; -x_165 = lean_ctor_get(x_116, 0); -x_166 = lean_ctor_get(x_116, 1); -x_167 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_167, 0, x_165); -x_168 = lean_io_mono_nanos_now(x_166); -x_169 = !lean_is_exclusive(x_168); -if (x_169 == 0) +lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; uint8_t x_173; +x_169 = lean_ctor_get(x_120, 0); +x_170 = lean_ctor_get(x_120, 1); +x_171 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_171, 0, x_169); +x_172 = lean_io_mono_nanos_now(x_170); +x_173 = !lean_is_exclusive(x_172); +if (x_173 == 0) { -lean_object* x_170; lean_object* x_171; uint8_t x_172; lean_object* x_173; double x_174; double x_175; double x_176; double x_177; double x_178; lean_object* x_179; lean_object* x_180; -x_170 = lean_ctor_get(x_168, 0); -x_171 = lean_ctor_get(x_168, 1); -x_172 = 0; -x_173 = lean_unsigned_to_nat(0u); -x_174 = l_Float_ofScientific(x_114, x_172, x_173); -lean_dec(x_114); -x_175 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__4___closed__5; -x_176 = lean_float_div(x_174, x_175); -x_177 = l_Float_ofScientific(x_170, x_172, x_173); -lean_dec(x_170); -x_178 = lean_float_div(x_177, x_175); -x_179 = lean_box_float(x_176); -x_180 = lean_box_float(x_178); -lean_ctor_set(x_168, 1, x_180); -lean_ctor_set(x_168, 0, x_179); -lean_ctor_set_tag(x_116, 0); -lean_ctor_set(x_116, 1, x_168); -lean_ctor_set(x_116, 0, x_167); -x_23 = x_116; -x_24 = x_171; -goto block_112; +lean_object* x_174; lean_object* x_175; uint8_t x_176; lean_object* x_177; double x_178; double x_179; double x_180; double x_181; double x_182; lean_object* x_183; lean_object* x_184; +x_174 = lean_ctor_get(x_172, 0); +x_175 = lean_ctor_get(x_172, 1); +x_176 = 0; +x_177 = lean_unsigned_to_nat(0u); +x_178 = l_Float_ofScientific(x_118, x_176, x_177); +lean_dec(x_118); +x_179 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__4___closed__5; +x_180 = lean_float_div(x_178, x_179); +x_181 = l_Float_ofScientific(x_174, x_176, x_177); +lean_dec(x_174); +x_182 = lean_float_div(x_181, x_179); +x_183 = lean_box_float(x_180); +x_184 = lean_box_float(x_182); +lean_ctor_set(x_172, 1, x_184); +lean_ctor_set(x_172, 0, x_183); +lean_ctor_set_tag(x_120, 0); +lean_ctor_set(x_120, 1, x_172); +lean_ctor_set(x_120, 0, x_171); +x_23 = x_120; +x_24 = x_175; +goto block_116; } else { -lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; -x_181 = lean_ctor_get(x_168, 0); -x_182 = lean_ctor_get(x_168, 1); -lean_inc(x_182); -lean_inc(x_181); -lean_dec(x_168); -x_183 = 0; -x_184 = lean_unsigned_to_nat(0u); -x_185 = l_Float_ofScientific(x_114, x_183, x_184); -lean_dec(x_114); -x_186 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__4___closed__5; -x_187 = lean_float_div(x_185, x_186); -x_188 = l_Float_ofScientific(x_181, x_183, x_184); -lean_dec(x_181); -x_189 = lean_float_div(x_188, x_186); -x_190 = lean_box_float(x_187); -x_191 = lean_box_float(x_189); -x_192 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_192, 0, x_190); -lean_ctor_set(x_192, 1, x_191); -lean_ctor_set_tag(x_116, 0); -lean_ctor_set(x_116, 1, x_192); -lean_ctor_set(x_116, 0, x_167); -x_23 = x_116; -x_24 = x_182; -goto block_112; +lean_object* x_185; lean_object* x_186; uint8_t x_187; lean_object* x_188; double x_189; double x_190; double x_191; double x_192; double x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; +x_185 = lean_ctor_get(x_172, 0); +x_186 = lean_ctor_get(x_172, 1); +lean_inc(x_186); +lean_inc(x_185); +lean_dec(x_172); +x_187 = 0; +x_188 = lean_unsigned_to_nat(0u); +x_189 = l_Float_ofScientific(x_118, x_187, x_188); +lean_dec(x_118); +x_190 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__4___closed__5; +x_191 = lean_float_div(x_189, x_190); +x_192 = l_Float_ofScientific(x_185, x_187, x_188); +lean_dec(x_185); +x_193 = lean_float_div(x_192, x_190); +x_194 = lean_box_float(x_191); +x_195 = lean_box_float(x_193); +x_196 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_196, 0, x_194); +lean_ctor_set(x_196, 1, x_195); +lean_ctor_set_tag(x_120, 0); +lean_ctor_set(x_120, 1, x_196); +lean_ctor_set(x_120, 0, x_171); +x_23 = x_120; +x_24 = x_186; +goto block_116; } } else { -lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; lean_object* x_201; double x_202; double x_203; double x_204; double x_205; double x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; -x_193 = lean_ctor_get(x_116, 0); -x_194 = lean_ctor_get(x_116, 1); -lean_inc(x_194); -lean_inc(x_193); -lean_dec(x_116); -x_195 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_195, 0, x_193); -x_196 = lean_io_mono_nanos_now(x_194); -x_197 = lean_ctor_get(x_196, 0); -lean_inc(x_197); -x_198 = lean_ctor_get(x_196, 1); +lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; uint8_t x_204; lean_object* x_205; double x_206; double x_207; double x_208; double x_209; double x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; +x_197 = lean_ctor_get(x_120, 0); +x_198 = lean_ctor_get(x_120, 1); lean_inc(x_198); -if (lean_is_exclusive(x_196)) { - lean_ctor_release(x_196, 0); - lean_ctor_release(x_196, 1); - x_199 = x_196; +lean_inc(x_197); +lean_dec(x_120); +x_199 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_199, 0, x_197); +x_200 = lean_io_mono_nanos_now(x_198); +x_201 = lean_ctor_get(x_200, 0); +lean_inc(x_201); +x_202 = lean_ctor_get(x_200, 1); +lean_inc(x_202); +if (lean_is_exclusive(x_200)) { + lean_ctor_release(x_200, 0); + lean_ctor_release(x_200, 1); + x_203 = x_200; } else { - lean_dec_ref(x_196); - x_199 = lean_box(0); + lean_dec_ref(x_200); + x_203 = lean_box(0); } -x_200 = 0; -x_201 = lean_unsigned_to_nat(0u); -x_202 = l_Float_ofScientific(x_114, x_200, x_201); -lean_dec(x_114); -x_203 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__4___closed__5; -x_204 = lean_float_div(x_202, x_203); -x_205 = l_Float_ofScientific(x_197, x_200, x_201); -lean_dec(x_197); -x_206 = lean_float_div(x_205, x_203); -x_207 = lean_box_float(x_204); -x_208 = lean_box_float(x_206); -if (lean_is_scalar(x_199)) { - x_209 = lean_alloc_ctor(0, 2, 0); +x_204 = 0; +x_205 = lean_unsigned_to_nat(0u); +x_206 = l_Float_ofScientific(x_118, x_204, x_205); +lean_dec(x_118); +x_207 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__4___closed__5; +x_208 = lean_float_div(x_206, x_207); +x_209 = l_Float_ofScientific(x_201, x_204, x_205); +lean_dec(x_201); +x_210 = lean_float_div(x_209, x_207); +x_211 = lean_box_float(x_208); +x_212 = lean_box_float(x_210); +if (lean_is_scalar(x_203)) { + x_213 = lean_alloc_ctor(0, 2, 0); } else { - x_209 = x_199; + x_213 = x_203; } -lean_ctor_set(x_209, 0, x_207); -lean_ctor_set(x_209, 1, x_208); -x_210 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_210, 0, x_195); -lean_ctor_set(x_210, 1, x_209); -x_23 = x_210; -x_24 = x_198; -goto block_112; +lean_ctor_set(x_213, 0, x_211); +lean_ctor_set(x_213, 1, x_212); +x_214 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_214, 0, x_199); +lean_ctor_set(x_214, 1, x_213); +x_23 = x_214; +x_24 = x_202; +goto block_116; } } -block_112: +block_116: { -lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; lean_object* x_98; uint8_t x_99; +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; uint8_t x_31; x_25 = lean_ctor_get(x_23, 1); lean_inc(x_25); x_26 = lean_ctor_get(x_23, 0); @@ -13499,17 +13464,33 @@ lean_inc(x_27); x_28 = lean_ctor_get(x_25, 1); lean_inc(x_28); lean_dec(x_25); -x_98 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__4___closed__2; -x_99 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_98); -if (x_99 == 0) +x_29 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__4___closed__2; +x_30 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_29); +if (x_30 == 0) { -uint8_t x_100; -x_100 = 0; -x_29 = x_100; -goto block_97; +if (x_6 == 0) +{ +uint8_t x_96; +x_96 = 0; +x_31 = x_96; +goto block_95; } else { +lean_object* x_97; double x_98; double x_99; lean_object* x_100; +x_97 = lean_box(0); +x_98 = lean_unbox_float(x_27); +lean_dec(x_27); +x_99 = lean_unbox_float(x_28); +lean_dec(x_28); +x_100 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3(x_2, x_3, x_4, x_19, x_26, x_30, x_98, x_99, x_5, x_97, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_24); +return x_100; +} +} +else +{ +if (x_6 == 0) +{ double x_101; double x_102; double x_103; lean_object* x_104; lean_object* x_105; uint8_t x_106; lean_object* x_107; double x_108; double x_109; double x_110; uint8_t x_111; x_101 = lean_unbox_float(x_28); x_102 = lean_unbox_float(x_27); @@ -13523,48 +13504,58 @@ lean_dec(x_105); x_109 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__4___closed__4; x_110 = lean_float_div(x_108, x_109); x_111 = lean_float_decLt(x_110, x_103); -x_29 = x_111; -goto block_97; +x_31 = x_111; +goto block_95; } -block_97: +else { -if (x_6 == 0) +lean_object* x_112; double x_113; double x_114; lean_object* x_115; +x_112 = lean_box(0); +x_113 = lean_unbox_float(x_27); +lean_dec(x_27); +x_114 = lean_unbox_float(x_28); +lean_dec(x_28); +x_115 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3(x_2, x_3, x_4, x_19, x_26, x_30, x_113, x_114, x_5, x_112, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_24); +return x_115; +} +} +block_95: { -if (x_29 == 0) +if (x_31 == 0) { -lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; lean_dec(x_28); lean_dec(x_27); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_30 = lean_st_ref_take(x_16, x_24); -x_31 = lean_ctor_get(x_30, 0); -lean_inc(x_31); -x_32 = lean_ctor_get(x_31, 3); -lean_inc(x_32); -x_33 = lean_ctor_get(x_30, 1); +x_32 = lean_st_ref_take(x_16, x_24); +x_33 = lean_ctor_get(x_32, 0); lean_inc(x_33); -lean_dec(x_30); -x_34 = !lean_is_exclusive(x_31); -if (x_34 == 0) -{ -lean_object* x_35; uint8_t x_36; -x_35 = lean_ctor_get(x_31, 3); -lean_dec(x_35); -x_36 = !lean_is_exclusive(x_32); +x_34 = lean_ctor_get(x_33, 3); +lean_inc(x_34); +x_35 = lean_ctor_get(x_32, 1); +lean_inc(x_35); +lean_dec(x_32); +x_36 = !lean_is_exclusive(x_33); if (x_36 == 0) { -lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_37 = lean_ctor_get(x_32, 0); -x_38 = l_Lean_PersistentArray_append___rarg(x_19, x_37); +lean_object* x_37; uint8_t x_38; +x_37 = lean_ctor_get(x_33, 3); lean_dec(x_37); -lean_ctor_set(x_32, 0, x_38); -x_39 = lean_st_ref_set(x_16, x_31, x_33); -x_40 = lean_ctor_get(x_39, 1); -lean_inc(x_40); +x_38 = !lean_is_exclusive(x_34); +if (x_38 == 0) +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_39 = lean_ctor_get(x_34, 0); +x_40 = l_Lean_PersistentArray_append___rarg(x_19, x_39); lean_dec(x_39); -x_41 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_evalTactic___spec__6(x_26, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_40); +lean_ctor_set(x_34, 0, x_40); +x_41 = lean_st_ref_set(x_16, x_33, x_35); +x_42 = lean_ctor_get(x_41, 1); +lean_inc(x_42); +lean_dec(x_41); +x_43 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_evalTactic___spec__6(x_26, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_42); lean_dec(x_16); lean_dec(x_15); lean_dec(x_14); @@ -13574,179 +13565,179 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_26); -if (lean_obj_tag(x_41) == 0) +if (lean_obj_tag(x_43) == 0) { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_41); -if (x_42 == 0) +uint8_t x_44; +x_44 = !lean_is_exclusive(x_43); +if (x_44 == 0) { -return x_41; +return x_43; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_41, 0); -x_44 = lean_ctor_get(x_41, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_41); -x_45 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_43, 0); +x_46 = lean_ctor_get(x_43, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_43); +x_47 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } else { -uint8_t x_46; -x_46 = !lean_is_exclusive(x_41); -if (x_46 == 0) +uint8_t x_48; +x_48 = !lean_is_exclusive(x_43); +if (x_48 == 0) { -return x_41; +return x_43; } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_41, 0); -x_48 = lean_ctor_get(x_41, 1); -lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_41); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; +lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_49 = lean_ctor_get(x_43, 0); +x_50 = lean_ctor_get(x_43, 1); +lean_inc(x_50); +lean_inc(x_49); +lean_dec(x_43); +x_51 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_51, 0, x_49); +lean_ctor_set(x_51, 1, x_50); +return x_51; } } } else { -uint64_t x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_50 = lean_ctor_get_uint64(x_32, sizeof(void*)*1); -x_51 = lean_ctor_get(x_32, 0); -lean_inc(x_51); -lean_dec(x_32); -x_52 = l_Lean_PersistentArray_append___rarg(x_19, x_51); -lean_dec(x_51); -x_53 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_53, 0, x_52); -lean_ctor_set_uint64(x_53, sizeof(void*)*1, x_50); -lean_ctor_set(x_31, 3, x_53); -x_54 = lean_st_ref_set(x_16, x_31, x_33); -x_55 = lean_ctor_get(x_54, 1); -lean_inc(x_55); -lean_dec(x_54); -x_56 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_evalTactic___spec__6(x_26, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_55); -lean_dec(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_26); -if (lean_obj_tag(x_56) == 0) -{ -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_56, 0); +uint64_t x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_52 = lean_ctor_get_uint64(x_34, sizeof(void*)*1); +x_53 = lean_ctor_get(x_34, 0); +lean_inc(x_53); +lean_dec(x_34); +x_54 = l_Lean_PersistentArray_append___rarg(x_19, x_53); +lean_dec(x_53); +x_55 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_55, 0, x_54); +lean_ctor_set_uint64(x_55, sizeof(void*)*1, x_52); +lean_ctor_set(x_33, 3, x_55); +x_56 = lean_st_ref_set(x_16, x_33, x_35); +x_57 = lean_ctor_get(x_56, 1); lean_inc(x_57); -x_58 = lean_ctor_get(x_56, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_56)) { - lean_ctor_release(x_56, 0); - lean_ctor_release(x_56, 1); - x_59 = x_56; +lean_dec(x_56); +x_58 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_evalTactic___spec__6(x_26, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_57); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_26); +if (lean_obj_tag(x_58) == 0) +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_58, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_58, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_58)) { + lean_ctor_release(x_58, 0); + lean_ctor_release(x_58, 1); + x_61 = x_58; } else { - lean_dec_ref(x_56); - x_59 = lean_box(0); + lean_dec_ref(x_58); + x_61 = lean_box(0); } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(0, 2, 0); } else { - x_60 = x_59; + x_62 = x_61; } -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_58); -return x_60; +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; -x_61 = lean_ctor_get(x_56, 0); -lean_inc(x_61); -x_62 = lean_ctor_get(x_56, 1); -lean_inc(x_62); -if (lean_is_exclusive(x_56)) { - lean_ctor_release(x_56, 0); - lean_ctor_release(x_56, 1); - x_63 = x_56; +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_63 = lean_ctor_get(x_58, 0); +lean_inc(x_63); +x_64 = lean_ctor_get(x_58, 1); +lean_inc(x_64); +if (lean_is_exclusive(x_58)) { + lean_ctor_release(x_58, 0); + lean_ctor_release(x_58, 1); + x_65 = x_58; } else { - lean_dec_ref(x_56); - x_63 = lean_box(0); + lean_dec_ref(x_58); + x_65 = lean_box(0); } -if (lean_is_scalar(x_63)) { - x_64 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_65)) { + x_66 = lean_alloc_ctor(1, 2, 0); } else { - x_64 = x_63; + x_66 = x_65; } -lean_ctor_set(x_64, 0, x_61); -lean_ctor_set(x_64, 1, x_62); -return x_64; +lean_ctor_set(x_66, 0, x_63); +lean_ctor_set(x_66, 1, x_64); +return x_66; } } } else { -lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; uint64_t x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_65 = lean_ctor_get(x_31, 0); -x_66 = lean_ctor_get(x_31, 1); -x_67 = lean_ctor_get(x_31, 2); -x_68 = lean_ctor_get(x_31, 4); -x_69 = lean_ctor_get(x_31, 5); -x_70 = lean_ctor_get(x_31, 6); -x_71 = lean_ctor_get(x_31, 7); +lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; uint64_t x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_67 = lean_ctor_get(x_33, 0); +x_68 = lean_ctor_get(x_33, 1); +x_69 = lean_ctor_get(x_33, 2); +x_70 = lean_ctor_get(x_33, 4); +x_71 = lean_ctor_get(x_33, 5); +x_72 = lean_ctor_get(x_33, 6); +x_73 = lean_ctor_get(x_33, 7); +lean_inc(x_73); +lean_inc(x_72); lean_inc(x_71); lean_inc(x_70); lean_inc(x_69); lean_inc(x_68); lean_inc(x_67); -lean_inc(x_66); -lean_inc(x_65); -lean_dec(x_31); -x_72 = lean_ctor_get_uint64(x_32, sizeof(void*)*1); -x_73 = lean_ctor_get(x_32, 0); -lean_inc(x_73); -if (lean_is_exclusive(x_32)) { - lean_ctor_release(x_32, 0); - x_74 = x_32; +lean_dec(x_33); +x_74 = lean_ctor_get_uint64(x_34, sizeof(void*)*1); +x_75 = lean_ctor_get(x_34, 0); +lean_inc(x_75); +if (lean_is_exclusive(x_34)) { + lean_ctor_release(x_34, 0); + x_76 = x_34; } else { - lean_dec_ref(x_32); - x_74 = lean_box(0); + lean_dec_ref(x_34); + x_76 = lean_box(0); } -x_75 = l_Lean_PersistentArray_append___rarg(x_19, x_73); -lean_dec(x_73); -if (lean_is_scalar(x_74)) { - x_76 = lean_alloc_ctor(0, 1, 8); +x_77 = l_Lean_PersistentArray_append___rarg(x_19, x_75); +lean_dec(x_75); +if (lean_is_scalar(x_76)) { + x_78 = lean_alloc_ctor(0, 1, 8); } else { - x_76 = x_74; + x_78 = x_76; } -lean_ctor_set(x_76, 0, x_75); -lean_ctor_set_uint64(x_76, sizeof(void*)*1, x_72); -x_77 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_77, 0, x_65); -lean_ctor_set(x_77, 1, x_66); -lean_ctor_set(x_77, 2, x_67); -lean_ctor_set(x_77, 3, x_76); -lean_ctor_set(x_77, 4, x_68); -lean_ctor_set(x_77, 5, x_69); -lean_ctor_set(x_77, 6, x_70); -lean_ctor_set(x_77, 7, x_71); -x_78 = lean_st_ref_set(x_16, x_77, x_33); -x_79 = lean_ctor_get(x_78, 1); -lean_inc(x_79); -lean_dec(x_78); -x_80 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_evalTactic___spec__6(x_26, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_79); +lean_ctor_set(x_78, 0, x_77); +lean_ctor_set_uint64(x_78, sizeof(void*)*1, x_74); +x_79 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_79, 0, x_67); +lean_ctor_set(x_79, 1, x_68); +lean_ctor_set(x_79, 2, x_69); +lean_ctor_set(x_79, 3, x_78); +lean_ctor_set(x_79, 4, x_70); +lean_ctor_set(x_79, 5, x_71); +lean_ctor_set(x_79, 6, x_72); +lean_ctor_set(x_79, 7, x_73); +x_80 = lean_st_ref_set(x_16, x_79, x_35); +x_81 = lean_ctor_get(x_80, 1); +lean_inc(x_81); +lean_dec(x_80); +x_82 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_evalTactic___spec__6(x_26, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_81); lean_dec(x_16); lean_dec(x_15); lean_dec(x_14); @@ -13756,91 +13747,79 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_26); -if (lean_obj_tag(x_80) == 0) +if (lean_obj_tag(x_82) == 0) { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_81 = lean_ctor_get(x_80, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_80, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_80)) { - lean_ctor_release(x_80, 0); - lean_ctor_release(x_80, 1); - x_83 = x_80; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_83 = lean_ctor_get(x_82, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_82, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_82)) { + lean_ctor_release(x_82, 0); + lean_ctor_release(x_82, 1); + x_85 = x_82; } else { - lean_dec_ref(x_80); - x_83 = lean_box(0); + lean_dec_ref(x_82); + x_85 = lean_box(0); } -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(0, 2, 0); } else { - x_84 = x_83; + x_86 = x_85; } -lean_ctor_set(x_84, 0, x_81); -lean_ctor_set(x_84, 1, x_82); -return x_84; +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; } else { -lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; -x_85 = lean_ctor_get(x_80, 0); -lean_inc(x_85); -x_86 = lean_ctor_get(x_80, 1); -lean_inc(x_86); -if (lean_is_exclusive(x_80)) { - lean_ctor_release(x_80, 0); - lean_ctor_release(x_80, 1); - x_87 = x_80; +lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; +x_87 = lean_ctor_get(x_82, 0); +lean_inc(x_87); +x_88 = lean_ctor_get(x_82, 1); +lean_inc(x_88); +if (lean_is_exclusive(x_82)) { + lean_ctor_release(x_82, 0); + lean_ctor_release(x_82, 1); + x_89 = x_82; } else { - lean_dec_ref(x_80); - x_87 = lean_box(0); + lean_dec_ref(x_82); + x_89 = lean_box(0); } -if (lean_is_scalar(x_87)) { - x_88 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_89)) { + x_90 = lean_alloc_ctor(1, 2, 0); } else { - x_88 = x_87; + x_90 = x_89; } -lean_ctor_set(x_88, 0, x_85); -lean_ctor_set(x_88, 1, x_86); -return x_88; +lean_ctor_set(x_90, 0, x_87); +lean_ctor_set(x_90, 1, x_88); +return x_90; } } } else { -lean_object* x_89; double x_90; double x_91; lean_object* x_92; -x_89 = lean_box(0); -x_90 = lean_unbox_float(x_27); +lean_object* x_91; double x_92; double x_93; lean_object* x_94; +x_91 = lean_box(0); +x_92 = lean_unbox_float(x_27); lean_dec(x_27); -x_91 = lean_unbox_float(x_28); +x_93 = lean_unbox_float(x_28); lean_dec(x_28); -x_92 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3(x_2, x_3, x_4, x_19, x_26, x_1, x_29, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_24); -return x_92; -} -} -else -{ -lean_object* x_93; double x_94; double x_95; lean_object* x_96; -x_93 = lean_box(0); -x_94 = lean_unbox_float(x_27); -lean_dec(x_27); -x_95 = lean_unbox_float(x_28); -lean_dec(x_28); -x_96 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3(x_2, x_3, x_4, x_19, x_26, x_1, x_29, x_94, x_95, x_5, x_93, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_24); -return x_96; +x_94 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3(x_2, x_3, x_4, x_19, x_26, x_30, x_92, x_93, x_5, x_91, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_24); +return x_94; } } } } else { -lean_object* x_211; lean_object* x_212; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; -x_299 = lean_io_get_num_heartbeats(x_20); -x_300 = lean_ctor_get(x_299, 0); -lean_inc(x_300); -x_301 = lean_ctor_get(x_299, 1); -lean_inc(x_301); -lean_dec(x_299); +lean_object* x_215; lean_object* x_216; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; +x_307 = lean_io_get_num_heartbeats(x_20); +x_308 = lean_ctor_get(x_307, 0); +lean_inc(x_308); +x_309 = lean_ctor_get(x_307, 1); +lean_inc(x_309); +lean_dec(x_307); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); @@ -13849,370 +13828,324 @@ lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_302 = lean_apply_9(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_301); -if (lean_obj_tag(x_302) == 0) +x_310 = lean_apply_9(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_309); +if (lean_obj_tag(x_310) == 0) { -uint8_t x_303; -x_303 = !lean_is_exclusive(x_302); -if (x_303 == 0) +uint8_t x_311; +x_311 = !lean_is_exclusive(x_310); +if (x_311 == 0) { -lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; uint8_t x_308; -x_304 = lean_ctor_get(x_302, 0); -x_305 = lean_ctor_get(x_302, 1); -x_306 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_306, 0, x_304); -x_307 = lean_io_get_num_heartbeats(x_305); -x_308 = !lean_is_exclusive(x_307); -if (x_308 == 0) +lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; uint8_t x_316; +x_312 = lean_ctor_get(x_310, 0); +x_313 = lean_ctor_get(x_310, 1); +x_314 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_314, 0, x_312); +x_315 = lean_io_get_num_heartbeats(x_313); +x_316 = !lean_is_exclusive(x_315); +if (x_316 == 0) { -lean_object* x_309; lean_object* x_310; uint8_t x_311; lean_object* x_312; double x_313; double x_314; lean_object* x_315; lean_object* x_316; -x_309 = lean_ctor_get(x_307, 0); -x_310 = lean_ctor_get(x_307, 1); -x_311 = 0; -x_312 = lean_unsigned_to_nat(0u); -x_313 = l_Float_ofScientific(x_300, x_311, x_312); -lean_dec(x_300); -x_314 = l_Float_ofScientific(x_309, x_311, x_312); -lean_dec(x_309); -x_315 = lean_box_float(x_313); -x_316 = lean_box_float(x_314); -lean_ctor_set(x_307, 1, x_316); -lean_ctor_set(x_307, 0, x_315); -lean_ctor_set(x_302, 1, x_307); -lean_ctor_set(x_302, 0, x_306); -x_211 = x_302; -x_212 = x_310; -goto block_298; -} -else -{ -lean_object* x_317; lean_object* x_318; uint8_t x_319; lean_object* x_320; double x_321; double x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; -x_317 = lean_ctor_get(x_307, 0); -x_318 = lean_ctor_get(x_307, 1); -lean_inc(x_318); -lean_inc(x_317); -lean_dec(x_307); +lean_object* x_317; lean_object* x_318; uint8_t x_319; lean_object* x_320; double x_321; double x_322; lean_object* x_323; lean_object* x_324; +x_317 = lean_ctor_get(x_315, 0); +x_318 = lean_ctor_get(x_315, 1); x_319 = 0; x_320 = lean_unsigned_to_nat(0u); -x_321 = l_Float_ofScientific(x_300, x_319, x_320); -lean_dec(x_300); +x_321 = l_Float_ofScientific(x_308, x_319, x_320); +lean_dec(x_308); x_322 = l_Float_ofScientific(x_317, x_319, x_320); lean_dec(x_317); x_323 = lean_box_float(x_321); x_324 = lean_box_float(x_322); -x_325 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_325, 0, x_323); -lean_ctor_set(x_325, 1, x_324); -lean_ctor_set(x_302, 1, x_325); -lean_ctor_set(x_302, 0, x_306); -x_211 = x_302; -x_212 = x_318; -goto block_298; -} +lean_ctor_set(x_315, 1, x_324); +lean_ctor_set(x_315, 0, x_323); +lean_ctor_set(x_310, 1, x_315); +lean_ctor_set(x_310, 0, x_314); +x_215 = x_310; +x_216 = x_318; +goto block_306; } else { -lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; uint8_t x_333; lean_object* x_334; double x_335; double x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; -x_326 = lean_ctor_get(x_302, 0); -x_327 = lean_ctor_get(x_302, 1); -lean_inc(x_327); +lean_object* x_325; lean_object* x_326; uint8_t x_327; lean_object* x_328; double x_329; double x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; +x_325 = lean_ctor_get(x_315, 0); +x_326 = lean_ctor_get(x_315, 1); lean_inc(x_326); -lean_dec(x_302); -x_328 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_328, 0, x_326); -x_329 = lean_io_get_num_heartbeats(x_327); -x_330 = lean_ctor_get(x_329, 0); -lean_inc(x_330); -x_331 = lean_ctor_get(x_329, 1); -lean_inc(x_331); -if (lean_is_exclusive(x_329)) { - lean_ctor_release(x_329, 0); - lean_ctor_release(x_329, 1); - x_332 = x_329; -} else { - lean_dec_ref(x_329); - x_332 = lean_box(0); -} -x_333 = 0; -x_334 = lean_unsigned_to_nat(0u); -x_335 = l_Float_ofScientific(x_300, x_333, x_334); -lean_dec(x_300); -x_336 = l_Float_ofScientific(x_330, x_333, x_334); -lean_dec(x_330); -x_337 = lean_box_float(x_335); -x_338 = lean_box_float(x_336); -if (lean_is_scalar(x_332)) { - x_339 = lean_alloc_ctor(0, 2, 0); -} else { - x_339 = x_332; -} -lean_ctor_set(x_339, 0, x_337); -lean_ctor_set(x_339, 1, x_338); -x_340 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_340, 0, x_328); -lean_ctor_set(x_340, 1, x_339); -x_211 = x_340; -x_212 = x_331; -goto block_298; +lean_inc(x_325); +lean_dec(x_315); +x_327 = 0; +x_328 = lean_unsigned_to_nat(0u); +x_329 = l_Float_ofScientific(x_308, x_327, x_328); +lean_dec(x_308); +x_330 = l_Float_ofScientific(x_325, x_327, x_328); +lean_dec(x_325); +x_331 = lean_box_float(x_329); +x_332 = lean_box_float(x_330); +x_333 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_333, 0, x_331); +lean_ctor_set(x_333, 1, x_332); +lean_ctor_set(x_310, 1, x_333); +lean_ctor_set(x_310, 0, x_314); +x_215 = x_310; +x_216 = x_326; +goto block_306; } } else { -uint8_t x_341; -x_341 = !lean_is_exclusive(x_302); -if (x_341 == 0) -{ -lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; uint8_t x_346; -x_342 = lean_ctor_get(x_302, 0); -x_343 = lean_ctor_get(x_302, 1); -x_344 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_344, 0, x_342); -x_345 = lean_io_get_num_heartbeats(x_343); -x_346 = !lean_is_exclusive(x_345); -if (x_346 == 0) -{ -lean_object* x_347; lean_object* x_348; uint8_t x_349; lean_object* x_350; double x_351; double x_352; lean_object* x_353; lean_object* x_354; -x_347 = lean_ctor_get(x_345, 0); -x_348 = lean_ctor_get(x_345, 1); -x_349 = 0; -x_350 = lean_unsigned_to_nat(0u); -x_351 = l_Float_ofScientific(x_300, x_349, x_350); -lean_dec(x_300); -x_352 = l_Float_ofScientific(x_347, x_349, x_350); -lean_dec(x_347); -x_353 = lean_box_float(x_351); -x_354 = lean_box_float(x_352); -lean_ctor_set(x_345, 1, x_354); -lean_ctor_set(x_345, 0, x_353); -lean_ctor_set_tag(x_302, 0); -lean_ctor_set(x_302, 1, x_345); -lean_ctor_set(x_302, 0, x_344); -x_211 = x_302; -x_212 = x_348; -goto block_298; +lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; uint8_t x_341; lean_object* x_342; double x_343; double x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; +x_334 = lean_ctor_get(x_310, 0); +x_335 = lean_ctor_get(x_310, 1); +lean_inc(x_335); +lean_inc(x_334); +lean_dec(x_310); +x_336 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_336, 0, x_334); +x_337 = lean_io_get_num_heartbeats(x_335); +x_338 = lean_ctor_get(x_337, 0); +lean_inc(x_338); +x_339 = lean_ctor_get(x_337, 1); +lean_inc(x_339); +if (lean_is_exclusive(x_337)) { + lean_ctor_release(x_337, 0); + lean_ctor_release(x_337, 1); + x_340 = x_337; +} else { + lean_dec_ref(x_337); + x_340 = lean_box(0); +} +x_341 = 0; +x_342 = lean_unsigned_to_nat(0u); +x_343 = l_Float_ofScientific(x_308, x_341, x_342); +lean_dec(x_308); +x_344 = l_Float_ofScientific(x_338, x_341, x_342); +lean_dec(x_338); +x_345 = lean_box_float(x_343); +x_346 = lean_box_float(x_344); +if (lean_is_scalar(x_340)) { + x_347 = lean_alloc_ctor(0, 2, 0); +} else { + x_347 = x_340; +} +lean_ctor_set(x_347, 0, x_345); +lean_ctor_set(x_347, 1, x_346); +x_348 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_348, 0, x_336); +lean_ctor_set(x_348, 1, x_347); +x_215 = x_348; +x_216 = x_339; +goto block_306; +} } else { -lean_object* x_355; lean_object* x_356; uint8_t x_357; lean_object* x_358; double x_359; double x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; -x_355 = lean_ctor_get(x_345, 0); -x_356 = lean_ctor_get(x_345, 1); -lean_inc(x_356); -lean_inc(x_355); -lean_dec(x_345); +uint8_t x_349; +x_349 = !lean_is_exclusive(x_310); +if (x_349 == 0) +{ +lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; uint8_t x_354; +x_350 = lean_ctor_get(x_310, 0); +x_351 = lean_ctor_get(x_310, 1); +x_352 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_352, 0, x_350); +x_353 = lean_io_get_num_heartbeats(x_351); +x_354 = !lean_is_exclusive(x_353); +if (x_354 == 0) +{ +lean_object* x_355; lean_object* x_356; uint8_t x_357; lean_object* x_358; double x_359; double x_360; lean_object* x_361; lean_object* x_362; +x_355 = lean_ctor_get(x_353, 0); +x_356 = lean_ctor_get(x_353, 1); x_357 = 0; x_358 = lean_unsigned_to_nat(0u); -x_359 = l_Float_ofScientific(x_300, x_357, x_358); -lean_dec(x_300); +x_359 = l_Float_ofScientific(x_308, x_357, x_358); +lean_dec(x_308); x_360 = l_Float_ofScientific(x_355, x_357, x_358); lean_dec(x_355); x_361 = lean_box_float(x_359); x_362 = lean_box_float(x_360); -x_363 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_363, 0, x_361); -lean_ctor_set(x_363, 1, x_362); -lean_ctor_set_tag(x_302, 0); -lean_ctor_set(x_302, 1, x_363); -lean_ctor_set(x_302, 0, x_344); -x_211 = x_302; -x_212 = x_356; -goto block_298; -} +lean_ctor_set(x_353, 1, x_362); +lean_ctor_set(x_353, 0, x_361); +lean_ctor_set_tag(x_310, 0); +lean_ctor_set(x_310, 1, x_353); +lean_ctor_set(x_310, 0, x_352); +x_215 = x_310; +x_216 = x_356; +goto block_306; } else { -lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; uint8_t x_371; lean_object* x_372; double x_373; double x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; -x_364 = lean_ctor_get(x_302, 0); -x_365 = lean_ctor_get(x_302, 1); -lean_inc(x_365); +lean_object* x_363; lean_object* x_364; uint8_t x_365; lean_object* x_366; double x_367; double x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; +x_363 = lean_ctor_get(x_353, 0); +x_364 = lean_ctor_get(x_353, 1); lean_inc(x_364); -lean_dec(x_302); -x_366 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_366, 0, x_364); -x_367 = lean_io_get_num_heartbeats(x_365); -x_368 = lean_ctor_get(x_367, 0); -lean_inc(x_368); -x_369 = lean_ctor_get(x_367, 1); -lean_inc(x_369); -if (lean_is_exclusive(x_367)) { - lean_ctor_release(x_367, 0); - lean_ctor_release(x_367, 1); - x_370 = x_367; -} else { - lean_dec_ref(x_367); - x_370 = lean_box(0); +lean_inc(x_363); +lean_dec(x_353); +x_365 = 0; +x_366 = lean_unsigned_to_nat(0u); +x_367 = l_Float_ofScientific(x_308, x_365, x_366); +lean_dec(x_308); +x_368 = l_Float_ofScientific(x_363, x_365, x_366); +lean_dec(x_363); +x_369 = lean_box_float(x_367); +x_370 = lean_box_float(x_368); +x_371 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_371, 0, x_369); +lean_ctor_set(x_371, 1, x_370); +lean_ctor_set_tag(x_310, 0); +lean_ctor_set(x_310, 1, x_371); +lean_ctor_set(x_310, 0, x_352); +x_215 = x_310; +x_216 = x_364; +goto block_306; } -x_371 = 0; -x_372 = lean_unsigned_to_nat(0u); -x_373 = l_Float_ofScientific(x_300, x_371, x_372); -lean_dec(x_300); -x_374 = l_Float_ofScientific(x_368, x_371, x_372); -lean_dec(x_368); -x_375 = lean_box_float(x_373); -x_376 = lean_box_float(x_374); -if (lean_is_scalar(x_370)) { - x_377 = lean_alloc_ctor(0, 2, 0); -} else { - x_377 = x_370; -} -lean_ctor_set(x_377, 0, x_375); -lean_ctor_set(x_377, 1, x_376); -x_378 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_378, 0, x_366); -lean_ctor_set(x_378, 1, x_377); -x_211 = x_378; -x_212 = x_369; -goto block_298; -} -} -block_298: -{ -lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; uint8_t x_217; lean_object* x_286; uint8_t x_287; -x_213 = lean_ctor_get(x_211, 1); -lean_inc(x_213); -x_214 = lean_ctor_get(x_211, 0); -lean_inc(x_214); -lean_dec(x_211); -x_215 = lean_ctor_get(x_213, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_213, 1); -lean_inc(x_216); -lean_dec(x_213); -x_286 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__4___closed__2; -x_287 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_286); -if (x_287 == 0) -{ -uint8_t x_288; -x_288 = 0; -x_217 = x_288; -goto block_285; } else { -double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; -x_289 = lean_unbox_float(x_216); -x_290 = lean_unbox_float(x_215); -x_291 = lean_float_sub(x_289, x_290); -x_292 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__4___closed__3; -x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); -x_294 = 0; -x_295 = lean_unsigned_to_nat(0u); -x_296 = l_Float_ofScientific(x_293, x_294, x_295); -lean_dec(x_293); -x_297 = lean_float_decLt(x_296, x_291); -x_217 = x_297; -goto block_285; +lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; uint8_t x_379; lean_object* x_380; double x_381; double x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; +x_372 = lean_ctor_get(x_310, 0); +x_373 = lean_ctor_get(x_310, 1); +lean_inc(x_373); +lean_inc(x_372); +lean_dec(x_310); +x_374 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_374, 0, x_372); +x_375 = lean_io_get_num_heartbeats(x_373); +x_376 = lean_ctor_get(x_375, 0); +lean_inc(x_376); +x_377 = lean_ctor_get(x_375, 1); +lean_inc(x_377); +if (lean_is_exclusive(x_375)) { + lean_ctor_release(x_375, 0); + lean_ctor_release(x_375, 1); + x_378 = x_375; +} else { + lean_dec_ref(x_375); + x_378 = lean_box(0); } -block_285: +x_379 = 0; +x_380 = lean_unsigned_to_nat(0u); +x_381 = l_Float_ofScientific(x_308, x_379, x_380); +lean_dec(x_308); +x_382 = l_Float_ofScientific(x_376, x_379, x_380); +lean_dec(x_376); +x_383 = lean_box_float(x_381); +x_384 = lean_box_float(x_382); +if (lean_is_scalar(x_378)) { + x_385 = lean_alloc_ctor(0, 2, 0); +} else { + x_385 = x_378; +} +lean_ctor_set(x_385, 0, x_383); +lean_ctor_set(x_385, 1, x_384); +x_386 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_386, 0, x_374); +lean_ctor_set(x_386, 1, x_385); +x_215 = x_386; +x_216 = x_377; +goto block_306; +} +} +block_306: +{ +lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; uint8_t x_222; uint8_t x_223; +x_217 = lean_ctor_get(x_215, 1); +lean_inc(x_217); +x_218 = lean_ctor_get(x_215, 0); +lean_inc(x_218); +lean_dec(x_215); +x_219 = lean_ctor_get(x_217, 0); +lean_inc(x_219); +x_220 = lean_ctor_get(x_217, 1); +lean_inc(x_220); +lean_dec(x_217); +x_221 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__4___closed__2; +x_222 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_221); +if (x_222 == 0) { if (x_6 == 0) { -if (x_217 == 0) +uint8_t x_288; +x_288 = 0; +x_223 = x_288; +goto block_287; +} +else { -lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; uint8_t x_222; -lean_dec(x_216); -lean_dec(x_215); +lean_object* x_289; double x_290; double x_291; lean_object* x_292; +x_289 = lean_box(0); +x_290 = lean_unbox_float(x_219); +lean_dec(x_219); +x_291 = lean_unbox_float(x_220); +lean_dec(x_220); +x_292 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3(x_2, x_3, x_4, x_19, x_218, x_222, x_290, x_291, x_5, x_289, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_216); +return x_292; +} +} +else +{ +if (x_6 == 0) +{ +double x_293; double x_294; double x_295; lean_object* x_296; lean_object* x_297; uint8_t x_298; lean_object* x_299; double x_300; uint8_t x_301; +x_293 = lean_unbox_float(x_220); +x_294 = lean_unbox_float(x_219); +x_295 = lean_float_sub(x_293, x_294); +x_296 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__4___closed__3; +x_297 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_296); +x_298 = 0; +x_299 = lean_unsigned_to_nat(0u); +x_300 = l_Float_ofScientific(x_297, x_298, x_299); +lean_dec(x_297); +x_301 = lean_float_decLt(x_300, x_295); +x_223 = x_301; +goto block_287; +} +else +{ +lean_object* x_302; double x_303; double x_304; lean_object* x_305; +x_302 = lean_box(0); +x_303 = lean_unbox_float(x_219); +lean_dec(x_219); +x_304 = lean_unbox_float(x_220); +lean_dec(x_220); +x_305 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3(x_2, x_3, x_4, x_19, x_218, x_222, x_303, x_304, x_5, x_302, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_216); +return x_305; +} +} +block_287: +{ +if (x_223 == 0) +{ +lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; uint8_t x_228; +lean_dec(x_220); +lean_dec(x_219); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_218 = lean_st_ref_take(x_16, x_212); -x_219 = lean_ctor_get(x_218, 0); -lean_inc(x_219); -x_220 = lean_ctor_get(x_219, 3); -lean_inc(x_220); -x_221 = lean_ctor_get(x_218, 1); -lean_inc(x_221); -lean_dec(x_218); -x_222 = !lean_is_exclusive(x_219); -if (x_222 == 0) +x_224 = lean_st_ref_take(x_16, x_216); +x_225 = lean_ctor_get(x_224, 0); +lean_inc(x_225); +x_226 = lean_ctor_get(x_225, 3); +lean_inc(x_226); +x_227 = lean_ctor_get(x_224, 1); +lean_inc(x_227); +lean_dec(x_224); +x_228 = !lean_is_exclusive(x_225); +if (x_228 == 0) { -lean_object* x_223; uint8_t x_224; -x_223 = lean_ctor_get(x_219, 3); -lean_dec(x_223); -x_224 = !lean_is_exclusive(x_220); -if (x_224 == 0) -{ -lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; -x_225 = lean_ctor_get(x_220, 0); -x_226 = l_Lean_PersistentArray_append___rarg(x_19, x_225); -lean_dec(x_225); -lean_ctor_set(x_220, 0, x_226); -x_227 = lean_st_ref_set(x_16, x_219, x_221); -x_228 = lean_ctor_get(x_227, 1); -lean_inc(x_228); -lean_dec(x_227); -x_229 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_evalTactic___spec__6(x_214, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_228); -lean_dec(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_214); -if (lean_obj_tag(x_229) == 0) -{ -uint8_t x_230; -x_230 = !lean_is_exclusive(x_229); +lean_object* x_229; uint8_t x_230; +x_229 = lean_ctor_get(x_225, 3); +lean_dec(x_229); +x_230 = !lean_is_exclusive(x_226); if (x_230 == 0) { -return x_229; -} -else -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_229, 0); -x_232 = lean_ctor_get(x_229, 1); -lean_inc(x_232); -lean_inc(x_231); -lean_dec(x_229); -x_233 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_233, 0, x_231); -lean_ctor_set(x_233, 1, x_232); -return x_233; -} -} -else -{ -uint8_t x_234; -x_234 = !lean_is_exclusive(x_229); -if (x_234 == 0) -{ -return x_229; -} -else -{ -lean_object* x_235; lean_object* x_236; lean_object* x_237; -x_235 = lean_ctor_get(x_229, 0); -x_236 = lean_ctor_get(x_229, 1); -lean_inc(x_236); -lean_inc(x_235); -lean_dec(x_229); -x_237 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_237, 0, x_235); -lean_ctor_set(x_237, 1, x_236); -return x_237; -} -} -} -else -{ -uint64_t x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; -x_238 = lean_ctor_get_uint64(x_220, sizeof(void*)*1); -x_239 = lean_ctor_get(x_220, 0); -lean_inc(x_239); -lean_dec(x_220); -x_240 = l_Lean_PersistentArray_append___rarg(x_19, x_239); -lean_dec(x_239); -x_241 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_241, 0, x_240); -lean_ctor_set_uint64(x_241, sizeof(void*)*1, x_238); -lean_ctor_set(x_219, 3, x_241); -x_242 = lean_st_ref_set(x_16, x_219, x_221); -x_243 = lean_ctor_get(x_242, 1); -lean_inc(x_243); -lean_dec(x_242); -x_244 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_evalTactic___spec__6(x_214, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_243); +lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_231 = lean_ctor_get(x_226, 0); +x_232 = l_Lean_PersistentArray_append___rarg(x_19, x_231); +lean_dec(x_231); +lean_ctor_set(x_226, 0, x_232); +x_233 = lean_st_ref_set(x_16, x_225, x_227); +x_234 = lean_ctor_get(x_233, 1); +lean_inc(x_234); +lean_dec(x_233); +x_235 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_evalTactic___spec__6(x_218, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_234); lean_dec(x_16); lean_dec(x_15); lean_dec(x_14); @@ -14221,108 +14154,70 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_214); -if (lean_obj_tag(x_244) == 0) +lean_dec(x_218); +if (lean_obj_tag(x_235) == 0) { -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_245 = lean_ctor_get(x_244, 0); +uint8_t x_236; +x_236 = !lean_is_exclusive(x_235); +if (x_236 == 0) +{ +return x_235; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_235, 0); +x_238 = lean_ctor_get(x_235, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_235); +x_239 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} +} +else +{ +uint8_t x_240; +x_240 = !lean_is_exclusive(x_235); +if (x_240 == 0) +{ +return x_235; +} +else +{ +lean_object* x_241; lean_object* x_242; lean_object* x_243; +x_241 = lean_ctor_get(x_235, 0); +x_242 = lean_ctor_get(x_235, 1); +lean_inc(x_242); +lean_inc(x_241); +lean_dec(x_235); +x_243 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_243, 0, x_241); +lean_ctor_set(x_243, 1, x_242); +return x_243; +} +} +} +else +{ +uint64_t x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_244 = lean_ctor_get_uint64(x_226, sizeof(void*)*1); +x_245 = lean_ctor_get(x_226, 0); lean_inc(x_245); -x_246 = lean_ctor_get(x_244, 1); -lean_inc(x_246); -if (lean_is_exclusive(x_244)) { - lean_ctor_release(x_244, 0); - lean_ctor_release(x_244, 1); - x_247 = x_244; -} else { - lean_dec_ref(x_244); - x_247 = lean_box(0); -} -if (lean_is_scalar(x_247)) { - x_248 = lean_alloc_ctor(0, 2, 0); -} else { - x_248 = x_247; -} -lean_ctor_set(x_248, 0, x_245); -lean_ctor_set(x_248, 1, x_246); -return x_248; -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; -x_249 = lean_ctor_get(x_244, 0); +lean_dec(x_226); +x_246 = l_Lean_PersistentArray_append___rarg(x_19, x_245); +lean_dec(x_245); +x_247 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_247, 0, x_246); +lean_ctor_set_uint64(x_247, sizeof(void*)*1, x_244); +lean_ctor_set(x_225, 3, x_247); +x_248 = lean_st_ref_set(x_16, x_225, x_227); +x_249 = lean_ctor_get(x_248, 1); lean_inc(x_249); -x_250 = lean_ctor_get(x_244, 1); -lean_inc(x_250); -if (lean_is_exclusive(x_244)) { - lean_ctor_release(x_244, 0); - lean_ctor_release(x_244, 1); - x_251 = x_244; -} else { - lean_dec_ref(x_244); - x_251 = lean_box(0); -} -if (lean_is_scalar(x_251)) { - x_252 = lean_alloc_ctor(1, 2, 0); -} else { - x_252 = x_251; -} -lean_ctor_set(x_252, 0, x_249); -lean_ctor_set(x_252, 1, x_250); -return x_252; -} -} -} -else -{ -lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; uint64_t x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_253 = lean_ctor_get(x_219, 0); -x_254 = lean_ctor_get(x_219, 1); -x_255 = lean_ctor_get(x_219, 2); -x_256 = lean_ctor_get(x_219, 4); -x_257 = lean_ctor_get(x_219, 5); -x_258 = lean_ctor_get(x_219, 6); -x_259 = lean_ctor_get(x_219, 7); -lean_inc(x_259); -lean_inc(x_258); -lean_inc(x_257); -lean_inc(x_256); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_dec(x_219); -x_260 = lean_ctor_get_uint64(x_220, sizeof(void*)*1); -x_261 = lean_ctor_get(x_220, 0); -lean_inc(x_261); -if (lean_is_exclusive(x_220)) { - lean_ctor_release(x_220, 0); - x_262 = x_220; -} else { - lean_dec_ref(x_220); - x_262 = lean_box(0); -} -x_263 = l_Lean_PersistentArray_append___rarg(x_19, x_261); -lean_dec(x_261); -if (lean_is_scalar(x_262)) { - x_264 = lean_alloc_ctor(0, 1, 8); -} else { - x_264 = x_262; -} -lean_ctor_set(x_264, 0, x_263); -lean_ctor_set_uint64(x_264, sizeof(void*)*1, x_260); -x_265 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_265, 0, x_253); -lean_ctor_set(x_265, 1, x_254); -lean_ctor_set(x_265, 2, x_255); -lean_ctor_set(x_265, 3, x_264); -lean_ctor_set(x_265, 4, x_256); -lean_ctor_set(x_265, 5, x_257); -lean_ctor_set(x_265, 6, x_258); -lean_ctor_set(x_265, 7, x_259); -x_266 = lean_st_ref_set(x_16, x_265, x_221); -x_267 = lean_ctor_get(x_266, 1); -lean_inc(x_267); -lean_dec(x_266); -x_268 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_evalTactic___spec__6(x_214, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_267); +lean_dec(x_248); +x_250 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_evalTactic___spec__6(x_218, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_249); lean_dec(x_16); lean_dec(x_15); lean_dec(x_14); @@ -14331,79 +14226,177 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_214); -if (lean_obj_tag(x_268) == 0) +lean_dec(x_218); +if (lean_obj_tag(x_250) == 0) { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_268, 0); -lean_inc(x_269); -x_270 = lean_ctor_get(x_268, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_268)) { - lean_ctor_release(x_268, 0); - lean_ctor_release(x_268, 1); - x_271 = x_268; +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_251 = lean_ctor_get(x_250, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_250, 1); +lean_inc(x_252); +if (lean_is_exclusive(x_250)) { + lean_ctor_release(x_250, 0); + lean_ctor_release(x_250, 1); + x_253 = x_250; } else { - lean_dec_ref(x_268); - x_271 = lean_box(0); + lean_dec_ref(x_250); + x_253 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(0, 2, 0); } else { - x_272 = x_271; + x_254 = x_253; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_254, 0, x_251); +lean_ctor_set(x_254, 1, x_252); +return x_254; } else { -lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; -x_273 = lean_ctor_get(x_268, 0); +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; +x_255 = lean_ctor_get(x_250, 0); +lean_inc(x_255); +x_256 = lean_ctor_get(x_250, 1); +lean_inc(x_256); +if (lean_is_exclusive(x_250)) { + lean_ctor_release(x_250, 0); + lean_ctor_release(x_250, 1); + x_257 = x_250; +} else { + lean_dec_ref(x_250); + x_257 = lean_box(0); +} +if (lean_is_scalar(x_257)) { + x_258 = lean_alloc_ctor(1, 2, 0); +} else { + x_258 = x_257; +} +lean_ctor_set(x_258, 0, x_255); +lean_ctor_set(x_258, 1, x_256); +return x_258; +} +} +} +else +{ +lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; uint64_t x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_259 = lean_ctor_get(x_225, 0); +x_260 = lean_ctor_get(x_225, 1); +x_261 = lean_ctor_get(x_225, 2); +x_262 = lean_ctor_get(x_225, 4); +x_263 = lean_ctor_get(x_225, 5); +x_264 = lean_ctor_get(x_225, 6); +x_265 = lean_ctor_get(x_225, 7); +lean_inc(x_265); +lean_inc(x_264); +lean_inc(x_263); +lean_inc(x_262); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_dec(x_225); +x_266 = lean_ctor_get_uint64(x_226, sizeof(void*)*1); +x_267 = lean_ctor_get(x_226, 0); +lean_inc(x_267); +if (lean_is_exclusive(x_226)) { + lean_ctor_release(x_226, 0); + x_268 = x_226; +} else { + lean_dec_ref(x_226); + x_268 = lean_box(0); +} +x_269 = l_Lean_PersistentArray_append___rarg(x_19, x_267); +lean_dec(x_267); +if (lean_is_scalar(x_268)) { + x_270 = lean_alloc_ctor(0, 1, 8); +} else { + x_270 = x_268; +} +lean_ctor_set(x_270, 0, x_269); +lean_ctor_set_uint64(x_270, sizeof(void*)*1, x_266); +x_271 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_271, 0, x_259); +lean_ctor_set(x_271, 1, x_260); +lean_ctor_set(x_271, 2, x_261); +lean_ctor_set(x_271, 3, x_270); +lean_ctor_set(x_271, 4, x_262); +lean_ctor_set(x_271, 5, x_263); +lean_ctor_set(x_271, 6, x_264); +lean_ctor_set(x_271, 7, x_265); +x_272 = lean_st_ref_set(x_16, x_271, x_227); +x_273 = lean_ctor_get(x_272, 1); lean_inc(x_273); -x_274 = lean_ctor_get(x_268, 1); -lean_inc(x_274); -if (lean_is_exclusive(x_268)) { - lean_ctor_release(x_268, 0); - lean_ctor_release(x_268, 1); - x_275 = x_268; +lean_dec(x_272); +x_274 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_evalTactic___spec__6(x_218, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_273); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_218); +if (lean_obj_tag(x_274) == 0) +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_274, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_274, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_274)) { + lean_ctor_release(x_274, 0); + lean_ctor_release(x_274, 1); + x_277 = x_274; } else { - lean_dec_ref(x_268); - x_275 = lean_box(0); + lean_dec_ref(x_274); + x_277 = lean_box(0); } -if (lean_is_scalar(x_275)) { - x_276 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(0, 2, 0); } else { - x_276 = x_275; + x_278 = x_277; } -lean_ctor_set(x_276, 0, x_273); -lean_ctor_set(x_276, 1, x_274); -return x_276; +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; +} +else +{ +lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; +x_279 = lean_ctor_get(x_274, 0); +lean_inc(x_279); +x_280 = lean_ctor_get(x_274, 1); +lean_inc(x_280); +if (lean_is_exclusive(x_274)) { + lean_ctor_release(x_274, 0); + lean_ctor_release(x_274, 1); + x_281 = x_274; +} else { + lean_dec_ref(x_274); + x_281 = lean_box(0); +} +if (lean_is_scalar(x_281)) { + x_282 = lean_alloc_ctor(1, 2, 0); +} else { + x_282 = x_281; +} +lean_ctor_set(x_282, 0, x_279); +lean_ctor_set(x_282, 1, x_280); +return x_282; } } } else { -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_215); -lean_dec(x_215); -x_279 = lean_unbox_float(x_216); -lean_dec(x_216); -x_280 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3(x_2, x_3, x_4, x_19, x_214, x_1, x_217, x_278, x_279, x_5, x_277, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_212); -return x_280; -} -} -else -{ -lean_object* x_281; double x_282; double x_283; lean_object* x_284; -x_281 = lean_box(0); -x_282 = lean_unbox_float(x_215); -lean_dec(x_215); -x_283 = lean_unbox_float(x_216); -lean_dec(x_216); -x_284 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3(x_2, x_3, x_4, x_19, x_214, x_1, x_217, x_282, x_283, x_5, x_281, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_212); -return x_284; +lean_object* x_283; double x_284; double x_285; lean_object* x_286; +x_283 = lean_box(0); +x_284 = lean_unbox_float(x_219); +lean_dec(x_219); +x_285 = lean_unbox_float(x_220); +lean_dec(x_220); +x_286 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3(x_2, x_3, x_4, x_19, x_218, x_222, x_284, x_285, x_5, x_283, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_216); +return x_286; } } } @@ -16074,29 +16067,27 @@ lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; lean_object* x_18 = _args[17]; lean_object* x_19 = _args[18]; -lean_object* x_20 = _args[19]; _start: { -uint8_t x_21; uint8_t x_22; double x_23; double x_24; lean_object* x_25; -x_21 = lean_unbox(x_2); +uint8_t x_20; uint8_t x_21; double x_22; double x_23; lean_object* x_24; +x_20 = lean_unbox(x_2); lean_dec(x_2); -x_22 = lean_unbox(x_8); +x_21 = lean_unbox(x_7); +lean_dec(x_7); +x_22 = lean_unbox_float(x_8); lean_dec(x_8); x_23 = lean_unbox_float(x_9); lean_dec(x_9); -x_24 = lean_unbox_float(x_10); -lean_dec(x_10); -x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__2(x_1, x_21, x_3, x_4, x_5, x_6, x_7, x_22, x_23, x_24, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); -lean_dec(x_19); -lean_dec(x_17); +x_24 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__2(x_1, x_20, x_3, x_4, x_5, x_6, x_21, x_22, x_23, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +lean_dec(x_18); lean_dec(x_16); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_25; +return x_24; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3___boxed(lean_object** _args) { @@ -16119,22 +16110,20 @@ lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; lean_object* x_18 = _args[17]; lean_object* x_19 = _args[18]; -lean_object* x_20 = _args[19]; _start: { -uint8_t x_21; uint8_t x_22; double x_23; double x_24; lean_object* x_25; -x_21 = lean_unbox(x_2); +uint8_t x_20; uint8_t x_21; double x_22; double x_23; lean_object* x_24; +x_20 = lean_unbox(x_2); lean_dec(x_2); -x_22 = lean_unbox(x_7); +x_21 = lean_unbox(x_6); +lean_dec(x_6); +x_22 = lean_unbox_float(x_7); lean_dec(x_7); x_23 = lean_unbox_float(x_8); lean_dec(x_8); -x_24 = lean_unbox_float(x_9); -lean_dec(x_9); -x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3(x_1, x_21, x_3, x_4, x_5, x_6, x_22, x_23, x_24, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); -lean_dec(x_11); -lean_dec(x_6); -return x_25; +x_24 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3(x_1, x_20, x_3, x_4, x_5, x_21, x_22, x_23, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +lean_dec(x_10); +return x_24; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__4___boxed(lean_object** _args) { @@ -24263,8 +24252,6 @@ l_Lean_Elab_Tactic_evalTactic_expandEval___lambda__3___closed__6 = _init_l_Lean_ lean_mark_persistent(l_Lean_Elab_Tactic_evalTactic_expandEval___lambda__3___closed__6); l_Lean_Elab_Tactic_evalTactic_expandEval___lambda__3___closed__7 = _init_l_Lean_Elab_Tactic_evalTactic_expandEval___lambda__3___closed__7(); lean_mark_persistent(l_Lean_Elab_Tactic_evalTactic_expandEval___lambda__3___closed__7); -l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__2___closed__1(); -lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__2___closed__1); l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3___closed__1); l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_evalTactic___spec__3___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/NormCast.c b/stage0/stdlib/Lean/Elab/Tactic/NormCast.c index f93f2e0e13..61ba2341b9 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/NormCast.c +++ b/stage0/stdlib/Lean/Elab/Tactic/NormCast.c @@ -31,7 +31,6 @@ lean_object* l_Lean_mkNatLit(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_NormCast_elabModCast_declRange__1___closed__4; static lean_object* l___regBuiltin_Lean_Elab_Tactic_NormCast_evalConvNormCast__1___closed__5; static lean_object* l_Lean_Elab_Tactic_NormCast_isNumeral_x3f___closed__2; -extern lean_object* l_Lean_profiler; static lean_object* l_Lean_Elab_Tactic_NormCast_upwardAndElim___closed__2; static lean_object* l_Lean_Elab_Tactic_NormCast_normCastTarget___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_NormCast_proveEqUsingDown___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -48,7 +47,7 @@ static lean_object* l_Lean_Elab_Tactic_NormCast_evalPushCast___closed__1; static lean_object* l___regBuiltin_Lean_Elab_Tactic_NormCast_evalPushCast_declRange__1___closed__1; static lean_object* l_Lean_Elab_Tactic_NormCast_derive___lambda__13___closed__2; static lean_object* l_Lean_Elab_Tactic_NormCast_isNumeral_x3f___closed__9; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_NormCast_isNumeral_x3f___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_NormCast_derive___lambda__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_whnf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -60,7 +59,7 @@ static lean_object* l___regBuiltin_Lean_Elab_Tactic_NormCast_evalNormCast0__1___ lean_object* l_Lean_Elab_Term_synthesizeSyntheticMVars(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_NormCast_evalNormCast0___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_NormCast_proveEqUsing___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabTerm(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_NormCast_derive___lambda__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -138,9 +137,8 @@ uint8_t lean_string_dec_eq(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_NormCast_splittingProcedure___lambda__1___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_NormCast_splittingProcedure___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_NormCast_initFn____x40_Lean_Elab_Tactic_NormCast___hyg_5____closed__8; -static lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2___closed__2; lean_object* l_Lean_Meta_getSimpCongrTheorems___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_NormCast_elabAddElim___closed__1; static lean_object* l_Lean_Elab_Tactic_NormCast_derive___lambda__12___closed__3; static lean_object* l___regBuiltin_Lean_Elab_Tactic_NormCast_evalPushCast_declRange__1___closed__3; @@ -155,7 +153,7 @@ lean_object* l_Lean_Meta_Simp_Context_setFailIfUnchanged(lean_object*, uint8_t); static lean_object* l_Lean_Elab_Tactic_NormCast_numeralToCoe___lambda__1___closed__2; static double l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2___closed__1; static lean_object* l___regBuiltin_Lean_Elab_Tactic_NormCast_evalNormCast0__1___closed__4; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_bind___at_Lean_Meta_Simp_discharge_x3f_x27___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_NormCast_mkCoe___closed__2; static lean_object* l_Lean_Elab_Tactic_NormCast_prove___lambda__1___closed__2; @@ -169,7 +167,7 @@ lean_object* l_Lean_Meta_findLocalDeclWithType_x3f(lean_object*, lean_object*, l static lean_object* l_Lean_Elab_Tactic_NormCast_derive___lambda__8___closed__3; static lean_object* l_Lean_Elab_Tactic_NormCast_elabModCast___closed__2; static lean_object* l_Lean_Elab_Tactic_NormCast_proveEqUsing___closed__2; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_NormCast_prove___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withExpectedType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -218,7 +216,7 @@ lean_object* l_Lean_PersistentArray_append___rarg(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_NormCast_evalNormCast0_declRange__1___closed__2; lean_object* l_Lean_Meta_NormCast_addElim(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_NormCast_initFn____x40_Lean_Elab_Tactic_NormCast___hyg_5____closed__18; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_NormCast_evalNormCast0___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_NormCast_evalPushCast__1___closed__3; lean_object* l_Lean_FVarId_getDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -245,7 +243,7 @@ LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_spl LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_NormCast_splittingProcedure___lambda__1___closed__1; lean_object* l_Lean_isTracingEnabledFor___at_Lean_Meta_Simp_congrArgs___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_NormCast_numeralToCoe(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Simp_Result_mkCast(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_mono_nanos_now(lean_object*); @@ -388,7 +386,7 @@ lean_object* l_Lean_Meta_Simp_mkCongr(lean_object*, lean_object*, lean_object*, LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_NormCast_normCastTarget___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_NormCast_elabAddElim___closed__10; uint64_t lean_uint64_shift_left(uint64_t, uint64_t); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Simp_SimprocsArray_add(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkNumeral(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -437,12 +435,12 @@ static lean_object* l_Lean_Elab_Tactic_NormCast_initFn____x40_Lean_Elab_Tactic_N lean_object* l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Simp_mkDefaultMethods(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_NormCast_derive___lambda__8___closed__8; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_NormCast_initFn____x40_Lean_Elab_Tactic_NormCast___hyg_5____closed__16; lean_object* lean_array_get_size(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_NormCast_evalConvNormCast__1___closed__1; static lean_object* l_Lean_Elab_Tactic_NormCast_mkCoe___closed__1; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_infer_type(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_NormCast_elabModCast(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2357,69 +2355,36 @@ x_3 = l_Float_ofScientific(x_1, x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2___closed__2() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2___closed__1; +x_17 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_3); +lean_ctor_set_float(x_17, sizeof(void*)*2, x_16); +lean_ctor_set_float(x_17, sizeof(void*)*2 + 8, x_16); +lean_ctor_set_uint8(x_17, sizeof(void*)*2 + 16, x_2); +x_18 = lean_box(0); +x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_17, x_18, x_11, x_12, x_13, x_14, x_15); +return x_19; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { -_start: +else { -double x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_18 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_18, 0, x_1); -lean_ctor_set(x_18, 1, x_3); -lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); -lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); -lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2___closed__2; -x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_19); -if (x_20 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_21; lean_object* x_22; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); x_21 = lean_box(0); -x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_18, x_21, x_12, x_13, x_14, x_15, x_16); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15); return x_22; } -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_18); -x_23 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_3); -lean_ctor_set_float(x_23, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); -x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_23, x_24, x_12, x_13, x_14, x_15, x_16); -return x_25; -} -} -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_18); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16); -return x_28; -} } } static lean_object* _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3___closed__1() { @@ -2439,46 +2404,46 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 5); -lean_inc(x_17); -lean_inc(x_15); +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 5); +lean_inc(x_16); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_18 = lean_apply_6(x_10, x_5, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_18) == 0) +x_17 = lean_apply_6(x_9, x_5, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_14, x_15, x_20); -lean_dec(x_15); -lean_dec(x_13); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_13, x_14, x_19); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_21; +return x_20; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_14, x_15, x_22); -lean_dec(x_15); -lean_dec(x_13); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } } } @@ -2542,253 +2507,253 @@ x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___sp x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_17); if (x_18 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_109 = lean_io_mono_nanos_now(x_16); -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_109, 1); -lean_inc(x_111); -lean_dec(x_109); +lean_object* x_19; lean_object* x_20; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_113 = lean_io_mono_nanos_now(x_16); +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +lean_dec(x_113); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_112 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_111); -if (lean_obj_tag(x_112) == 0) +x_116 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_115); +if (lean_obj_tag(x_116) == 0) { -uint8_t x_113; -x_113 = !lean_is_exclusive(x_112); -if (x_113 == 0) +uint8_t x_117; +x_117 = !lean_is_exclusive(x_116); +if (x_117 == 0) { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_114 = lean_ctor_get(x_112, 0); -x_115 = lean_ctor_get(x_112, 1); -x_116 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_116, 0, x_114); -x_117 = lean_io_mono_nanos_now(x_115); -x_118 = !lean_is_exclusive(x_117); -if (x_118 == 0) +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_118 = lean_ctor_get(x_116, 0); +x_119 = lean_ctor_get(x_116, 1); +x_120 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_120, 0, x_118); +x_121 = lean_io_mono_nanos_now(x_119); +x_122 = !lean_is_exclusive(x_121); +if (x_122 == 0) { -lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_122; double x_123; double x_124; double x_125; double x_126; double x_127; lean_object* x_128; lean_object* x_129; -x_119 = lean_ctor_get(x_117, 0); -x_120 = lean_ctor_get(x_117, 1); -x_121 = 0; -x_122 = lean_unsigned_to_nat(0u); -x_123 = l_Float_ofScientific(x_110, x_121, x_122); -lean_dec(x_110); -x_124 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; -x_125 = lean_float_div(x_123, x_124); -x_126 = l_Float_ofScientific(x_119, x_121, x_122); -lean_dec(x_119); -x_127 = lean_float_div(x_126, x_124); -x_128 = lean_box_float(x_125); -x_129 = lean_box_float(x_127); -lean_ctor_set(x_117, 1, x_129); -lean_ctor_set(x_117, 0, x_128); -lean_ctor_set(x_112, 1, x_117); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_120; -goto block_108; +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; double x_130; double x_131; lean_object* x_132; lean_object* x_133; +x_123 = lean_ctor_get(x_121, 0); +x_124 = lean_ctor_get(x_121, 1); +x_125 = 0; +x_126 = lean_unsigned_to_nat(0u); +x_127 = l_Float_ofScientific(x_114, x_125, x_126); +lean_dec(x_114); +x_128 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; +x_129 = lean_float_div(x_127, x_128); +x_130 = l_Float_ofScientific(x_123, x_125, x_126); +lean_dec(x_123); +x_131 = lean_float_div(x_130, x_128); +x_132 = lean_box_float(x_129); +x_133 = lean_box_float(x_131); +lean_ctor_set(x_121, 1, x_133); +lean_ctor_set(x_121, 0, x_132); +lean_ctor_set(x_116, 1, x_121); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_124; +goto block_112; } else { -lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; double x_134; double x_135; double x_136; double x_137; double x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_130 = lean_ctor_get(x_117, 0); -x_131 = lean_ctor_get(x_117, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_117); -x_132 = 0; -x_133 = lean_unsigned_to_nat(0u); -x_134 = l_Float_ofScientific(x_110, x_132, x_133); -lean_dec(x_110); -x_135 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; -x_136 = lean_float_div(x_134, x_135); -x_137 = l_Float_ofScientific(x_130, x_132, x_133); -lean_dec(x_130); -x_138 = lean_float_div(x_137, x_135); -x_139 = lean_box_float(x_136); -x_140 = lean_box_float(x_138); -x_141 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -lean_ctor_set(x_112, 1, x_141); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_131; -goto block_108; +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_134 = lean_ctor_get(x_121, 0); +x_135 = lean_ctor_get(x_121, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_121); +x_136 = 0; +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Float_ofScientific(x_114, x_136, x_137); +lean_dec(x_114); +x_139 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; +x_140 = lean_float_div(x_138, x_139); +x_141 = l_Float_ofScientific(x_134, x_136, x_137); +lean_dec(x_134); +x_142 = lean_float_div(x_141, x_139); +x_143 = lean_box_float(x_140); +x_144 = lean_box_float(x_142); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_116, 1, x_145); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_135; +goto block_112; } } else { -lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_142 = lean_ctor_get(x_112, 0); -x_143 = lean_ctor_get(x_112, 1); -lean_inc(x_143); -lean_inc(x_142); -lean_dec(x_112); -x_144 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_144, 0, x_142); -x_145 = lean_io_mono_nanos_now(x_143); -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; lean_object* x_154; double x_155; double x_156; double x_157; double x_158; double x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_146 = lean_ctor_get(x_116, 0); +x_147 = lean_ctor_get(x_116, 1); lean_inc(x_147); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - lean_ctor_release(x_145, 1); - x_148 = x_145; +lean_inc(x_146); +lean_dec(x_116); +x_148 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_148, 0, x_146); +x_149 = lean_io_mono_nanos_now(x_147); +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + lean_ctor_release(x_149, 1); + x_152 = x_149; } else { - lean_dec_ref(x_145); - x_148 = lean_box(0); + lean_dec_ref(x_149); + x_152 = lean_box(0); } -x_149 = 0; -x_150 = lean_unsigned_to_nat(0u); -x_151 = l_Float_ofScientific(x_110, x_149, x_150); -lean_dec(x_110); -x_152 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; -x_153 = lean_float_div(x_151, x_152); -x_154 = l_Float_ofScientific(x_146, x_149, x_150); -lean_dec(x_146); -x_155 = lean_float_div(x_154, x_152); -x_156 = lean_box_float(x_153); -x_157 = lean_box_float(x_155); -if (lean_is_scalar(x_148)) { - x_158 = lean_alloc_ctor(0, 2, 0); +x_153 = 0; +x_154 = lean_unsigned_to_nat(0u); +x_155 = l_Float_ofScientific(x_114, x_153, x_154); +lean_dec(x_114); +x_156 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; +x_157 = lean_float_div(x_155, x_156); +x_158 = l_Float_ofScientific(x_150, x_153, x_154); +lean_dec(x_150); +x_159 = lean_float_div(x_158, x_156); +x_160 = lean_box_float(x_157); +x_161 = lean_box_float(x_159); +if (lean_is_scalar(x_152)) { + x_162 = lean_alloc_ctor(0, 2, 0); } else { - x_158 = x_148; + x_162 = x_152; } -lean_ctor_set(x_158, 0, x_156); -lean_ctor_set(x_158, 1, x_157); -x_159 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_159, 0, x_144); -lean_ctor_set(x_159, 1, x_158); -x_19 = x_159; -x_20 = x_147; -goto block_108; +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_161); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_148); +lean_ctor_set(x_163, 1, x_162); +x_19 = x_163; +x_20 = x_151; +goto block_112; } } else { -uint8_t x_160; -x_160 = !lean_is_exclusive(x_112); -if (x_160 == 0) +uint8_t x_164; +x_164 = !lean_is_exclusive(x_116); +if (x_164 == 0) { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_161 = lean_ctor_get(x_112, 0); -x_162 = lean_ctor_get(x_112, 1); -x_163 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_163, 0, x_161); -x_164 = lean_io_mono_nanos_now(x_162); -x_165 = !lean_is_exclusive(x_164); -if (x_165 == 0) +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; +x_165 = lean_ctor_get(x_116, 0); +x_166 = lean_ctor_get(x_116, 1); +x_167 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_167, 0, x_165); +x_168 = lean_io_mono_nanos_now(x_166); +x_169 = !lean_is_exclusive(x_168); +if (x_169 == 0) { -lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; double x_170; double x_171; double x_172; double x_173; double x_174; lean_object* x_175; lean_object* x_176; -x_166 = lean_ctor_get(x_164, 0); -x_167 = lean_ctor_get(x_164, 1); -x_168 = 0; -x_169 = lean_unsigned_to_nat(0u); -x_170 = l_Float_ofScientific(x_110, x_168, x_169); -lean_dec(x_110); -x_171 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; -x_172 = lean_float_div(x_170, x_171); -x_173 = l_Float_ofScientific(x_166, x_168, x_169); -lean_dec(x_166); -x_174 = lean_float_div(x_173, x_171); -x_175 = lean_box_float(x_172); -x_176 = lean_box_float(x_174); -lean_ctor_set(x_164, 1, x_176); -lean_ctor_set(x_164, 0, x_175); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_164); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_167; -goto block_108; +lean_object* x_170; lean_object* x_171; uint8_t x_172; lean_object* x_173; double x_174; double x_175; double x_176; double x_177; double x_178; lean_object* x_179; lean_object* x_180; +x_170 = lean_ctor_get(x_168, 0); +x_171 = lean_ctor_get(x_168, 1); +x_172 = 0; +x_173 = lean_unsigned_to_nat(0u); +x_174 = l_Float_ofScientific(x_114, x_172, x_173); +lean_dec(x_114); +x_175 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; +x_176 = lean_float_div(x_174, x_175); +x_177 = l_Float_ofScientific(x_170, x_172, x_173); +lean_dec(x_170); +x_178 = lean_float_div(x_177, x_175); +x_179 = lean_box_float(x_176); +x_180 = lean_box_float(x_178); +lean_ctor_set(x_168, 1, x_180); +lean_ctor_set(x_168, 0, x_179); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_168); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_171; +goto block_112; } else { -lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_object* x_180; double x_181; double x_182; double x_183; double x_184; double x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_177 = lean_ctor_get(x_164, 0); -x_178 = lean_ctor_get(x_164, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_164); -x_179 = 0; -x_180 = lean_unsigned_to_nat(0u); -x_181 = l_Float_ofScientific(x_110, x_179, x_180); -lean_dec(x_110); -x_182 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; -x_183 = lean_float_div(x_181, x_182); -x_184 = l_Float_ofScientific(x_177, x_179, x_180); -lean_dec(x_177); -x_185 = lean_float_div(x_184, x_182); -x_186 = lean_box_float(x_183); -x_187 = lean_box_float(x_185); -x_188 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_188); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_178; -goto block_108; +lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_181 = lean_ctor_get(x_168, 0); +x_182 = lean_ctor_get(x_168, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_168); +x_183 = 0; +x_184 = lean_unsigned_to_nat(0u); +x_185 = l_Float_ofScientific(x_114, x_183, x_184); +lean_dec(x_114); +x_186 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; +x_187 = lean_float_div(x_185, x_186); +x_188 = l_Float_ofScientific(x_181, x_183, x_184); +lean_dec(x_181); +x_189 = lean_float_div(x_188, x_186); +x_190 = lean_box_float(x_187); +x_191 = lean_box_float(x_189); +x_192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_192); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_182; +goto block_112; } } else { -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_189 = lean_ctor_get(x_112, 0); -x_190 = lean_ctor_get(x_112, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_112); -x_191 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_191, 0, x_189); -x_192 = lean_io_mono_nanos_now(x_190); -x_193 = lean_ctor_get(x_192, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; lean_object* x_201; double x_202; double x_203; double x_204; double x_205; double x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_193 = lean_ctor_get(x_116, 0); +x_194 = lean_ctor_get(x_116, 1); lean_inc(x_194); -if (lean_is_exclusive(x_192)) { - lean_ctor_release(x_192, 0); - lean_ctor_release(x_192, 1); - x_195 = x_192; +lean_inc(x_193); +lean_dec(x_116); +x_195 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_195, 0, x_193); +x_196 = lean_io_mono_nanos_now(x_194); +x_197 = lean_ctor_get(x_196, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_196, 1); +lean_inc(x_198); +if (lean_is_exclusive(x_196)) { + lean_ctor_release(x_196, 0); + lean_ctor_release(x_196, 1); + x_199 = x_196; } else { - lean_dec_ref(x_192); - x_195 = lean_box(0); + lean_dec_ref(x_196); + x_199 = lean_box(0); } -x_196 = 0; -x_197 = lean_unsigned_to_nat(0u); -x_198 = l_Float_ofScientific(x_110, x_196, x_197); -lean_dec(x_110); -x_199 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; -x_200 = lean_float_div(x_198, x_199); -x_201 = l_Float_ofScientific(x_193, x_196, x_197); -lean_dec(x_193); -x_202 = lean_float_div(x_201, x_199); -x_203 = lean_box_float(x_200); -x_204 = lean_box_float(x_202); -if (lean_is_scalar(x_195)) { - x_205 = lean_alloc_ctor(0, 2, 0); +x_200 = 0; +x_201 = lean_unsigned_to_nat(0u); +x_202 = l_Float_ofScientific(x_114, x_200, x_201); +lean_dec(x_114); +x_203 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; +x_204 = lean_float_div(x_202, x_203); +x_205 = l_Float_ofScientific(x_197, x_200, x_201); +lean_dec(x_197); +x_206 = lean_float_div(x_205, x_203); +x_207 = lean_box_float(x_204); +x_208 = lean_box_float(x_206); +if (lean_is_scalar(x_199)) { + x_209 = lean_alloc_ctor(0, 2, 0); } else { - x_205 = x_195; + x_209 = x_199; } -lean_ctor_set(x_205, 0, x_203); -lean_ctor_set(x_205, 1, x_204); -x_206 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_206, 0, x_191); -lean_ctor_set(x_206, 1, x_205); -x_19 = x_206; -x_20 = x_194; -goto block_108; +lean_ctor_set(x_209, 0, x_207); +lean_ctor_set(x_209, 1, x_208); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_195); +lean_ctor_set(x_210, 1, x_209); +x_19 = x_210; +x_20 = x_198; +goto block_112; } } -block_108: +block_112: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_94; uint8_t x_95; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); x_22 = lean_ctor_get(x_19, 0); @@ -2799,17 +2764,33 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_21, 1); lean_inc(x_24); lean_dec(x_21); -x_94 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__2; -x_95 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_94); -if (x_95 == 0) +x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__2; +x_26 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_25); +if (x_26 == 0) { -uint8_t x_96; -x_96 = 0; -x_25 = x_96; -goto block_93; +if (x_6 == 0) +{ +uint8_t x_92; +x_92 = 0; +x_27 = x_92; +goto block_91; } else { +lean_object* x_93; double x_94; double x_95; lean_object* x_96; +x_93 = lean_box(0); +x_94 = lean_unbox_float(x_23); +lean_dec(x_23); +x_95 = lean_unbox_float(x_24); +lean_dec(x_24); +x_96 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_94, x_95, x_5, x_93, x_9, x_10, x_11, x_12, x_20); +return x_96; +} +} +else +{ +if (x_6 == 0) +{ double x_97; double x_98; double x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; double x_104; double x_105; double x_106; uint8_t x_107; x_97 = lean_unbox_float(x_24); x_98 = lean_unbox_float(x_23); @@ -2823,859 +2804,871 @@ lean_dec(x_101); x_105 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__4; x_106 = lean_float_div(x_104, x_105); x_107 = lean_float_decLt(x_106, x_99); -x_25 = x_107; -goto block_93; +x_27 = x_107; +goto block_91; } -block_93: +else { -if (x_6 == 0) +lean_object* x_108; double x_109; double x_110; lean_object* x_111; +x_108 = lean_box(0); +x_109 = lean_unbox_float(x_23); +lean_dec(x_23); +x_110 = lean_unbox_float(x_24); +lean_dec(x_24); +x_111 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_109, x_110, x_5, x_108, x_9, x_10, x_11, x_12, x_20); +return x_111; +} +} +block_91: { -if (x_25 == 0) +if (x_27 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_24); lean_dec(x_23); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_26 = lean_st_ref_take(x_12, x_20); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -x_29 = lean_ctor_get(x_26, 1); +x_28 = lean_st_ref_take(x_12, x_20); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -lean_dec(x_26); -x_30 = !lean_is_exclusive(x_27); -if (x_30 == 0) -{ -lean_object* x_31; uint8_t x_32; -x_31 = lean_ctor_get(x_27, 3); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_28); +x_30 = lean_ctor_get(x_29, 3); +lean_inc(x_30); +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = !lean_is_exclusive(x_29); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_33 = lean_ctor_get(x_28, 0); -x_34 = l_Lean_PersistentArray_append___rarg(x_15, x_33); +lean_object* x_33; uint8_t x_34; +x_33 = lean_ctor_get(x_29, 3); lean_dec(x_33); -lean_ctor_set(x_28, 0, x_34); -x_35 = lean_st_ref_set(x_12, x_27, x_29); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); +x_34 = !lean_is_exclusive(x_30); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_ctor_get(x_30, 0); +x_36 = l_Lean_PersistentArray_append___rarg(x_15, x_35); lean_dec(x_35); -x_37 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__2(x_22, x_9, x_10, x_11, x_12, x_36); +lean_ctor_set(x_30, 0, x_36); +x_37 = lean_st_ref_set(x_12, x_29, x_31); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +x_39 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__2(x_22, x_9, x_10, x_11, x_12, x_38); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_37) == 0) +if (lean_obj_tag(x_39) == 0) { -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -return x_37; +return x_39; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_ctor_get(x_37, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_37); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_39); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } else { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_37); -if (x_42 == 0) +uint8_t x_44; +x_44 = !lean_is_exclusive(x_39); +if (x_44 == 0) { -return x_37; +return x_39; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_37, 0); -x_44 = lean_ctor_get(x_37, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_37); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_39, 0); +x_46 = lean_ctor_get(x_39, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_39); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } } else { -uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_47 = lean_ctor_get(x_28, 0); -lean_inc(x_47); -lean_dec(x_28); -x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_47); -lean_dec(x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); -lean_ctor_set(x_27, 3, x_49); -x_50 = lean_st_ref_set(x_12, x_27, x_29); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -lean_dec(x_50); -x_52 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__2(x_22, x_9, x_10, x_11, x_12, x_51); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_22); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); +uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_49 = lean_ctor_get(x_30, 0); +lean_inc(x_49); +lean_dec(x_30); +x_50 = l_Lean_PersistentArray_append___rarg(x_15, x_49); +lean_dec(x_49); +x_51 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); +lean_ctor_set(x_29, 3, x_51); +x_52 = lean_st_ref_set(x_12, x_29, x_31); +x_53 = lean_ctor_get(x_52, 1); lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_55 = x_52; +lean_dec(x_52); +x_54 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__2(x_22, x_9, x_10, x_11, x_12, x_53); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_22); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; } else { - lean_dec_ref(x_52); - x_55 = lean_box(0); + lean_dec_ref(x_54); + x_57 = lean_box(0); } -if (lean_is_scalar(x_55)) { - x_56 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_57)) { + x_58 = lean_alloc_ctor(0, 2, 0); } else { - x_56 = x_55; + x_58 = x_57; } -lean_ctor_set(x_56, 0, x_53); -lean_ctor_set(x_56, 1, x_54); -return x_56; +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_56); +return x_58; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_52, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_52, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_59 = x_52; +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_54, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_54, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_61 = x_54; } else { - lean_dec_ref(x_52); - x_59 = lean_box(0); + lean_dec_ref(x_54); + x_61 = lean_box(0); } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(1, 2, 0); } else { - x_60 = x_59; + x_62 = x_61; } -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_58); -return x_60; +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; } } } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_61 = lean_ctor_get(x_27, 0); -x_62 = lean_ctor_get(x_27, 1); -x_63 = lean_ctor_get(x_27, 2); -x_64 = lean_ctor_get(x_27, 4); -x_65 = lean_ctor_get(x_27, 5); -x_66 = lean_ctor_get(x_27, 6); -x_67 = lean_ctor_get(x_27, 7); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_63 = lean_ctor_get(x_29, 0); +x_64 = lean_ctor_get(x_29, 1); +x_65 = lean_ctor_get(x_29, 2); +x_66 = lean_ctor_get(x_29, 4); +x_67 = lean_ctor_get(x_29, 5); +x_68 = lean_ctor_get(x_29, 6); +x_69 = lean_ctor_get(x_29, 7); +lean_inc(x_69); +lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_27); -x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_69 = lean_ctor_get(x_28, 0); -lean_inc(x_69); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - x_70 = x_28; +lean_dec(x_29); +x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_71 = lean_ctor_get(x_30, 0); +lean_inc(x_71); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + x_72 = x_30; } else { - lean_dec_ref(x_28); - x_70 = lean_box(0); + lean_dec_ref(x_30); + x_72 = lean_box(0); } -x_71 = l_Lean_PersistentArray_append___rarg(x_15, x_69); -lean_dec(x_69); -if (lean_is_scalar(x_70)) { - x_72 = lean_alloc_ctor(0, 1, 8); +x_73 = l_Lean_PersistentArray_append___rarg(x_15, x_71); +lean_dec(x_71); +if (lean_is_scalar(x_72)) { + x_74 = lean_alloc_ctor(0, 1, 8); } else { - x_72 = x_70; + x_74 = x_72; } -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); -x_73 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_73, 0, x_61); -lean_ctor_set(x_73, 1, x_62); -lean_ctor_set(x_73, 2, x_63); -lean_ctor_set(x_73, 3, x_72); -lean_ctor_set(x_73, 4, x_64); -lean_ctor_set(x_73, 5, x_65); -lean_ctor_set(x_73, 6, x_66); -lean_ctor_set(x_73, 7, x_67); -x_74 = lean_st_ref_set(x_12, x_73, x_29); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_76 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__2(x_22, x_9, x_10, x_11, x_12, x_75); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); +x_75 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_64); +lean_ctor_set(x_75, 2, x_65); +lean_ctor_set(x_75, 3, x_74); +lean_ctor_set(x_75, 4, x_66); +lean_ctor_set(x_75, 5, x_67); +lean_ctor_set(x_75, 6, x_68); +lean_ctor_set(x_75, 7, x_69); +x_76 = lean_st_ref_set(x_12, x_75, x_31); +x_77 = lean_ctor_get(x_76, 1); +lean_inc(x_77); +lean_dec(x_76); +x_78 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__2(x_22, x_9, x_10, x_11, x_12, x_77); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_76) == 0) +if (lean_obj_tag(x_78) == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_76, 0); -lean_inc(x_77); -x_78 = lean_ctor_get(x_76, 1); -lean_inc(x_78); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_79 = x_76; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_81 = x_78; } else { - lean_dec_ref(x_76); - x_79 = lean_box(0); + lean_dec_ref(x_78); + x_81 = lean_box(0); } -if (lean_is_scalar(x_79)) { - x_80 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(0, 2, 0); } else { - x_80 = x_79; + x_82 = x_81; } -lean_ctor_set(x_80, 0, x_77); -lean_ctor_set(x_80, 1, x_78); -return x_80; +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_80); +return x_82; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_81 = lean_ctor_get(x_76, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_76, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_83 = x_76; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_83 = lean_ctor_get(x_78, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_78, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_85 = x_78; } else { - lean_dec_ref(x_76); - x_83 = lean_box(0); + lean_dec_ref(x_78); + x_85 = lean_box(0); } -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); } else { - x_84 = x_83; + x_86 = x_85; } -lean_ctor_set(x_84, 0, x_81); -lean_ctor_set(x_84, 1, x_82); -return x_84; +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; } } } else { -lean_object* x_85; double x_86; double x_87; lean_object* x_88; -x_85 = lean_box(0); -x_86 = lean_unbox_float(x_23); +lean_object* x_87; double x_88; double x_89; lean_object* x_90; +x_87 = lean_box(0); +x_88 = lean_unbox_float(x_23); lean_dec(x_23); -x_87 = lean_unbox_float(x_24); +x_89 = lean_unbox_float(x_24); lean_dec(x_24); -x_88 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_86, x_87, x_5, x_85, x_9, x_10, x_11, x_12, x_20); -return x_88; -} -} -else -{ -lean_object* x_89; double x_90; double x_91; lean_object* x_92; -x_89 = lean_box(0); -x_90 = lean_unbox_float(x_23); -lean_dec(x_23); -x_91 = lean_unbox_float(x_24); -lean_dec(x_24); -x_92 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_20); -return x_92; +x_90 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_20); +return x_90; } } } } else { -lean_object* x_207; lean_object* x_208; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_16); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_211; lean_object* x_212; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_16); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_207 = x_336; -x_208 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_211 = x_344; +x_212 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_207 = x_374; -x_208 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_282; uint8_t x_283; -x_209 = lean_ctor_get(x_207, 1); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 0); -lean_inc(x_210); -lean_dec(x_207); -x_211 = lean_ctor_get(x_209, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 1); -lean_inc(x_212); -lean_dec(x_209); -x_282 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_213 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_212); -x_286 = lean_unbox_float(x_211); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_213 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_211 = x_382; +x_212 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; uint8_t x_219; +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 0); +lean_inc(x_214); +lean_dec(x_211); +x_215 = lean_ctor_get(x_213, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 1); +lean_inc(x_216); +lean_dec(x_213); +x_217 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__2; +x_218 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_217); +if (x_218 == 0) { if (x_6 == 0) { -if (x_213 == 0) +uint8_t x_284; +x_284 = 0; +x_219 = x_284; +goto block_283; +} +else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; -lean_dec(x_212); -lean_dec(x_211); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_215); +lean_dec(x_215); +x_287 = lean_unbox_float(x_216); +lean_dec(x_216); +x_288 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_212); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_216); +x_290 = lean_unbox_float(x_215); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_219 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_215); +lean_dec(x_215); +x_300 = lean_unbox_float(x_216); +lean_dec(x_216); +x_301 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_212); +return x_301; +} +} +block_283: +{ +if (x_219 == 0) +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; +lean_dec(x_216); +lean_dec(x_215); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_214 = lean_st_ref_take(x_12, x_208); -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_215, 3); -lean_inc(x_216); -x_217 = lean_ctor_get(x_214, 1); -lean_inc(x_217); -lean_dec(x_214); -x_218 = !lean_is_exclusive(x_215); -if (x_218 == 0) +x_220 = lean_st_ref_take(x_12, x_212); +x_221 = lean_ctor_get(x_220, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_221, 3); +lean_inc(x_222); +x_223 = lean_ctor_get(x_220, 1); +lean_inc(x_223); +lean_dec(x_220); +x_224 = !lean_is_exclusive(x_221); +if (x_224 == 0) { -lean_object* x_219; uint8_t x_220; -x_219 = lean_ctor_get(x_215, 3); -lean_dec(x_219); -x_220 = !lean_is_exclusive(x_216); -if (x_220 == 0) -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_221 = lean_ctor_get(x_216, 0); -x_222 = l_Lean_PersistentArray_append___rarg(x_15, x_221); -lean_dec(x_221); -lean_ctor_set(x_216, 0, x_222); -x_223 = lean_st_ref_set(x_12, x_215, x_217); -x_224 = lean_ctor_get(x_223, 1); -lean_inc(x_224); -lean_dec(x_223); -x_225 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__2(x_210, x_9, x_10, x_11, x_12, x_224); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_225) == 0) -{ -uint8_t x_226; -x_226 = !lean_is_exclusive(x_225); +lean_object* x_225; uint8_t x_226; +x_225 = lean_ctor_get(x_221, 3); +lean_dec(x_225); +x_226 = !lean_is_exclusive(x_222); if (x_226 == 0) { -return x_225; -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; -x_227 = lean_ctor_get(x_225, 0); -x_228 = lean_ctor_get(x_225, 1); -lean_inc(x_228); -lean_inc(x_227); -lean_dec(x_225); -x_229 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_229, 0, x_227); -lean_ctor_set(x_229, 1, x_228); -return x_229; -} -} -else -{ -uint8_t x_230; -x_230 = !lean_is_exclusive(x_225); -if (x_230 == 0) -{ -return x_225; -} -else -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_225, 0); -x_232 = lean_ctor_get(x_225, 1); -lean_inc(x_232); -lean_inc(x_231); -lean_dec(x_225); -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_231); -lean_ctor_set(x_233, 1, x_232); -return x_233; -} -} -} -else -{ -uint64_t x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_234 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_235 = lean_ctor_get(x_216, 0); -lean_inc(x_235); -lean_dec(x_216); -x_236 = l_Lean_PersistentArray_append___rarg(x_15, x_235); -lean_dec(x_235); -x_237 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_237, 0, x_236); -lean_ctor_set_uint64(x_237, sizeof(void*)*1, x_234); -lean_ctor_set(x_215, 3, x_237); -x_238 = lean_st_ref_set(x_12, x_215, x_217); -x_239 = lean_ctor_get(x_238, 1); -lean_inc(x_239); -lean_dec(x_238); -x_240 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__2(x_210, x_9, x_10, x_11, x_12, x_239); +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_227 = lean_ctor_get(x_222, 0); +x_228 = l_Lean_PersistentArray_append___rarg(x_15, x_227); +lean_dec(x_227); +lean_ctor_set(x_222, 0, x_228); +x_229 = lean_st_ref_set(x_12, x_221, x_223); +x_230 = lean_ctor_get(x_229, 1); +lean_inc(x_230); +lean_dec(x_229); +x_231 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__2(x_214, x_9, x_10, x_11, x_12, x_230); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_240) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_231) == 0) { -lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; -x_241 = lean_ctor_get(x_240, 0); +uint8_t x_232; +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +return x_231; +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_231, 0); +x_234 = lean_ctor_get(x_231, 1); +lean_inc(x_234); +lean_inc(x_233); +lean_dec(x_231); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +return x_235; +} +} +else +{ +uint8_t x_236; +x_236 = !lean_is_exclusive(x_231); +if (x_236 == 0) +{ +return x_231; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_231, 0); +x_238 = lean_ctor_get(x_231, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_231); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} +} +} +else +{ +uint64_t x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_240 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_241 = lean_ctor_get(x_222, 0); lean_inc(x_241); -x_242 = lean_ctor_get(x_240, 1); -lean_inc(x_242); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_243 = x_240; -} else { - lean_dec_ref(x_240); - x_243 = lean_box(0); -} -if (lean_is_scalar(x_243)) { - x_244 = lean_alloc_ctor(0, 2, 0); -} else { - x_244 = x_243; -} -lean_ctor_set(x_244, 0, x_241); -lean_ctor_set(x_244, 1, x_242); -return x_244; -} -else -{ -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_245 = lean_ctor_get(x_240, 0); +lean_dec(x_222); +x_242 = l_Lean_PersistentArray_append___rarg(x_15, x_241); +lean_dec(x_241); +x_243 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set_uint64(x_243, sizeof(void*)*1, x_240); +lean_ctor_set(x_221, 3, x_243); +x_244 = lean_st_ref_set(x_12, x_221, x_223); +x_245 = lean_ctor_get(x_244, 1); lean_inc(x_245); -x_246 = lean_ctor_get(x_240, 1); -lean_inc(x_246); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_247 = x_240; -} else { - lean_dec_ref(x_240); - x_247 = lean_box(0); -} -if (lean_is_scalar(x_247)) { - x_248 = lean_alloc_ctor(1, 2, 0); -} else { - x_248 = x_247; -} -lean_ctor_set(x_248, 0, x_245); -lean_ctor_set(x_248, 1, x_246); -return x_248; -} -} -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_249 = lean_ctor_get(x_215, 0); -x_250 = lean_ctor_get(x_215, 1); -x_251 = lean_ctor_get(x_215, 2); -x_252 = lean_ctor_get(x_215, 4); -x_253 = lean_ctor_get(x_215, 5); -x_254 = lean_ctor_get(x_215, 6); -x_255 = lean_ctor_get(x_215, 7); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_dec(x_215); -x_256 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_257 = lean_ctor_get(x_216, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_216)) { - lean_ctor_release(x_216, 0); - x_258 = x_216; -} else { - lean_dec_ref(x_216); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_15, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_261, 0, x_249); -lean_ctor_set(x_261, 1, x_250); -lean_ctor_set(x_261, 2, x_251); -lean_ctor_set(x_261, 3, x_260); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_255); -x_262 = lean_st_ref_set(x_12, x_261, x_217); -x_263 = lean_ctor_get(x_262, 1); -lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__2(x_210, x_9, x_10, x_11, x_12, x_263); +lean_dec(x_244); +x_246 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__2(x_214, x_9, x_10, x_11, x_12, x_245); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_246) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_247 = lean_ctor_get(x_246, 0); +lean_inc(x_247); +x_248 = lean_ctor_get(x_246, 1); +lean_inc(x_248); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_249 = x_246; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_246); + x_249 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_249)) { + x_250 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_250 = x_249; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_250, 0, x_247); +lean_ctor_set(x_250, 1, x_248); +return x_250; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_251 = lean_ctor_get(x_246, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_246, 1); +lean_inc(x_252); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_253 = x_246; +} else { + lean_dec_ref(x_246); + x_253 = lean_box(0); +} +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(1, 2, 0); +} else { + x_254 = x_253; +} +lean_ctor_set(x_254, 0, x_251); +lean_ctor_set(x_254, 1, x_252); +return x_254; +} +} +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_255 = lean_ctor_get(x_221, 0); +x_256 = lean_ctor_get(x_221, 1); +x_257 = lean_ctor_get(x_221, 2); +x_258 = lean_ctor_get(x_221, 4); +x_259 = lean_ctor_get(x_221, 5); +x_260 = lean_ctor_get(x_221, 6); +x_261 = lean_ctor_get(x_221, 7); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_221); +x_262 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_263 = lean_ctor_get(x_222, 0); +lean_inc(x_263); +if (lean_is_exclusive(x_222)) { + lean_ctor_release(x_222, 0); + x_264 = x_222; +} else { + lean_dec_ref(x_222); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_15, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_267, 0, x_255); +lean_ctor_set(x_267, 1, x_256); +lean_ctor_set(x_267, 2, x_257); +lean_ctor_set(x_267, 3, x_266); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_261); +x_268 = lean_st_ref_set(x_12, x_267, x_223); +x_269 = lean_ctor_get(x_268, 1); lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__2(x_214, x_9, x_10, x_11, x_12, x_269); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_214); +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_272 = x_271; + x_274 = x_273; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; +} else { + lean_dec_ref(x_270); + x_277 = lean_box(0); +} +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); +} else { + x_278 = x_277; +} +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_211); -lean_dec(x_211); -x_275 = lean_unbox_float(x_212); -lean_dec(x_212); -x_276 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_274, x_275, x_5, x_273, x_9, x_10, x_11, x_12, x_208); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_211); -lean_dec(x_211); -x_279 = lean_unbox_float(x_212); -lean_dec(x_212); -x_280 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_278, x_279, x_5, x_277, x_9, x_10, x_11, x_12, x_208); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_215); +lean_dec(x_215); +x_281 = lean_unbox_float(x_216); +lean_dec(x_216); +x_282 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_212); +return x_282; } } } @@ -3968,43 +3961,41 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_8); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); lean_dec(x_8); x_19 = lean_unbox_float(x_9); lean_dec(x_9); -x_20 = lean_unbox_float(x_10); -lean_dec(x_10); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_18, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_15); -lean_dec(x_13); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2(x_1, x_16, x_3, x_4, x_5, x_6, x_17, x_18, x_19, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_14); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_21; +return x_20; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_7); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); lean_dec(x_7); x_19 = lean_unbox_float(x_8); lean_dec(x_8); -x_20 = lean_unbox_float(x_9); -lean_dec(x_9); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_11); -lean_dec(x_6); -return x_21; +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3(x_1, x_16, x_3, x_4, x_5, x_17, x_18, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +return x_20; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -4772,103 +4763,78 @@ lean_dec(x_9); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -double x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_18 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_18, 0, x_1); -lean_ctor_set(x_18, 1, x_3); -lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); -lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); -lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); -x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2___closed__2; -x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_19); -if (x_20 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2___closed__1; +x_17 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_3); +lean_ctor_set_float(x_17, sizeof(void*)*2, x_16); +lean_ctor_set_float(x_17, sizeof(void*)*2 + 8, x_16); +lean_ctor_set_uint8(x_17, sizeof(void*)*2 + 16, x_2); +x_18 = lean_box(0); +x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__1(x_4, x_5, x_10, x_6, x_17, x_18, x_11, x_12, x_13, x_14, x_15); +return x_19; +} +else { -lean_object* x_21; lean_object* x_22; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); x_21 = lean_box(0); -x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_18, x_21, x_12, x_13, x_14, x_15, x_16); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15); return x_22; } -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_18); -x_23 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_3); -lean_ctor_set_float(x_23, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); -x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_23, x_24, x_12, x_13, x_14, x_15, x_16); -return x_25; } } -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_18); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16); -return x_28; -} -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 5); -lean_inc(x_17); -lean_inc(x_15); +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 5); +lean_inc(x_16); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_18 = lean_apply_6(x_10, x_5, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_18) == 0) +x_17 = lean_apply_6(x_9, x_5, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_14, x_15, x_20); -lean_dec(x_15); -lean_dec(x_13); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_13, x_14, x_19); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_21; +return x_20; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_14, x_15, x_22); -lean_dec(x_15); -lean_dec(x_13); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } } } @@ -4886,253 +4852,253 @@ x_17 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___sp x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_17); if (x_18 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_109 = lean_io_mono_nanos_now(x_16); -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_109, 1); -lean_inc(x_111); -lean_dec(x_109); +lean_object* x_19; lean_object* x_20; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_113 = lean_io_mono_nanos_now(x_16); +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +lean_dec(x_113); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_112 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_111); -if (lean_obj_tag(x_112) == 0) +x_116 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_115); +if (lean_obj_tag(x_116) == 0) { -uint8_t x_113; -x_113 = !lean_is_exclusive(x_112); -if (x_113 == 0) +uint8_t x_117; +x_117 = !lean_is_exclusive(x_116); +if (x_117 == 0) { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_114 = lean_ctor_get(x_112, 0); -x_115 = lean_ctor_get(x_112, 1); -x_116 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_116, 0, x_114); -x_117 = lean_io_mono_nanos_now(x_115); -x_118 = !lean_is_exclusive(x_117); -if (x_118 == 0) +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_118 = lean_ctor_get(x_116, 0); +x_119 = lean_ctor_get(x_116, 1); +x_120 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_120, 0, x_118); +x_121 = lean_io_mono_nanos_now(x_119); +x_122 = !lean_is_exclusive(x_121); +if (x_122 == 0) { -lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_122; double x_123; double x_124; double x_125; double x_126; double x_127; lean_object* x_128; lean_object* x_129; -x_119 = lean_ctor_get(x_117, 0); -x_120 = lean_ctor_get(x_117, 1); -x_121 = 0; -x_122 = lean_unsigned_to_nat(0u); -x_123 = l_Float_ofScientific(x_110, x_121, x_122); -lean_dec(x_110); -x_124 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; -x_125 = lean_float_div(x_123, x_124); -x_126 = l_Float_ofScientific(x_119, x_121, x_122); -lean_dec(x_119); -x_127 = lean_float_div(x_126, x_124); -x_128 = lean_box_float(x_125); -x_129 = lean_box_float(x_127); -lean_ctor_set(x_117, 1, x_129); -lean_ctor_set(x_117, 0, x_128); -lean_ctor_set(x_112, 1, x_117); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_120; -goto block_108; +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; double x_130; double x_131; lean_object* x_132; lean_object* x_133; +x_123 = lean_ctor_get(x_121, 0); +x_124 = lean_ctor_get(x_121, 1); +x_125 = 0; +x_126 = lean_unsigned_to_nat(0u); +x_127 = l_Float_ofScientific(x_114, x_125, x_126); +lean_dec(x_114); +x_128 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; +x_129 = lean_float_div(x_127, x_128); +x_130 = l_Float_ofScientific(x_123, x_125, x_126); +lean_dec(x_123); +x_131 = lean_float_div(x_130, x_128); +x_132 = lean_box_float(x_129); +x_133 = lean_box_float(x_131); +lean_ctor_set(x_121, 1, x_133); +lean_ctor_set(x_121, 0, x_132); +lean_ctor_set(x_116, 1, x_121); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_124; +goto block_112; } else { -lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; double x_134; double x_135; double x_136; double x_137; double x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_130 = lean_ctor_get(x_117, 0); -x_131 = lean_ctor_get(x_117, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_117); -x_132 = 0; -x_133 = lean_unsigned_to_nat(0u); -x_134 = l_Float_ofScientific(x_110, x_132, x_133); -lean_dec(x_110); -x_135 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; -x_136 = lean_float_div(x_134, x_135); -x_137 = l_Float_ofScientific(x_130, x_132, x_133); -lean_dec(x_130); -x_138 = lean_float_div(x_137, x_135); -x_139 = lean_box_float(x_136); -x_140 = lean_box_float(x_138); -x_141 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -lean_ctor_set(x_112, 1, x_141); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_131; -goto block_108; +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_134 = lean_ctor_get(x_121, 0); +x_135 = lean_ctor_get(x_121, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_121); +x_136 = 0; +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Float_ofScientific(x_114, x_136, x_137); +lean_dec(x_114); +x_139 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; +x_140 = lean_float_div(x_138, x_139); +x_141 = l_Float_ofScientific(x_134, x_136, x_137); +lean_dec(x_134); +x_142 = lean_float_div(x_141, x_139); +x_143 = lean_box_float(x_140); +x_144 = lean_box_float(x_142); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_116, 1, x_145); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_135; +goto block_112; } } else { -lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_142 = lean_ctor_get(x_112, 0); -x_143 = lean_ctor_get(x_112, 1); -lean_inc(x_143); -lean_inc(x_142); -lean_dec(x_112); -x_144 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_144, 0, x_142); -x_145 = lean_io_mono_nanos_now(x_143); -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; lean_object* x_154; double x_155; double x_156; double x_157; double x_158; double x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_146 = lean_ctor_get(x_116, 0); +x_147 = lean_ctor_get(x_116, 1); lean_inc(x_147); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - lean_ctor_release(x_145, 1); - x_148 = x_145; +lean_inc(x_146); +lean_dec(x_116); +x_148 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_148, 0, x_146); +x_149 = lean_io_mono_nanos_now(x_147); +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + lean_ctor_release(x_149, 1); + x_152 = x_149; } else { - lean_dec_ref(x_145); - x_148 = lean_box(0); + lean_dec_ref(x_149); + x_152 = lean_box(0); } -x_149 = 0; -x_150 = lean_unsigned_to_nat(0u); -x_151 = l_Float_ofScientific(x_110, x_149, x_150); -lean_dec(x_110); -x_152 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; -x_153 = lean_float_div(x_151, x_152); -x_154 = l_Float_ofScientific(x_146, x_149, x_150); -lean_dec(x_146); -x_155 = lean_float_div(x_154, x_152); -x_156 = lean_box_float(x_153); -x_157 = lean_box_float(x_155); -if (lean_is_scalar(x_148)) { - x_158 = lean_alloc_ctor(0, 2, 0); +x_153 = 0; +x_154 = lean_unsigned_to_nat(0u); +x_155 = l_Float_ofScientific(x_114, x_153, x_154); +lean_dec(x_114); +x_156 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; +x_157 = lean_float_div(x_155, x_156); +x_158 = l_Float_ofScientific(x_150, x_153, x_154); +lean_dec(x_150); +x_159 = lean_float_div(x_158, x_156); +x_160 = lean_box_float(x_157); +x_161 = lean_box_float(x_159); +if (lean_is_scalar(x_152)) { + x_162 = lean_alloc_ctor(0, 2, 0); } else { - x_158 = x_148; + x_162 = x_152; } -lean_ctor_set(x_158, 0, x_156); -lean_ctor_set(x_158, 1, x_157); -x_159 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_159, 0, x_144); -lean_ctor_set(x_159, 1, x_158); -x_19 = x_159; -x_20 = x_147; -goto block_108; +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_161); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_148); +lean_ctor_set(x_163, 1, x_162); +x_19 = x_163; +x_20 = x_151; +goto block_112; } } else { -uint8_t x_160; -x_160 = !lean_is_exclusive(x_112); -if (x_160 == 0) +uint8_t x_164; +x_164 = !lean_is_exclusive(x_116); +if (x_164 == 0) { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_161 = lean_ctor_get(x_112, 0); -x_162 = lean_ctor_get(x_112, 1); -x_163 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_163, 0, x_161); -x_164 = lean_io_mono_nanos_now(x_162); -x_165 = !lean_is_exclusive(x_164); -if (x_165 == 0) +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; +x_165 = lean_ctor_get(x_116, 0); +x_166 = lean_ctor_get(x_116, 1); +x_167 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_167, 0, x_165); +x_168 = lean_io_mono_nanos_now(x_166); +x_169 = !lean_is_exclusive(x_168); +if (x_169 == 0) { -lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; double x_170; double x_171; double x_172; double x_173; double x_174; lean_object* x_175; lean_object* x_176; -x_166 = lean_ctor_get(x_164, 0); -x_167 = lean_ctor_get(x_164, 1); -x_168 = 0; -x_169 = lean_unsigned_to_nat(0u); -x_170 = l_Float_ofScientific(x_110, x_168, x_169); -lean_dec(x_110); -x_171 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; -x_172 = lean_float_div(x_170, x_171); -x_173 = l_Float_ofScientific(x_166, x_168, x_169); -lean_dec(x_166); -x_174 = lean_float_div(x_173, x_171); -x_175 = lean_box_float(x_172); -x_176 = lean_box_float(x_174); -lean_ctor_set(x_164, 1, x_176); -lean_ctor_set(x_164, 0, x_175); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_164); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_167; -goto block_108; +lean_object* x_170; lean_object* x_171; uint8_t x_172; lean_object* x_173; double x_174; double x_175; double x_176; double x_177; double x_178; lean_object* x_179; lean_object* x_180; +x_170 = lean_ctor_get(x_168, 0); +x_171 = lean_ctor_get(x_168, 1); +x_172 = 0; +x_173 = lean_unsigned_to_nat(0u); +x_174 = l_Float_ofScientific(x_114, x_172, x_173); +lean_dec(x_114); +x_175 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; +x_176 = lean_float_div(x_174, x_175); +x_177 = l_Float_ofScientific(x_170, x_172, x_173); +lean_dec(x_170); +x_178 = lean_float_div(x_177, x_175); +x_179 = lean_box_float(x_176); +x_180 = lean_box_float(x_178); +lean_ctor_set(x_168, 1, x_180); +lean_ctor_set(x_168, 0, x_179); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_168); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_171; +goto block_112; } else { -lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_object* x_180; double x_181; double x_182; double x_183; double x_184; double x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_177 = lean_ctor_get(x_164, 0); -x_178 = lean_ctor_get(x_164, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_164); -x_179 = 0; -x_180 = lean_unsigned_to_nat(0u); -x_181 = l_Float_ofScientific(x_110, x_179, x_180); -lean_dec(x_110); -x_182 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; -x_183 = lean_float_div(x_181, x_182); -x_184 = l_Float_ofScientific(x_177, x_179, x_180); -lean_dec(x_177); -x_185 = lean_float_div(x_184, x_182); -x_186 = lean_box_float(x_183); -x_187 = lean_box_float(x_185); -x_188 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_188); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_178; -goto block_108; +lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_181 = lean_ctor_get(x_168, 0); +x_182 = lean_ctor_get(x_168, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_168); +x_183 = 0; +x_184 = lean_unsigned_to_nat(0u); +x_185 = l_Float_ofScientific(x_114, x_183, x_184); +lean_dec(x_114); +x_186 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; +x_187 = lean_float_div(x_185, x_186); +x_188 = l_Float_ofScientific(x_181, x_183, x_184); +lean_dec(x_181); +x_189 = lean_float_div(x_188, x_186); +x_190 = lean_box_float(x_187); +x_191 = lean_box_float(x_189); +x_192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_192); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_182; +goto block_112; } } else { -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_189 = lean_ctor_get(x_112, 0); -x_190 = lean_ctor_get(x_112, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_112); -x_191 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_191, 0, x_189); -x_192 = lean_io_mono_nanos_now(x_190); -x_193 = lean_ctor_get(x_192, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; lean_object* x_201; double x_202; double x_203; double x_204; double x_205; double x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_193 = lean_ctor_get(x_116, 0); +x_194 = lean_ctor_get(x_116, 1); lean_inc(x_194); -if (lean_is_exclusive(x_192)) { - lean_ctor_release(x_192, 0); - lean_ctor_release(x_192, 1); - x_195 = x_192; +lean_inc(x_193); +lean_dec(x_116); +x_195 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_195, 0, x_193); +x_196 = lean_io_mono_nanos_now(x_194); +x_197 = lean_ctor_get(x_196, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_196, 1); +lean_inc(x_198); +if (lean_is_exclusive(x_196)) { + lean_ctor_release(x_196, 0); + lean_ctor_release(x_196, 1); + x_199 = x_196; } else { - lean_dec_ref(x_192); - x_195 = lean_box(0); + lean_dec_ref(x_196); + x_199 = lean_box(0); } -x_196 = 0; -x_197 = lean_unsigned_to_nat(0u); -x_198 = l_Float_ofScientific(x_110, x_196, x_197); -lean_dec(x_110); -x_199 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; -x_200 = lean_float_div(x_198, x_199); -x_201 = l_Float_ofScientific(x_193, x_196, x_197); -lean_dec(x_193); -x_202 = lean_float_div(x_201, x_199); -x_203 = lean_box_float(x_200); -x_204 = lean_box_float(x_202); -if (lean_is_scalar(x_195)) { - x_205 = lean_alloc_ctor(0, 2, 0); +x_200 = 0; +x_201 = lean_unsigned_to_nat(0u); +x_202 = l_Float_ofScientific(x_114, x_200, x_201); +lean_dec(x_114); +x_203 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; +x_204 = lean_float_div(x_202, x_203); +x_205 = l_Float_ofScientific(x_197, x_200, x_201); +lean_dec(x_197); +x_206 = lean_float_div(x_205, x_203); +x_207 = lean_box_float(x_204); +x_208 = lean_box_float(x_206); +if (lean_is_scalar(x_199)) { + x_209 = lean_alloc_ctor(0, 2, 0); } else { - x_205 = x_195; + x_209 = x_199; } -lean_ctor_set(x_205, 0, x_203); -lean_ctor_set(x_205, 1, x_204); -x_206 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_206, 0, x_191); -lean_ctor_set(x_206, 1, x_205); -x_19 = x_206; -x_20 = x_194; -goto block_108; +lean_ctor_set(x_209, 0, x_207); +lean_ctor_set(x_209, 1, x_208); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_195); +lean_ctor_set(x_210, 1, x_209); +x_19 = x_210; +x_20 = x_198; +goto block_112; } } -block_108: +block_112: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_94; uint8_t x_95; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); x_22 = lean_ctor_get(x_19, 0); @@ -5143,17 +5109,33 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_21, 1); lean_inc(x_24); lean_dec(x_21); -x_94 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__2; -x_95 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_94); -if (x_95 == 0) +x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__2; +x_26 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_25); +if (x_26 == 0) { -uint8_t x_96; -x_96 = 0; -x_25 = x_96; -goto block_93; +if (x_6 == 0) +{ +uint8_t x_92; +x_92 = 0; +x_27 = x_92; +goto block_91; } else { +lean_object* x_93; double x_94; double x_95; lean_object* x_96; +x_93 = lean_box(0); +x_94 = lean_unbox_float(x_23); +lean_dec(x_23); +x_95 = lean_unbox_float(x_24); +lean_dec(x_24); +x_96 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_94, x_95, x_5, x_93, x_9, x_10, x_11, x_12, x_20); +return x_96; +} +} +else +{ +if (x_6 == 0) +{ double x_97; double x_98; double x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; double x_104; double x_105; double x_106; uint8_t x_107; x_97 = lean_unbox_float(x_24); x_98 = lean_unbox_float(x_23); @@ -5167,859 +5149,871 @@ lean_dec(x_101); x_105 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__4; x_106 = lean_float_div(x_104, x_105); x_107 = lean_float_decLt(x_106, x_99); -x_25 = x_107; -goto block_93; +x_27 = x_107; +goto block_91; } -block_93: +else { -if (x_6 == 0) +lean_object* x_108; double x_109; double x_110; lean_object* x_111; +x_108 = lean_box(0); +x_109 = lean_unbox_float(x_23); +lean_dec(x_23); +x_110 = lean_unbox_float(x_24); +lean_dec(x_24); +x_111 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_109, x_110, x_5, x_108, x_9, x_10, x_11, x_12, x_20); +return x_111; +} +} +block_91: { -if (x_25 == 0) +if (x_27 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_24); lean_dec(x_23); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_26 = lean_st_ref_take(x_12, x_20); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -x_29 = lean_ctor_get(x_26, 1); +x_28 = lean_st_ref_take(x_12, x_20); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -lean_dec(x_26); -x_30 = !lean_is_exclusive(x_27); -if (x_30 == 0) -{ -lean_object* x_31; uint8_t x_32; -x_31 = lean_ctor_get(x_27, 3); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_28); +x_30 = lean_ctor_get(x_29, 3); +lean_inc(x_30); +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = !lean_is_exclusive(x_29); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_33 = lean_ctor_get(x_28, 0); -x_34 = l_Lean_PersistentArray_append___rarg(x_15, x_33); +lean_object* x_33; uint8_t x_34; +x_33 = lean_ctor_get(x_29, 3); lean_dec(x_33); -lean_ctor_set(x_28, 0, x_34); -x_35 = lean_st_ref_set(x_12, x_27, x_29); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); +x_34 = !lean_is_exclusive(x_30); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_ctor_get(x_30, 0); +x_36 = l_Lean_PersistentArray_append___rarg(x_15, x_35); lean_dec(x_35); -x_37 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__3(x_22, x_9, x_10, x_11, x_12, x_36); +lean_ctor_set(x_30, 0, x_36); +x_37 = lean_st_ref_set(x_12, x_29, x_31); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +x_39 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__3(x_22, x_9, x_10, x_11, x_12, x_38); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_37) == 0) +if (lean_obj_tag(x_39) == 0) { -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -return x_37; +return x_39; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_ctor_get(x_37, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_37); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_39); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } else { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_37); -if (x_42 == 0) +uint8_t x_44; +x_44 = !lean_is_exclusive(x_39); +if (x_44 == 0) { -return x_37; +return x_39; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_37, 0); -x_44 = lean_ctor_get(x_37, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_37); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_39, 0); +x_46 = lean_ctor_get(x_39, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_39); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } } else { -uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_47 = lean_ctor_get(x_28, 0); -lean_inc(x_47); -lean_dec(x_28); -x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_47); -lean_dec(x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); -lean_ctor_set(x_27, 3, x_49); -x_50 = lean_st_ref_set(x_12, x_27, x_29); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -lean_dec(x_50); -x_52 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__3(x_22, x_9, x_10, x_11, x_12, x_51); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_22); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); +uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_49 = lean_ctor_get(x_30, 0); +lean_inc(x_49); +lean_dec(x_30); +x_50 = l_Lean_PersistentArray_append___rarg(x_15, x_49); +lean_dec(x_49); +x_51 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); +lean_ctor_set(x_29, 3, x_51); +x_52 = lean_st_ref_set(x_12, x_29, x_31); +x_53 = lean_ctor_get(x_52, 1); lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_55 = x_52; +lean_dec(x_52); +x_54 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__3(x_22, x_9, x_10, x_11, x_12, x_53); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_22); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; } else { - lean_dec_ref(x_52); - x_55 = lean_box(0); + lean_dec_ref(x_54); + x_57 = lean_box(0); } -if (lean_is_scalar(x_55)) { - x_56 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_57)) { + x_58 = lean_alloc_ctor(0, 2, 0); } else { - x_56 = x_55; + x_58 = x_57; } -lean_ctor_set(x_56, 0, x_53); -lean_ctor_set(x_56, 1, x_54); -return x_56; +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_56); +return x_58; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_52, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_52, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_59 = x_52; +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_54, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_54, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_61 = x_54; } else { - lean_dec_ref(x_52); - x_59 = lean_box(0); + lean_dec_ref(x_54); + x_61 = lean_box(0); } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(1, 2, 0); } else { - x_60 = x_59; + x_62 = x_61; } -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_58); -return x_60; +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; } } } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_61 = lean_ctor_get(x_27, 0); -x_62 = lean_ctor_get(x_27, 1); -x_63 = lean_ctor_get(x_27, 2); -x_64 = lean_ctor_get(x_27, 4); -x_65 = lean_ctor_get(x_27, 5); -x_66 = lean_ctor_get(x_27, 6); -x_67 = lean_ctor_get(x_27, 7); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_63 = lean_ctor_get(x_29, 0); +x_64 = lean_ctor_get(x_29, 1); +x_65 = lean_ctor_get(x_29, 2); +x_66 = lean_ctor_get(x_29, 4); +x_67 = lean_ctor_get(x_29, 5); +x_68 = lean_ctor_get(x_29, 6); +x_69 = lean_ctor_get(x_29, 7); +lean_inc(x_69); +lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_27); -x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_69 = lean_ctor_get(x_28, 0); -lean_inc(x_69); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - x_70 = x_28; +lean_dec(x_29); +x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_71 = lean_ctor_get(x_30, 0); +lean_inc(x_71); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + x_72 = x_30; } else { - lean_dec_ref(x_28); - x_70 = lean_box(0); + lean_dec_ref(x_30); + x_72 = lean_box(0); } -x_71 = l_Lean_PersistentArray_append___rarg(x_15, x_69); -lean_dec(x_69); -if (lean_is_scalar(x_70)) { - x_72 = lean_alloc_ctor(0, 1, 8); +x_73 = l_Lean_PersistentArray_append___rarg(x_15, x_71); +lean_dec(x_71); +if (lean_is_scalar(x_72)) { + x_74 = lean_alloc_ctor(0, 1, 8); } else { - x_72 = x_70; + x_74 = x_72; } -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); -x_73 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_73, 0, x_61); -lean_ctor_set(x_73, 1, x_62); -lean_ctor_set(x_73, 2, x_63); -lean_ctor_set(x_73, 3, x_72); -lean_ctor_set(x_73, 4, x_64); -lean_ctor_set(x_73, 5, x_65); -lean_ctor_set(x_73, 6, x_66); -lean_ctor_set(x_73, 7, x_67); -x_74 = lean_st_ref_set(x_12, x_73, x_29); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_76 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__3(x_22, x_9, x_10, x_11, x_12, x_75); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); +x_75 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_64); +lean_ctor_set(x_75, 2, x_65); +lean_ctor_set(x_75, 3, x_74); +lean_ctor_set(x_75, 4, x_66); +lean_ctor_set(x_75, 5, x_67); +lean_ctor_set(x_75, 6, x_68); +lean_ctor_set(x_75, 7, x_69); +x_76 = lean_st_ref_set(x_12, x_75, x_31); +x_77 = lean_ctor_get(x_76, 1); +lean_inc(x_77); +lean_dec(x_76); +x_78 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__3(x_22, x_9, x_10, x_11, x_12, x_77); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_76) == 0) +if (lean_obj_tag(x_78) == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_76, 0); -lean_inc(x_77); -x_78 = lean_ctor_get(x_76, 1); -lean_inc(x_78); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_79 = x_76; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_81 = x_78; } else { - lean_dec_ref(x_76); - x_79 = lean_box(0); + lean_dec_ref(x_78); + x_81 = lean_box(0); } -if (lean_is_scalar(x_79)) { - x_80 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(0, 2, 0); } else { - x_80 = x_79; + x_82 = x_81; } -lean_ctor_set(x_80, 0, x_77); -lean_ctor_set(x_80, 1, x_78); -return x_80; +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_80); +return x_82; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_81 = lean_ctor_get(x_76, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_76, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_83 = x_76; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_83 = lean_ctor_get(x_78, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_78, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_85 = x_78; } else { - lean_dec_ref(x_76); - x_83 = lean_box(0); + lean_dec_ref(x_78); + x_85 = lean_box(0); } -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); } else { - x_84 = x_83; + x_86 = x_85; } -lean_ctor_set(x_84, 0, x_81); -lean_ctor_set(x_84, 1, x_82); -return x_84; +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; } } } else { -lean_object* x_85; double x_86; double x_87; lean_object* x_88; -x_85 = lean_box(0); -x_86 = lean_unbox_float(x_23); +lean_object* x_87; double x_88; double x_89; lean_object* x_90; +x_87 = lean_box(0); +x_88 = lean_unbox_float(x_23); lean_dec(x_23); -x_87 = lean_unbox_float(x_24); +x_89 = lean_unbox_float(x_24); lean_dec(x_24); -x_88 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_86, x_87, x_5, x_85, x_9, x_10, x_11, x_12, x_20); -return x_88; -} -} -else -{ -lean_object* x_89; double x_90; double x_91; lean_object* x_92; -x_89 = lean_box(0); -x_90 = lean_unbox_float(x_23); -lean_dec(x_23); -x_91 = lean_unbox_float(x_24); -lean_dec(x_24); -x_92 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_20); -return x_92; +x_90 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_20); +return x_90; } } } } else { -lean_object* x_207; lean_object* x_208; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_16); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_211; lean_object* x_212; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_16); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_207 = x_336; -x_208 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_211 = x_344; +x_212 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_207 = x_374; -x_208 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_282; uint8_t x_283; -x_209 = lean_ctor_get(x_207, 1); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 0); -lean_inc(x_210); -lean_dec(x_207); -x_211 = lean_ctor_get(x_209, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 1); -lean_inc(x_212); -lean_dec(x_209); -x_282 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_213 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_212); -x_286 = lean_unbox_float(x_211); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_213 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_211 = x_382; +x_212 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; uint8_t x_219; +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 0); +lean_inc(x_214); +lean_dec(x_211); +x_215 = lean_ctor_get(x_213, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 1); +lean_inc(x_216); +lean_dec(x_213); +x_217 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__2; +x_218 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_217); +if (x_218 == 0) { if (x_6 == 0) { -if (x_213 == 0) +uint8_t x_284; +x_284 = 0; +x_219 = x_284; +goto block_283; +} +else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; -lean_dec(x_212); -lean_dec(x_211); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_215); +lean_dec(x_215); +x_287 = lean_unbox_float(x_216); +lean_dec(x_216); +x_288 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_212); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_216); +x_290 = lean_unbox_float(x_215); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_219 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_215); +lean_dec(x_215); +x_300 = lean_unbox_float(x_216); +lean_dec(x_216); +x_301 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_212); +return x_301; +} +} +block_283: +{ +if (x_219 == 0) +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; +lean_dec(x_216); +lean_dec(x_215); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_214 = lean_st_ref_take(x_12, x_208); -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_215, 3); -lean_inc(x_216); -x_217 = lean_ctor_get(x_214, 1); -lean_inc(x_217); -lean_dec(x_214); -x_218 = !lean_is_exclusive(x_215); -if (x_218 == 0) +x_220 = lean_st_ref_take(x_12, x_212); +x_221 = lean_ctor_get(x_220, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_221, 3); +lean_inc(x_222); +x_223 = lean_ctor_get(x_220, 1); +lean_inc(x_223); +lean_dec(x_220); +x_224 = !lean_is_exclusive(x_221); +if (x_224 == 0) { -lean_object* x_219; uint8_t x_220; -x_219 = lean_ctor_get(x_215, 3); -lean_dec(x_219); -x_220 = !lean_is_exclusive(x_216); -if (x_220 == 0) -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_221 = lean_ctor_get(x_216, 0); -x_222 = l_Lean_PersistentArray_append___rarg(x_15, x_221); -lean_dec(x_221); -lean_ctor_set(x_216, 0, x_222); -x_223 = lean_st_ref_set(x_12, x_215, x_217); -x_224 = lean_ctor_get(x_223, 1); -lean_inc(x_224); -lean_dec(x_223); -x_225 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__3(x_210, x_9, x_10, x_11, x_12, x_224); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_225) == 0) -{ -uint8_t x_226; -x_226 = !lean_is_exclusive(x_225); +lean_object* x_225; uint8_t x_226; +x_225 = lean_ctor_get(x_221, 3); +lean_dec(x_225); +x_226 = !lean_is_exclusive(x_222); if (x_226 == 0) { -return x_225; -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; -x_227 = lean_ctor_get(x_225, 0); -x_228 = lean_ctor_get(x_225, 1); -lean_inc(x_228); -lean_inc(x_227); -lean_dec(x_225); -x_229 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_229, 0, x_227); -lean_ctor_set(x_229, 1, x_228); -return x_229; -} -} -else -{ -uint8_t x_230; -x_230 = !lean_is_exclusive(x_225); -if (x_230 == 0) -{ -return x_225; -} -else -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_225, 0); -x_232 = lean_ctor_get(x_225, 1); -lean_inc(x_232); -lean_inc(x_231); -lean_dec(x_225); -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_231); -lean_ctor_set(x_233, 1, x_232); -return x_233; -} -} -} -else -{ -uint64_t x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_234 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_235 = lean_ctor_get(x_216, 0); -lean_inc(x_235); -lean_dec(x_216); -x_236 = l_Lean_PersistentArray_append___rarg(x_15, x_235); -lean_dec(x_235); -x_237 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_237, 0, x_236); -lean_ctor_set_uint64(x_237, sizeof(void*)*1, x_234); -lean_ctor_set(x_215, 3, x_237); -x_238 = lean_st_ref_set(x_12, x_215, x_217); -x_239 = lean_ctor_get(x_238, 1); -lean_inc(x_239); -lean_dec(x_238); -x_240 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__3(x_210, x_9, x_10, x_11, x_12, x_239); +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_227 = lean_ctor_get(x_222, 0); +x_228 = l_Lean_PersistentArray_append___rarg(x_15, x_227); +lean_dec(x_227); +lean_ctor_set(x_222, 0, x_228); +x_229 = lean_st_ref_set(x_12, x_221, x_223); +x_230 = lean_ctor_get(x_229, 1); +lean_inc(x_230); +lean_dec(x_229); +x_231 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__3(x_214, x_9, x_10, x_11, x_12, x_230); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_240) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_231) == 0) { -lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; -x_241 = lean_ctor_get(x_240, 0); +uint8_t x_232; +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +return x_231; +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_231, 0); +x_234 = lean_ctor_get(x_231, 1); +lean_inc(x_234); +lean_inc(x_233); +lean_dec(x_231); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +return x_235; +} +} +else +{ +uint8_t x_236; +x_236 = !lean_is_exclusive(x_231); +if (x_236 == 0) +{ +return x_231; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_231, 0); +x_238 = lean_ctor_get(x_231, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_231); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} +} +} +else +{ +uint64_t x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_240 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_241 = lean_ctor_get(x_222, 0); lean_inc(x_241); -x_242 = lean_ctor_get(x_240, 1); -lean_inc(x_242); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_243 = x_240; -} else { - lean_dec_ref(x_240); - x_243 = lean_box(0); -} -if (lean_is_scalar(x_243)) { - x_244 = lean_alloc_ctor(0, 2, 0); -} else { - x_244 = x_243; -} -lean_ctor_set(x_244, 0, x_241); -lean_ctor_set(x_244, 1, x_242); -return x_244; -} -else -{ -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_245 = lean_ctor_get(x_240, 0); +lean_dec(x_222); +x_242 = l_Lean_PersistentArray_append___rarg(x_15, x_241); +lean_dec(x_241); +x_243 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set_uint64(x_243, sizeof(void*)*1, x_240); +lean_ctor_set(x_221, 3, x_243); +x_244 = lean_st_ref_set(x_12, x_221, x_223); +x_245 = lean_ctor_get(x_244, 1); lean_inc(x_245); -x_246 = lean_ctor_get(x_240, 1); -lean_inc(x_246); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_247 = x_240; -} else { - lean_dec_ref(x_240); - x_247 = lean_box(0); -} -if (lean_is_scalar(x_247)) { - x_248 = lean_alloc_ctor(1, 2, 0); -} else { - x_248 = x_247; -} -lean_ctor_set(x_248, 0, x_245); -lean_ctor_set(x_248, 1, x_246); -return x_248; -} -} -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_249 = lean_ctor_get(x_215, 0); -x_250 = lean_ctor_get(x_215, 1); -x_251 = lean_ctor_get(x_215, 2); -x_252 = lean_ctor_get(x_215, 4); -x_253 = lean_ctor_get(x_215, 5); -x_254 = lean_ctor_get(x_215, 6); -x_255 = lean_ctor_get(x_215, 7); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_dec(x_215); -x_256 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_257 = lean_ctor_get(x_216, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_216)) { - lean_ctor_release(x_216, 0); - x_258 = x_216; -} else { - lean_dec_ref(x_216); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_15, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_261, 0, x_249); -lean_ctor_set(x_261, 1, x_250); -lean_ctor_set(x_261, 2, x_251); -lean_ctor_set(x_261, 3, x_260); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_255); -x_262 = lean_st_ref_set(x_12, x_261, x_217); -x_263 = lean_ctor_get(x_262, 1); -lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__3(x_210, x_9, x_10, x_11, x_12, x_263); +lean_dec(x_244); +x_246 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__3(x_214, x_9, x_10, x_11, x_12, x_245); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_246) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_247 = lean_ctor_get(x_246, 0); +lean_inc(x_247); +x_248 = lean_ctor_get(x_246, 1); +lean_inc(x_248); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_249 = x_246; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_246); + x_249 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_249)) { + x_250 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_250 = x_249; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_250, 0, x_247); +lean_ctor_set(x_250, 1, x_248); +return x_250; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_251 = lean_ctor_get(x_246, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_246, 1); +lean_inc(x_252); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_253 = x_246; +} else { + lean_dec_ref(x_246); + x_253 = lean_box(0); +} +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(1, 2, 0); +} else { + x_254 = x_253; +} +lean_ctor_set(x_254, 0, x_251); +lean_ctor_set(x_254, 1, x_252); +return x_254; +} +} +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_255 = lean_ctor_get(x_221, 0); +x_256 = lean_ctor_get(x_221, 1); +x_257 = lean_ctor_get(x_221, 2); +x_258 = lean_ctor_get(x_221, 4); +x_259 = lean_ctor_get(x_221, 5); +x_260 = lean_ctor_get(x_221, 6); +x_261 = lean_ctor_get(x_221, 7); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_221); +x_262 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_263 = lean_ctor_get(x_222, 0); +lean_inc(x_263); +if (lean_is_exclusive(x_222)) { + lean_ctor_release(x_222, 0); + x_264 = x_222; +} else { + lean_dec_ref(x_222); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_15, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_267, 0, x_255); +lean_ctor_set(x_267, 1, x_256); +lean_ctor_set(x_267, 2, x_257); +lean_ctor_set(x_267, 3, x_266); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_261); +x_268 = lean_st_ref_set(x_12, x_267, x_223); +x_269 = lean_ctor_get(x_268, 1); lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__3(x_214, x_9, x_10, x_11, x_12, x_269); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_214); +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_272 = x_271; + x_274 = x_273; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; +} else { + lean_dec_ref(x_270); + x_277 = lean_box(0); +} +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); +} else { + x_278 = x_277; +} +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_211); -lean_dec(x_211); -x_275 = lean_unbox_float(x_212); -lean_dec(x_212); -x_276 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_274, x_275, x_5, x_273, x_9, x_10, x_11, x_12, x_208); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_211); -lean_dec(x_211); -x_279 = lean_unbox_float(x_212); -lean_dec(x_212); -x_280 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_278, x_279, x_5, x_277, x_9, x_10, x_11, x_12, x_208); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_215); +lean_dec(x_215); +x_281 = lean_unbox_float(x_216); +lean_dec(x_216); +x_282 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_212); +return x_282; } } } @@ -8505,43 +8499,41 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_8); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); lean_dec(x_8); x_19 = lean_unbox_float(x_9); lean_dec(x_9); -x_20 = lean_unbox_float(x_10); -lean_dec(x_10); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_18, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_15); -lean_dec(x_13); +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__2(x_1, x_16, x_3, x_4, x_5, x_6, x_17, x_18, x_19, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_14); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_21; +return x_20; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_7); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); lean_dec(x_7); x_19 = lean_unbox_float(x_8); lean_dec(x_8); -x_20 = lean_unbox_float(x_9); -lean_dec(x_9); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__3(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_11); -lean_dec(x_6); -return x_21; +x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__3(x_1, x_16, x_3, x_4, x_5, x_17, x_18, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +return x_20; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_splittingProcedure___spec__2___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -8638,112 +8630,87 @@ lean_dec(x_12); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { _start: { -double x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; -x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_21 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_21, 0, x_1); -lean_ctor_set(x_21, 1, x_3); -lean_ctor_set_float(x_21, sizeof(void*)*2, x_20); -lean_ctor_set_float(x_21, sizeof(void*)*2 + 8, x_20); -lean_ctor_set_uint8(x_21, sizeof(void*)*2 + 16, x_2); -x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2___closed__2; -x_23 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_22); -if (x_23 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2___closed__1; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_19); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_19); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); +x_21 = lean_box(0); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +return x_22; +} +else { -lean_object* x_24; lean_object* x_25; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_23, 0, x_1); +lean_ctor_set(x_23, 1, x_3); +lean_ctor_set_float(x_23, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_21, x_24, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_23, x_24, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); return x_25; } -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_21); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); -return x_28; } } -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -lean_dec(x_21); -x_29 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_29, 0, x_1); -lean_ctor_set(x_29, 1, x_3); -lean_ctor_set_float(x_29, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_29, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_29, sizeof(void*)*2 + 16, x_2); -x_30 = lean_box(0); -x_31 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_29, x_30, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); -return x_31; -} -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { _start: { -lean_object* x_20; lean_object* x_21; -x_20 = lean_ctor_get(x_17, 5); -lean_inc(x_20); -lean_inc(x_18); +lean_object* x_19; lean_object* x_20; +x_19 = lean_ctor_get(x_16, 5); +lean_inc(x_19); lean_inc(x_17); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_21 = lean_apply_9(x_10, x_5, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); -if (lean_obj_tag(x_21) == 0) +x_20 = lean_apply_9(x_9, x_5, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +if (lean_obj_tag(x_20) == 0) { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_21, 0); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_20, 1); lean_inc(x_22); -x_23 = lean_ctor_get(x_21, 1); -lean_inc(x_23); -lean_dec(x_21); -x_24 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_20, x_5, x_6, x_7, x_8, x_9, x_22, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_23); -lean_dec(x_18); -lean_dec(x_16); +lean_dec(x_20); +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_19, x_5, x_6, x_7, x_8, x_21, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_22); +lean_dec(x_17); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_21, 1); -lean_inc(x_25); -lean_dec(x_21); -x_26 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3___closed__2; -x_27 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_20, x_5, x_6, x_7, x_8, x_9, x_26, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_25); -lean_dec(x_18); -lean_dec(x_16); +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_20, 1); +lean_inc(x_24); +lean_dec(x_20); +x_25 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3___closed__2; +x_26 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_19, x_5, x_6, x_7, x_8, x_25, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_24); +lean_dec(x_17); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_27; +return x_26; } } } @@ -8761,13 +8728,13 @@ x_20 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___sp x_21 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_20); if (x_21 == 0) { -lean_object* x_22; lean_object* x_23; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; -x_118 = lean_io_mono_nanos_now(x_19); -x_119 = lean_ctor_get(x_118, 0); -lean_inc(x_119); -x_120 = lean_ctor_get(x_118, 1); -lean_inc(x_120); -lean_dec(x_118); +lean_object* x_22; lean_object* x_23; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; +x_126 = lean_io_mono_nanos_now(x_19); +x_127 = lean_ctor_get(x_126, 0); +lean_inc(x_127); +x_128 = lean_ctor_get(x_126, 1); +lean_inc(x_128); +lean_dec(x_126); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); @@ -8775,242 +8742,242 @@ lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_121 = lean_apply_8(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_120); -if (lean_obj_tag(x_121) == 0) +x_129 = lean_apply_8(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_128); +if (lean_obj_tag(x_129) == 0) { -uint8_t x_122; -x_122 = !lean_is_exclusive(x_121); -if (x_122 == 0) +uint8_t x_130; +x_130 = !lean_is_exclusive(x_129); +if (x_130 == 0) { -lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; uint8_t x_127; -x_123 = lean_ctor_get(x_121, 0); -x_124 = lean_ctor_get(x_121, 1); -x_125 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_125, 0, x_123); -x_126 = lean_io_mono_nanos_now(x_124); -x_127 = !lean_is_exclusive(x_126); -if (x_127 == 0) +lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; uint8_t x_135; +x_131 = lean_ctor_get(x_129, 0); +x_132 = lean_ctor_get(x_129, 1); +x_133 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_133, 0, x_131); +x_134 = lean_io_mono_nanos_now(x_132); +x_135 = !lean_is_exclusive(x_134); +if (x_135 == 0) { -lean_object* x_128; lean_object* x_129; uint8_t x_130; lean_object* x_131; double x_132; double x_133; double x_134; double x_135; double x_136; lean_object* x_137; lean_object* x_138; -x_128 = lean_ctor_get(x_126, 0); -x_129 = lean_ctor_get(x_126, 1); -x_130 = 0; -x_131 = lean_unsigned_to_nat(0u); -x_132 = l_Float_ofScientific(x_119, x_130, x_131); -lean_dec(x_119); -x_133 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; -x_134 = lean_float_div(x_132, x_133); -x_135 = l_Float_ofScientific(x_128, x_130, x_131); -lean_dec(x_128); -x_136 = lean_float_div(x_135, x_133); -x_137 = lean_box_float(x_134); -x_138 = lean_box_float(x_136); -lean_ctor_set(x_126, 1, x_138); -lean_ctor_set(x_126, 0, x_137); -lean_ctor_set(x_121, 1, x_126); -lean_ctor_set(x_121, 0, x_125); -x_22 = x_121; -x_23 = x_129; -goto block_117; +lean_object* x_136; lean_object* x_137; uint8_t x_138; lean_object* x_139; double x_140; double x_141; double x_142; double x_143; double x_144; lean_object* x_145; lean_object* x_146; +x_136 = lean_ctor_get(x_134, 0); +x_137 = lean_ctor_get(x_134, 1); +x_138 = 0; +x_139 = lean_unsigned_to_nat(0u); +x_140 = l_Float_ofScientific(x_127, x_138, x_139); +lean_dec(x_127); +x_141 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; +x_142 = lean_float_div(x_140, x_141); +x_143 = l_Float_ofScientific(x_136, x_138, x_139); +lean_dec(x_136); +x_144 = lean_float_div(x_143, x_141); +x_145 = lean_box_float(x_142); +x_146 = lean_box_float(x_144); +lean_ctor_set(x_134, 1, x_146); +lean_ctor_set(x_134, 0, x_145); +lean_ctor_set(x_129, 1, x_134); +lean_ctor_set(x_129, 0, x_133); +x_22 = x_129; +x_23 = x_137; +goto block_125; } else { -lean_object* x_139; lean_object* x_140; uint8_t x_141; lean_object* x_142; double x_143; double x_144; double x_145; double x_146; double x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; -x_139 = lean_ctor_get(x_126, 0); -x_140 = lean_ctor_get(x_126, 1); -lean_inc(x_140); -lean_inc(x_139); -lean_dec(x_126); -x_141 = 0; -x_142 = lean_unsigned_to_nat(0u); -x_143 = l_Float_ofScientific(x_119, x_141, x_142); -lean_dec(x_119); -x_144 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; -x_145 = lean_float_div(x_143, x_144); -x_146 = l_Float_ofScientific(x_139, x_141, x_142); -lean_dec(x_139); -x_147 = lean_float_div(x_146, x_144); -x_148 = lean_box_float(x_145); -x_149 = lean_box_float(x_147); -x_150 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_150, 0, x_148); -lean_ctor_set(x_150, 1, x_149); -lean_ctor_set(x_121, 1, x_150); -lean_ctor_set(x_121, 0, x_125); -x_22 = x_121; -x_23 = x_140; -goto block_117; +lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; +x_147 = lean_ctor_get(x_134, 0); +x_148 = lean_ctor_get(x_134, 1); +lean_inc(x_148); +lean_inc(x_147); +lean_dec(x_134); +x_149 = 0; +x_150 = lean_unsigned_to_nat(0u); +x_151 = l_Float_ofScientific(x_127, x_149, x_150); +lean_dec(x_127); +x_152 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; +x_153 = lean_float_div(x_151, x_152); +x_154 = l_Float_ofScientific(x_147, x_149, x_150); +lean_dec(x_147); +x_155 = lean_float_div(x_154, x_152); +x_156 = lean_box_float(x_153); +x_157 = lean_box_float(x_155); +x_158 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_158, 0, x_156); +lean_ctor_set(x_158, 1, x_157); +lean_ctor_set(x_129, 1, x_158); +lean_ctor_set(x_129, 0, x_133); +x_22 = x_129; +x_23 = x_148; +goto block_125; } } else { -lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; uint8_t x_158; lean_object* x_159; double x_160; double x_161; double x_162; double x_163; double x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; -x_151 = lean_ctor_get(x_121, 0); -x_152 = lean_ctor_get(x_121, 1); -lean_inc(x_152); -lean_inc(x_151); -lean_dec(x_121); -x_153 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_153, 0, x_151); -x_154 = lean_io_mono_nanos_now(x_152); -x_155 = lean_ctor_get(x_154, 0); -lean_inc(x_155); -x_156 = lean_ctor_get(x_154, 1); -lean_inc(x_156); -if (lean_is_exclusive(x_154)) { - lean_ctor_release(x_154, 0); - lean_ctor_release(x_154, 1); - x_157 = x_154; +lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; uint8_t x_166; lean_object* x_167; double x_168; double x_169; double x_170; double x_171; double x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; +x_159 = lean_ctor_get(x_129, 0); +x_160 = lean_ctor_get(x_129, 1); +lean_inc(x_160); +lean_inc(x_159); +lean_dec(x_129); +x_161 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_161, 0, x_159); +x_162 = lean_io_mono_nanos_now(x_160); +x_163 = lean_ctor_get(x_162, 0); +lean_inc(x_163); +x_164 = lean_ctor_get(x_162, 1); +lean_inc(x_164); +if (lean_is_exclusive(x_162)) { + lean_ctor_release(x_162, 0); + lean_ctor_release(x_162, 1); + x_165 = x_162; } else { - lean_dec_ref(x_154); - x_157 = lean_box(0); + lean_dec_ref(x_162); + x_165 = lean_box(0); } -x_158 = 0; -x_159 = lean_unsigned_to_nat(0u); -x_160 = l_Float_ofScientific(x_119, x_158, x_159); -lean_dec(x_119); -x_161 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; -x_162 = lean_float_div(x_160, x_161); -x_163 = l_Float_ofScientific(x_155, x_158, x_159); -lean_dec(x_155); -x_164 = lean_float_div(x_163, x_161); -x_165 = lean_box_float(x_162); -x_166 = lean_box_float(x_164); -if (lean_is_scalar(x_157)) { - x_167 = lean_alloc_ctor(0, 2, 0); +x_166 = 0; +x_167 = lean_unsigned_to_nat(0u); +x_168 = l_Float_ofScientific(x_127, x_166, x_167); +lean_dec(x_127); +x_169 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; +x_170 = lean_float_div(x_168, x_169); +x_171 = l_Float_ofScientific(x_163, x_166, x_167); +lean_dec(x_163); +x_172 = lean_float_div(x_171, x_169); +x_173 = lean_box_float(x_170); +x_174 = lean_box_float(x_172); +if (lean_is_scalar(x_165)) { + x_175 = lean_alloc_ctor(0, 2, 0); } else { - x_167 = x_157; + x_175 = x_165; } -lean_ctor_set(x_167, 0, x_165); -lean_ctor_set(x_167, 1, x_166); -x_168 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_168, 0, x_153); -lean_ctor_set(x_168, 1, x_167); -x_22 = x_168; -x_23 = x_156; -goto block_117; +lean_ctor_set(x_175, 0, x_173); +lean_ctor_set(x_175, 1, x_174); +x_176 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_176, 0, x_161); +lean_ctor_set(x_176, 1, x_175); +x_22 = x_176; +x_23 = x_164; +goto block_125; } } else { -uint8_t x_169; -x_169 = !lean_is_exclusive(x_121); -if (x_169 == 0) +uint8_t x_177; +x_177 = !lean_is_exclusive(x_129); +if (x_177 == 0) { -lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; uint8_t x_174; -x_170 = lean_ctor_get(x_121, 0); -x_171 = lean_ctor_get(x_121, 1); -x_172 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_172, 0, x_170); -x_173 = lean_io_mono_nanos_now(x_171); -x_174 = !lean_is_exclusive(x_173); -if (x_174 == 0) +lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; uint8_t x_182; +x_178 = lean_ctor_get(x_129, 0); +x_179 = lean_ctor_get(x_129, 1); +x_180 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_180, 0, x_178); +x_181 = lean_io_mono_nanos_now(x_179); +x_182 = !lean_is_exclusive(x_181); +if (x_182 == 0) { -lean_object* x_175; lean_object* x_176; uint8_t x_177; lean_object* x_178; double x_179; double x_180; double x_181; double x_182; double x_183; lean_object* x_184; lean_object* x_185; -x_175 = lean_ctor_get(x_173, 0); -x_176 = lean_ctor_get(x_173, 1); -x_177 = 0; -x_178 = lean_unsigned_to_nat(0u); -x_179 = l_Float_ofScientific(x_119, x_177, x_178); -lean_dec(x_119); -x_180 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; -x_181 = lean_float_div(x_179, x_180); -x_182 = l_Float_ofScientific(x_175, x_177, x_178); -lean_dec(x_175); -x_183 = lean_float_div(x_182, x_180); -x_184 = lean_box_float(x_181); -x_185 = lean_box_float(x_183); -lean_ctor_set(x_173, 1, x_185); -lean_ctor_set(x_173, 0, x_184); -lean_ctor_set_tag(x_121, 0); -lean_ctor_set(x_121, 1, x_173); -lean_ctor_set(x_121, 0, x_172); -x_22 = x_121; -x_23 = x_176; -goto block_117; +lean_object* x_183; lean_object* x_184; uint8_t x_185; lean_object* x_186; double x_187; double x_188; double x_189; double x_190; double x_191; lean_object* x_192; lean_object* x_193; +x_183 = lean_ctor_get(x_181, 0); +x_184 = lean_ctor_get(x_181, 1); +x_185 = 0; +x_186 = lean_unsigned_to_nat(0u); +x_187 = l_Float_ofScientific(x_127, x_185, x_186); +lean_dec(x_127); +x_188 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; +x_189 = lean_float_div(x_187, x_188); +x_190 = l_Float_ofScientific(x_183, x_185, x_186); +lean_dec(x_183); +x_191 = lean_float_div(x_190, x_188); +x_192 = lean_box_float(x_189); +x_193 = lean_box_float(x_191); +lean_ctor_set(x_181, 1, x_193); +lean_ctor_set(x_181, 0, x_192); +lean_ctor_set_tag(x_129, 0); +lean_ctor_set(x_129, 1, x_181); +lean_ctor_set(x_129, 0, x_180); +x_22 = x_129; +x_23 = x_184; +goto block_125; } else { -lean_object* x_186; lean_object* x_187; uint8_t x_188; lean_object* x_189; double x_190; double x_191; double x_192; double x_193; double x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; -x_186 = lean_ctor_get(x_173, 0); -x_187 = lean_ctor_get(x_173, 1); -lean_inc(x_187); -lean_inc(x_186); -lean_dec(x_173); -x_188 = 0; -x_189 = lean_unsigned_to_nat(0u); -x_190 = l_Float_ofScientific(x_119, x_188, x_189); -lean_dec(x_119); -x_191 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; -x_192 = lean_float_div(x_190, x_191); -x_193 = l_Float_ofScientific(x_186, x_188, x_189); -lean_dec(x_186); -x_194 = lean_float_div(x_193, x_191); -x_195 = lean_box_float(x_192); -x_196 = lean_box_float(x_194); -x_197 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_197, 0, x_195); -lean_ctor_set(x_197, 1, x_196); -lean_ctor_set_tag(x_121, 0); -lean_ctor_set(x_121, 1, x_197); -lean_ctor_set(x_121, 0, x_172); -x_22 = x_121; -x_23 = x_187; -goto block_117; +lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; +x_194 = lean_ctor_get(x_181, 0); +x_195 = lean_ctor_get(x_181, 1); +lean_inc(x_195); +lean_inc(x_194); +lean_dec(x_181); +x_196 = 0; +x_197 = lean_unsigned_to_nat(0u); +x_198 = l_Float_ofScientific(x_127, x_196, x_197); +lean_dec(x_127); +x_199 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; +x_200 = lean_float_div(x_198, x_199); +x_201 = l_Float_ofScientific(x_194, x_196, x_197); +lean_dec(x_194); +x_202 = lean_float_div(x_201, x_199); +x_203 = lean_box_float(x_200); +x_204 = lean_box_float(x_202); +x_205 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_205, 0, x_203); +lean_ctor_set(x_205, 1, x_204); +lean_ctor_set_tag(x_129, 0); +lean_ctor_set(x_129, 1, x_205); +lean_ctor_set(x_129, 0, x_180); +x_22 = x_129; +x_23 = x_195; +goto block_125; } } else { -lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; uint8_t x_205; lean_object* x_206; double x_207; double x_208; double x_209; double x_210; double x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; -x_198 = lean_ctor_get(x_121, 0); -x_199 = lean_ctor_get(x_121, 1); -lean_inc(x_199); -lean_inc(x_198); -lean_dec(x_121); -x_200 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_200, 0, x_198); -x_201 = lean_io_mono_nanos_now(x_199); -x_202 = lean_ctor_get(x_201, 0); -lean_inc(x_202); -x_203 = lean_ctor_get(x_201, 1); -lean_inc(x_203); -if (lean_is_exclusive(x_201)) { - lean_ctor_release(x_201, 0); - lean_ctor_release(x_201, 1); - x_204 = x_201; +lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_214; double x_215; double x_216; double x_217; double x_218; double x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; +x_206 = lean_ctor_get(x_129, 0); +x_207 = lean_ctor_get(x_129, 1); +lean_inc(x_207); +lean_inc(x_206); +lean_dec(x_129); +x_208 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_208, 0, x_206); +x_209 = lean_io_mono_nanos_now(x_207); +x_210 = lean_ctor_get(x_209, 0); +lean_inc(x_210); +x_211 = lean_ctor_get(x_209, 1); +lean_inc(x_211); +if (lean_is_exclusive(x_209)) { + lean_ctor_release(x_209, 0); + lean_ctor_release(x_209, 1); + x_212 = x_209; } else { - lean_dec_ref(x_201); - x_204 = lean_box(0); + lean_dec_ref(x_209); + x_212 = lean_box(0); } -x_205 = 0; -x_206 = lean_unsigned_to_nat(0u); -x_207 = l_Float_ofScientific(x_119, x_205, x_206); -lean_dec(x_119); -x_208 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; -x_209 = lean_float_div(x_207, x_208); -x_210 = l_Float_ofScientific(x_202, x_205, x_206); -lean_dec(x_202); -x_211 = lean_float_div(x_210, x_208); -x_212 = lean_box_float(x_209); -x_213 = lean_box_float(x_211); -if (lean_is_scalar(x_204)) { - x_214 = lean_alloc_ctor(0, 2, 0); +x_213 = 0; +x_214 = lean_unsigned_to_nat(0u); +x_215 = l_Float_ofScientific(x_127, x_213, x_214); +lean_dec(x_127); +x_216 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__5; +x_217 = lean_float_div(x_215, x_216); +x_218 = l_Float_ofScientific(x_210, x_213, x_214); +lean_dec(x_210); +x_219 = lean_float_div(x_218, x_216); +x_220 = lean_box_float(x_217); +x_221 = lean_box_float(x_219); +if (lean_is_scalar(x_212)) { + x_222 = lean_alloc_ctor(0, 2, 0); } else { - x_214 = x_204; + x_222 = x_212; } -lean_ctor_set(x_214, 0, x_212); -lean_ctor_set(x_214, 1, x_213); -x_215 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_215, 0, x_200); -lean_ctor_set(x_215, 1, x_214); -x_22 = x_215; -x_23 = x_203; -goto block_117; +lean_ctor_set(x_222, 0, x_220); +lean_ctor_set(x_222, 1, x_221); +x_223 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_223, 0, x_208); +lean_ctor_set(x_223, 1, x_222); +x_22 = x_223; +x_23 = x_211; +goto block_125; } } -block_117: +block_125: { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; lean_object* x_97; uint8_t x_98; +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; uint8_t x_30; x_24 = lean_ctor_get(x_22, 1); lean_inc(x_24); x_25 = lean_ctor_get(x_22, 0); @@ -9021,14 +8988,28 @@ lean_inc(x_26); x_27 = lean_ctor_get(x_24, 1); lean_inc(x_27); lean_dec(x_24); -x_97 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__2; -x_98 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_97); -if (x_98 == 0) +x_28 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__2; +x_29 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_28); +if (x_29 == 0) { -uint8_t x_99; -x_99 = 0; -x_28 = x_99; -goto block_96; +if (x_6 == 0) +{ +uint8_t x_95; +x_95 = 0; +x_30 = x_95; +goto block_94; +} +else +{ +lean_object* x_96; double x_97; double x_98; lean_object* x_99; +x_96 = lean_box(0); +x_97 = lean_unbox_float(x_26); +lean_dec(x_26); +x_98 = lean_unbox_float(x_27); +lean_dec(x_27); +x_99 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_25, x_29, x_97, x_98, x_5, x_96, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_23); +return x_99; +} } else { @@ -9038,6 +9019,8 @@ x_101 = lean_unbox_float(x_26); x_102 = lean_float_sub(x_100, x_101); if (x_21 == 0) { +if (x_6 == 0) +{ lean_object* x_103; lean_object* x_104; uint8_t x_105; lean_object* x_106; double x_107; double x_108; double x_109; uint8_t x_110; x_103 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__3; x_104 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_103); @@ -9048,62 +9031,86 @@ lean_dec(x_104); x_108 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__4; x_109 = lean_float_div(x_107, x_108); x_110 = lean_float_decLt(x_109, x_102); -x_28 = x_110; -goto block_96; +x_30 = x_110; +goto block_94; } else { -lean_object* x_111; lean_object* x_112; uint8_t x_113; lean_object* x_114; double x_115; uint8_t x_116; -x_111 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__3; -x_112 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_111); -x_113 = 0; -x_114 = lean_unsigned_to_nat(0u); -x_115 = l_Float_ofScientific(x_112, x_113, x_114); -lean_dec(x_112); -x_116 = lean_float_decLt(x_115, x_102); -x_28 = x_116; -goto block_96; +lean_object* x_111; double x_112; double x_113; lean_object* x_114; +x_111 = lean_box(0); +x_112 = lean_unbox_float(x_26); +lean_dec(x_26); +x_113 = lean_unbox_float(x_27); +lean_dec(x_27); +x_114 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_25, x_29, x_112, x_113, x_5, x_111, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_23); +return x_114; } } -block_96: +else { if (x_6 == 0) { -if (x_28 == 0) +lean_object* x_115; lean_object* x_116; uint8_t x_117; lean_object* x_118; double x_119; uint8_t x_120; +x_115 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__3; +x_116 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_115); +x_117 = 0; +x_118 = lean_unsigned_to_nat(0u); +x_119 = l_Float_ofScientific(x_116, x_117, x_118); +lean_dec(x_116); +x_120 = lean_float_decLt(x_119, x_102); +x_30 = x_120; +goto block_94; +} +else { -lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; +lean_object* x_121; double x_122; double x_123; lean_object* x_124; +x_121 = lean_box(0); +x_122 = lean_unbox_float(x_26); +lean_dec(x_26); +x_123 = lean_unbox_float(x_27); +lean_dec(x_27); +x_124 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_25, x_29, x_122, x_123, x_5, x_121, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_23); +return x_124; +} +} +} +block_94: +{ +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; lean_dec(x_27); lean_dec(x_26); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_29 = lean_st_ref_take(x_15, x_23); -x_30 = lean_ctor_get(x_29, 0); -lean_inc(x_30); -x_31 = lean_ctor_get(x_30, 3); -lean_inc(x_31); -x_32 = lean_ctor_get(x_29, 1); +x_31 = lean_st_ref_take(x_15, x_23); +x_32 = lean_ctor_get(x_31, 0); lean_inc(x_32); -lean_dec(x_29); -x_33 = !lean_is_exclusive(x_30); -if (x_33 == 0) -{ -lean_object* x_34; uint8_t x_35; -x_34 = lean_ctor_get(x_30, 3); -lean_dec(x_34); -x_35 = !lean_is_exclusive(x_31); +x_33 = lean_ctor_get(x_32, 3); +lean_inc(x_33); +x_34 = lean_ctor_get(x_31, 1); +lean_inc(x_34); +lean_dec(x_31); +x_35 = !lean_is_exclusive(x_32); if (x_35 == 0) { -lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_36 = lean_ctor_get(x_31, 0); -x_37 = l_Lean_PersistentArray_append___rarg(x_18, x_36); +lean_object* x_36; uint8_t x_37; +x_36 = lean_ctor_get(x_32, 3); lean_dec(x_36); -lean_ctor_set(x_31, 0, x_37); -x_38 = lean_st_ref_set(x_15, x_30, x_32); -x_39 = lean_ctor_get(x_38, 1); -lean_inc(x_39); +x_37 = !lean_is_exclusive(x_33); +if (x_37 == 0) +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_38 = lean_ctor_get(x_33, 0); +x_39 = l_Lean_PersistentArray_append___rarg(x_18, x_38); lean_dec(x_38); -x_40 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_prove___spec__2(x_25, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_39); +lean_ctor_set(x_33, 0, x_39); +x_40 = lean_st_ref_set(x_15, x_32, x_34); +x_41 = lean_ctor_get(x_40, 1); +lean_inc(x_41); +lean_dec(x_40); +x_42 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_prove___spec__2(x_25, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_41); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -9112,178 +9119,178 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_25); -if (lean_obj_tag(x_40) == 0) +if (lean_obj_tag(x_42) == 0) { -uint8_t x_41; -x_41 = !lean_is_exclusive(x_40); -if (x_41 == 0) +uint8_t x_43; +x_43 = !lean_is_exclusive(x_42); +if (x_43 == 0) { -return x_40; +return x_42; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_42 = lean_ctor_get(x_40, 0); -x_43 = lean_ctor_get(x_40, 1); -lean_inc(x_43); -lean_inc(x_42); -lean_dec(x_40); -x_44 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_44, 0, x_42); -lean_ctor_set(x_44, 1, x_43); -return x_44; +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_42, 0); +x_45 = lean_ctor_get(x_42, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_42); +x_46 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; } } else { -uint8_t x_45; -x_45 = !lean_is_exclusive(x_40); -if (x_45 == 0) +uint8_t x_47; +x_47 = !lean_is_exclusive(x_42); +if (x_47 == 0) { -return x_40; +return x_42; } else { -lean_object* x_46; lean_object* x_47; lean_object* x_48; -x_46 = lean_ctor_get(x_40, 0); -x_47 = lean_ctor_get(x_40, 1); -lean_inc(x_47); -lean_inc(x_46); -lean_dec(x_40); -x_48 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_48, 0, x_46); -lean_ctor_set(x_48, 1, x_47); -return x_48; +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_42, 0); +x_49 = lean_ctor_get(x_42, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_42); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; } } } else { -uint64_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_49 = lean_ctor_get_uint64(x_31, sizeof(void*)*1); -x_50 = lean_ctor_get(x_31, 0); -lean_inc(x_50); -lean_dec(x_31); -x_51 = l_Lean_PersistentArray_append___rarg(x_18, x_50); -lean_dec(x_50); -x_52 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set_uint64(x_52, sizeof(void*)*1, x_49); -lean_ctor_set(x_30, 3, x_52); -x_53 = lean_st_ref_set(x_15, x_30, x_32); -x_54 = lean_ctor_get(x_53, 1); -lean_inc(x_54); -lean_dec(x_53); -x_55 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_prove___spec__2(x_25, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_54); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_25); -if (lean_obj_tag(x_55) == 0) -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_56 = lean_ctor_get(x_55, 0); +uint64_t x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_51 = lean_ctor_get_uint64(x_33, sizeof(void*)*1); +x_52 = lean_ctor_get(x_33, 0); +lean_inc(x_52); +lean_dec(x_33); +x_53 = l_Lean_PersistentArray_append___rarg(x_18, x_52); +lean_dec(x_52); +x_54 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_54, 0, x_53); +lean_ctor_set_uint64(x_54, sizeof(void*)*1, x_51); +lean_ctor_set(x_32, 3, x_54); +x_55 = lean_st_ref_set(x_15, x_32, x_34); +x_56 = lean_ctor_get(x_55, 1); lean_inc(x_56); -x_57 = lean_ctor_get(x_55, 1); -lean_inc(x_57); -if (lean_is_exclusive(x_55)) { - lean_ctor_release(x_55, 0); - lean_ctor_release(x_55, 1); - x_58 = x_55; +lean_dec(x_55); +x_57 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_prove___spec__2(x_25, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_56); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_25); +if (lean_obj_tag(x_57) == 0) +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_58 = lean_ctor_get(x_57, 0); +lean_inc(x_58); +x_59 = lean_ctor_get(x_57, 1); +lean_inc(x_59); +if (lean_is_exclusive(x_57)) { + lean_ctor_release(x_57, 0); + lean_ctor_release(x_57, 1); + x_60 = x_57; } else { - lean_dec_ref(x_55); - x_58 = lean_box(0); + lean_dec_ref(x_57); + x_60 = lean_box(0); } -if (lean_is_scalar(x_58)) { - x_59 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_60)) { + x_61 = lean_alloc_ctor(0, 2, 0); } else { - x_59 = x_58; + x_61 = x_60; } -lean_ctor_set(x_59, 0, x_56); -lean_ctor_set(x_59, 1, x_57); -return x_59; +lean_ctor_set(x_61, 0, x_58); +lean_ctor_set(x_61, 1, x_59); +return x_61; } else { -lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_60 = lean_ctor_get(x_55, 0); -lean_inc(x_60); -x_61 = lean_ctor_get(x_55, 1); -lean_inc(x_61); -if (lean_is_exclusive(x_55)) { - lean_ctor_release(x_55, 0); - lean_ctor_release(x_55, 1); - x_62 = x_55; +lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_62 = lean_ctor_get(x_57, 0); +lean_inc(x_62); +x_63 = lean_ctor_get(x_57, 1); +lean_inc(x_63); +if (lean_is_exclusive(x_57)) { + lean_ctor_release(x_57, 0); + lean_ctor_release(x_57, 1); + x_64 = x_57; } else { - lean_dec_ref(x_55); - x_62 = lean_box(0); + lean_dec_ref(x_57); + x_64 = lean_box(0); } -if (lean_is_scalar(x_62)) { - x_63 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_64)) { + x_65 = lean_alloc_ctor(1, 2, 0); } else { - x_63 = x_62; + x_65 = x_64; } -lean_ctor_set(x_63, 0, x_60); -lean_ctor_set(x_63, 1, x_61); -return x_63; +lean_ctor_set(x_65, 0, x_62); +lean_ctor_set(x_65, 1, x_63); +return x_65; } } } else { -lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; uint64_t x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_64 = lean_ctor_get(x_30, 0); -x_65 = lean_ctor_get(x_30, 1); -x_66 = lean_ctor_get(x_30, 2); -x_67 = lean_ctor_get(x_30, 4); -x_68 = lean_ctor_get(x_30, 5); -x_69 = lean_ctor_get(x_30, 6); -x_70 = lean_ctor_get(x_30, 7); +lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; uint64_t x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_66 = lean_ctor_get(x_32, 0); +x_67 = lean_ctor_get(x_32, 1); +x_68 = lean_ctor_get(x_32, 2); +x_69 = lean_ctor_get(x_32, 4); +x_70 = lean_ctor_get(x_32, 5); +x_71 = lean_ctor_get(x_32, 6); +x_72 = lean_ctor_get(x_32, 7); +lean_inc(x_72); +lean_inc(x_71); lean_inc(x_70); lean_inc(x_69); lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); -lean_inc(x_65); -lean_inc(x_64); -lean_dec(x_30); -x_71 = lean_ctor_get_uint64(x_31, sizeof(void*)*1); -x_72 = lean_ctor_get(x_31, 0); -lean_inc(x_72); -if (lean_is_exclusive(x_31)) { - lean_ctor_release(x_31, 0); - x_73 = x_31; +lean_dec(x_32); +x_73 = lean_ctor_get_uint64(x_33, sizeof(void*)*1); +x_74 = lean_ctor_get(x_33, 0); +lean_inc(x_74); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + x_75 = x_33; } else { - lean_dec_ref(x_31); - x_73 = lean_box(0); + lean_dec_ref(x_33); + x_75 = lean_box(0); } -x_74 = l_Lean_PersistentArray_append___rarg(x_18, x_72); -lean_dec(x_72); -if (lean_is_scalar(x_73)) { - x_75 = lean_alloc_ctor(0, 1, 8); +x_76 = l_Lean_PersistentArray_append___rarg(x_18, x_74); +lean_dec(x_74); +if (lean_is_scalar(x_75)) { + x_77 = lean_alloc_ctor(0, 1, 8); } else { - x_75 = x_73; + x_77 = x_75; } -lean_ctor_set(x_75, 0, x_74); -lean_ctor_set_uint64(x_75, sizeof(void*)*1, x_71); -x_76 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_76, 0, x_64); -lean_ctor_set(x_76, 1, x_65); -lean_ctor_set(x_76, 2, x_66); -lean_ctor_set(x_76, 3, x_75); -lean_ctor_set(x_76, 4, x_67); -lean_ctor_set(x_76, 5, x_68); -lean_ctor_set(x_76, 6, x_69); -lean_ctor_set(x_76, 7, x_70); -x_77 = lean_st_ref_set(x_15, x_76, x_32); -x_78 = lean_ctor_get(x_77, 1); -lean_inc(x_78); -lean_dec(x_77); -x_79 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_prove___spec__2(x_25, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_78); +lean_ctor_set(x_77, 0, x_76); +lean_ctor_set_uint64(x_77, sizeof(void*)*1, x_73); +x_78 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_78, 0, x_66); +lean_ctor_set(x_78, 1, x_67); +lean_ctor_set(x_78, 2, x_68); +lean_ctor_set(x_78, 3, x_77); +lean_ctor_set(x_78, 4, x_69); +lean_ctor_set(x_78, 5, x_70); +lean_ctor_set(x_78, 6, x_71); +lean_ctor_set(x_78, 7, x_72); +x_79 = lean_st_ref_set(x_15, x_78, x_34); +x_80 = lean_ctor_get(x_79, 1); +lean_inc(x_80); +lean_dec(x_79); +x_81 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_prove___spec__2(x_25, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_80); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -9292,91 +9299,79 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_25); -if (lean_obj_tag(x_79) == 0) +if (lean_obj_tag(x_81) == 0) { -lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; -x_80 = lean_ctor_get(x_79, 0); -lean_inc(x_80); -x_81 = lean_ctor_get(x_79, 1); -lean_inc(x_81); -if (lean_is_exclusive(x_79)) { - lean_ctor_release(x_79, 0); - lean_ctor_release(x_79, 1); - x_82 = x_79; +lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; +x_82 = lean_ctor_get(x_81, 0); +lean_inc(x_82); +x_83 = lean_ctor_get(x_81, 1); +lean_inc(x_83); +if (lean_is_exclusive(x_81)) { + lean_ctor_release(x_81, 0); + lean_ctor_release(x_81, 1); + x_84 = x_81; } else { - lean_dec_ref(x_79); - x_82 = lean_box(0); + lean_dec_ref(x_81); + x_84 = lean_box(0); } -if (lean_is_scalar(x_82)) { - x_83 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_84)) { + x_85 = lean_alloc_ctor(0, 2, 0); } else { - x_83 = x_82; + x_85 = x_84; } -lean_ctor_set(x_83, 0, x_80); -lean_ctor_set(x_83, 1, x_81); -return x_83; +lean_ctor_set(x_85, 0, x_82); +lean_ctor_set(x_85, 1, x_83); +return x_85; } else { -lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; -x_84 = lean_ctor_get(x_79, 0); -lean_inc(x_84); -x_85 = lean_ctor_get(x_79, 1); -lean_inc(x_85); -if (lean_is_exclusive(x_79)) { - lean_ctor_release(x_79, 0); - lean_ctor_release(x_79, 1); - x_86 = x_79; +lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; +x_86 = lean_ctor_get(x_81, 0); +lean_inc(x_86); +x_87 = lean_ctor_get(x_81, 1); +lean_inc(x_87); +if (lean_is_exclusive(x_81)) { + lean_ctor_release(x_81, 0); + lean_ctor_release(x_81, 1); + x_88 = x_81; } else { - lean_dec_ref(x_79); - x_86 = lean_box(0); + lean_dec_ref(x_81); + x_88 = lean_box(0); } -if (lean_is_scalar(x_86)) { - x_87 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_88)) { + x_89 = lean_alloc_ctor(1, 2, 0); } else { - x_87 = x_86; + x_89 = x_88; } -lean_ctor_set(x_87, 0, x_84); -lean_ctor_set(x_87, 1, x_85); -return x_87; +lean_ctor_set(x_89, 0, x_86); +lean_ctor_set(x_89, 1, x_87); +return x_89; } } } else { -lean_object* x_88; double x_89; double x_90; lean_object* x_91; -x_88 = lean_box(0); -x_89 = lean_unbox_float(x_26); +lean_object* x_90; double x_91; double x_92; lean_object* x_93; +x_90 = lean_box(0); +x_91 = lean_unbox_float(x_26); lean_dec(x_26); -x_90 = lean_unbox_float(x_27); +x_92 = lean_unbox_float(x_27); lean_dec(x_27); -x_91 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_25, x_1, x_28, x_89, x_90, x_5, x_88, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_23); -return x_91; -} -} -else -{ -lean_object* x_92; double x_93; double x_94; lean_object* x_95; -x_92 = lean_box(0); -x_93 = lean_unbox_float(x_26); -lean_dec(x_26); -x_94 = lean_unbox_float(x_27); -lean_dec(x_27); -x_95 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_25, x_1, x_28, x_93, x_94, x_5, x_92, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_23); -return x_95; +x_93 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_25, x_29, x_91, x_92, x_5, x_90, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_23); +return x_93; } } } } else { -lean_object* x_216; lean_object* x_217; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; -x_312 = lean_io_get_num_heartbeats(x_19); -x_313 = lean_ctor_get(x_312, 0); -lean_inc(x_313); -x_314 = lean_ctor_get(x_312, 1); -lean_inc(x_314); -lean_dec(x_312); +lean_object* x_224; lean_object* x_225; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; +x_328 = lean_io_get_num_heartbeats(x_19); +x_329 = lean_ctor_get(x_328, 0); +lean_inc(x_329); +x_330 = lean_ctor_get(x_328, 1); +lean_inc(x_330); +lean_dec(x_328); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); @@ -9384,497 +9379,428 @@ lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_315 = lean_apply_8(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_314); -if (lean_obj_tag(x_315) == 0) +x_331 = lean_apply_8(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_330); +if (lean_obj_tag(x_331) == 0) { -uint8_t x_316; -x_316 = !lean_is_exclusive(x_315); -if (x_316 == 0) +uint8_t x_332; +x_332 = !lean_is_exclusive(x_331); +if (x_332 == 0) { -lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; uint8_t x_321; -x_317 = lean_ctor_get(x_315, 0); -x_318 = lean_ctor_get(x_315, 1); -x_319 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_319, 0, x_317); -x_320 = lean_io_get_num_heartbeats(x_318); -x_321 = !lean_is_exclusive(x_320); -if (x_321 == 0) +lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; +x_333 = lean_ctor_get(x_331, 0); +x_334 = lean_ctor_get(x_331, 1); +x_335 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_335, 0, x_333); +x_336 = lean_io_get_num_heartbeats(x_334); +x_337 = !lean_is_exclusive(x_336); +if (x_337 == 0) { -lean_object* x_322; lean_object* x_323; uint8_t x_324; lean_object* x_325; double x_326; double x_327; lean_object* x_328; lean_object* x_329; -x_322 = lean_ctor_get(x_320, 0); -x_323 = lean_ctor_get(x_320, 1); -x_324 = 0; -x_325 = lean_unsigned_to_nat(0u); -x_326 = l_Float_ofScientific(x_313, x_324, x_325); -lean_dec(x_313); -x_327 = l_Float_ofScientific(x_322, x_324, x_325); -lean_dec(x_322); -x_328 = lean_box_float(x_326); -x_329 = lean_box_float(x_327); -lean_ctor_set(x_320, 1, x_329); -lean_ctor_set(x_320, 0, x_328); -lean_ctor_set(x_315, 1, x_320); -lean_ctor_set(x_315, 0, x_319); -x_216 = x_315; -x_217 = x_323; -goto block_311; +lean_object* x_338; lean_object* x_339; uint8_t x_340; lean_object* x_341; double x_342; double x_343; lean_object* x_344; lean_object* x_345; +x_338 = lean_ctor_get(x_336, 0); +x_339 = lean_ctor_get(x_336, 1); +x_340 = 0; +x_341 = lean_unsigned_to_nat(0u); +x_342 = l_Float_ofScientific(x_329, x_340, x_341); +lean_dec(x_329); +x_343 = l_Float_ofScientific(x_338, x_340, x_341); +lean_dec(x_338); +x_344 = lean_box_float(x_342); +x_345 = lean_box_float(x_343); +lean_ctor_set(x_336, 1, x_345); +lean_ctor_set(x_336, 0, x_344); +lean_ctor_set(x_331, 1, x_336); +lean_ctor_set(x_331, 0, x_335); +x_224 = x_331; +x_225 = x_339; +goto block_327; } else { -lean_object* x_330; lean_object* x_331; uint8_t x_332; lean_object* x_333; double x_334; double x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; -x_330 = lean_ctor_get(x_320, 0); -x_331 = lean_ctor_get(x_320, 1); -lean_inc(x_331); -lean_inc(x_330); -lean_dec(x_320); -x_332 = 0; -x_333 = lean_unsigned_to_nat(0u); -x_334 = l_Float_ofScientific(x_313, x_332, x_333); -lean_dec(x_313); -x_335 = l_Float_ofScientific(x_330, x_332, x_333); -lean_dec(x_330); -x_336 = lean_box_float(x_334); -x_337 = lean_box_float(x_335); -x_338 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_338, 0, x_336); -lean_ctor_set(x_338, 1, x_337); -lean_ctor_set(x_315, 1, x_338); -lean_ctor_set(x_315, 0, x_319); -x_216 = x_315; -x_217 = x_331; -goto block_311; +lean_object* x_346; lean_object* x_347; uint8_t x_348; lean_object* x_349; double x_350; double x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; +x_346 = lean_ctor_get(x_336, 0); +x_347 = lean_ctor_get(x_336, 1); +lean_inc(x_347); +lean_inc(x_346); +lean_dec(x_336); +x_348 = 0; +x_349 = lean_unsigned_to_nat(0u); +x_350 = l_Float_ofScientific(x_329, x_348, x_349); +lean_dec(x_329); +x_351 = l_Float_ofScientific(x_346, x_348, x_349); +lean_dec(x_346); +x_352 = lean_box_float(x_350); +x_353 = lean_box_float(x_351); +x_354 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_354, 0, x_352); +lean_ctor_set(x_354, 1, x_353); +lean_ctor_set(x_331, 1, x_354); +lean_ctor_set(x_331, 0, x_335); +x_224 = x_331; +x_225 = x_347; +goto block_327; } } else { -lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; uint8_t x_346; lean_object* x_347; double x_348; double x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; -x_339 = lean_ctor_get(x_315, 0); -x_340 = lean_ctor_get(x_315, 1); -lean_inc(x_340); -lean_inc(x_339); -lean_dec(x_315); -x_341 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_341, 0, x_339); -x_342 = lean_io_get_num_heartbeats(x_340); -x_343 = lean_ctor_get(x_342, 0); -lean_inc(x_343); -x_344 = lean_ctor_get(x_342, 1); -lean_inc(x_344); -if (lean_is_exclusive(x_342)) { - lean_ctor_release(x_342, 0); - lean_ctor_release(x_342, 1); - x_345 = x_342; -} else { - lean_dec_ref(x_342); - x_345 = lean_box(0); -} -x_346 = 0; -x_347 = lean_unsigned_to_nat(0u); -x_348 = l_Float_ofScientific(x_313, x_346, x_347); -lean_dec(x_313); -x_349 = l_Float_ofScientific(x_343, x_346, x_347); -lean_dec(x_343); -x_350 = lean_box_float(x_348); -x_351 = lean_box_float(x_349); -if (lean_is_scalar(x_345)) { - x_352 = lean_alloc_ctor(0, 2, 0); -} else { - x_352 = x_345; -} -lean_ctor_set(x_352, 0, x_350); -lean_ctor_set(x_352, 1, x_351); -x_353 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_353, 0, x_341); -lean_ctor_set(x_353, 1, x_352); -x_216 = x_353; -x_217 = x_344; -goto block_311; -} -} -else -{ -uint8_t x_354; -x_354 = !lean_is_exclusive(x_315); -if (x_354 == 0) -{ -lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; uint8_t x_359; -x_355 = lean_ctor_get(x_315, 0); -x_356 = lean_ctor_get(x_315, 1); -x_357 = lean_alloc_ctor(0, 1, 0); +lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; uint8_t x_362; lean_object* x_363; double x_364; double x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; +x_355 = lean_ctor_get(x_331, 0); +x_356 = lean_ctor_get(x_331, 1); +lean_inc(x_356); +lean_inc(x_355); +lean_dec(x_331); +x_357 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_357, 0, x_355); x_358 = lean_io_get_num_heartbeats(x_356); -x_359 = !lean_is_exclusive(x_358); -if (x_359 == 0) -{ -lean_object* x_360; lean_object* x_361; uint8_t x_362; lean_object* x_363; double x_364; double x_365; lean_object* x_366; lean_object* x_367; -x_360 = lean_ctor_get(x_358, 0); -x_361 = lean_ctor_get(x_358, 1); +x_359 = lean_ctor_get(x_358, 0); +lean_inc(x_359); +x_360 = lean_ctor_get(x_358, 1); +lean_inc(x_360); +if (lean_is_exclusive(x_358)) { + lean_ctor_release(x_358, 0); + lean_ctor_release(x_358, 1); + x_361 = x_358; +} else { + lean_dec_ref(x_358); + x_361 = lean_box(0); +} x_362 = 0; x_363 = lean_unsigned_to_nat(0u); -x_364 = l_Float_ofScientific(x_313, x_362, x_363); -lean_dec(x_313); -x_365 = l_Float_ofScientific(x_360, x_362, x_363); -lean_dec(x_360); +x_364 = l_Float_ofScientific(x_329, x_362, x_363); +lean_dec(x_329); +x_365 = l_Float_ofScientific(x_359, x_362, x_363); +lean_dec(x_359); x_366 = lean_box_float(x_364); x_367 = lean_box_float(x_365); -lean_ctor_set(x_358, 1, x_367); -lean_ctor_set(x_358, 0, x_366); -lean_ctor_set_tag(x_315, 0); -lean_ctor_set(x_315, 1, x_358); -lean_ctor_set(x_315, 0, x_357); -x_216 = x_315; -x_217 = x_361; -goto block_311; -} -else -{ -lean_object* x_368; lean_object* x_369; uint8_t x_370; lean_object* x_371; double x_372; double x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; -x_368 = lean_ctor_get(x_358, 0); -x_369 = lean_ctor_get(x_358, 1); -lean_inc(x_369); -lean_inc(x_368); -lean_dec(x_358); -x_370 = 0; -x_371 = lean_unsigned_to_nat(0u); -x_372 = l_Float_ofScientific(x_313, x_370, x_371); -lean_dec(x_313); -x_373 = l_Float_ofScientific(x_368, x_370, x_371); -lean_dec(x_368); -x_374 = lean_box_float(x_372); -x_375 = lean_box_float(x_373); -x_376 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_376, 0, x_374); -lean_ctor_set(x_376, 1, x_375); -lean_ctor_set_tag(x_315, 0); -lean_ctor_set(x_315, 1, x_376); -lean_ctor_set(x_315, 0, x_357); -x_216 = x_315; -x_217 = x_369; -goto block_311; -} -} -else -{ -lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; uint8_t x_384; lean_object* x_385; double x_386; double x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; -x_377 = lean_ctor_get(x_315, 0); -x_378 = lean_ctor_get(x_315, 1); -lean_inc(x_378); -lean_inc(x_377); -lean_dec(x_315); -x_379 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_379, 0, x_377); -x_380 = lean_io_get_num_heartbeats(x_378); -x_381 = lean_ctor_get(x_380, 0); -lean_inc(x_381); -x_382 = lean_ctor_get(x_380, 1); -lean_inc(x_382); -if (lean_is_exclusive(x_380)) { - lean_ctor_release(x_380, 0); - lean_ctor_release(x_380, 1); - x_383 = x_380; +if (lean_is_scalar(x_361)) { + x_368 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_380); - x_383 = lean_box(0); + x_368 = x_361; } -x_384 = 0; -x_385 = lean_unsigned_to_nat(0u); -x_386 = l_Float_ofScientific(x_313, x_384, x_385); -lean_dec(x_313); -x_387 = l_Float_ofScientific(x_381, x_384, x_385); -lean_dec(x_381); -x_388 = lean_box_float(x_386); -x_389 = lean_box_float(x_387); -if (lean_is_scalar(x_383)) { - x_390 = lean_alloc_ctor(0, 2, 0); -} else { - x_390 = x_383; +lean_ctor_set(x_368, 0, x_366); +lean_ctor_set(x_368, 1, x_367); +x_369 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_369, 0, x_357); +lean_ctor_set(x_369, 1, x_368); +x_224 = x_369; +x_225 = x_360; +goto block_327; } -lean_ctor_set(x_390, 0, x_388); -lean_ctor_set(x_390, 1, x_389); -x_391 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_391, 0, x_379); -lean_ctor_set(x_391, 1, x_390); -x_216 = x_391; -x_217 = x_382; -goto block_311; -} -} -block_311: -{ -lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; uint8_t x_222; lean_object* x_291; uint8_t x_292; -x_218 = lean_ctor_get(x_216, 1); -lean_inc(x_218); -x_219 = lean_ctor_get(x_216, 0); -lean_inc(x_219); -lean_dec(x_216); -x_220 = lean_ctor_get(x_218, 0); -lean_inc(x_220); -x_221 = lean_ctor_get(x_218, 1); -lean_inc(x_221); -lean_dec(x_218); -x_291 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__2; -x_292 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_291); -if (x_292 == 0) -{ -uint8_t x_293; -x_293 = 0; -x_222 = x_293; -goto block_290; } else { -double x_294; double x_295; double x_296; -x_294 = lean_unbox_float(x_221); -x_295 = lean_unbox_float(x_220); -x_296 = lean_float_sub(x_294, x_295); +uint8_t x_370; +x_370 = !lean_is_exclusive(x_331); +if (x_370 == 0) +{ +lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; +x_371 = lean_ctor_get(x_331, 0); +x_372 = lean_ctor_get(x_331, 1); +x_373 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_373, 0, x_371); +x_374 = lean_io_get_num_heartbeats(x_372); +x_375 = !lean_is_exclusive(x_374); +if (x_375 == 0) +{ +lean_object* x_376; lean_object* x_377; uint8_t x_378; lean_object* x_379; double x_380; double x_381; lean_object* x_382; lean_object* x_383; +x_376 = lean_ctor_get(x_374, 0); +x_377 = lean_ctor_get(x_374, 1); +x_378 = 0; +x_379 = lean_unsigned_to_nat(0u); +x_380 = l_Float_ofScientific(x_329, x_378, x_379); +lean_dec(x_329); +x_381 = l_Float_ofScientific(x_376, x_378, x_379); +lean_dec(x_376); +x_382 = lean_box_float(x_380); +x_383 = lean_box_float(x_381); +lean_ctor_set(x_374, 1, x_383); +lean_ctor_set(x_374, 0, x_382); +lean_ctor_set_tag(x_331, 0); +lean_ctor_set(x_331, 1, x_374); +lean_ctor_set(x_331, 0, x_373); +x_224 = x_331; +x_225 = x_377; +goto block_327; +} +else +{ +lean_object* x_384; lean_object* x_385; uint8_t x_386; lean_object* x_387; double x_388; double x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; +x_384 = lean_ctor_get(x_374, 0); +x_385 = lean_ctor_get(x_374, 1); +lean_inc(x_385); +lean_inc(x_384); +lean_dec(x_374); +x_386 = 0; +x_387 = lean_unsigned_to_nat(0u); +x_388 = l_Float_ofScientific(x_329, x_386, x_387); +lean_dec(x_329); +x_389 = l_Float_ofScientific(x_384, x_386, x_387); +lean_dec(x_384); +x_390 = lean_box_float(x_388); +x_391 = lean_box_float(x_389); +x_392 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_392, 0, x_390); +lean_ctor_set(x_392, 1, x_391); +lean_ctor_set_tag(x_331, 0); +lean_ctor_set(x_331, 1, x_392); +lean_ctor_set(x_331, 0, x_373); +x_224 = x_331; +x_225 = x_385; +goto block_327; +} +} +else +{ +lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; uint8_t x_400; lean_object* x_401; double x_402; double x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; +x_393 = lean_ctor_get(x_331, 0); +x_394 = lean_ctor_get(x_331, 1); +lean_inc(x_394); +lean_inc(x_393); +lean_dec(x_331); +x_395 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_395, 0, x_393); +x_396 = lean_io_get_num_heartbeats(x_394); +x_397 = lean_ctor_get(x_396, 0); +lean_inc(x_397); +x_398 = lean_ctor_get(x_396, 1); +lean_inc(x_398); +if (lean_is_exclusive(x_396)) { + lean_ctor_release(x_396, 0); + lean_ctor_release(x_396, 1); + x_399 = x_396; +} else { + lean_dec_ref(x_396); + x_399 = lean_box(0); +} +x_400 = 0; +x_401 = lean_unsigned_to_nat(0u); +x_402 = l_Float_ofScientific(x_329, x_400, x_401); +lean_dec(x_329); +x_403 = l_Float_ofScientific(x_397, x_400, x_401); +lean_dec(x_397); +x_404 = lean_box_float(x_402); +x_405 = lean_box_float(x_403); +if (lean_is_scalar(x_399)) { + x_406 = lean_alloc_ctor(0, 2, 0); +} else { + x_406 = x_399; +} +lean_ctor_set(x_406, 0, x_404); +lean_ctor_set(x_406, 1, x_405); +x_407 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_407, 0, x_395); +lean_ctor_set(x_407, 1, x_406); +x_224 = x_407; +x_225 = x_398; +goto block_327; +} +} +block_327: +{ +lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; uint8_t x_231; uint8_t x_232; +x_226 = lean_ctor_get(x_224, 1); +lean_inc(x_226); +x_227 = lean_ctor_get(x_224, 0); +lean_inc(x_227); +lean_dec(x_224); +x_228 = lean_ctor_get(x_226, 0); +lean_inc(x_228); +x_229 = lean_ctor_get(x_226, 1); +lean_inc(x_229); +lean_dec(x_226); +x_230 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__2; +x_231 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_230); +if (x_231 == 0) +{ +if (x_6 == 0) +{ +uint8_t x_297; +x_297 = 0; +x_232 = x_297; +goto block_296; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_228); +lean_dec(x_228); +x_300 = lean_unbox_float(x_229); +lean_dec(x_229); +x_301 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_227, x_231, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_225); +return x_301; +} +} +else +{ +double x_302; double x_303; double x_304; +x_302 = lean_unbox_float(x_229); +x_303 = lean_unbox_float(x_228); +x_304 = lean_float_sub(x_302, x_303); if (x_21 == 0) { -lean_object* x_297; lean_object* x_298; uint8_t x_299; lean_object* x_300; double x_301; double x_302; double x_303; uint8_t x_304; -x_297 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__3; -x_298 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_297); -x_299 = 0; -x_300 = lean_unsigned_to_nat(0u); -x_301 = l_Float_ofScientific(x_298, x_299, x_300); -lean_dec(x_298); -x_302 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__4; -x_303 = lean_float_div(x_301, x_302); -x_304 = lean_float_decLt(x_303, x_296); -x_222 = x_304; -goto block_290; -} -else +if (x_6 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; uint8_t x_310; +lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; double x_311; uint8_t x_312; x_305 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__3; x_306 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_305); x_307 = 0; x_308 = lean_unsigned_to_nat(0u); x_309 = l_Float_ofScientific(x_306, x_307, x_308); lean_dec(x_306); -x_310 = lean_float_decLt(x_309, x_296); -x_222 = x_310; -goto block_290; +x_310 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__4; +x_311 = lean_float_div(x_309, x_310); +x_312 = lean_float_decLt(x_311, x_304); +x_232 = x_312; +goto block_296; +} +else +{ +lean_object* x_313; double x_314; double x_315; lean_object* x_316; +x_313 = lean_box(0); +x_314 = lean_unbox_float(x_228); +lean_dec(x_228); +x_315 = lean_unbox_float(x_229); +lean_dec(x_229); +x_316 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_227, x_231, x_314, x_315, x_5, x_313, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_225); +return x_316; } } -block_290: +else { if (x_6 == 0) { -if (x_222 == 0) +lean_object* x_317; lean_object* x_318; uint8_t x_319; lean_object* x_320; double x_321; uint8_t x_322; +x_317 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__4___closed__3; +x_318 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_317); +x_319 = 0; +x_320 = lean_unsigned_to_nat(0u); +x_321 = l_Float_ofScientific(x_318, x_319, x_320); +lean_dec(x_318); +x_322 = lean_float_decLt(x_321, x_304); +x_232 = x_322; +goto block_296; +} +else { -lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; uint8_t x_227; -lean_dec(x_221); -lean_dec(x_220); +lean_object* x_323; double x_324; double x_325; lean_object* x_326; +x_323 = lean_box(0); +x_324 = lean_unbox_float(x_228); +lean_dec(x_228); +x_325 = lean_unbox_float(x_229); +lean_dec(x_229); +x_326 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_227, x_231, x_324, x_325, x_5, x_323, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_225); +return x_326; +} +} +} +block_296: +{ +if (x_232 == 0) +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; uint8_t x_237; +lean_dec(x_229); +lean_dec(x_228); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_223 = lean_st_ref_take(x_15, x_217); -x_224 = lean_ctor_get(x_223, 0); -lean_inc(x_224); -x_225 = lean_ctor_get(x_224, 3); -lean_inc(x_225); -x_226 = lean_ctor_get(x_223, 1); -lean_inc(x_226); -lean_dec(x_223); -x_227 = !lean_is_exclusive(x_224); -if (x_227 == 0) -{ -lean_object* x_228; uint8_t x_229; -x_228 = lean_ctor_get(x_224, 3); -lean_dec(x_228); -x_229 = !lean_is_exclusive(x_225); -if (x_229 == 0) -{ -lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; -x_230 = lean_ctor_get(x_225, 0); -x_231 = l_Lean_PersistentArray_append___rarg(x_18, x_230); -lean_dec(x_230); -lean_ctor_set(x_225, 0, x_231); -x_232 = lean_st_ref_set(x_15, x_224, x_226); -x_233 = lean_ctor_get(x_232, 1); -lean_inc(x_233); -lean_dec(x_232); -x_234 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_prove___spec__2(x_219, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_233); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_219); -if (lean_obj_tag(x_234) == 0) -{ -uint8_t x_235; -x_235 = !lean_is_exclusive(x_234); -if (x_235 == 0) -{ -return x_234; -} -else -{ -lean_object* x_236; lean_object* x_237; lean_object* x_238; -x_236 = lean_ctor_get(x_234, 0); -x_237 = lean_ctor_get(x_234, 1); -lean_inc(x_237); +x_233 = lean_st_ref_take(x_15, x_225); +x_234 = lean_ctor_get(x_233, 0); +lean_inc(x_234); +x_235 = lean_ctor_get(x_234, 3); +lean_inc(x_235); +x_236 = lean_ctor_get(x_233, 1); lean_inc(x_236); -lean_dec(x_234); -x_238 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_238, 0, x_236); -lean_ctor_set(x_238, 1, x_237); -return x_238; -} -} -else +lean_dec(x_233); +x_237 = !lean_is_exclusive(x_234); +if (x_237 == 0) { -uint8_t x_239; -x_239 = !lean_is_exclusive(x_234); +lean_object* x_238; uint8_t x_239; +x_238 = lean_ctor_get(x_234, 3); +lean_dec(x_238); +x_239 = !lean_is_exclusive(x_235); if (x_239 == 0) { -return x_234; +lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; +x_240 = lean_ctor_get(x_235, 0); +x_241 = l_Lean_PersistentArray_append___rarg(x_18, x_240); +lean_dec(x_240); +lean_ctor_set(x_235, 0, x_241); +x_242 = lean_st_ref_set(x_15, x_234, x_236); +x_243 = lean_ctor_get(x_242, 1); +lean_inc(x_243); +lean_dec(x_242); +x_244 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_prove___spec__2(x_227, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_243); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_227); +if (lean_obj_tag(x_244) == 0) +{ +uint8_t x_245; +x_245 = !lean_is_exclusive(x_244); +if (x_245 == 0) +{ +return x_244; } else { -lean_object* x_240; lean_object* x_241; lean_object* x_242; -x_240 = lean_ctor_get(x_234, 0); -x_241 = lean_ctor_get(x_234, 1); -lean_inc(x_241); -lean_inc(x_240); -lean_dec(x_234); -x_242 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_242, 0, x_240); -lean_ctor_set(x_242, 1, x_241); -return x_242; -} -} -} -else -{ -uint64_t x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; -x_243 = lean_ctor_get_uint64(x_225, sizeof(void*)*1); -x_244 = lean_ctor_get(x_225, 0); -lean_inc(x_244); -lean_dec(x_225); -x_245 = l_Lean_PersistentArray_append___rarg(x_18, x_244); +lean_object* x_246; lean_object* x_247; lean_object* x_248; +x_246 = lean_ctor_get(x_244, 0); +x_247 = lean_ctor_get(x_244, 1); +lean_inc(x_247); +lean_inc(x_246); lean_dec(x_244); -x_246 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_246, 0, x_245); -lean_ctor_set_uint64(x_246, sizeof(void*)*1, x_243); -lean_ctor_set(x_224, 3, x_246); -x_247 = lean_st_ref_set(x_15, x_224, x_226); -x_248 = lean_ctor_get(x_247, 1); -lean_inc(x_248); -lean_dec(x_247); -x_249 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_prove___spec__2(x_219, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_248); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_219); -if (lean_obj_tag(x_249) == 0) +x_248 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_248, 0, x_246); +lean_ctor_set(x_248, 1, x_247); +return x_248; +} +} +else { -lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; -x_250 = lean_ctor_get(x_249, 0); -lean_inc(x_250); -x_251 = lean_ctor_get(x_249, 1); +uint8_t x_249; +x_249 = !lean_is_exclusive(x_244); +if (x_249 == 0) +{ +return x_244; +} +else +{ +lean_object* x_250; lean_object* x_251; lean_object* x_252; +x_250 = lean_ctor_get(x_244, 0); +x_251 = lean_ctor_get(x_244, 1); lean_inc(x_251); -if (lean_is_exclusive(x_249)) { - lean_ctor_release(x_249, 0); - lean_ctor_release(x_249, 1); - x_252 = x_249; -} else { - lean_dec_ref(x_249); - x_252 = lean_box(0); +lean_inc(x_250); +lean_dec(x_244); +x_252 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_252, 0, x_250); +lean_ctor_set(x_252, 1, x_251); +return x_252; } -if (lean_is_scalar(x_252)) { - x_253 = lean_alloc_ctor(0, 2, 0); -} else { - x_253 = x_252; } -lean_ctor_set(x_253, 0, x_250); -lean_ctor_set(x_253, 1, x_251); -return x_253; } else { -lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; -x_254 = lean_ctor_get(x_249, 0); +uint64_t x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; +x_253 = lean_ctor_get_uint64(x_235, sizeof(void*)*1); +x_254 = lean_ctor_get(x_235, 0); lean_inc(x_254); -x_255 = lean_ctor_get(x_249, 1); -lean_inc(x_255); -if (lean_is_exclusive(x_249)) { - lean_ctor_release(x_249, 0); - lean_ctor_release(x_249, 1); - x_256 = x_249; -} else { - lean_dec_ref(x_249); - x_256 = lean_box(0); -} -if (lean_is_scalar(x_256)) { - x_257 = lean_alloc_ctor(1, 2, 0); -} else { - x_257 = x_256; -} -lean_ctor_set(x_257, 0, x_254); -lean_ctor_set(x_257, 1, x_255); -return x_257; -} -} -} -else -{ -lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; uint64_t x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; -x_258 = lean_ctor_get(x_224, 0); -x_259 = lean_ctor_get(x_224, 1); -x_260 = lean_ctor_get(x_224, 2); -x_261 = lean_ctor_get(x_224, 4); -x_262 = lean_ctor_get(x_224, 5); -x_263 = lean_ctor_get(x_224, 6); -x_264 = lean_ctor_get(x_224, 7); -lean_inc(x_264); -lean_inc(x_263); -lean_inc(x_262); -lean_inc(x_261); -lean_inc(x_260); -lean_inc(x_259); +lean_dec(x_235); +x_255 = l_Lean_PersistentArray_append___rarg(x_18, x_254); +lean_dec(x_254); +x_256 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_256, 0, x_255); +lean_ctor_set_uint64(x_256, sizeof(void*)*1, x_253); +lean_ctor_set(x_234, 3, x_256); +x_257 = lean_st_ref_set(x_15, x_234, x_236); +x_258 = lean_ctor_get(x_257, 1); lean_inc(x_258); -lean_dec(x_224); -x_265 = lean_ctor_get_uint64(x_225, sizeof(void*)*1); -x_266 = lean_ctor_get(x_225, 0); -lean_inc(x_266); -if (lean_is_exclusive(x_225)) { - lean_ctor_release(x_225, 0); - x_267 = x_225; -} else { - lean_dec_ref(x_225); - x_267 = lean_box(0); -} -x_268 = l_Lean_PersistentArray_append___rarg(x_18, x_266); -lean_dec(x_266); -if (lean_is_scalar(x_267)) { - x_269 = lean_alloc_ctor(0, 1, 8); -} else { - x_269 = x_267; -} -lean_ctor_set(x_269, 0, x_268); -lean_ctor_set_uint64(x_269, sizeof(void*)*1, x_265); -x_270 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_270, 0, x_258); -lean_ctor_set(x_270, 1, x_259); -lean_ctor_set(x_270, 2, x_260); -lean_ctor_set(x_270, 3, x_269); -lean_ctor_set(x_270, 4, x_261); -lean_ctor_set(x_270, 5, x_262); -lean_ctor_set(x_270, 6, x_263); -lean_ctor_set(x_270, 7, x_264); -x_271 = lean_st_ref_set(x_15, x_270, x_226); -x_272 = lean_ctor_get(x_271, 1); -lean_inc(x_272); -lean_dec(x_271); -x_273 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_prove___spec__2(x_219, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_272); +lean_dec(x_257); +x_259 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_prove___spec__2(x_227, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_258); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -9882,79 +9808,176 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_219); -if (lean_obj_tag(x_273) == 0) +lean_dec(x_227); +if (lean_obj_tag(x_259) == 0) { -lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; -x_274 = lean_ctor_get(x_273, 0); +lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; +x_260 = lean_ctor_get(x_259, 0); +lean_inc(x_260); +x_261 = lean_ctor_get(x_259, 1); +lean_inc(x_261); +if (lean_is_exclusive(x_259)) { + lean_ctor_release(x_259, 0); + lean_ctor_release(x_259, 1); + x_262 = x_259; +} else { + lean_dec_ref(x_259); + x_262 = lean_box(0); +} +if (lean_is_scalar(x_262)) { + x_263 = lean_alloc_ctor(0, 2, 0); +} else { + x_263 = x_262; +} +lean_ctor_set(x_263, 0, x_260); +lean_ctor_set(x_263, 1, x_261); +return x_263; +} +else +{ +lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; +x_264 = lean_ctor_get(x_259, 0); +lean_inc(x_264); +x_265 = lean_ctor_get(x_259, 1); +lean_inc(x_265); +if (lean_is_exclusive(x_259)) { + lean_ctor_release(x_259, 0); + lean_ctor_release(x_259, 1); + x_266 = x_259; +} else { + lean_dec_ref(x_259); + x_266 = lean_box(0); +} +if (lean_is_scalar(x_266)) { + x_267 = lean_alloc_ctor(1, 2, 0); +} else { + x_267 = x_266; +} +lean_ctor_set(x_267, 0, x_264); +lean_ctor_set(x_267, 1, x_265); +return x_267; +} +} +} +else +{ +lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; uint64_t x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; +x_268 = lean_ctor_get(x_234, 0); +x_269 = lean_ctor_get(x_234, 1); +x_270 = lean_ctor_get(x_234, 2); +x_271 = lean_ctor_get(x_234, 4); +x_272 = lean_ctor_get(x_234, 5); +x_273 = lean_ctor_get(x_234, 6); +x_274 = lean_ctor_get(x_234, 7); lean_inc(x_274); -x_275 = lean_ctor_get(x_273, 1); -lean_inc(x_275); -if (lean_is_exclusive(x_273)) { - lean_ctor_release(x_273, 0); - lean_ctor_release(x_273, 1); - x_276 = x_273; +lean_inc(x_273); +lean_inc(x_272); +lean_inc(x_271); +lean_inc(x_270); +lean_inc(x_269); +lean_inc(x_268); +lean_dec(x_234); +x_275 = lean_ctor_get_uint64(x_235, sizeof(void*)*1); +x_276 = lean_ctor_get(x_235, 0); +lean_inc(x_276); +if (lean_is_exclusive(x_235)) { + lean_ctor_release(x_235, 0); + x_277 = x_235; } else { - lean_dec_ref(x_273); - x_276 = lean_box(0); + lean_dec_ref(x_235); + x_277 = lean_box(0); } -if (lean_is_scalar(x_276)) { - x_277 = lean_alloc_ctor(0, 2, 0); +x_278 = l_Lean_PersistentArray_append___rarg(x_18, x_276); +lean_dec(x_276); +if (lean_is_scalar(x_277)) { + x_279 = lean_alloc_ctor(0, 1, 8); } else { - x_277 = x_276; + x_279 = x_277; } -lean_ctor_set(x_277, 0, x_274); -lean_ctor_set(x_277, 1, x_275); -return x_277; +lean_ctor_set(x_279, 0, x_278); +lean_ctor_set_uint64(x_279, sizeof(void*)*1, x_275); +x_280 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_280, 0, x_268); +lean_ctor_set(x_280, 1, x_269); +lean_ctor_set(x_280, 2, x_270); +lean_ctor_set(x_280, 3, x_279); +lean_ctor_set(x_280, 4, x_271); +lean_ctor_set(x_280, 5, x_272); +lean_ctor_set(x_280, 6, x_273); +lean_ctor_set(x_280, 7, x_274); +x_281 = lean_st_ref_set(x_15, x_280, x_236); +x_282 = lean_ctor_get(x_281, 1); +lean_inc(x_282); +lean_dec(x_281); +x_283 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_NormCast_prove___spec__2(x_227, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_282); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_227); +if (lean_obj_tag(x_283) == 0) +{ +lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; +x_284 = lean_ctor_get(x_283, 0); +lean_inc(x_284); +x_285 = lean_ctor_get(x_283, 1); +lean_inc(x_285); +if (lean_is_exclusive(x_283)) { + lean_ctor_release(x_283, 0); + lean_ctor_release(x_283, 1); + x_286 = x_283; +} else { + lean_dec_ref(x_283); + x_286 = lean_box(0); +} +if (lean_is_scalar(x_286)) { + x_287 = lean_alloc_ctor(0, 2, 0); +} else { + x_287 = x_286; +} +lean_ctor_set(x_287, 0, x_284); +lean_ctor_set(x_287, 1, x_285); +return x_287; } else { -lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; -x_278 = lean_ctor_get(x_273, 0); -lean_inc(x_278); -x_279 = lean_ctor_get(x_273, 1); -lean_inc(x_279); -if (lean_is_exclusive(x_273)) { - lean_ctor_release(x_273, 0); - lean_ctor_release(x_273, 1); - x_280 = x_273; +lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; +x_288 = lean_ctor_get(x_283, 0); +lean_inc(x_288); +x_289 = lean_ctor_get(x_283, 1); +lean_inc(x_289); +if (lean_is_exclusive(x_283)) { + lean_ctor_release(x_283, 0); + lean_ctor_release(x_283, 1); + x_290 = x_283; } else { - lean_dec_ref(x_273); - x_280 = lean_box(0); + lean_dec_ref(x_283); + x_290 = lean_box(0); } -if (lean_is_scalar(x_280)) { - x_281 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_290)) { + x_291 = lean_alloc_ctor(1, 2, 0); } else { - x_281 = x_280; + x_291 = x_290; } -lean_ctor_set(x_281, 0, x_278); -lean_ctor_set(x_281, 1, x_279); -return x_281; +lean_ctor_set(x_291, 0, x_288); +lean_ctor_set(x_291, 1, x_289); +return x_291; } } } else { -lean_object* x_282; double x_283; double x_284; lean_object* x_285; -x_282 = lean_box(0); -x_283 = lean_unbox_float(x_220); -lean_dec(x_220); -x_284 = lean_unbox_float(x_221); -lean_dec(x_221); -x_285 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_219, x_1, x_222, x_283, x_284, x_5, x_282, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_217); -return x_285; -} -} -else -{ -lean_object* x_286; double x_287; double x_288; lean_object* x_289; -x_286 = lean_box(0); -x_287 = lean_unbox_float(x_220); -lean_dec(x_220); -x_288 = lean_unbox_float(x_221); -lean_dec(x_221); -x_289 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_219, x_1, x_222, x_287, x_288, x_5, x_286, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_217); -return x_289; +lean_object* x_292; double x_293; double x_294; lean_object* x_295; +x_292 = lean_box(0); +x_293 = lean_unbox_float(x_228); +lean_dec(x_228); +x_294 = lean_unbox_float(x_229); +lean_dec(x_229); +x_295 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_227, x_231, x_293, x_294, x_5, x_292, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_225); +return x_295; } } } @@ -10236,28 +10259,26 @@ lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; lean_object* x_18 = _args[17]; -lean_object* x_19 = _args[18]; _start: { -uint8_t x_20; uint8_t x_21; double x_22; double x_23; lean_object* x_24; -x_20 = lean_unbox(x_2); +uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; +x_19 = lean_unbox(x_2); lean_dec(x_2); -x_21 = lean_unbox(x_8); +x_20 = lean_unbox(x_7); +lean_dec(x_7); +x_21 = lean_unbox_float(x_8); lean_dec(x_8); x_22 = lean_unbox_float(x_9); lean_dec(x_9); -x_23 = lean_unbox_float(x_10); -lean_dec(x_10); -x_24 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__2(x_1, x_20, x_3, x_4, x_5, x_6, x_7, x_21, x_22, x_23, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); -lean_dec(x_18); -lean_dec(x_16); +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__2(x_1, x_19, x_3, x_4, x_5, x_6, x_20, x_21, x_22, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +lean_dec(x_17); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_24; +return x_23; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__3___boxed(lean_object** _args) { @@ -10279,22 +10300,20 @@ lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; lean_object* x_18 = _args[17]; -lean_object* x_19 = _args[18]; _start: { -uint8_t x_20; uint8_t x_21; double x_22; double x_23; lean_object* x_24; -x_20 = lean_unbox(x_2); +uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; +x_19 = lean_unbox(x_2); lean_dec(x_2); -x_21 = lean_unbox(x_7); +x_20 = lean_unbox(x_6); +lean_dec(x_6); +x_21 = lean_unbox_float(x_7); lean_dec(x_7); x_22 = lean_unbox_float(x_8); lean_dec(x_8); -x_23 = lean_unbox_float(x_9); -lean_dec(x_9); -x_24 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__3(x_1, x_20, x_3, x_4, x_5, x_6, x_21, x_22, x_23, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); -lean_dec(x_11); -lean_dec(x_6); -return x_24; +x_23 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__3(x_1, x_19, x_3, x_4, x_5, x_20, x_21, x_22, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +lean_dec(x_10); +return x_23; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_prove___spec__1___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { @@ -16557,8 +16576,6 @@ lean_mark_persistent(l_Lean_Elab_Tactic_NormCast_proveEqUsing___closed__13); l_Lean_Elab_Tactic_NormCast_proveEqUsing___closed__14 = _init_l_Lean_Elab_Tactic_NormCast_proveEqUsing___closed__14(); lean_mark_persistent(l_Lean_Elab_Tactic_NormCast_proveEqUsing___closed__14); l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2___closed__1(); -l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2___closed__2(); -lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__2___closed__2); l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3___closed__1); l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_NormCast_proveEqUsingDown___spec__1___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Omega/Frontend.c b/stage0/stdlib/Lean/Elab/Tactic/Omega/Frontend.c index ba0ca5d717..1855b81b32 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Omega/Frontend.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Omega/Frontend.c @@ -57,7 +57,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Elab_Tactic_Omega_s LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Elab_Tactic_Omega_omegaTactic___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__7___closed__6; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___lambda__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_profiler; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__6___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__19___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -239,7 +238,7 @@ static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addIntInequality___clos static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_rewrite___lambda__2___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omega(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_Omega_formatErrorMessage_prettyConstraints___spec__3(lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_formatErrorMessage___closed__1; static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__29; @@ -349,13 +348,13 @@ static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___c LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_splitDisjunction___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Elab_Tactic_Omega_formatErrorMessage_varNames___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_mkEvalRflProof___closed__25; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___lambda__22___closed__15; static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__42; lean_object* l_List_appendTR___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_Omega_evalOmega__1___closed__1; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__10; size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_Tactic_Omega_formatErrorMessage_inScope___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -388,7 +387,6 @@ static lean_object* l_Lean_Elab_Tactic_Omega_evalUnsafe____x40_Lean_Elab_Tactic_ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_elabOmegaConfig___lambda__4(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__10___closed__31; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_omegaImpl___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__2___closed__2; lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at_Lean_ForEachExpr_visit___spec__3(lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl___lambda__7___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__28___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -659,7 +657,7 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_Omeg LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleNatCast___closed__60; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_addFact___lambda__27___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Omega_asLinearComboImpl_handleFinVal___closed__6; static lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___lambda__1___closed__8; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Omega_MetaProblem_pushNot___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -31986,69 +31984,36 @@ x_3 = l_Float_ofScientific(x_1, x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__2___closed__2() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, uint8_t x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__2___closed__1; +x_22 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_22, 0, x_1); +lean_ctor_set(x_22, 1, x_3); +lean_ctor_set_float(x_22, sizeof(void*)*2, x_21); +lean_ctor_set_float(x_22, sizeof(void*)*2 + 8, x_21); +lean_ctor_set_uint8(x_22, sizeof(void*)*2 + 16, x_2); +x_23 = lean_box(0); +x_24 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__1(x_4, x_5, x_10, x_6, x_22, x_23, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); +return x_24; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, uint8_t x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { -_start: +else { -double x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; -x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_23 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_3); -lean_ctor_set_float(x_23, sizeof(void*)*2, x_22); -lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_22); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); -x_24 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__2___closed__2; -x_25 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_24); -if (x_25 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_26; lean_object* x_27; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_25, 0, x_1); +lean_ctor_set(x_25, 1, x_3); +lean_ctor_set_float(x_25, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_25, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_25, sizeof(void*)*2 + 16, x_2); x_26 = lean_box(0); -x_27 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_23, x_26, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +x_27 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__1(x_4, x_5, x_10, x_6, x_25, x_26, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); return x_27; } -else -{ -lean_object* x_28; lean_object* x_29; lean_object* x_30; -lean_dec(x_23); -x_28 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_28, 0, x_1); -lean_ctor_set(x_28, 1, x_3); -lean_ctor_set_float(x_28, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_28, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_28, sizeof(void*)*2 + 16, x_2); -x_29 = lean_box(0); -x_30 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_28, x_29, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); -return x_30; -} -} -else -{ -lean_object* x_31; lean_object* x_32; lean_object* x_33; -lean_dec(x_23); -x_31 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_31, 0, x_1); -lean_ctor_set(x_31, 1, x_3); -lean_ctor_set_float(x_31, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_31, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_31, sizeof(void*)*2 + 16, x_2); -x_32 = lean_box(0); -x_33 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_31, x_32, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); -return x_33; -} } } static lean_object* _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3___closed__1() { @@ -32068,59 +32033,59 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, uint8_t x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, uint8_t x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20) { _start: { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_19, 5); -lean_inc(x_22); -x_23 = lean_box(x_15); -lean_inc(x_20); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_18, 5); +lean_inc(x_21); +x_22 = lean_box(x_14); lean_inc(x_19); lean_inc(x_18); lean_inc(x_17); lean_inc(x_16); -lean_inc(x_14); +lean_inc(x_15); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_24 = lean_apply_11(x_10, x_5, x_12, x_13, x_14, x_23, x_16, x_17, x_18, x_19, x_20, x_21); -if (lean_obj_tag(x_24) == 0) +x_23 = lean_apply_11(x_9, x_5, x_11, x_12, x_13, x_22, x_15, x_16, x_17, x_18, x_19, x_20); +if (lean_obj_tag(x_23) == 0) { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_24, 0); +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); lean_inc(x_25); -x_26 = lean_ctor_get(x_24, 1); -lean_inc(x_26); -lean_dec(x_24); -x_27 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_22, x_5, x_6, x_7, x_8, x_9, x_25, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_26); -lean_dec(x_20); -lean_dec(x_18); +lean_dec(x_23); +x_26 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_21, x_5, x_6, x_7, x_8, x_24, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_25); +lean_dec(x_19); lean_dec(x_17); lean_dec(x_16); -lean_dec(x_14); +lean_dec(x_15); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_27; +return x_26; } else { -lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = lean_ctor_get(x_24, 1); -lean_inc(x_28); -lean_dec(x_24); -x_29 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3___closed__2; -x_30 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_22, x_5, x_6, x_7, x_8, x_9, x_29, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_28); -lean_dec(x_20); -lean_dec(x_18); +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_23, 1); +lean_inc(x_27); +lean_dec(x_23); +x_28 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3___closed__2; +x_29 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_21, x_5, x_6, x_7, x_8, x_28, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_27); +lean_dec(x_19); lean_dec(x_17); lean_dec(x_16); -lean_dec(x_14); +lean_dec(x_15); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_30; +return x_29; } } } @@ -32184,14 +32149,14 @@ x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec_ x_23 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_22); if (x_23 == 0) { -lean_object* x_24; lean_object* x_25; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; -x_120 = lean_io_mono_nanos_now(x_21); -x_121 = lean_ctor_get(x_120, 0); -lean_inc(x_121); -x_122 = lean_ctor_get(x_120, 1); -lean_inc(x_122); -lean_dec(x_120); -x_123 = lean_box(x_12); +lean_object* x_24; lean_object* x_25; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; +x_128 = lean_io_mono_nanos_now(x_21); +x_129 = lean_ctor_get(x_128, 0); +lean_inc(x_129); +x_130 = lean_ctor_get(x_128, 1); +lean_inc(x_130); +lean_dec(x_128); +x_131 = lean_box(x_12); lean_inc(x_17); lean_inc(x_16); lean_inc(x_15); @@ -32200,242 +32165,242 @@ lean_inc(x_13); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_124 = lean_apply_10(x_7, x_9, x_10, x_11, x_123, x_13, x_14, x_15, x_16, x_17, x_122); -if (lean_obj_tag(x_124) == 0) +x_132 = lean_apply_10(x_7, x_9, x_10, x_11, x_131, x_13, x_14, x_15, x_16, x_17, x_130); +if (lean_obj_tag(x_132) == 0) { -uint8_t x_125; -x_125 = !lean_is_exclusive(x_124); -if (x_125 == 0) +uint8_t x_133; +x_133 = !lean_is_exclusive(x_132); +if (x_133 == 0) { -lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; uint8_t x_130; -x_126 = lean_ctor_get(x_124, 0); -x_127 = lean_ctor_get(x_124, 1); -x_128 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_128, 0, x_126); -x_129 = lean_io_mono_nanos_now(x_127); -x_130 = !lean_is_exclusive(x_129); -if (x_130 == 0) +lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; uint8_t x_138; +x_134 = lean_ctor_get(x_132, 0); +x_135 = lean_ctor_get(x_132, 1); +x_136 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_136, 0, x_134); +x_137 = lean_io_mono_nanos_now(x_135); +x_138 = !lean_is_exclusive(x_137); +if (x_138 == 0) { -lean_object* x_131; lean_object* x_132; uint8_t x_133; lean_object* x_134; double x_135; double x_136; double x_137; double x_138; double x_139; lean_object* x_140; lean_object* x_141; -x_131 = lean_ctor_get(x_129, 0); -x_132 = lean_ctor_get(x_129, 1); -x_133 = 0; -x_134 = lean_unsigned_to_nat(0u); -x_135 = l_Float_ofScientific(x_121, x_133, x_134); -lean_dec(x_121); -x_136 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; -x_137 = lean_float_div(x_135, x_136); -x_138 = l_Float_ofScientific(x_131, x_133, x_134); -lean_dec(x_131); -x_139 = lean_float_div(x_138, x_136); -x_140 = lean_box_float(x_137); -x_141 = lean_box_float(x_139); -lean_ctor_set(x_129, 1, x_141); -lean_ctor_set(x_129, 0, x_140); -lean_ctor_set(x_124, 1, x_129); -lean_ctor_set(x_124, 0, x_128); -x_24 = x_124; -x_25 = x_132; -goto block_119; -} -else -{ -lean_object* x_142; lean_object* x_143; uint8_t x_144; lean_object* x_145; double x_146; double x_147; double x_148; double x_149; double x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; -x_142 = lean_ctor_get(x_129, 0); -x_143 = lean_ctor_get(x_129, 1); -lean_inc(x_143); -lean_inc(x_142); +lean_object* x_139; lean_object* x_140; uint8_t x_141; lean_object* x_142; double x_143; double x_144; double x_145; double x_146; double x_147; lean_object* x_148; lean_object* x_149; +x_139 = lean_ctor_get(x_137, 0); +x_140 = lean_ctor_get(x_137, 1); +x_141 = 0; +x_142 = lean_unsigned_to_nat(0u); +x_143 = l_Float_ofScientific(x_129, x_141, x_142); lean_dec(x_129); -x_144 = 0; -x_145 = lean_unsigned_to_nat(0u); -x_146 = l_Float_ofScientific(x_121, x_144, x_145); -lean_dec(x_121); -x_147 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; -x_148 = lean_float_div(x_146, x_147); -x_149 = l_Float_ofScientific(x_142, x_144, x_145); -lean_dec(x_142); -x_150 = lean_float_div(x_149, x_147); -x_151 = lean_box_float(x_148); -x_152 = lean_box_float(x_150); -x_153 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_153, 0, x_151); -lean_ctor_set(x_153, 1, x_152); -lean_ctor_set(x_124, 1, x_153); -lean_ctor_set(x_124, 0, x_128); -x_24 = x_124; -x_25 = x_143; -goto block_119; +x_144 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; +x_145 = lean_float_div(x_143, x_144); +x_146 = l_Float_ofScientific(x_139, x_141, x_142); +lean_dec(x_139); +x_147 = lean_float_div(x_146, x_144); +x_148 = lean_box_float(x_145); +x_149 = lean_box_float(x_147); +lean_ctor_set(x_137, 1, x_149); +lean_ctor_set(x_137, 0, x_148); +lean_ctor_set(x_132, 1, x_137); +lean_ctor_set(x_132, 0, x_136); +x_24 = x_132; +x_25 = x_140; +goto block_127; +} +else +{ +lean_object* x_150; lean_object* x_151; uint8_t x_152; lean_object* x_153; double x_154; double x_155; double x_156; double x_157; double x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; +x_150 = lean_ctor_get(x_137, 0); +x_151 = lean_ctor_get(x_137, 1); +lean_inc(x_151); +lean_inc(x_150); +lean_dec(x_137); +x_152 = 0; +x_153 = lean_unsigned_to_nat(0u); +x_154 = l_Float_ofScientific(x_129, x_152, x_153); +lean_dec(x_129); +x_155 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; +x_156 = lean_float_div(x_154, x_155); +x_157 = l_Float_ofScientific(x_150, x_152, x_153); +lean_dec(x_150); +x_158 = lean_float_div(x_157, x_155); +x_159 = lean_box_float(x_156); +x_160 = lean_box_float(x_158); +x_161 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_161, 0, x_159); +lean_ctor_set(x_161, 1, x_160); +lean_ctor_set(x_132, 1, x_161); +lean_ctor_set(x_132, 0, x_136); +x_24 = x_132; +x_25 = x_151; +goto block_127; } } else { -lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; uint8_t x_161; lean_object* x_162; double x_163; double x_164; double x_165; double x_166; double x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; -x_154 = lean_ctor_get(x_124, 0); -x_155 = lean_ctor_get(x_124, 1); -lean_inc(x_155); -lean_inc(x_154); -lean_dec(x_124); -x_156 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_156, 0, x_154); -x_157 = lean_io_mono_nanos_now(x_155); -x_158 = lean_ctor_get(x_157, 0); -lean_inc(x_158); -x_159 = lean_ctor_get(x_157, 1); -lean_inc(x_159); -if (lean_is_exclusive(x_157)) { - lean_ctor_release(x_157, 0); - lean_ctor_release(x_157, 1); - x_160 = x_157; +lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; lean_object* x_170; double x_171; double x_172; double x_173; double x_174; double x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; +x_162 = lean_ctor_get(x_132, 0); +x_163 = lean_ctor_get(x_132, 1); +lean_inc(x_163); +lean_inc(x_162); +lean_dec(x_132); +x_164 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_164, 0, x_162); +x_165 = lean_io_mono_nanos_now(x_163); +x_166 = lean_ctor_get(x_165, 0); +lean_inc(x_166); +x_167 = lean_ctor_get(x_165, 1); +lean_inc(x_167); +if (lean_is_exclusive(x_165)) { + lean_ctor_release(x_165, 0); + lean_ctor_release(x_165, 1); + x_168 = x_165; } else { - lean_dec_ref(x_157); - x_160 = lean_box(0); + lean_dec_ref(x_165); + x_168 = lean_box(0); } -x_161 = 0; -x_162 = lean_unsigned_to_nat(0u); -x_163 = l_Float_ofScientific(x_121, x_161, x_162); -lean_dec(x_121); -x_164 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; -x_165 = lean_float_div(x_163, x_164); -x_166 = l_Float_ofScientific(x_158, x_161, x_162); -lean_dec(x_158); -x_167 = lean_float_div(x_166, x_164); -x_168 = lean_box_float(x_165); -x_169 = lean_box_float(x_167); -if (lean_is_scalar(x_160)) { - x_170 = lean_alloc_ctor(0, 2, 0); +x_169 = 0; +x_170 = lean_unsigned_to_nat(0u); +x_171 = l_Float_ofScientific(x_129, x_169, x_170); +lean_dec(x_129); +x_172 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; +x_173 = lean_float_div(x_171, x_172); +x_174 = l_Float_ofScientific(x_166, x_169, x_170); +lean_dec(x_166); +x_175 = lean_float_div(x_174, x_172); +x_176 = lean_box_float(x_173); +x_177 = lean_box_float(x_175); +if (lean_is_scalar(x_168)) { + x_178 = lean_alloc_ctor(0, 2, 0); } else { - x_170 = x_160; + x_178 = x_168; } -lean_ctor_set(x_170, 0, x_168); -lean_ctor_set(x_170, 1, x_169); -x_171 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_171, 0, x_156); -lean_ctor_set(x_171, 1, x_170); -x_24 = x_171; -x_25 = x_159; -goto block_119; +lean_ctor_set(x_178, 0, x_176); +lean_ctor_set(x_178, 1, x_177); +x_179 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_179, 0, x_164); +lean_ctor_set(x_179, 1, x_178); +x_24 = x_179; +x_25 = x_167; +goto block_127; } } else { -uint8_t x_172; -x_172 = !lean_is_exclusive(x_124); -if (x_172 == 0) +uint8_t x_180; +x_180 = !lean_is_exclusive(x_132); +if (x_180 == 0) { -lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; uint8_t x_177; -x_173 = lean_ctor_get(x_124, 0); -x_174 = lean_ctor_get(x_124, 1); -x_175 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_175, 0, x_173); -x_176 = lean_io_mono_nanos_now(x_174); -x_177 = !lean_is_exclusive(x_176); -if (x_177 == 0) +lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; uint8_t x_185; +x_181 = lean_ctor_get(x_132, 0); +x_182 = lean_ctor_get(x_132, 1); +x_183 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_183, 0, x_181); +x_184 = lean_io_mono_nanos_now(x_182); +x_185 = !lean_is_exclusive(x_184); +if (x_185 == 0) { -lean_object* x_178; lean_object* x_179; uint8_t x_180; lean_object* x_181; double x_182; double x_183; double x_184; double x_185; double x_186; lean_object* x_187; lean_object* x_188; -x_178 = lean_ctor_get(x_176, 0); -x_179 = lean_ctor_get(x_176, 1); -x_180 = 0; -x_181 = lean_unsigned_to_nat(0u); -x_182 = l_Float_ofScientific(x_121, x_180, x_181); -lean_dec(x_121); -x_183 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; -x_184 = lean_float_div(x_182, x_183); -x_185 = l_Float_ofScientific(x_178, x_180, x_181); -lean_dec(x_178); -x_186 = lean_float_div(x_185, x_183); -x_187 = lean_box_float(x_184); -x_188 = lean_box_float(x_186); -lean_ctor_set(x_176, 1, x_188); -lean_ctor_set(x_176, 0, x_187); -lean_ctor_set_tag(x_124, 0); -lean_ctor_set(x_124, 1, x_176); -lean_ctor_set(x_124, 0, x_175); -x_24 = x_124; -x_25 = x_179; -goto block_119; +lean_object* x_186; lean_object* x_187; uint8_t x_188; lean_object* x_189; double x_190; double x_191; double x_192; double x_193; double x_194; lean_object* x_195; lean_object* x_196; +x_186 = lean_ctor_get(x_184, 0); +x_187 = lean_ctor_get(x_184, 1); +x_188 = 0; +x_189 = lean_unsigned_to_nat(0u); +x_190 = l_Float_ofScientific(x_129, x_188, x_189); +lean_dec(x_129); +x_191 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; +x_192 = lean_float_div(x_190, x_191); +x_193 = l_Float_ofScientific(x_186, x_188, x_189); +lean_dec(x_186); +x_194 = lean_float_div(x_193, x_191); +x_195 = lean_box_float(x_192); +x_196 = lean_box_float(x_194); +lean_ctor_set(x_184, 1, x_196); +lean_ctor_set(x_184, 0, x_195); +lean_ctor_set_tag(x_132, 0); +lean_ctor_set(x_132, 1, x_184); +lean_ctor_set(x_132, 0, x_183); +x_24 = x_132; +x_25 = x_187; +goto block_127; } else { -lean_object* x_189; lean_object* x_190; uint8_t x_191; lean_object* x_192; double x_193; double x_194; double x_195; double x_196; double x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; -x_189 = lean_ctor_get(x_176, 0); -x_190 = lean_ctor_get(x_176, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_176); -x_191 = 0; -x_192 = lean_unsigned_to_nat(0u); -x_193 = l_Float_ofScientific(x_121, x_191, x_192); -lean_dec(x_121); -x_194 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; -x_195 = lean_float_div(x_193, x_194); -x_196 = l_Float_ofScientific(x_189, x_191, x_192); -lean_dec(x_189); -x_197 = lean_float_div(x_196, x_194); -x_198 = lean_box_float(x_195); -x_199 = lean_box_float(x_197); -x_200 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_200, 0, x_198); -lean_ctor_set(x_200, 1, x_199); -lean_ctor_set_tag(x_124, 0); -lean_ctor_set(x_124, 1, x_200); -lean_ctor_set(x_124, 0, x_175); -x_24 = x_124; -x_25 = x_190; -goto block_119; +lean_object* x_197; lean_object* x_198; uint8_t x_199; lean_object* x_200; double x_201; double x_202; double x_203; double x_204; double x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; +x_197 = lean_ctor_get(x_184, 0); +x_198 = lean_ctor_get(x_184, 1); +lean_inc(x_198); +lean_inc(x_197); +lean_dec(x_184); +x_199 = 0; +x_200 = lean_unsigned_to_nat(0u); +x_201 = l_Float_ofScientific(x_129, x_199, x_200); +lean_dec(x_129); +x_202 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; +x_203 = lean_float_div(x_201, x_202); +x_204 = l_Float_ofScientific(x_197, x_199, x_200); +lean_dec(x_197); +x_205 = lean_float_div(x_204, x_202); +x_206 = lean_box_float(x_203); +x_207 = lean_box_float(x_205); +x_208 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_208, 0, x_206); +lean_ctor_set(x_208, 1, x_207); +lean_ctor_set_tag(x_132, 0); +lean_ctor_set(x_132, 1, x_208); +lean_ctor_set(x_132, 0, x_183); +x_24 = x_132; +x_25 = x_198; +goto block_127; } } else { -lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; uint8_t x_208; lean_object* x_209; double x_210; double x_211; double x_212; double x_213; double x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; -x_201 = lean_ctor_get(x_124, 0); -x_202 = lean_ctor_get(x_124, 1); -lean_inc(x_202); -lean_inc(x_201); -lean_dec(x_124); -x_203 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_203, 0, x_201); -x_204 = lean_io_mono_nanos_now(x_202); -x_205 = lean_ctor_get(x_204, 0); -lean_inc(x_205); -x_206 = lean_ctor_get(x_204, 1); -lean_inc(x_206); -if (lean_is_exclusive(x_204)) { - lean_ctor_release(x_204, 0); - lean_ctor_release(x_204, 1); - x_207 = x_204; +lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; lean_object* x_217; double x_218; double x_219; double x_220; double x_221; double x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; +x_209 = lean_ctor_get(x_132, 0); +x_210 = lean_ctor_get(x_132, 1); +lean_inc(x_210); +lean_inc(x_209); +lean_dec(x_132); +x_211 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_211, 0, x_209); +x_212 = lean_io_mono_nanos_now(x_210); +x_213 = lean_ctor_get(x_212, 0); +lean_inc(x_213); +x_214 = lean_ctor_get(x_212, 1); +lean_inc(x_214); +if (lean_is_exclusive(x_212)) { + lean_ctor_release(x_212, 0); + lean_ctor_release(x_212, 1); + x_215 = x_212; } else { - lean_dec_ref(x_204); - x_207 = lean_box(0); + lean_dec_ref(x_212); + x_215 = lean_box(0); } -x_208 = 0; -x_209 = lean_unsigned_to_nat(0u); -x_210 = l_Float_ofScientific(x_121, x_208, x_209); -lean_dec(x_121); -x_211 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; -x_212 = lean_float_div(x_210, x_211); -x_213 = l_Float_ofScientific(x_205, x_208, x_209); -lean_dec(x_205); -x_214 = lean_float_div(x_213, x_211); -x_215 = lean_box_float(x_212); -x_216 = lean_box_float(x_214); -if (lean_is_scalar(x_207)) { - x_217 = lean_alloc_ctor(0, 2, 0); +x_216 = 0; +x_217 = lean_unsigned_to_nat(0u); +x_218 = l_Float_ofScientific(x_129, x_216, x_217); +lean_dec(x_129); +x_219 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; +x_220 = lean_float_div(x_218, x_219); +x_221 = l_Float_ofScientific(x_213, x_216, x_217); +lean_dec(x_213); +x_222 = lean_float_div(x_221, x_219); +x_223 = lean_box_float(x_220); +x_224 = lean_box_float(x_222); +if (lean_is_scalar(x_215)) { + x_225 = lean_alloc_ctor(0, 2, 0); } else { - x_217 = x_207; + x_225 = x_215; } -lean_ctor_set(x_217, 0, x_215); -lean_ctor_set(x_217, 1, x_216); -x_218 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_218, 0, x_203); -lean_ctor_set(x_218, 1, x_217); -x_24 = x_218; -x_25 = x_206; -goto block_119; +lean_ctor_set(x_225, 0, x_223); +lean_ctor_set(x_225, 1, x_224); +x_226 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_226, 0, x_211); +lean_ctor_set(x_226, 1, x_225); +x_24 = x_226; +x_25 = x_214; +goto block_127; } } -block_119: +block_127: { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_object* x_99; uint8_t x_100; +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; uint8_t x_32; x_26 = lean_ctor_get(x_24, 1); lean_inc(x_26); x_27 = lean_ctor_get(x_24, 0); @@ -32446,14 +32411,28 @@ lean_inc(x_28); x_29 = lean_ctor_get(x_26, 1); lean_inc(x_29); lean_dec(x_26); -x_99 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__2; -x_100 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_99); -if (x_100 == 0) +x_30 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__2; +x_31 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_30); +if (x_31 == 0) { -uint8_t x_101; -x_101 = 0; -x_30 = x_101; -goto block_98; +if (x_6 == 0) +{ +uint8_t x_97; +x_97 = 0; +x_32 = x_97; +goto block_96; +} +else +{ +lean_object* x_98; double x_99; double x_100; lean_object* x_101; +x_98 = lean_box(0); +x_99 = lean_unbox_float(x_28); +lean_dec(x_28); +x_100 = lean_unbox_float(x_29); +lean_dec(x_29); +x_101 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3(x_2, x_3, x_4, x_20, x_27, x_31, x_99, x_100, x_5, x_98, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_25); +return x_101; +} } else { @@ -32463,6 +32442,8 @@ x_103 = lean_unbox_float(x_28); x_104 = lean_float_sub(x_102, x_103); if (x_23 == 0) { +if (x_6 == 0) +{ lean_object* x_105; lean_object* x_106; uint8_t x_107; lean_object* x_108; double x_109; double x_110; double x_111; uint8_t x_112; x_105 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__3; x_106 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_105); @@ -32473,62 +32454,86 @@ lean_dec(x_106); x_110 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__4; x_111 = lean_float_div(x_109, x_110); x_112 = lean_float_decLt(x_111, x_104); -x_30 = x_112; -goto block_98; +x_32 = x_112; +goto block_96; } else { -lean_object* x_113; lean_object* x_114; uint8_t x_115; lean_object* x_116; double x_117; uint8_t x_118; -x_113 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__3; -x_114 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_113); -x_115 = 0; -x_116 = lean_unsigned_to_nat(0u); -x_117 = l_Float_ofScientific(x_114, x_115, x_116); -lean_dec(x_114); -x_118 = lean_float_decLt(x_117, x_104); -x_30 = x_118; -goto block_98; +lean_object* x_113; double x_114; double x_115; lean_object* x_116; +x_113 = lean_box(0); +x_114 = lean_unbox_float(x_28); +lean_dec(x_28); +x_115 = lean_unbox_float(x_29); +lean_dec(x_29); +x_116 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3(x_2, x_3, x_4, x_20, x_27, x_31, x_114, x_115, x_5, x_113, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_25); +return x_116; } } -block_98: +else { if (x_6 == 0) { -if (x_30 == 0) +lean_object* x_117; lean_object* x_118; uint8_t x_119; lean_object* x_120; double x_121; uint8_t x_122; +x_117 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__3; +x_118 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_117); +x_119 = 0; +x_120 = lean_unsigned_to_nat(0u); +x_121 = l_Float_ofScientific(x_118, x_119, x_120); +lean_dec(x_118); +x_122 = lean_float_decLt(x_121, x_104); +x_32 = x_122; +goto block_96; +} +else { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; +lean_object* x_123; double x_124; double x_125; lean_object* x_126; +x_123 = lean_box(0); +x_124 = lean_unbox_float(x_28); +lean_dec(x_28); +x_125 = lean_unbox_float(x_29); +lean_dec(x_29); +x_126 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3(x_2, x_3, x_4, x_20, x_27, x_31, x_124, x_125, x_5, x_123, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_25); +return x_126; +} +} +} +block_96: +{ +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_dec(x_29); lean_dec(x_28); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_31 = lean_st_ref_take(x_17, x_25); -x_32 = lean_ctor_get(x_31, 0); -lean_inc(x_32); -x_33 = lean_ctor_get(x_32, 3); -lean_inc(x_33); -x_34 = lean_ctor_get(x_31, 1); +x_33 = lean_st_ref_take(x_17, x_25); +x_34 = lean_ctor_get(x_33, 0); lean_inc(x_34); -lean_dec(x_31); -x_35 = !lean_is_exclusive(x_32); -if (x_35 == 0) -{ -lean_object* x_36; uint8_t x_37; -x_36 = lean_ctor_get(x_32, 3); -lean_dec(x_36); -x_37 = !lean_is_exclusive(x_33); +x_35 = lean_ctor_get(x_34, 3); +lean_inc(x_35); +x_36 = lean_ctor_get(x_33, 1); +lean_inc(x_36); +lean_dec(x_33); +x_37 = !lean_is_exclusive(x_34); if (x_37 == 0) { -lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_38 = lean_ctor_get(x_33, 0); -x_39 = l_Lean_PersistentArray_append___rarg(x_20, x_38); +lean_object* x_38; uint8_t x_39; +x_38 = lean_ctor_get(x_34, 3); lean_dec(x_38); -lean_ctor_set(x_33, 0, x_39); -x_40 = lean_st_ref_set(x_17, x_32, x_34); -x_41 = lean_ctor_get(x_40, 1); -lean_inc(x_41); +x_39 = !lean_is_exclusive(x_35); +if (x_39 == 0) +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_40 = lean_ctor_get(x_35, 0); +x_41 = l_Lean_PersistentArray_append___rarg(x_20, x_40); lean_dec(x_40); -x_42 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__5(x_27, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_41); +lean_ctor_set(x_35, 0, x_41); +x_42 = lean_st_ref_set(x_17, x_34, x_36); +x_43 = lean_ctor_get(x_42, 1); +lean_inc(x_43); +lean_dec(x_42); +x_44 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__5(x_27, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_43); lean_dec(x_17); lean_dec(x_16); lean_dec(x_15); @@ -32538,179 +32543,179 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_27); -if (lean_obj_tag(x_42) == 0) +if (lean_obj_tag(x_44) == 0) { -uint8_t x_43; -x_43 = !lean_is_exclusive(x_42); -if (x_43 == 0) +uint8_t x_45; +x_45 = !lean_is_exclusive(x_44); +if (x_45 == 0) { -return x_42; +return x_44; } else { -lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_44 = lean_ctor_get(x_42, 0); -x_45 = lean_ctor_get(x_42, 1); -lean_inc(x_45); -lean_inc(x_44); -lean_dec(x_42); -x_46 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_46, 0, x_44); -lean_ctor_set(x_46, 1, x_45); -return x_46; +lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_46 = lean_ctor_get(x_44, 0); +x_47 = lean_ctor_get(x_44, 1); +lean_inc(x_47); +lean_inc(x_46); +lean_dec(x_44); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_47); +return x_48; } } else { -uint8_t x_47; -x_47 = !lean_is_exclusive(x_42); -if (x_47 == 0) +uint8_t x_49; +x_49 = !lean_is_exclusive(x_44); +if (x_49 == 0) { -return x_42; +return x_44; } else { -lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_48 = lean_ctor_get(x_42, 0); -x_49 = lean_ctor_get(x_42, 1); -lean_inc(x_49); -lean_inc(x_48); -lean_dec(x_42); -x_50 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_50, 0, x_48); -lean_ctor_set(x_50, 1, x_49); -return x_50; +lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_50 = lean_ctor_get(x_44, 0); +x_51 = lean_ctor_get(x_44, 1); +lean_inc(x_51); +lean_inc(x_50); +lean_dec(x_44); +x_52 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_52, 0, x_50); +lean_ctor_set(x_52, 1, x_51); +return x_52; } } } else { -uint64_t x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_51 = lean_ctor_get_uint64(x_33, sizeof(void*)*1); -x_52 = lean_ctor_get(x_33, 0); -lean_inc(x_52); -lean_dec(x_33); -x_53 = l_Lean_PersistentArray_append___rarg(x_20, x_52); -lean_dec(x_52); -x_54 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_54, 0, x_53); -lean_ctor_set_uint64(x_54, sizeof(void*)*1, x_51); -lean_ctor_set(x_32, 3, x_54); -x_55 = lean_st_ref_set(x_17, x_32, x_34); -x_56 = lean_ctor_get(x_55, 1); -lean_inc(x_56); -lean_dec(x_55); -x_57 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__5(x_27, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_56); -lean_dec(x_17); -lean_dec(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_27); -if (lean_obj_tag(x_57) == 0) -{ -lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; -x_58 = lean_ctor_get(x_57, 0); +uint64_t x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_53 = lean_ctor_get_uint64(x_35, sizeof(void*)*1); +x_54 = lean_ctor_get(x_35, 0); +lean_inc(x_54); +lean_dec(x_35); +x_55 = l_Lean_PersistentArray_append___rarg(x_20, x_54); +lean_dec(x_54); +x_56 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_56, 0, x_55); +lean_ctor_set_uint64(x_56, sizeof(void*)*1, x_53); +lean_ctor_set(x_34, 3, x_56); +x_57 = lean_st_ref_set(x_17, x_34, x_36); +x_58 = lean_ctor_get(x_57, 1); lean_inc(x_58); -x_59 = lean_ctor_get(x_57, 1); -lean_inc(x_59); -if (lean_is_exclusive(x_57)) { - lean_ctor_release(x_57, 0); - lean_ctor_release(x_57, 1); - x_60 = x_57; +lean_dec(x_57); +x_59 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__5(x_27, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_58); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_27); +if (lean_obj_tag(x_59) == 0) +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_60 = lean_ctor_get(x_59, 0); +lean_inc(x_60); +x_61 = lean_ctor_get(x_59, 1); +lean_inc(x_61); +if (lean_is_exclusive(x_59)) { + lean_ctor_release(x_59, 0); + lean_ctor_release(x_59, 1); + x_62 = x_59; } else { - lean_dec_ref(x_57); - x_60 = lean_box(0); + lean_dec_ref(x_59); + x_62 = lean_box(0); } -if (lean_is_scalar(x_60)) { - x_61 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_62)) { + x_63 = lean_alloc_ctor(0, 2, 0); } else { - x_61 = x_60; + x_63 = x_62; } -lean_ctor_set(x_61, 0, x_58); -lean_ctor_set(x_61, 1, x_59); -return x_61; +lean_ctor_set(x_63, 0, x_60); +lean_ctor_set(x_63, 1, x_61); +return x_63; } else { -lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; -x_62 = lean_ctor_get(x_57, 0); -lean_inc(x_62); -x_63 = lean_ctor_get(x_57, 1); -lean_inc(x_63); -if (lean_is_exclusive(x_57)) { - lean_ctor_release(x_57, 0); - lean_ctor_release(x_57, 1); - x_64 = x_57; +lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_64 = lean_ctor_get(x_59, 0); +lean_inc(x_64); +x_65 = lean_ctor_get(x_59, 1); +lean_inc(x_65); +if (lean_is_exclusive(x_59)) { + lean_ctor_release(x_59, 0); + lean_ctor_release(x_59, 1); + x_66 = x_59; } else { - lean_dec_ref(x_57); - x_64 = lean_box(0); + lean_dec_ref(x_59); + x_66 = lean_box(0); } -if (lean_is_scalar(x_64)) { - x_65 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_66)) { + x_67 = lean_alloc_ctor(1, 2, 0); } else { - x_65 = x_64; + x_67 = x_66; } -lean_ctor_set(x_65, 0, x_62); -lean_ctor_set(x_65, 1, x_63); -return x_65; +lean_ctor_set(x_67, 0, x_64); +lean_ctor_set(x_67, 1, x_65); +return x_67; } } } else { -lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; uint64_t x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; -x_66 = lean_ctor_get(x_32, 0); -x_67 = lean_ctor_get(x_32, 1); -x_68 = lean_ctor_get(x_32, 2); -x_69 = lean_ctor_get(x_32, 4); -x_70 = lean_ctor_get(x_32, 5); -x_71 = lean_ctor_get(x_32, 6); -x_72 = lean_ctor_get(x_32, 7); +lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; uint64_t x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; +x_68 = lean_ctor_get(x_34, 0); +x_69 = lean_ctor_get(x_34, 1); +x_70 = lean_ctor_get(x_34, 2); +x_71 = lean_ctor_get(x_34, 4); +x_72 = lean_ctor_get(x_34, 5); +x_73 = lean_ctor_get(x_34, 6); +x_74 = lean_ctor_get(x_34, 7); +lean_inc(x_74); +lean_inc(x_73); lean_inc(x_72); lean_inc(x_71); lean_inc(x_70); lean_inc(x_69); lean_inc(x_68); -lean_inc(x_67); -lean_inc(x_66); -lean_dec(x_32); -x_73 = lean_ctor_get_uint64(x_33, sizeof(void*)*1); -x_74 = lean_ctor_get(x_33, 0); -lean_inc(x_74); -if (lean_is_exclusive(x_33)) { - lean_ctor_release(x_33, 0); - x_75 = x_33; +lean_dec(x_34); +x_75 = lean_ctor_get_uint64(x_35, sizeof(void*)*1); +x_76 = lean_ctor_get(x_35, 0); +lean_inc(x_76); +if (lean_is_exclusive(x_35)) { + lean_ctor_release(x_35, 0); + x_77 = x_35; } else { - lean_dec_ref(x_33); - x_75 = lean_box(0); + lean_dec_ref(x_35); + x_77 = lean_box(0); } -x_76 = l_Lean_PersistentArray_append___rarg(x_20, x_74); -lean_dec(x_74); -if (lean_is_scalar(x_75)) { - x_77 = lean_alloc_ctor(0, 1, 8); +x_78 = l_Lean_PersistentArray_append___rarg(x_20, x_76); +lean_dec(x_76); +if (lean_is_scalar(x_77)) { + x_79 = lean_alloc_ctor(0, 1, 8); } else { - x_77 = x_75; + x_79 = x_77; } -lean_ctor_set(x_77, 0, x_76); -lean_ctor_set_uint64(x_77, sizeof(void*)*1, x_73); -x_78 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_78, 0, x_66); -lean_ctor_set(x_78, 1, x_67); -lean_ctor_set(x_78, 2, x_68); -lean_ctor_set(x_78, 3, x_77); -lean_ctor_set(x_78, 4, x_69); -lean_ctor_set(x_78, 5, x_70); -lean_ctor_set(x_78, 6, x_71); -lean_ctor_set(x_78, 7, x_72); -x_79 = lean_st_ref_set(x_17, x_78, x_34); -x_80 = lean_ctor_get(x_79, 1); -lean_inc(x_80); -lean_dec(x_79); -x_81 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__5(x_27, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_80); +lean_ctor_set(x_79, 0, x_78); +lean_ctor_set_uint64(x_79, sizeof(void*)*1, x_75); +x_80 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_80, 0, x_68); +lean_ctor_set(x_80, 1, x_69); +lean_ctor_set(x_80, 2, x_70); +lean_ctor_set(x_80, 3, x_79); +lean_ctor_set(x_80, 4, x_71); +lean_ctor_set(x_80, 5, x_72); +lean_ctor_set(x_80, 6, x_73); +lean_ctor_set(x_80, 7, x_74); +x_81 = lean_st_ref_set(x_17, x_80, x_36); +x_82 = lean_ctor_get(x_81, 1); +lean_inc(x_82); +lean_dec(x_81); +x_83 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__5(x_27, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_82); lean_dec(x_17); lean_dec(x_16); lean_dec(x_15); @@ -32720,92 +32725,80 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_27); -if (lean_obj_tag(x_81) == 0) +if (lean_obj_tag(x_83) == 0) { -lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; -x_82 = lean_ctor_get(x_81, 0); -lean_inc(x_82); -x_83 = lean_ctor_get(x_81, 1); -lean_inc(x_83); -if (lean_is_exclusive(x_81)) { - lean_ctor_release(x_81, 0); - lean_ctor_release(x_81, 1); - x_84 = x_81; +lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_84 = lean_ctor_get(x_83, 0); +lean_inc(x_84); +x_85 = lean_ctor_get(x_83, 1); +lean_inc(x_85); +if (lean_is_exclusive(x_83)) { + lean_ctor_release(x_83, 0); + lean_ctor_release(x_83, 1); + x_86 = x_83; } else { - lean_dec_ref(x_81); - x_84 = lean_box(0); + lean_dec_ref(x_83); + x_86 = lean_box(0); } -if (lean_is_scalar(x_84)) { - x_85 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_86)) { + x_87 = lean_alloc_ctor(0, 2, 0); } else { - x_85 = x_84; + x_87 = x_86; } -lean_ctor_set(x_85, 0, x_82); -lean_ctor_set(x_85, 1, x_83); -return x_85; +lean_ctor_set(x_87, 0, x_84); +lean_ctor_set(x_87, 1, x_85); +return x_87; } else { -lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; -x_86 = lean_ctor_get(x_81, 0); -lean_inc(x_86); -x_87 = lean_ctor_get(x_81, 1); -lean_inc(x_87); -if (lean_is_exclusive(x_81)) { - lean_ctor_release(x_81, 0); - lean_ctor_release(x_81, 1); - x_88 = x_81; +lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; +x_88 = lean_ctor_get(x_83, 0); +lean_inc(x_88); +x_89 = lean_ctor_get(x_83, 1); +lean_inc(x_89); +if (lean_is_exclusive(x_83)) { + lean_ctor_release(x_83, 0); + lean_ctor_release(x_83, 1); + x_90 = x_83; } else { - lean_dec_ref(x_81); - x_88 = lean_box(0); + lean_dec_ref(x_83); + x_90 = lean_box(0); } -if (lean_is_scalar(x_88)) { - x_89 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_90)) { + x_91 = lean_alloc_ctor(1, 2, 0); } else { - x_89 = x_88; + x_91 = x_90; } -lean_ctor_set(x_89, 0, x_86); -lean_ctor_set(x_89, 1, x_87); -return x_89; +lean_ctor_set(x_91, 0, x_88); +lean_ctor_set(x_91, 1, x_89); +return x_91; } } } else { -lean_object* x_90; double x_91; double x_92; lean_object* x_93; -x_90 = lean_box(0); -x_91 = lean_unbox_float(x_28); +lean_object* x_92; double x_93; double x_94; lean_object* x_95; +x_92 = lean_box(0); +x_93 = lean_unbox_float(x_28); lean_dec(x_28); -x_92 = lean_unbox_float(x_29); +x_94 = lean_unbox_float(x_29); lean_dec(x_29); -x_93 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3(x_2, x_3, x_4, x_20, x_27, x_1, x_30, x_91, x_92, x_5, x_90, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_25); -return x_93; -} -} -else -{ -lean_object* x_94; double x_95; double x_96; lean_object* x_97; -x_94 = lean_box(0); -x_95 = lean_unbox_float(x_28); -lean_dec(x_28); -x_96 = lean_unbox_float(x_29); -lean_dec(x_29); -x_97 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3(x_2, x_3, x_4, x_20, x_27, x_1, x_30, x_95, x_96, x_5, x_94, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_25); -return x_97; +x_95 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3(x_2, x_3, x_4, x_20, x_27, x_31, x_93, x_94, x_5, x_92, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_25); +return x_95; } } } } else { -lean_object* x_219; lean_object* x_220; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; -x_315 = lean_io_get_num_heartbeats(x_21); -x_316 = lean_ctor_get(x_315, 0); -lean_inc(x_316); -x_317 = lean_ctor_get(x_315, 1); -lean_inc(x_317); -lean_dec(x_315); -x_318 = lean_box(x_12); +lean_object* x_227; lean_object* x_228; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; +x_331 = lean_io_get_num_heartbeats(x_21); +x_332 = lean_ctor_get(x_331, 0); +lean_inc(x_332); +x_333 = lean_ctor_get(x_331, 1); +lean_inc(x_333); +lean_dec(x_331); +x_334 = lean_box(x_12); lean_inc(x_17); lean_inc(x_16); lean_inc(x_15); @@ -32814,499 +32807,429 @@ lean_inc(x_13); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_319 = lean_apply_10(x_7, x_9, x_10, x_11, x_318, x_13, x_14, x_15, x_16, x_17, x_317); -if (lean_obj_tag(x_319) == 0) +x_335 = lean_apply_10(x_7, x_9, x_10, x_11, x_334, x_13, x_14, x_15, x_16, x_17, x_333); +if (lean_obj_tag(x_335) == 0) { -uint8_t x_320; -x_320 = !lean_is_exclusive(x_319); -if (x_320 == 0) +uint8_t x_336; +x_336 = !lean_is_exclusive(x_335); +if (x_336 == 0) { -lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; uint8_t x_325; -x_321 = lean_ctor_get(x_319, 0); -x_322 = lean_ctor_get(x_319, 1); -x_323 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_323, 0, x_321); -x_324 = lean_io_get_num_heartbeats(x_322); -x_325 = !lean_is_exclusive(x_324); -if (x_325 == 0) +lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; uint8_t x_341; +x_337 = lean_ctor_get(x_335, 0); +x_338 = lean_ctor_get(x_335, 1); +x_339 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_339, 0, x_337); +x_340 = lean_io_get_num_heartbeats(x_338); +x_341 = !lean_is_exclusive(x_340); +if (x_341 == 0) { -lean_object* x_326; lean_object* x_327; uint8_t x_328; lean_object* x_329; double x_330; double x_331; lean_object* x_332; lean_object* x_333; -x_326 = lean_ctor_get(x_324, 0); -x_327 = lean_ctor_get(x_324, 1); -x_328 = 0; -x_329 = lean_unsigned_to_nat(0u); -x_330 = l_Float_ofScientific(x_316, x_328, x_329); -lean_dec(x_316); -x_331 = l_Float_ofScientific(x_326, x_328, x_329); -lean_dec(x_326); -x_332 = lean_box_float(x_330); -x_333 = lean_box_float(x_331); -lean_ctor_set(x_324, 1, x_333); -lean_ctor_set(x_324, 0, x_332); -lean_ctor_set(x_319, 1, x_324); -lean_ctor_set(x_319, 0, x_323); -x_219 = x_319; -x_220 = x_327; -goto block_314; +lean_object* x_342; lean_object* x_343; uint8_t x_344; lean_object* x_345; double x_346; double x_347; lean_object* x_348; lean_object* x_349; +x_342 = lean_ctor_get(x_340, 0); +x_343 = lean_ctor_get(x_340, 1); +x_344 = 0; +x_345 = lean_unsigned_to_nat(0u); +x_346 = l_Float_ofScientific(x_332, x_344, x_345); +lean_dec(x_332); +x_347 = l_Float_ofScientific(x_342, x_344, x_345); +lean_dec(x_342); +x_348 = lean_box_float(x_346); +x_349 = lean_box_float(x_347); +lean_ctor_set(x_340, 1, x_349); +lean_ctor_set(x_340, 0, x_348); +lean_ctor_set(x_335, 1, x_340); +lean_ctor_set(x_335, 0, x_339); +x_227 = x_335; +x_228 = x_343; +goto block_330; } else { -lean_object* x_334; lean_object* x_335; uint8_t x_336; lean_object* x_337; double x_338; double x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; -x_334 = lean_ctor_get(x_324, 0); -x_335 = lean_ctor_get(x_324, 1); -lean_inc(x_335); -lean_inc(x_334); -lean_dec(x_324); -x_336 = 0; -x_337 = lean_unsigned_to_nat(0u); -x_338 = l_Float_ofScientific(x_316, x_336, x_337); -lean_dec(x_316); -x_339 = l_Float_ofScientific(x_334, x_336, x_337); -lean_dec(x_334); -x_340 = lean_box_float(x_338); -x_341 = lean_box_float(x_339); -x_342 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_342, 0, x_340); -lean_ctor_set(x_342, 1, x_341); -lean_ctor_set(x_319, 1, x_342); -lean_ctor_set(x_319, 0, x_323); -x_219 = x_319; -x_220 = x_335; -goto block_314; +lean_object* x_350; lean_object* x_351; uint8_t x_352; lean_object* x_353; double x_354; double x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; +x_350 = lean_ctor_get(x_340, 0); +x_351 = lean_ctor_get(x_340, 1); +lean_inc(x_351); +lean_inc(x_350); +lean_dec(x_340); +x_352 = 0; +x_353 = lean_unsigned_to_nat(0u); +x_354 = l_Float_ofScientific(x_332, x_352, x_353); +lean_dec(x_332); +x_355 = l_Float_ofScientific(x_350, x_352, x_353); +lean_dec(x_350); +x_356 = lean_box_float(x_354); +x_357 = lean_box_float(x_355); +x_358 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_358, 0, x_356); +lean_ctor_set(x_358, 1, x_357); +lean_ctor_set(x_335, 1, x_358); +lean_ctor_set(x_335, 0, x_339); +x_227 = x_335; +x_228 = x_351; +goto block_330; } } else { -lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; lean_object* x_351; double x_352; double x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; -x_343 = lean_ctor_get(x_319, 0); -x_344 = lean_ctor_get(x_319, 1); -lean_inc(x_344); -lean_inc(x_343); -lean_dec(x_319); -x_345 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_345, 0, x_343); -x_346 = lean_io_get_num_heartbeats(x_344); -x_347 = lean_ctor_get(x_346, 0); -lean_inc(x_347); -x_348 = lean_ctor_get(x_346, 1); -lean_inc(x_348); -if (lean_is_exclusive(x_346)) { - lean_ctor_release(x_346, 0); - lean_ctor_release(x_346, 1); - x_349 = x_346; -} else { - lean_dec_ref(x_346); - x_349 = lean_box(0); -} -x_350 = 0; -x_351 = lean_unsigned_to_nat(0u); -x_352 = l_Float_ofScientific(x_316, x_350, x_351); -lean_dec(x_316); -x_353 = l_Float_ofScientific(x_347, x_350, x_351); -lean_dec(x_347); -x_354 = lean_box_float(x_352); -x_355 = lean_box_float(x_353); -if (lean_is_scalar(x_349)) { - x_356 = lean_alloc_ctor(0, 2, 0); -} else { - x_356 = x_349; -} -lean_ctor_set(x_356, 0, x_354); -lean_ctor_set(x_356, 1, x_355); -x_357 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_357, 0, x_345); -lean_ctor_set(x_357, 1, x_356); -x_219 = x_357; -x_220 = x_348; -goto block_314; -} -} -else -{ -uint8_t x_358; -x_358 = !lean_is_exclusive(x_319); -if (x_358 == 0) -{ -lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; uint8_t x_363; -x_359 = lean_ctor_get(x_319, 0); -x_360 = lean_ctor_get(x_319, 1); -x_361 = lean_alloc_ctor(0, 1, 0); +lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; uint8_t x_366; lean_object* x_367; double x_368; double x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; +x_359 = lean_ctor_get(x_335, 0); +x_360 = lean_ctor_get(x_335, 1); +lean_inc(x_360); +lean_inc(x_359); +lean_dec(x_335); +x_361 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_361, 0, x_359); x_362 = lean_io_get_num_heartbeats(x_360); -x_363 = !lean_is_exclusive(x_362); -if (x_363 == 0) -{ -lean_object* x_364; lean_object* x_365; uint8_t x_366; lean_object* x_367; double x_368; double x_369; lean_object* x_370; lean_object* x_371; -x_364 = lean_ctor_get(x_362, 0); -x_365 = lean_ctor_get(x_362, 1); +x_363 = lean_ctor_get(x_362, 0); +lean_inc(x_363); +x_364 = lean_ctor_get(x_362, 1); +lean_inc(x_364); +if (lean_is_exclusive(x_362)) { + lean_ctor_release(x_362, 0); + lean_ctor_release(x_362, 1); + x_365 = x_362; +} else { + lean_dec_ref(x_362); + x_365 = lean_box(0); +} x_366 = 0; x_367 = lean_unsigned_to_nat(0u); -x_368 = l_Float_ofScientific(x_316, x_366, x_367); -lean_dec(x_316); -x_369 = l_Float_ofScientific(x_364, x_366, x_367); -lean_dec(x_364); +x_368 = l_Float_ofScientific(x_332, x_366, x_367); +lean_dec(x_332); +x_369 = l_Float_ofScientific(x_363, x_366, x_367); +lean_dec(x_363); x_370 = lean_box_float(x_368); x_371 = lean_box_float(x_369); -lean_ctor_set(x_362, 1, x_371); -lean_ctor_set(x_362, 0, x_370); -lean_ctor_set_tag(x_319, 0); -lean_ctor_set(x_319, 1, x_362); -lean_ctor_set(x_319, 0, x_361); -x_219 = x_319; -x_220 = x_365; -goto block_314; -} -else -{ -lean_object* x_372; lean_object* x_373; uint8_t x_374; lean_object* x_375; double x_376; double x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; -x_372 = lean_ctor_get(x_362, 0); -x_373 = lean_ctor_get(x_362, 1); -lean_inc(x_373); -lean_inc(x_372); -lean_dec(x_362); -x_374 = 0; -x_375 = lean_unsigned_to_nat(0u); -x_376 = l_Float_ofScientific(x_316, x_374, x_375); -lean_dec(x_316); -x_377 = l_Float_ofScientific(x_372, x_374, x_375); -lean_dec(x_372); -x_378 = lean_box_float(x_376); -x_379 = lean_box_float(x_377); -x_380 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_380, 0, x_378); -lean_ctor_set(x_380, 1, x_379); -lean_ctor_set_tag(x_319, 0); -lean_ctor_set(x_319, 1, x_380); -lean_ctor_set(x_319, 0, x_361); -x_219 = x_319; -x_220 = x_373; -goto block_314; -} -} -else -{ -lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; uint8_t x_388; lean_object* x_389; double x_390; double x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; -x_381 = lean_ctor_get(x_319, 0); -x_382 = lean_ctor_get(x_319, 1); -lean_inc(x_382); -lean_inc(x_381); -lean_dec(x_319); -x_383 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_383, 0, x_381); -x_384 = lean_io_get_num_heartbeats(x_382); -x_385 = lean_ctor_get(x_384, 0); -lean_inc(x_385); -x_386 = lean_ctor_get(x_384, 1); -lean_inc(x_386); -if (lean_is_exclusive(x_384)) { - lean_ctor_release(x_384, 0); - lean_ctor_release(x_384, 1); - x_387 = x_384; +if (lean_is_scalar(x_365)) { + x_372 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_384); - x_387 = lean_box(0); + x_372 = x_365; } -x_388 = 0; -x_389 = lean_unsigned_to_nat(0u); -x_390 = l_Float_ofScientific(x_316, x_388, x_389); -lean_dec(x_316); -x_391 = l_Float_ofScientific(x_385, x_388, x_389); -lean_dec(x_385); -x_392 = lean_box_float(x_390); -x_393 = lean_box_float(x_391); -if (lean_is_scalar(x_387)) { - x_394 = lean_alloc_ctor(0, 2, 0); -} else { - x_394 = x_387; +lean_ctor_set(x_372, 0, x_370); +lean_ctor_set(x_372, 1, x_371); +x_373 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_373, 0, x_361); +lean_ctor_set(x_373, 1, x_372); +x_227 = x_373; +x_228 = x_364; +goto block_330; } -lean_ctor_set(x_394, 0, x_392); -lean_ctor_set(x_394, 1, x_393); -x_395 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_395, 0, x_383); -lean_ctor_set(x_395, 1, x_394); -x_219 = x_395; -x_220 = x_386; -goto block_314; -} -} -block_314: -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; uint8_t x_225; lean_object* x_294; uint8_t x_295; -x_221 = lean_ctor_get(x_219, 1); -lean_inc(x_221); -x_222 = lean_ctor_get(x_219, 0); -lean_inc(x_222); -lean_dec(x_219); -x_223 = lean_ctor_get(x_221, 0); -lean_inc(x_223); -x_224 = lean_ctor_get(x_221, 1); -lean_inc(x_224); -lean_dec(x_221); -x_294 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__2; -x_295 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_294); -if (x_295 == 0) -{ -uint8_t x_296; -x_296 = 0; -x_225 = x_296; -goto block_293; } else { -double x_297; double x_298; double x_299; -x_297 = lean_unbox_float(x_224); -x_298 = lean_unbox_float(x_223); -x_299 = lean_float_sub(x_297, x_298); +uint8_t x_374; +x_374 = !lean_is_exclusive(x_335); +if (x_374 == 0) +{ +lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; uint8_t x_379; +x_375 = lean_ctor_get(x_335, 0); +x_376 = lean_ctor_get(x_335, 1); +x_377 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_377, 0, x_375); +x_378 = lean_io_get_num_heartbeats(x_376); +x_379 = !lean_is_exclusive(x_378); +if (x_379 == 0) +{ +lean_object* x_380; lean_object* x_381; uint8_t x_382; lean_object* x_383; double x_384; double x_385; lean_object* x_386; lean_object* x_387; +x_380 = lean_ctor_get(x_378, 0); +x_381 = lean_ctor_get(x_378, 1); +x_382 = 0; +x_383 = lean_unsigned_to_nat(0u); +x_384 = l_Float_ofScientific(x_332, x_382, x_383); +lean_dec(x_332); +x_385 = l_Float_ofScientific(x_380, x_382, x_383); +lean_dec(x_380); +x_386 = lean_box_float(x_384); +x_387 = lean_box_float(x_385); +lean_ctor_set(x_378, 1, x_387); +lean_ctor_set(x_378, 0, x_386); +lean_ctor_set_tag(x_335, 0); +lean_ctor_set(x_335, 1, x_378); +lean_ctor_set(x_335, 0, x_377); +x_227 = x_335; +x_228 = x_381; +goto block_330; +} +else +{ +lean_object* x_388; lean_object* x_389; uint8_t x_390; lean_object* x_391; double x_392; double x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; +x_388 = lean_ctor_get(x_378, 0); +x_389 = lean_ctor_get(x_378, 1); +lean_inc(x_389); +lean_inc(x_388); +lean_dec(x_378); +x_390 = 0; +x_391 = lean_unsigned_to_nat(0u); +x_392 = l_Float_ofScientific(x_332, x_390, x_391); +lean_dec(x_332); +x_393 = l_Float_ofScientific(x_388, x_390, x_391); +lean_dec(x_388); +x_394 = lean_box_float(x_392); +x_395 = lean_box_float(x_393); +x_396 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_396, 0, x_394); +lean_ctor_set(x_396, 1, x_395); +lean_ctor_set_tag(x_335, 0); +lean_ctor_set(x_335, 1, x_396); +lean_ctor_set(x_335, 0, x_377); +x_227 = x_335; +x_228 = x_389; +goto block_330; +} +} +else +{ +lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; uint8_t x_404; lean_object* x_405; double x_406; double x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; +x_397 = lean_ctor_get(x_335, 0); +x_398 = lean_ctor_get(x_335, 1); +lean_inc(x_398); +lean_inc(x_397); +lean_dec(x_335); +x_399 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_399, 0, x_397); +x_400 = lean_io_get_num_heartbeats(x_398); +x_401 = lean_ctor_get(x_400, 0); +lean_inc(x_401); +x_402 = lean_ctor_get(x_400, 1); +lean_inc(x_402); +if (lean_is_exclusive(x_400)) { + lean_ctor_release(x_400, 0); + lean_ctor_release(x_400, 1); + x_403 = x_400; +} else { + lean_dec_ref(x_400); + x_403 = lean_box(0); +} +x_404 = 0; +x_405 = lean_unsigned_to_nat(0u); +x_406 = l_Float_ofScientific(x_332, x_404, x_405); +lean_dec(x_332); +x_407 = l_Float_ofScientific(x_401, x_404, x_405); +lean_dec(x_401); +x_408 = lean_box_float(x_406); +x_409 = lean_box_float(x_407); +if (lean_is_scalar(x_403)) { + x_410 = lean_alloc_ctor(0, 2, 0); +} else { + x_410 = x_403; +} +lean_ctor_set(x_410, 0, x_408); +lean_ctor_set(x_410, 1, x_409); +x_411 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_411, 0, x_399); +lean_ctor_set(x_411, 1, x_410); +x_227 = x_411; +x_228 = x_402; +goto block_330; +} +} +block_330: +{ +lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; uint8_t x_234; uint8_t x_235; +x_229 = lean_ctor_get(x_227, 1); +lean_inc(x_229); +x_230 = lean_ctor_get(x_227, 0); +lean_inc(x_230); +lean_dec(x_227); +x_231 = lean_ctor_get(x_229, 0); +lean_inc(x_231); +x_232 = lean_ctor_get(x_229, 1); +lean_inc(x_232); +lean_dec(x_229); +x_233 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__2; +x_234 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_233); +if (x_234 == 0) +{ +if (x_6 == 0) +{ +uint8_t x_300; +x_300 = 0; +x_235 = x_300; +goto block_299; +} +else +{ +lean_object* x_301; double x_302; double x_303; lean_object* x_304; +x_301 = lean_box(0); +x_302 = lean_unbox_float(x_231); +lean_dec(x_231); +x_303 = lean_unbox_float(x_232); +lean_dec(x_232); +x_304 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3(x_2, x_3, x_4, x_20, x_230, x_234, x_302, x_303, x_5, x_301, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_228); +return x_304; +} +} +else +{ +double x_305; double x_306; double x_307; +x_305 = lean_unbox_float(x_232); +x_306 = lean_unbox_float(x_231); +x_307 = lean_float_sub(x_305, x_306); if (x_23 == 0) { -lean_object* x_300; lean_object* x_301; uint8_t x_302; lean_object* x_303; double x_304; double x_305; double x_306; uint8_t x_307; -x_300 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__3; -x_301 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_300); -x_302 = 0; -x_303 = lean_unsigned_to_nat(0u); -x_304 = l_Float_ofScientific(x_301, x_302, x_303); -lean_dec(x_301); -x_305 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__4; -x_306 = lean_float_div(x_304, x_305); -x_307 = lean_float_decLt(x_306, x_299); -x_225 = x_307; -goto block_293; -} -else +if (x_6 == 0) { -lean_object* x_308; lean_object* x_309; uint8_t x_310; lean_object* x_311; double x_312; uint8_t x_313; +lean_object* x_308; lean_object* x_309; uint8_t x_310; lean_object* x_311; double x_312; double x_313; double x_314; uint8_t x_315; x_308 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__3; x_309 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_308); x_310 = 0; x_311 = lean_unsigned_to_nat(0u); x_312 = l_Float_ofScientific(x_309, x_310, x_311); lean_dec(x_309); -x_313 = lean_float_decLt(x_312, x_299); -x_225 = x_313; -goto block_293; +x_313 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__4; +x_314 = lean_float_div(x_312, x_313); +x_315 = lean_float_decLt(x_314, x_307); +x_235 = x_315; +goto block_299; +} +else +{ +lean_object* x_316; double x_317; double x_318; lean_object* x_319; +x_316 = lean_box(0); +x_317 = lean_unbox_float(x_231); +lean_dec(x_231); +x_318 = lean_unbox_float(x_232); +lean_dec(x_232); +x_319 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3(x_2, x_3, x_4, x_20, x_230, x_234, x_317, x_318, x_5, x_316, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_228); +return x_319; } } -block_293: +else { if (x_6 == 0) { -if (x_225 == 0) +lean_object* x_320; lean_object* x_321; uint8_t x_322; lean_object* x_323; double x_324; uint8_t x_325; +x_320 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__3; +x_321 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_320); +x_322 = 0; +x_323 = lean_unsigned_to_nat(0u); +x_324 = l_Float_ofScientific(x_321, x_322, x_323); +lean_dec(x_321); +x_325 = lean_float_decLt(x_324, x_307); +x_235 = x_325; +goto block_299; +} +else { -lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; uint8_t x_230; -lean_dec(x_224); -lean_dec(x_223); +lean_object* x_326; double x_327; double x_328; lean_object* x_329; +x_326 = lean_box(0); +x_327 = lean_unbox_float(x_231); +lean_dec(x_231); +x_328 = lean_unbox_float(x_232); +lean_dec(x_232); +x_329 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3(x_2, x_3, x_4, x_20, x_230, x_234, x_327, x_328, x_5, x_326, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_228); +return x_329; +} +} +} +block_299: +{ +if (x_235 == 0) +{ +lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; uint8_t x_240; +lean_dec(x_232); +lean_dec(x_231); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_226 = lean_st_ref_take(x_17, x_220); -x_227 = lean_ctor_get(x_226, 0); -lean_inc(x_227); -x_228 = lean_ctor_get(x_227, 3); -lean_inc(x_228); -x_229 = lean_ctor_get(x_226, 1); -lean_inc(x_229); -lean_dec(x_226); -x_230 = !lean_is_exclusive(x_227); -if (x_230 == 0) -{ -lean_object* x_231; uint8_t x_232; -x_231 = lean_ctor_get(x_227, 3); -lean_dec(x_231); -x_232 = !lean_is_exclusive(x_228); -if (x_232 == 0) -{ -lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; -x_233 = lean_ctor_get(x_228, 0); -x_234 = l_Lean_PersistentArray_append___rarg(x_20, x_233); -lean_dec(x_233); -lean_ctor_set(x_228, 0, x_234); -x_235 = lean_st_ref_set(x_17, x_227, x_229); -x_236 = lean_ctor_get(x_235, 1); -lean_inc(x_236); -lean_dec(x_235); -x_237 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__5(x_222, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_236); -lean_dec(x_17); -lean_dec(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_222); -if (lean_obj_tag(x_237) == 0) -{ -uint8_t x_238; -x_238 = !lean_is_exclusive(x_237); -if (x_238 == 0) -{ -return x_237; -} -else -{ -lean_object* x_239; lean_object* x_240; lean_object* x_241; -x_239 = lean_ctor_get(x_237, 0); -x_240 = lean_ctor_get(x_237, 1); -lean_inc(x_240); +x_236 = lean_st_ref_take(x_17, x_228); +x_237 = lean_ctor_get(x_236, 0); +lean_inc(x_237); +x_238 = lean_ctor_get(x_237, 3); +lean_inc(x_238); +x_239 = lean_ctor_get(x_236, 1); lean_inc(x_239); -lean_dec(x_237); -x_241 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_241, 0, x_239); -lean_ctor_set(x_241, 1, x_240); -return x_241; -} -} -else +lean_dec(x_236); +x_240 = !lean_is_exclusive(x_237); +if (x_240 == 0) { -uint8_t x_242; -x_242 = !lean_is_exclusive(x_237); +lean_object* x_241; uint8_t x_242; +x_241 = lean_ctor_get(x_237, 3); +lean_dec(x_241); +x_242 = !lean_is_exclusive(x_238); if (x_242 == 0) { -return x_237; +lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; +x_243 = lean_ctor_get(x_238, 0); +x_244 = l_Lean_PersistentArray_append___rarg(x_20, x_243); +lean_dec(x_243); +lean_ctor_set(x_238, 0, x_244); +x_245 = lean_st_ref_set(x_17, x_237, x_239); +x_246 = lean_ctor_get(x_245, 1); +lean_inc(x_246); +lean_dec(x_245); +x_247 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__5(x_230, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_246); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_230); +if (lean_obj_tag(x_247) == 0) +{ +uint8_t x_248; +x_248 = !lean_is_exclusive(x_247); +if (x_248 == 0) +{ +return x_247; } else { -lean_object* x_243; lean_object* x_244; lean_object* x_245; -x_243 = lean_ctor_get(x_237, 0); -x_244 = lean_ctor_get(x_237, 1); -lean_inc(x_244); -lean_inc(x_243); -lean_dec(x_237); -x_245 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_245, 0, x_243); -lean_ctor_set(x_245, 1, x_244); -return x_245; -} -} -} -else -{ -uint64_t x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; -x_246 = lean_ctor_get_uint64(x_228, sizeof(void*)*1); -x_247 = lean_ctor_get(x_228, 0); -lean_inc(x_247); -lean_dec(x_228); -x_248 = l_Lean_PersistentArray_append___rarg(x_20, x_247); +lean_object* x_249; lean_object* x_250; lean_object* x_251; +x_249 = lean_ctor_get(x_247, 0); +x_250 = lean_ctor_get(x_247, 1); +lean_inc(x_250); +lean_inc(x_249); lean_dec(x_247); -x_249 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_249, 0, x_248); -lean_ctor_set_uint64(x_249, sizeof(void*)*1, x_246); -lean_ctor_set(x_227, 3, x_249); -x_250 = lean_st_ref_set(x_17, x_227, x_229); -x_251 = lean_ctor_get(x_250, 1); -lean_inc(x_251); -lean_dec(x_250); -x_252 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__5(x_222, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_251); -lean_dec(x_17); -lean_dec(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_222); -if (lean_obj_tag(x_252) == 0) +x_251 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_251, 0, x_249); +lean_ctor_set(x_251, 1, x_250); +return x_251; +} +} +else { -lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; -x_253 = lean_ctor_get(x_252, 0); -lean_inc(x_253); -x_254 = lean_ctor_get(x_252, 1); +uint8_t x_252; +x_252 = !lean_is_exclusive(x_247); +if (x_252 == 0) +{ +return x_247; +} +else +{ +lean_object* x_253; lean_object* x_254; lean_object* x_255; +x_253 = lean_ctor_get(x_247, 0); +x_254 = lean_ctor_get(x_247, 1); lean_inc(x_254); -if (lean_is_exclusive(x_252)) { - lean_ctor_release(x_252, 0); - lean_ctor_release(x_252, 1); - x_255 = x_252; -} else { - lean_dec_ref(x_252); - x_255 = lean_box(0); +lean_inc(x_253); +lean_dec(x_247); +x_255 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_255, 0, x_253); +lean_ctor_set(x_255, 1, x_254); +return x_255; } -if (lean_is_scalar(x_255)) { - x_256 = lean_alloc_ctor(0, 2, 0); -} else { - x_256 = x_255; } -lean_ctor_set(x_256, 0, x_253); -lean_ctor_set(x_256, 1, x_254); -return x_256; } else { -lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; -x_257 = lean_ctor_get(x_252, 0); +uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; +x_256 = lean_ctor_get_uint64(x_238, sizeof(void*)*1); +x_257 = lean_ctor_get(x_238, 0); lean_inc(x_257); -x_258 = lean_ctor_get(x_252, 1); -lean_inc(x_258); -if (lean_is_exclusive(x_252)) { - lean_ctor_release(x_252, 0); - lean_ctor_release(x_252, 1); - x_259 = x_252; -} else { - lean_dec_ref(x_252); - x_259 = lean_box(0); -} -if (lean_is_scalar(x_259)) { - x_260 = lean_alloc_ctor(1, 2, 0); -} else { - x_260 = x_259; -} -lean_ctor_set(x_260, 0, x_257); -lean_ctor_set(x_260, 1, x_258); -return x_260; -} -} -} -else -{ -lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; uint64_t x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; -x_261 = lean_ctor_get(x_227, 0); -x_262 = lean_ctor_get(x_227, 1); -x_263 = lean_ctor_get(x_227, 2); -x_264 = lean_ctor_get(x_227, 4); -x_265 = lean_ctor_get(x_227, 5); -x_266 = lean_ctor_get(x_227, 6); -x_267 = lean_ctor_get(x_227, 7); -lean_inc(x_267); -lean_inc(x_266); -lean_inc(x_265); -lean_inc(x_264); -lean_inc(x_263); -lean_inc(x_262); +lean_dec(x_238); +x_258 = l_Lean_PersistentArray_append___rarg(x_20, x_257); +lean_dec(x_257); +x_259 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_259, 0, x_258); +lean_ctor_set_uint64(x_259, sizeof(void*)*1, x_256); +lean_ctor_set(x_237, 3, x_259); +x_260 = lean_st_ref_set(x_17, x_237, x_239); +x_261 = lean_ctor_get(x_260, 1); lean_inc(x_261); -lean_dec(x_227); -x_268 = lean_ctor_get_uint64(x_228, sizeof(void*)*1); -x_269 = lean_ctor_get(x_228, 0); -lean_inc(x_269); -if (lean_is_exclusive(x_228)) { - lean_ctor_release(x_228, 0); - x_270 = x_228; -} else { - lean_dec_ref(x_228); - x_270 = lean_box(0); -} -x_271 = l_Lean_PersistentArray_append___rarg(x_20, x_269); -lean_dec(x_269); -if (lean_is_scalar(x_270)) { - x_272 = lean_alloc_ctor(0, 1, 8); -} else { - x_272 = x_270; -} -lean_ctor_set(x_272, 0, x_271); -lean_ctor_set_uint64(x_272, sizeof(void*)*1, x_268); -x_273 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_273, 0, x_261); -lean_ctor_set(x_273, 1, x_262); -lean_ctor_set(x_273, 2, x_263); -lean_ctor_set(x_273, 3, x_272); -lean_ctor_set(x_273, 4, x_264); -lean_ctor_set(x_273, 5, x_265); -lean_ctor_set(x_273, 6, x_266); -lean_ctor_set(x_273, 7, x_267); -x_274 = lean_st_ref_set(x_17, x_273, x_229); -x_275 = lean_ctor_get(x_274, 1); -lean_inc(x_275); -lean_dec(x_274); -x_276 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__5(x_222, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_275); +lean_dec(x_260); +x_262 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__5(x_230, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_261); lean_dec(x_17); lean_dec(x_16); lean_dec(x_15); @@ -33315,79 +33238,177 @@ lean_dec(x_13); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_222); -if (lean_obj_tag(x_276) == 0) +lean_dec(x_230); +if (lean_obj_tag(x_262) == 0) { -lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; -x_277 = lean_ctor_get(x_276, 0); +lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; +x_263 = lean_ctor_get(x_262, 0); +lean_inc(x_263); +x_264 = lean_ctor_get(x_262, 1); +lean_inc(x_264); +if (lean_is_exclusive(x_262)) { + lean_ctor_release(x_262, 0); + lean_ctor_release(x_262, 1); + x_265 = x_262; +} else { + lean_dec_ref(x_262); + x_265 = lean_box(0); +} +if (lean_is_scalar(x_265)) { + x_266 = lean_alloc_ctor(0, 2, 0); +} else { + x_266 = x_265; +} +lean_ctor_set(x_266, 0, x_263); +lean_ctor_set(x_266, 1, x_264); +return x_266; +} +else +{ +lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_267 = lean_ctor_get(x_262, 0); +lean_inc(x_267); +x_268 = lean_ctor_get(x_262, 1); +lean_inc(x_268); +if (lean_is_exclusive(x_262)) { + lean_ctor_release(x_262, 0); + lean_ctor_release(x_262, 1); + x_269 = x_262; +} else { + lean_dec_ref(x_262); + x_269 = lean_box(0); +} +if (lean_is_scalar(x_269)) { + x_270 = lean_alloc_ctor(1, 2, 0); +} else { + x_270 = x_269; +} +lean_ctor_set(x_270, 0, x_267); +lean_ctor_set(x_270, 1, x_268); +return x_270; +} +} +} +else +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; uint64_t x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; +x_271 = lean_ctor_get(x_237, 0); +x_272 = lean_ctor_get(x_237, 1); +x_273 = lean_ctor_get(x_237, 2); +x_274 = lean_ctor_get(x_237, 4); +x_275 = lean_ctor_get(x_237, 5); +x_276 = lean_ctor_get(x_237, 6); +x_277 = lean_ctor_get(x_237, 7); lean_inc(x_277); -x_278 = lean_ctor_get(x_276, 1); -lean_inc(x_278); -if (lean_is_exclusive(x_276)) { - lean_ctor_release(x_276, 0); - lean_ctor_release(x_276, 1); - x_279 = x_276; +lean_inc(x_276); +lean_inc(x_275); +lean_inc(x_274); +lean_inc(x_273); +lean_inc(x_272); +lean_inc(x_271); +lean_dec(x_237); +x_278 = lean_ctor_get_uint64(x_238, sizeof(void*)*1); +x_279 = lean_ctor_get(x_238, 0); +lean_inc(x_279); +if (lean_is_exclusive(x_238)) { + lean_ctor_release(x_238, 0); + x_280 = x_238; } else { - lean_dec_ref(x_276); - x_279 = lean_box(0); + lean_dec_ref(x_238); + x_280 = lean_box(0); } -if (lean_is_scalar(x_279)) { - x_280 = lean_alloc_ctor(0, 2, 0); +x_281 = l_Lean_PersistentArray_append___rarg(x_20, x_279); +lean_dec(x_279); +if (lean_is_scalar(x_280)) { + x_282 = lean_alloc_ctor(0, 1, 8); } else { - x_280 = x_279; + x_282 = x_280; } -lean_ctor_set(x_280, 0, x_277); -lean_ctor_set(x_280, 1, x_278); -return x_280; +lean_ctor_set(x_282, 0, x_281); +lean_ctor_set_uint64(x_282, sizeof(void*)*1, x_278); +x_283 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_283, 0, x_271); +lean_ctor_set(x_283, 1, x_272); +lean_ctor_set(x_283, 2, x_273); +lean_ctor_set(x_283, 3, x_282); +lean_ctor_set(x_283, 4, x_274); +lean_ctor_set(x_283, 5, x_275); +lean_ctor_set(x_283, 6, x_276); +lean_ctor_set(x_283, 7, x_277); +x_284 = lean_st_ref_set(x_17, x_283, x_239); +x_285 = lean_ctor_get(x_284, 1); +lean_inc(x_285); +lean_dec(x_284); +x_286 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__5(x_230, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_285); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_230); +if (lean_obj_tag(x_286) == 0) +{ +lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; +x_287 = lean_ctor_get(x_286, 0); +lean_inc(x_287); +x_288 = lean_ctor_get(x_286, 1); +lean_inc(x_288); +if (lean_is_exclusive(x_286)) { + lean_ctor_release(x_286, 0); + lean_ctor_release(x_286, 1); + x_289 = x_286; +} else { + lean_dec_ref(x_286); + x_289 = lean_box(0); +} +if (lean_is_scalar(x_289)) { + x_290 = lean_alloc_ctor(0, 2, 0); +} else { + x_290 = x_289; +} +lean_ctor_set(x_290, 0, x_287); +lean_ctor_set(x_290, 1, x_288); +return x_290; } else { -lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; -x_281 = lean_ctor_get(x_276, 0); -lean_inc(x_281); -x_282 = lean_ctor_get(x_276, 1); -lean_inc(x_282); -if (lean_is_exclusive(x_276)) { - lean_ctor_release(x_276, 0); - lean_ctor_release(x_276, 1); - x_283 = x_276; +lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; +x_291 = lean_ctor_get(x_286, 0); +lean_inc(x_291); +x_292 = lean_ctor_get(x_286, 1); +lean_inc(x_292); +if (lean_is_exclusive(x_286)) { + lean_ctor_release(x_286, 0); + lean_ctor_release(x_286, 1); + x_293 = x_286; } else { - lean_dec_ref(x_276); - x_283 = lean_box(0); + lean_dec_ref(x_286); + x_293 = lean_box(0); } -if (lean_is_scalar(x_283)) { - x_284 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_293)) { + x_294 = lean_alloc_ctor(1, 2, 0); } else { - x_284 = x_283; + x_294 = x_293; } -lean_ctor_set(x_284, 0, x_281); -lean_ctor_set(x_284, 1, x_282); -return x_284; +lean_ctor_set(x_294, 0, x_291); +lean_ctor_set(x_294, 1, x_292); +return x_294; } } } else { -lean_object* x_285; double x_286; double x_287; lean_object* x_288; -x_285 = lean_box(0); -x_286 = lean_unbox_float(x_223); -lean_dec(x_223); -x_287 = lean_unbox_float(x_224); -lean_dec(x_224); -x_288 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3(x_2, x_3, x_4, x_20, x_222, x_1, x_225, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_220); -return x_288; -} -} -else -{ -lean_object* x_289; double x_290; double x_291; lean_object* x_292; -x_289 = lean_box(0); -x_290 = lean_unbox_float(x_223); -lean_dec(x_223); -x_291 = lean_unbox_float(x_224); -lean_dec(x_224); -x_292 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3(x_2, x_3, x_4, x_20, x_222, x_1, x_225, x_290, x_291, x_5, x_289, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_220); -return x_292; +lean_object* x_295; double x_296; double x_297; lean_object* x_298; +x_295 = lean_box(0); +x_296 = lean_unbox_float(x_231); +lean_dec(x_231); +x_297 = lean_unbox_float(x_232); +lean_dec(x_232); +x_298 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3(x_2, x_3, x_4, x_20, x_230, x_234, x_296, x_297, x_5, x_295, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_228); +return x_298; } } } @@ -33609,116 +33630,91 @@ lean_dec(x_14); return x_19; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, uint8_t x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, uint8_t x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20) { _start: { -double x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; -x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_23 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_3); -lean_ctor_set_float(x_23, sizeof(void*)*2, x_22); -lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_22); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); -x_24 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__2___closed__2; -x_25 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_24); -if (x_25 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_21 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__2___closed__1; +x_22 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_22, 0, x_1); +lean_ctor_set(x_22, 1, x_3); +lean_ctor_set_float(x_22, sizeof(void*)*2, x_21); +lean_ctor_set_float(x_22, sizeof(void*)*2 + 8, x_21); +lean_ctor_set_uint8(x_22, sizeof(void*)*2 + 16, x_2); +x_23 = lean_box(0); +x_24 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__1(x_4, x_5, x_10, x_6, x_22, x_23, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); +return x_24; +} +else { -lean_object* x_26; lean_object* x_27; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_25, 0, x_1); +lean_ctor_set(x_25, 1, x_3); +lean_ctor_set_float(x_25, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_25, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_25, sizeof(void*)*2 + 16, x_2); x_26 = lean_box(0); -x_27 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__1(x_4, x_5, x_11, x_6, x_23, x_26, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +x_27 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__1(x_4, x_5, x_10, x_6, x_25, x_26, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); return x_27; } -else -{ -lean_object* x_28; lean_object* x_29; lean_object* x_30; -lean_dec(x_23); -x_28 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_28, 0, x_1); -lean_ctor_set(x_28, 1, x_3); -lean_ctor_set_float(x_28, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_28, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_28, sizeof(void*)*2 + 16, x_2); -x_29 = lean_box(0); -x_30 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__1(x_4, x_5, x_11, x_6, x_28, x_29, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); -return x_30; } } -else -{ -lean_object* x_31; lean_object* x_32; lean_object* x_33; -lean_dec(x_23); -x_31 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_31, 0, x_1); -lean_ctor_set(x_31, 1, x_3); -lean_ctor_set_float(x_31, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_31, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_31, sizeof(void*)*2 + 16, x_2); -x_32 = lean_box(0); -x_33 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__1(x_4, x_5, x_11, x_6, x_31, x_32, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); -return x_33; -} -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, uint8_t x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20, lean_object* x_21) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, uint8_t x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20) { _start: { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_19, 5); -lean_inc(x_22); -x_23 = lean_box(x_15); -lean_inc(x_20); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_18, 5); +lean_inc(x_21); +x_22 = lean_box(x_14); lean_inc(x_19); lean_inc(x_18); lean_inc(x_17); lean_inc(x_16); -lean_inc(x_14); +lean_inc(x_15); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_24 = lean_apply_11(x_10, x_5, x_12, x_13, x_14, x_23, x_16, x_17, x_18, x_19, x_20, x_21); -if (lean_obj_tag(x_24) == 0) +x_23 = lean_apply_11(x_9, x_5, x_11, x_12, x_13, x_22, x_15, x_16, x_17, x_18, x_19, x_20); +if (lean_obj_tag(x_23) == 0) { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_24, 0); +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); lean_inc(x_25); -x_26 = lean_ctor_get(x_24, 1); -lean_inc(x_26); -lean_dec(x_24); -x_27 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__2(x_1, x_2, x_3, x_4, x_22, x_5, x_6, x_7, x_8, x_9, x_25, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_26); -lean_dec(x_20); -lean_dec(x_18); +lean_dec(x_23); +x_26 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__2(x_1, x_2, x_3, x_4, x_21, x_5, x_6, x_7, x_8, x_24, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_25); +lean_dec(x_19); lean_dec(x_17); lean_dec(x_16); -lean_dec(x_14); +lean_dec(x_15); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_27; +return x_26; } else { -lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = lean_ctor_get(x_24, 1); -lean_inc(x_28); -lean_dec(x_24); -x_29 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3___closed__2; -x_30 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__2(x_1, x_2, x_3, x_4, x_22, x_5, x_6, x_7, x_8, x_9, x_29, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_28); -lean_dec(x_20); -lean_dec(x_18); +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_23, 1); +lean_inc(x_27); +lean_dec(x_23); +x_28 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3___closed__2; +x_29 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__2(x_1, x_2, x_3, x_4, x_21, x_5, x_6, x_7, x_8, x_28, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_27); +lean_dec(x_19); lean_dec(x_17); lean_dec(x_16); -lean_dec(x_14); +lean_dec(x_15); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_30; +return x_29; } } } @@ -33736,14 +33732,14 @@ x_22 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec_ x_23 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_22); if (x_23 == 0) { -lean_object* x_24; lean_object* x_25; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; -x_120 = lean_io_mono_nanos_now(x_21); -x_121 = lean_ctor_get(x_120, 0); -lean_inc(x_121); -x_122 = lean_ctor_get(x_120, 1); -lean_inc(x_122); -lean_dec(x_120); -x_123 = lean_box(x_12); +lean_object* x_24; lean_object* x_25; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; +x_128 = lean_io_mono_nanos_now(x_21); +x_129 = lean_ctor_get(x_128, 0); +lean_inc(x_129); +x_130 = lean_ctor_get(x_128, 1); +lean_inc(x_130); +lean_dec(x_128); +x_131 = lean_box(x_12); lean_inc(x_17); lean_inc(x_16); lean_inc(x_15); @@ -33752,242 +33748,242 @@ lean_inc(x_13); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_124 = lean_apply_10(x_7, x_9, x_10, x_11, x_123, x_13, x_14, x_15, x_16, x_17, x_122); -if (lean_obj_tag(x_124) == 0) +x_132 = lean_apply_10(x_7, x_9, x_10, x_11, x_131, x_13, x_14, x_15, x_16, x_17, x_130); +if (lean_obj_tag(x_132) == 0) { -uint8_t x_125; -x_125 = !lean_is_exclusive(x_124); -if (x_125 == 0) +uint8_t x_133; +x_133 = !lean_is_exclusive(x_132); +if (x_133 == 0) { -lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; uint8_t x_130; -x_126 = lean_ctor_get(x_124, 0); -x_127 = lean_ctor_get(x_124, 1); -x_128 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_128, 0, x_126); -x_129 = lean_io_mono_nanos_now(x_127); -x_130 = !lean_is_exclusive(x_129); -if (x_130 == 0) +lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; uint8_t x_138; +x_134 = lean_ctor_get(x_132, 0); +x_135 = lean_ctor_get(x_132, 1); +x_136 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_136, 0, x_134); +x_137 = lean_io_mono_nanos_now(x_135); +x_138 = !lean_is_exclusive(x_137); +if (x_138 == 0) { -lean_object* x_131; lean_object* x_132; uint8_t x_133; lean_object* x_134; double x_135; double x_136; double x_137; double x_138; double x_139; lean_object* x_140; lean_object* x_141; -x_131 = lean_ctor_get(x_129, 0); -x_132 = lean_ctor_get(x_129, 1); -x_133 = 0; -x_134 = lean_unsigned_to_nat(0u); -x_135 = l_Float_ofScientific(x_121, x_133, x_134); -lean_dec(x_121); -x_136 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; -x_137 = lean_float_div(x_135, x_136); -x_138 = l_Float_ofScientific(x_131, x_133, x_134); -lean_dec(x_131); -x_139 = lean_float_div(x_138, x_136); -x_140 = lean_box_float(x_137); -x_141 = lean_box_float(x_139); -lean_ctor_set(x_129, 1, x_141); -lean_ctor_set(x_129, 0, x_140); -lean_ctor_set(x_124, 1, x_129); -lean_ctor_set(x_124, 0, x_128); -x_24 = x_124; -x_25 = x_132; -goto block_119; -} -else -{ -lean_object* x_142; lean_object* x_143; uint8_t x_144; lean_object* x_145; double x_146; double x_147; double x_148; double x_149; double x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; -x_142 = lean_ctor_get(x_129, 0); -x_143 = lean_ctor_get(x_129, 1); -lean_inc(x_143); -lean_inc(x_142); +lean_object* x_139; lean_object* x_140; uint8_t x_141; lean_object* x_142; double x_143; double x_144; double x_145; double x_146; double x_147; lean_object* x_148; lean_object* x_149; +x_139 = lean_ctor_get(x_137, 0); +x_140 = lean_ctor_get(x_137, 1); +x_141 = 0; +x_142 = lean_unsigned_to_nat(0u); +x_143 = l_Float_ofScientific(x_129, x_141, x_142); lean_dec(x_129); -x_144 = 0; -x_145 = lean_unsigned_to_nat(0u); -x_146 = l_Float_ofScientific(x_121, x_144, x_145); -lean_dec(x_121); -x_147 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; -x_148 = lean_float_div(x_146, x_147); -x_149 = l_Float_ofScientific(x_142, x_144, x_145); -lean_dec(x_142); -x_150 = lean_float_div(x_149, x_147); -x_151 = lean_box_float(x_148); -x_152 = lean_box_float(x_150); -x_153 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_153, 0, x_151); -lean_ctor_set(x_153, 1, x_152); -lean_ctor_set(x_124, 1, x_153); -lean_ctor_set(x_124, 0, x_128); -x_24 = x_124; -x_25 = x_143; -goto block_119; +x_144 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; +x_145 = lean_float_div(x_143, x_144); +x_146 = l_Float_ofScientific(x_139, x_141, x_142); +lean_dec(x_139); +x_147 = lean_float_div(x_146, x_144); +x_148 = lean_box_float(x_145); +x_149 = lean_box_float(x_147); +lean_ctor_set(x_137, 1, x_149); +lean_ctor_set(x_137, 0, x_148); +lean_ctor_set(x_132, 1, x_137); +lean_ctor_set(x_132, 0, x_136); +x_24 = x_132; +x_25 = x_140; +goto block_127; +} +else +{ +lean_object* x_150; lean_object* x_151; uint8_t x_152; lean_object* x_153; double x_154; double x_155; double x_156; double x_157; double x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; +x_150 = lean_ctor_get(x_137, 0); +x_151 = lean_ctor_get(x_137, 1); +lean_inc(x_151); +lean_inc(x_150); +lean_dec(x_137); +x_152 = 0; +x_153 = lean_unsigned_to_nat(0u); +x_154 = l_Float_ofScientific(x_129, x_152, x_153); +lean_dec(x_129); +x_155 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; +x_156 = lean_float_div(x_154, x_155); +x_157 = l_Float_ofScientific(x_150, x_152, x_153); +lean_dec(x_150); +x_158 = lean_float_div(x_157, x_155); +x_159 = lean_box_float(x_156); +x_160 = lean_box_float(x_158); +x_161 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_161, 0, x_159); +lean_ctor_set(x_161, 1, x_160); +lean_ctor_set(x_132, 1, x_161); +lean_ctor_set(x_132, 0, x_136); +x_24 = x_132; +x_25 = x_151; +goto block_127; } } else { -lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; uint8_t x_161; lean_object* x_162; double x_163; double x_164; double x_165; double x_166; double x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; -x_154 = lean_ctor_get(x_124, 0); -x_155 = lean_ctor_get(x_124, 1); -lean_inc(x_155); -lean_inc(x_154); -lean_dec(x_124); -x_156 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_156, 0, x_154); -x_157 = lean_io_mono_nanos_now(x_155); -x_158 = lean_ctor_get(x_157, 0); -lean_inc(x_158); -x_159 = lean_ctor_get(x_157, 1); -lean_inc(x_159); -if (lean_is_exclusive(x_157)) { - lean_ctor_release(x_157, 0); - lean_ctor_release(x_157, 1); - x_160 = x_157; +lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; lean_object* x_170; double x_171; double x_172; double x_173; double x_174; double x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; +x_162 = lean_ctor_get(x_132, 0); +x_163 = lean_ctor_get(x_132, 1); +lean_inc(x_163); +lean_inc(x_162); +lean_dec(x_132); +x_164 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_164, 0, x_162); +x_165 = lean_io_mono_nanos_now(x_163); +x_166 = lean_ctor_get(x_165, 0); +lean_inc(x_166); +x_167 = lean_ctor_get(x_165, 1); +lean_inc(x_167); +if (lean_is_exclusive(x_165)) { + lean_ctor_release(x_165, 0); + lean_ctor_release(x_165, 1); + x_168 = x_165; } else { - lean_dec_ref(x_157); - x_160 = lean_box(0); + lean_dec_ref(x_165); + x_168 = lean_box(0); } -x_161 = 0; -x_162 = lean_unsigned_to_nat(0u); -x_163 = l_Float_ofScientific(x_121, x_161, x_162); -lean_dec(x_121); -x_164 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; -x_165 = lean_float_div(x_163, x_164); -x_166 = l_Float_ofScientific(x_158, x_161, x_162); -lean_dec(x_158); -x_167 = lean_float_div(x_166, x_164); -x_168 = lean_box_float(x_165); -x_169 = lean_box_float(x_167); -if (lean_is_scalar(x_160)) { - x_170 = lean_alloc_ctor(0, 2, 0); +x_169 = 0; +x_170 = lean_unsigned_to_nat(0u); +x_171 = l_Float_ofScientific(x_129, x_169, x_170); +lean_dec(x_129); +x_172 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; +x_173 = lean_float_div(x_171, x_172); +x_174 = l_Float_ofScientific(x_166, x_169, x_170); +lean_dec(x_166); +x_175 = lean_float_div(x_174, x_172); +x_176 = lean_box_float(x_173); +x_177 = lean_box_float(x_175); +if (lean_is_scalar(x_168)) { + x_178 = lean_alloc_ctor(0, 2, 0); } else { - x_170 = x_160; + x_178 = x_168; } -lean_ctor_set(x_170, 0, x_168); -lean_ctor_set(x_170, 1, x_169); -x_171 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_171, 0, x_156); -lean_ctor_set(x_171, 1, x_170); -x_24 = x_171; -x_25 = x_159; -goto block_119; +lean_ctor_set(x_178, 0, x_176); +lean_ctor_set(x_178, 1, x_177); +x_179 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_179, 0, x_164); +lean_ctor_set(x_179, 1, x_178); +x_24 = x_179; +x_25 = x_167; +goto block_127; } } else { -uint8_t x_172; -x_172 = !lean_is_exclusive(x_124); -if (x_172 == 0) +uint8_t x_180; +x_180 = !lean_is_exclusive(x_132); +if (x_180 == 0) { -lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; uint8_t x_177; -x_173 = lean_ctor_get(x_124, 0); -x_174 = lean_ctor_get(x_124, 1); -x_175 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_175, 0, x_173); -x_176 = lean_io_mono_nanos_now(x_174); -x_177 = !lean_is_exclusive(x_176); -if (x_177 == 0) +lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; uint8_t x_185; +x_181 = lean_ctor_get(x_132, 0); +x_182 = lean_ctor_get(x_132, 1); +x_183 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_183, 0, x_181); +x_184 = lean_io_mono_nanos_now(x_182); +x_185 = !lean_is_exclusive(x_184); +if (x_185 == 0) { -lean_object* x_178; lean_object* x_179; uint8_t x_180; lean_object* x_181; double x_182; double x_183; double x_184; double x_185; double x_186; lean_object* x_187; lean_object* x_188; -x_178 = lean_ctor_get(x_176, 0); -x_179 = lean_ctor_get(x_176, 1); -x_180 = 0; -x_181 = lean_unsigned_to_nat(0u); -x_182 = l_Float_ofScientific(x_121, x_180, x_181); -lean_dec(x_121); -x_183 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; -x_184 = lean_float_div(x_182, x_183); -x_185 = l_Float_ofScientific(x_178, x_180, x_181); -lean_dec(x_178); -x_186 = lean_float_div(x_185, x_183); -x_187 = lean_box_float(x_184); -x_188 = lean_box_float(x_186); -lean_ctor_set(x_176, 1, x_188); -lean_ctor_set(x_176, 0, x_187); -lean_ctor_set_tag(x_124, 0); -lean_ctor_set(x_124, 1, x_176); -lean_ctor_set(x_124, 0, x_175); -x_24 = x_124; -x_25 = x_179; -goto block_119; +lean_object* x_186; lean_object* x_187; uint8_t x_188; lean_object* x_189; double x_190; double x_191; double x_192; double x_193; double x_194; lean_object* x_195; lean_object* x_196; +x_186 = lean_ctor_get(x_184, 0); +x_187 = lean_ctor_get(x_184, 1); +x_188 = 0; +x_189 = lean_unsigned_to_nat(0u); +x_190 = l_Float_ofScientific(x_129, x_188, x_189); +lean_dec(x_129); +x_191 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; +x_192 = lean_float_div(x_190, x_191); +x_193 = l_Float_ofScientific(x_186, x_188, x_189); +lean_dec(x_186); +x_194 = lean_float_div(x_193, x_191); +x_195 = lean_box_float(x_192); +x_196 = lean_box_float(x_194); +lean_ctor_set(x_184, 1, x_196); +lean_ctor_set(x_184, 0, x_195); +lean_ctor_set_tag(x_132, 0); +lean_ctor_set(x_132, 1, x_184); +lean_ctor_set(x_132, 0, x_183); +x_24 = x_132; +x_25 = x_187; +goto block_127; } else { -lean_object* x_189; lean_object* x_190; uint8_t x_191; lean_object* x_192; double x_193; double x_194; double x_195; double x_196; double x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; -x_189 = lean_ctor_get(x_176, 0); -x_190 = lean_ctor_get(x_176, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_176); -x_191 = 0; -x_192 = lean_unsigned_to_nat(0u); -x_193 = l_Float_ofScientific(x_121, x_191, x_192); -lean_dec(x_121); -x_194 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; -x_195 = lean_float_div(x_193, x_194); -x_196 = l_Float_ofScientific(x_189, x_191, x_192); -lean_dec(x_189); -x_197 = lean_float_div(x_196, x_194); -x_198 = lean_box_float(x_195); -x_199 = lean_box_float(x_197); -x_200 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_200, 0, x_198); -lean_ctor_set(x_200, 1, x_199); -lean_ctor_set_tag(x_124, 0); -lean_ctor_set(x_124, 1, x_200); -lean_ctor_set(x_124, 0, x_175); -x_24 = x_124; -x_25 = x_190; -goto block_119; +lean_object* x_197; lean_object* x_198; uint8_t x_199; lean_object* x_200; double x_201; double x_202; double x_203; double x_204; double x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; +x_197 = lean_ctor_get(x_184, 0); +x_198 = lean_ctor_get(x_184, 1); +lean_inc(x_198); +lean_inc(x_197); +lean_dec(x_184); +x_199 = 0; +x_200 = lean_unsigned_to_nat(0u); +x_201 = l_Float_ofScientific(x_129, x_199, x_200); +lean_dec(x_129); +x_202 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; +x_203 = lean_float_div(x_201, x_202); +x_204 = l_Float_ofScientific(x_197, x_199, x_200); +lean_dec(x_197); +x_205 = lean_float_div(x_204, x_202); +x_206 = lean_box_float(x_203); +x_207 = lean_box_float(x_205); +x_208 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_208, 0, x_206); +lean_ctor_set(x_208, 1, x_207); +lean_ctor_set_tag(x_132, 0); +lean_ctor_set(x_132, 1, x_208); +lean_ctor_set(x_132, 0, x_183); +x_24 = x_132; +x_25 = x_198; +goto block_127; } } else { -lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; uint8_t x_208; lean_object* x_209; double x_210; double x_211; double x_212; double x_213; double x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; -x_201 = lean_ctor_get(x_124, 0); -x_202 = lean_ctor_get(x_124, 1); -lean_inc(x_202); -lean_inc(x_201); -lean_dec(x_124); -x_203 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_203, 0, x_201); -x_204 = lean_io_mono_nanos_now(x_202); -x_205 = lean_ctor_get(x_204, 0); -lean_inc(x_205); -x_206 = lean_ctor_get(x_204, 1); -lean_inc(x_206); -if (lean_is_exclusive(x_204)) { - lean_ctor_release(x_204, 0); - lean_ctor_release(x_204, 1); - x_207 = x_204; +lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; lean_object* x_217; double x_218; double x_219; double x_220; double x_221; double x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; +x_209 = lean_ctor_get(x_132, 0); +x_210 = lean_ctor_get(x_132, 1); +lean_inc(x_210); +lean_inc(x_209); +lean_dec(x_132); +x_211 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_211, 0, x_209); +x_212 = lean_io_mono_nanos_now(x_210); +x_213 = lean_ctor_get(x_212, 0); +lean_inc(x_213); +x_214 = lean_ctor_get(x_212, 1); +lean_inc(x_214); +if (lean_is_exclusive(x_212)) { + lean_ctor_release(x_212, 0); + lean_ctor_release(x_212, 1); + x_215 = x_212; } else { - lean_dec_ref(x_204); - x_207 = lean_box(0); + lean_dec_ref(x_212); + x_215 = lean_box(0); } -x_208 = 0; -x_209 = lean_unsigned_to_nat(0u); -x_210 = l_Float_ofScientific(x_121, x_208, x_209); -lean_dec(x_121); -x_211 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; -x_212 = lean_float_div(x_210, x_211); -x_213 = l_Float_ofScientific(x_205, x_208, x_209); -lean_dec(x_205); -x_214 = lean_float_div(x_213, x_211); -x_215 = lean_box_float(x_212); -x_216 = lean_box_float(x_214); -if (lean_is_scalar(x_207)) { - x_217 = lean_alloc_ctor(0, 2, 0); +x_216 = 0; +x_217 = lean_unsigned_to_nat(0u); +x_218 = l_Float_ofScientific(x_129, x_216, x_217); +lean_dec(x_129); +x_219 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__5; +x_220 = lean_float_div(x_218, x_219); +x_221 = l_Float_ofScientific(x_213, x_216, x_217); +lean_dec(x_213); +x_222 = lean_float_div(x_221, x_219); +x_223 = lean_box_float(x_220); +x_224 = lean_box_float(x_222); +if (lean_is_scalar(x_215)) { + x_225 = lean_alloc_ctor(0, 2, 0); } else { - x_217 = x_207; + x_225 = x_215; } -lean_ctor_set(x_217, 0, x_215); -lean_ctor_set(x_217, 1, x_216); -x_218 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_218, 0, x_203); -lean_ctor_set(x_218, 1, x_217); -x_24 = x_218; -x_25 = x_206; -goto block_119; +lean_ctor_set(x_225, 0, x_223); +lean_ctor_set(x_225, 1, x_224); +x_226 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_226, 0, x_211); +lean_ctor_set(x_226, 1, x_225); +x_24 = x_226; +x_25 = x_214; +goto block_127; } } -block_119: +block_127: { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_object* x_99; uint8_t x_100; +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; uint8_t x_32; x_26 = lean_ctor_get(x_24, 1); lean_inc(x_26); x_27 = lean_ctor_get(x_24, 0); @@ -33998,14 +33994,28 @@ lean_inc(x_28); x_29 = lean_ctor_get(x_26, 1); lean_inc(x_29); lean_dec(x_26); -x_99 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__2; -x_100 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_99); -if (x_100 == 0) +x_30 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__2; +x_31 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_30); +if (x_31 == 0) { -uint8_t x_101; -x_101 = 0; -x_30 = x_101; -goto block_98; +if (x_6 == 0) +{ +uint8_t x_97; +x_97 = 0; +x_32 = x_97; +goto block_96; +} +else +{ +lean_object* x_98; double x_99; double x_100; lean_object* x_101; +x_98 = lean_box(0); +x_99 = lean_unbox_float(x_28); +lean_dec(x_28); +x_100 = lean_unbox_float(x_29); +lean_dec(x_29); +x_101 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__3(x_2, x_3, x_4, x_20, x_27, x_31, x_99, x_100, x_5, x_98, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_25); +return x_101; +} } else { @@ -34015,6 +34025,8 @@ x_103 = lean_unbox_float(x_28); x_104 = lean_float_sub(x_102, x_103); if (x_23 == 0) { +if (x_6 == 0) +{ lean_object* x_105; lean_object* x_106; uint8_t x_107; lean_object* x_108; double x_109; double x_110; double x_111; uint8_t x_112; x_105 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__3; x_106 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_105); @@ -34025,62 +34037,86 @@ lean_dec(x_106); x_110 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__4; x_111 = lean_float_div(x_109, x_110); x_112 = lean_float_decLt(x_111, x_104); -x_30 = x_112; -goto block_98; +x_32 = x_112; +goto block_96; } else { -lean_object* x_113; lean_object* x_114; uint8_t x_115; lean_object* x_116; double x_117; uint8_t x_118; -x_113 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__3; -x_114 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_113); -x_115 = 0; -x_116 = lean_unsigned_to_nat(0u); -x_117 = l_Float_ofScientific(x_114, x_115, x_116); -lean_dec(x_114); -x_118 = lean_float_decLt(x_117, x_104); -x_30 = x_118; -goto block_98; +lean_object* x_113; double x_114; double x_115; lean_object* x_116; +x_113 = lean_box(0); +x_114 = lean_unbox_float(x_28); +lean_dec(x_28); +x_115 = lean_unbox_float(x_29); +lean_dec(x_29); +x_116 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__3(x_2, x_3, x_4, x_20, x_27, x_31, x_114, x_115, x_5, x_113, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_25); +return x_116; } } -block_98: +else { if (x_6 == 0) { -if (x_30 == 0) +lean_object* x_117; lean_object* x_118; uint8_t x_119; lean_object* x_120; double x_121; uint8_t x_122; +x_117 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__3; +x_118 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_117); +x_119 = 0; +x_120 = lean_unsigned_to_nat(0u); +x_121 = l_Float_ofScientific(x_118, x_119, x_120); +lean_dec(x_118); +x_122 = lean_float_decLt(x_121, x_104); +x_32 = x_122; +goto block_96; +} +else { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; +lean_object* x_123; double x_124; double x_125; lean_object* x_126; +x_123 = lean_box(0); +x_124 = lean_unbox_float(x_28); +lean_dec(x_28); +x_125 = lean_unbox_float(x_29); +lean_dec(x_29); +x_126 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__3(x_2, x_3, x_4, x_20, x_27, x_31, x_124, x_125, x_5, x_123, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_25); +return x_126; +} +} +} +block_96: +{ +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_dec(x_29); lean_dec(x_28); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_31 = lean_st_ref_take(x_17, x_25); -x_32 = lean_ctor_get(x_31, 0); -lean_inc(x_32); -x_33 = lean_ctor_get(x_32, 3); -lean_inc(x_33); -x_34 = lean_ctor_get(x_31, 1); +x_33 = lean_st_ref_take(x_17, x_25); +x_34 = lean_ctor_get(x_33, 0); lean_inc(x_34); -lean_dec(x_31); -x_35 = !lean_is_exclusive(x_32); -if (x_35 == 0) -{ -lean_object* x_36; uint8_t x_37; -x_36 = lean_ctor_get(x_32, 3); -lean_dec(x_36); -x_37 = !lean_is_exclusive(x_33); +x_35 = lean_ctor_get(x_34, 3); +lean_inc(x_35); +x_36 = lean_ctor_get(x_33, 1); +lean_inc(x_36); +lean_dec(x_33); +x_37 = !lean_is_exclusive(x_34); if (x_37 == 0) { -lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_38 = lean_ctor_get(x_33, 0); -x_39 = l_Lean_PersistentArray_append___rarg(x_20, x_38); +lean_object* x_38; uint8_t x_39; +x_38 = lean_ctor_get(x_34, 3); lean_dec(x_38); -lean_ctor_set(x_33, 0, x_39); -x_40 = lean_st_ref_set(x_17, x_32, x_34); -x_41 = lean_ctor_get(x_40, 1); -lean_inc(x_41); +x_39 = !lean_is_exclusive(x_35); +if (x_39 == 0) +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_40 = lean_ctor_get(x_35, 0); +x_41 = l_Lean_PersistentArray_append___rarg(x_20, x_40); lean_dec(x_40); -x_42 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__8(x_27, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_41); +lean_ctor_set(x_35, 0, x_41); +x_42 = lean_st_ref_set(x_17, x_34, x_36); +x_43 = lean_ctor_get(x_42, 1); +lean_inc(x_43); +lean_dec(x_42); +x_44 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__8(x_27, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_43); lean_dec(x_17); lean_dec(x_16); lean_dec(x_15); @@ -34090,179 +34126,179 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_27); -if (lean_obj_tag(x_42) == 0) +if (lean_obj_tag(x_44) == 0) { -uint8_t x_43; -x_43 = !lean_is_exclusive(x_42); -if (x_43 == 0) +uint8_t x_45; +x_45 = !lean_is_exclusive(x_44); +if (x_45 == 0) { -return x_42; +return x_44; } else { -lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_44 = lean_ctor_get(x_42, 0); -x_45 = lean_ctor_get(x_42, 1); -lean_inc(x_45); -lean_inc(x_44); -lean_dec(x_42); -x_46 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_46, 0, x_44); -lean_ctor_set(x_46, 1, x_45); -return x_46; +lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_46 = lean_ctor_get(x_44, 0); +x_47 = lean_ctor_get(x_44, 1); +lean_inc(x_47); +lean_inc(x_46); +lean_dec(x_44); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_47); +return x_48; } } else { -uint8_t x_47; -x_47 = !lean_is_exclusive(x_42); -if (x_47 == 0) +uint8_t x_49; +x_49 = !lean_is_exclusive(x_44); +if (x_49 == 0) { -return x_42; +return x_44; } else { -lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_48 = lean_ctor_get(x_42, 0); -x_49 = lean_ctor_get(x_42, 1); -lean_inc(x_49); -lean_inc(x_48); -lean_dec(x_42); -x_50 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_50, 0, x_48); -lean_ctor_set(x_50, 1, x_49); -return x_50; +lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_50 = lean_ctor_get(x_44, 0); +x_51 = lean_ctor_get(x_44, 1); +lean_inc(x_51); +lean_inc(x_50); +lean_dec(x_44); +x_52 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_52, 0, x_50); +lean_ctor_set(x_52, 1, x_51); +return x_52; } } } else { -uint64_t x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_51 = lean_ctor_get_uint64(x_33, sizeof(void*)*1); -x_52 = lean_ctor_get(x_33, 0); -lean_inc(x_52); -lean_dec(x_33); -x_53 = l_Lean_PersistentArray_append___rarg(x_20, x_52); -lean_dec(x_52); -x_54 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_54, 0, x_53); -lean_ctor_set_uint64(x_54, sizeof(void*)*1, x_51); -lean_ctor_set(x_32, 3, x_54); -x_55 = lean_st_ref_set(x_17, x_32, x_34); -x_56 = lean_ctor_get(x_55, 1); -lean_inc(x_56); -lean_dec(x_55); -x_57 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__8(x_27, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_56); -lean_dec(x_17); -lean_dec(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_27); -if (lean_obj_tag(x_57) == 0) -{ -lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; -x_58 = lean_ctor_get(x_57, 0); +uint64_t x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_53 = lean_ctor_get_uint64(x_35, sizeof(void*)*1); +x_54 = lean_ctor_get(x_35, 0); +lean_inc(x_54); +lean_dec(x_35); +x_55 = l_Lean_PersistentArray_append___rarg(x_20, x_54); +lean_dec(x_54); +x_56 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_56, 0, x_55); +lean_ctor_set_uint64(x_56, sizeof(void*)*1, x_53); +lean_ctor_set(x_34, 3, x_56); +x_57 = lean_st_ref_set(x_17, x_34, x_36); +x_58 = lean_ctor_get(x_57, 1); lean_inc(x_58); -x_59 = lean_ctor_get(x_57, 1); -lean_inc(x_59); -if (lean_is_exclusive(x_57)) { - lean_ctor_release(x_57, 0); - lean_ctor_release(x_57, 1); - x_60 = x_57; +lean_dec(x_57); +x_59 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__8(x_27, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_58); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_27); +if (lean_obj_tag(x_59) == 0) +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_60 = lean_ctor_get(x_59, 0); +lean_inc(x_60); +x_61 = lean_ctor_get(x_59, 1); +lean_inc(x_61); +if (lean_is_exclusive(x_59)) { + lean_ctor_release(x_59, 0); + lean_ctor_release(x_59, 1); + x_62 = x_59; } else { - lean_dec_ref(x_57); - x_60 = lean_box(0); + lean_dec_ref(x_59); + x_62 = lean_box(0); } -if (lean_is_scalar(x_60)) { - x_61 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_62)) { + x_63 = lean_alloc_ctor(0, 2, 0); } else { - x_61 = x_60; + x_63 = x_62; } -lean_ctor_set(x_61, 0, x_58); -lean_ctor_set(x_61, 1, x_59); -return x_61; +lean_ctor_set(x_63, 0, x_60); +lean_ctor_set(x_63, 1, x_61); +return x_63; } else { -lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; -x_62 = lean_ctor_get(x_57, 0); -lean_inc(x_62); -x_63 = lean_ctor_get(x_57, 1); -lean_inc(x_63); -if (lean_is_exclusive(x_57)) { - lean_ctor_release(x_57, 0); - lean_ctor_release(x_57, 1); - x_64 = x_57; +lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_64 = lean_ctor_get(x_59, 0); +lean_inc(x_64); +x_65 = lean_ctor_get(x_59, 1); +lean_inc(x_65); +if (lean_is_exclusive(x_59)) { + lean_ctor_release(x_59, 0); + lean_ctor_release(x_59, 1); + x_66 = x_59; } else { - lean_dec_ref(x_57); - x_64 = lean_box(0); + lean_dec_ref(x_59); + x_66 = lean_box(0); } -if (lean_is_scalar(x_64)) { - x_65 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_66)) { + x_67 = lean_alloc_ctor(1, 2, 0); } else { - x_65 = x_64; + x_67 = x_66; } -lean_ctor_set(x_65, 0, x_62); -lean_ctor_set(x_65, 1, x_63); -return x_65; +lean_ctor_set(x_67, 0, x_64); +lean_ctor_set(x_67, 1, x_65); +return x_67; } } } else { -lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; uint64_t x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; -x_66 = lean_ctor_get(x_32, 0); -x_67 = lean_ctor_get(x_32, 1); -x_68 = lean_ctor_get(x_32, 2); -x_69 = lean_ctor_get(x_32, 4); -x_70 = lean_ctor_get(x_32, 5); -x_71 = lean_ctor_get(x_32, 6); -x_72 = lean_ctor_get(x_32, 7); +lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; uint64_t x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; +x_68 = lean_ctor_get(x_34, 0); +x_69 = lean_ctor_get(x_34, 1); +x_70 = lean_ctor_get(x_34, 2); +x_71 = lean_ctor_get(x_34, 4); +x_72 = lean_ctor_get(x_34, 5); +x_73 = lean_ctor_get(x_34, 6); +x_74 = lean_ctor_get(x_34, 7); +lean_inc(x_74); +lean_inc(x_73); lean_inc(x_72); lean_inc(x_71); lean_inc(x_70); lean_inc(x_69); lean_inc(x_68); -lean_inc(x_67); -lean_inc(x_66); -lean_dec(x_32); -x_73 = lean_ctor_get_uint64(x_33, sizeof(void*)*1); -x_74 = lean_ctor_get(x_33, 0); -lean_inc(x_74); -if (lean_is_exclusive(x_33)) { - lean_ctor_release(x_33, 0); - x_75 = x_33; +lean_dec(x_34); +x_75 = lean_ctor_get_uint64(x_35, sizeof(void*)*1); +x_76 = lean_ctor_get(x_35, 0); +lean_inc(x_76); +if (lean_is_exclusive(x_35)) { + lean_ctor_release(x_35, 0); + x_77 = x_35; } else { - lean_dec_ref(x_33); - x_75 = lean_box(0); + lean_dec_ref(x_35); + x_77 = lean_box(0); } -x_76 = l_Lean_PersistentArray_append___rarg(x_20, x_74); -lean_dec(x_74); -if (lean_is_scalar(x_75)) { - x_77 = lean_alloc_ctor(0, 1, 8); +x_78 = l_Lean_PersistentArray_append___rarg(x_20, x_76); +lean_dec(x_76); +if (lean_is_scalar(x_77)) { + x_79 = lean_alloc_ctor(0, 1, 8); } else { - x_77 = x_75; + x_79 = x_77; } -lean_ctor_set(x_77, 0, x_76); -lean_ctor_set_uint64(x_77, sizeof(void*)*1, x_73); -x_78 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_78, 0, x_66); -lean_ctor_set(x_78, 1, x_67); -lean_ctor_set(x_78, 2, x_68); -lean_ctor_set(x_78, 3, x_77); -lean_ctor_set(x_78, 4, x_69); -lean_ctor_set(x_78, 5, x_70); -lean_ctor_set(x_78, 6, x_71); -lean_ctor_set(x_78, 7, x_72); -x_79 = lean_st_ref_set(x_17, x_78, x_34); -x_80 = lean_ctor_get(x_79, 1); -lean_inc(x_80); -lean_dec(x_79); -x_81 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__8(x_27, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_80); +lean_ctor_set(x_79, 0, x_78); +lean_ctor_set_uint64(x_79, sizeof(void*)*1, x_75); +x_80 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_80, 0, x_68); +lean_ctor_set(x_80, 1, x_69); +lean_ctor_set(x_80, 2, x_70); +lean_ctor_set(x_80, 3, x_79); +lean_ctor_set(x_80, 4, x_71); +lean_ctor_set(x_80, 5, x_72); +lean_ctor_set(x_80, 6, x_73); +lean_ctor_set(x_80, 7, x_74); +x_81 = lean_st_ref_set(x_17, x_80, x_36); +x_82 = lean_ctor_get(x_81, 1); +lean_inc(x_82); +lean_dec(x_81); +x_83 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__8(x_27, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_82); lean_dec(x_17); lean_dec(x_16); lean_dec(x_15); @@ -34272,92 +34308,80 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_27); -if (lean_obj_tag(x_81) == 0) +if (lean_obj_tag(x_83) == 0) { -lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; -x_82 = lean_ctor_get(x_81, 0); -lean_inc(x_82); -x_83 = lean_ctor_get(x_81, 1); -lean_inc(x_83); -if (lean_is_exclusive(x_81)) { - lean_ctor_release(x_81, 0); - lean_ctor_release(x_81, 1); - x_84 = x_81; +lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_84 = lean_ctor_get(x_83, 0); +lean_inc(x_84); +x_85 = lean_ctor_get(x_83, 1); +lean_inc(x_85); +if (lean_is_exclusive(x_83)) { + lean_ctor_release(x_83, 0); + lean_ctor_release(x_83, 1); + x_86 = x_83; } else { - lean_dec_ref(x_81); - x_84 = lean_box(0); + lean_dec_ref(x_83); + x_86 = lean_box(0); } -if (lean_is_scalar(x_84)) { - x_85 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_86)) { + x_87 = lean_alloc_ctor(0, 2, 0); } else { - x_85 = x_84; + x_87 = x_86; } -lean_ctor_set(x_85, 0, x_82); -lean_ctor_set(x_85, 1, x_83); -return x_85; +lean_ctor_set(x_87, 0, x_84); +lean_ctor_set(x_87, 1, x_85); +return x_87; } else { -lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; -x_86 = lean_ctor_get(x_81, 0); -lean_inc(x_86); -x_87 = lean_ctor_get(x_81, 1); -lean_inc(x_87); -if (lean_is_exclusive(x_81)) { - lean_ctor_release(x_81, 0); - lean_ctor_release(x_81, 1); - x_88 = x_81; +lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; +x_88 = lean_ctor_get(x_83, 0); +lean_inc(x_88); +x_89 = lean_ctor_get(x_83, 1); +lean_inc(x_89); +if (lean_is_exclusive(x_83)) { + lean_ctor_release(x_83, 0); + lean_ctor_release(x_83, 1); + x_90 = x_83; } else { - lean_dec_ref(x_81); - x_88 = lean_box(0); + lean_dec_ref(x_83); + x_90 = lean_box(0); } -if (lean_is_scalar(x_88)) { - x_89 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_90)) { + x_91 = lean_alloc_ctor(1, 2, 0); } else { - x_89 = x_88; + x_91 = x_90; } -lean_ctor_set(x_89, 0, x_86); -lean_ctor_set(x_89, 1, x_87); -return x_89; +lean_ctor_set(x_91, 0, x_88); +lean_ctor_set(x_91, 1, x_89); +return x_91; } } } else { -lean_object* x_90; double x_91; double x_92; lean_object* x_93; -x_90 = lean_box(0); -x_91 = lean_unbox_float(x_28); +lean_object* x_92; double x_93; double x_94; lean_object* x_95; +x_92 = lean_box(0); +x_93 = lean_unbox_float(x_28); lean_dec(x_28); -x_92 = lean_unbox_float(x_29); +x_94 = lean_unbox_float(x_29); lean_dec(x_29); -x_93 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__3(x_2, x_3, x_4, x_20, x_27, x_1, x_30, x_91, x_92, x_5, x_90, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_25); -return x_93; -} -} -else -{ -lean_object* x_94; double x_95; double x_96; lean_object* x_97; -x_94 = lean_box(0); -x_95 = lean_unbox_float(x_28); -lean_dec(x_28); -x_96 = lean_unbox_float(x_29); -lean_dec(x_29); -x_97 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__3(x_2, x_3, x_4, x_20, x_27, x_1, x_30, x_95, x_96, x_5, x_94, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_25); -return x_97; +x_95 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__3(x_2, x_3, x_4, x_20, x_27, x_31, x_93, x_94, x_5, x_92, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_25); +return x_95; } } } } else { -lean_object* x_219; lean_object* x_220; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; -x_315 = lean_io_get_num_heartbeats(x_21); -x_316 = lean_ctor_get(x_315, 0); -lean_inc(x_316); -x_317 = lean_ctor_get(x_315, 1); -lean_inc(x_317); -lean_dec(x_315); -x_318 = lean_box(x_12); +lean_object* x_227; lean_object* x_228; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; +x_331 = lean_io_get_num_heartbeats(x_21); +x_332 = lean_ctor_get(x_331, 0); +lean_inc(x_332); +x_333 = lean_ctor_get(x_331, 1); +lean_inc(x_333); +lean_dec(x_331); +x_334 = lean_box(x_12); lean_inc(x_17); lean_inc(x_16); lean_inc(x_15); @@ -34366,499 +34390,429 @@ lean_inc(x_13); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_319 = lean_apply_10(x_7, x_9, x_10, x_11, x_318, x_13, x_14, x_15, x_16, x_17, x_317); -if (lean_obj_tag(x_319) == 0) +x_335 = lean_apply_10(x_7, x_9, x_10, x_11, x_334, x_13, x_14, x_15, x_16, x_17, x_333); +if (lean_obj_tag(x_335) == 0) { -uint8_t x_320; -x_320 = !lean_is_exclusive(x_319); -if (x_320 == 0) +uint8_t x_336; +x_336 = !lean_is_exclusive(x_335); +if (x_336 == 0) { -lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; uint8_t x_325; -x_321 = lean_ctor_get(x_319, 0); -x_322 = lean_ctor_get(x_319, 1); -x_323 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_323, 0, x_321); -x_324 = lean_io_get_num_heartbeats(x_322); -x_325 = !lean_is_exclusive(x_324); -if (x_325 == 0) +lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; uint8_t x_341; +x_337 = lean_ctor_get(x_335, 0); +x_338 = lean_ctor_get(x_335, 1); +x_339 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_339, 0, x_337); +x_340 = lean_io_get_num_heartbeats(x_338); +x_341 = !lean_is_exclusive(x_340); +if (x_341 == 0) { -lean_object* x_326; lean_object* x_327; uint8_t x_328; lean_object* x_329; double x_330; double x_331; lean_object* x_332; lean_object* x_333; -x_326 = lean_ctor_get(x_324, 0); -x_327 = lean_ctor_get(x_324, 1); -x_328 = 0; -x_329 = lean_unsigned_to_nat(0u); -x_330 = l_Float_ofScientific(x_316, x_328, x_329); -lean_dec(x_316); -x_331 = l_Float_ofScientific(x_326, x_328, x_329); -lean_dec(x_326); -x_332 = lean_box_float(x_330); -x_333 = lean_box_float(x_331); -lean_ctor_set(x_324, 1, x_333); -lean_ctor_set(x_324, 0, x_332); -lean_ctor_set(x_319, 1, x_324); -lean_ctor_set(x_319, 0, x_323); -x_219 = x_319; -x_220 = x_327; -goto block_314; +lean_object* x_342; lean_object* x_343; uint8_t x_344; lean_object* x_345; double x_346; double x_347; lean_object* x_348; lean_object* x_349; +x_342 = lean_ctor_get(x_340, 0); +x_343 = lean_ctor_get(x_340, 1); +x_344 = 0; +x_345 = lean_unsigned_to_nat(0u); +x_346 = l_Float_ofScientific(x_332, x_344, x_345); +lean_dec(x_332); +x_347 = l_Float_ofScientific(x_342, x_344, x_345); +lean_dec(x_342); +x_348 = lean_box_float(x_346); +x_349 = lean_box_float(x_347); +lean_ctor_set(x_340, 1, x_349); +lean_ctor_set(x_340, 0, x_348); +lean_ctor_set(x_335, 1, x_340); +lean_ctor_set(x_335, 0, x_339); +x_227 = x_335; +x_228 = x_343; +goto block_330; } else { -lean_object* x_334; lean_object* x_335; uint8_t x_336; lean_object* x_337; double x_338; double x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; -x_334 = lean_ctor_get(x_324, 0); -x_335 = lean_ctor_get(x_324, 1); -lean_inc(x_335); -lean_inc(x_334); -lean_dec(x_324); -x_336 = 0; -x_337 = lean_unsigned_to_nat(0u); -x_338 = l_Float_ofScientific(x_316, x_336, x_337); -lean_dec(x_316); -x_339 = l_Float_ofScientific(x_334, x_336, x_337); -lean_dec(x_334); -x_340 = lean_box_float(x_338); -x_341 = lean_box_float(x_339); -x_342 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_342, 0, x_340); -lean_ctor_set(x_342, 1, x_341); -lean_ctor_set(x_319, 1, x_342); -lean_ctor_set(x_319, 0, x_323); -x_219 = x_319; -x_220 = x_335; -goto block_314; +lean_object* x_350; lean_object* x_351; uint8_t x_352; lean_object* x_353; double x_354; double x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; +x_350 = lean_ctor_get(x_340, 0); +x_351 = lean_ctor_get(x_340, 1); +lean_inc(x_351); +lean_inc(x_350); +lean_dec(x_340); +x_352 = 0; +x_353 = lean_unsigned_to_nat(0u); +x_354 = l_Float_ofScientific(x_332, x_352, x_353); +lean_dec(x_332); +x_355 = l_Float_ofScientific(x_350, x_352, x_353); +lean_dec(x_350); +x_356 = lean_box_float(x_354); +x_357 = lean_box_float(x_355); +x_358 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_358, 0, x_356); +lean_ctor_set(x_358, 1, x_357); +lean_ctor_set(x_335, 1, x_358); +lean_ctor_set(x_335, 0, x_339); +x_227 = x_335; +x_228 = x_351; +goto block_330; } } else { -lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; lean_object* x_351; double x_352; double x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; -x_343 = lean_ctor_get(x_319, 0); -x_344 = lean_ctor_get(x_319, 1); -lean_inc(x_344); -lean_inc(x_343); -lean_dec(x_319); -x_345 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_345, 0, x_343); -x_346 = lean_io_get_num_heartbeats(x_344); -x_347 = lean_ctor_get(x_346, 0); -lean_inc(x_347); -x_348 = lean_ctor_get(x_346, 1); -lean_inc(x_348); -if (lean_is_exclusive(x_346)) { - lean_ctor_release(x_346, 0); - lean_ctor_release(x_346, 1); - x_349 = x_346; -} else { - lean_dec_ref(x_346); - x_349 = lean_box(0); -} -x_350 = 0; -x_351 = lean_unsigned_to_nat(0u); -x_352 = l_Float_ofScientific(x_316, x_350, x_351); -lean_dec(x_316); -x_353 = l_Float_ofScientific(x_347, x_350, x_351); -lean_dec(x_347); -x_354 = lean_box_float(x_352); -x_355 = lean_box_float(x_353); -if (lean_is_scalar(x_349)) { - x_356 = lean_alloc_ctor(0, 2, 0); -} else { - x_356 = x_349; -} -lean_ctor_set(x_356, 0, x_354); -lean_ctor_set(x_356, 1, x_355); -x_357 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_357, 0, x_345); -lean_ctor_set(x_357, 1, x_356); -x_219 = x_357; -x_220 = x_348; -goto block_314; -} -} -else -{ -uint8_t x_358; -x_358 = !lean_is_exclusive(x_319); -if (x_358 == 0) -{ -lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; uint8_t x_363; -x_359 = lean_ctor_get(x_319, 0); -x_360 = lean_ctor_get(x_319, 1); -x_361 = lean_alloc_ctor(0, 1, 0); +lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; uint8_t x_366; lean_object* x_367; double x_368; double x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; +x_359 = lean_ctor_get(x_335, 0); +x_360 = lean_ctor_get(x_335, 1); +lean_inc(x_360); +lean_inc(x_359); +lean_dec(x_335); +x_361 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_361, 0, x_359); x_362 = lean_io_get_num_heartbeats(x_360); -x_363 = !lean_is_exclusive(x_362); -if (x_363 == 0) -{ -lean_object* x_364; lean_object* x_365; uint8_t x_366; lean_object* x_367; double x_368; double x_369; lean_object* x_370; lean_object* x_371; -x_364 = lean_ctor_get(x_362, 0); -x_365 = lean_ctor_get(x_362, 1); +x_363 = lean_ctor_get(x_362, 0); +lean_inc(x_363); +x_364 = lean_ctor_get(x_362, 1); +lean_inc(x_364); +if (lean_is_exclusive(x_362)) { + lean_ctor_release(x_362, 0); + lean_ctor_release(x_362, 1); + x_365 = x_362; +} else { + lean_dec_ref(x_362); + x_365 = lean_box(0); +} x_366 = 0; x_367 = lean_unsigned_to_nat(0u); -x_368 = l_Float_ofScientific(x_316, x_366, x_367); -lean_dec(x_316); -x_369 = l_Float_ofScientific(x_364, x_366, x_367); -lean_dec(x_364); +x_368 = l_Float_ofScientific(x_332, x_366, x_367); +lean_dec(x_332); +x_369 = l_Float_ofScientific(x_363, x_366, x_367); +lean_dec(x_363); x_370 = lean_box_float(x_368); x_371 = lean_box_float(x_369); -lean_ctor_set(x_362, 1, x_371); -lean_ctor_set(x_362, 0, x_370); -lean_ctor_set_tag(x_319, 0); -lean_ctor_set(x_319, 1, x_362); -lean_ctor_set(x_319, 0, x_361); -x_219 = x_319; -x_220 = x_365; -goto block_314; -} -else -{ -lean_object* x_372; lean_object* x_373; uint8_t x_374; lean_object* x_375; double x_376; double x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; -x_372 = lean_ctor_get(x_362, 0); -x_373 = lean_ctor_get(x_362, 1); -lean_inc(x_373); -lean_inc(x_372); -lean_dec(x_362); -x_374 = 0; -x_375 = lean_unsigned_to_nat(0u); -x_376 = l_Float_ofScientific(x_316, x_374, x_375); -lean_dec(x_316); -x_377 = l_Float_ofScientific(x_372, x_374, x_375); -lean_dec(x_372); -x_378 = lean_box_float(x_376); -x_379 = lean_box_float(x_377); -x_380 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_380, 0, x_378); -lean_ctor_set(x_380, 1, x_379); -lean_ctor_set_tag(x_319, 0); -lean_ctor_set(x_319, 1, x_380); -lean_ctor_set(x_319, 0, x_361); -x_219 = x_319; -x_220 = x_373; -goto block_314; -} -} -else -{ -lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; uint8_t x_388; lean_object* x_389; double x_390; double x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; -x_381 = lean_ctor_get(x_319, 0); -x_382 = lean_ctor_get(x_319, 1); -lean_inc(x_382); -lean_inc(x_381); -lean_dec(x_319); -x_383 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_383, 0, x_381); -x_384 = lean_io_get_num_heartbeats(x_382); -x_385 = lean_ctor_get(x_384, 0); -lean_inc(x_385); -x_386 = lean_ctor_get(x_384, 1); -lean_inc(x_386); -if (lean_is_exclusive(x_384)) { - lean_ctor_release(x_384, 0); - lean_ctor_release(x_384, 1); - x_387 = x_384; +if (lean_is_scalar(x_365)) { + x_372 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_384); - x_387 = lean_box(0); + x_372 = x_365; } -x_388 = 0; -x_389 = lean_unsigned_to_nat(0u); -x_390 = l_Float_ofScientific(x_316, x_388, x_389); -lean_dec(x_316); -x_391 = l_Float_ofScientific(x_385, x_388, x_389); -lean_dec(x_385); -x_392 = lean_box_float(x_390); -x_393 = lean_box_float(x_391); -if (lean_is_scalar(x_387)) { - x_394 = lean_alloc_ctor(0, 2, 0); -} else { - x_394 = x_387; +lean_ctor_set(x_372, 0, x_370); +lean_ctor_set(x_372, 1, x_371); +x_373 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_373, 0, x_361); +lean_ctor_set(x_373, 1, x_372); +x_227 = x_373; +x_228 = x_364; +goto block_330; } -lean_ctor_set(x_394, 0, x_392); -lean_ctor_set(x_394, 1, x_393); -x_395 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_395, 0, x_383); -lean_ctor_set(x_395, 1, x_394); -x_219 = x_395; -x_220 = x_386; -goto block_314; -} -} -block_314: -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; uint8_t x_225; lean_object* x_294; uint8_t x_295; -x_221 = lean_ctor_get(x_219, 1); -lean_inc(x_221); -x_222 = lean_ctor_get(x_219, 0); -lean_inc(x_222); -lean_dec(x_219); -x_223 = lean_ctor_get(x_221, 0); -lean_inc(x_223); -x_224 = lean_ctor_get(x_221, 1); -lean_inc(x_224); -lean_dec(x_221); -x_294 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__2; -x_295 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_294); -if (x_295 == 0) -{ -uint8_t x_296; -x_296 = 0; -x_225 = x_296; -goto block_293; } else { -double x_297; double x_298; double x_299; -x_297 = lean_unbox_float(x_224); -x_298 = lean_unbox_float(x_223); -x_299 = lean_float_sub(x_297, x_298); +uint8_t x_374; +x_374 = !lean_is_exclusive(x_335); +if (x_374 == 0) +{ +lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; uint8_t x_379; +x_375 = lean_ctor_get(x_335, 0); +x_376 = lean_ctor_get(x_335, 1); +x_377 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_377, 0, x_375); +x_378 = lean_io_get_num_heartbeats(x_376); +x_379 = !lean_is_exclusive(x_378); +if (x_379 == 0) +{ +lean_object* x_380; lean_object* x_381; uint8_t x_382; lean_object* x_383; double x_384; double x_385; lean_object* x_386; lean_object* x_387; +x_380 = lean_ctor_get(x_378, 0); +x_381 = lean_ctor_get(x_378, 1); +x_382 = 0; +x_383 = lean_unsigned_to_nat(0u); +x_384 = l_Float_ofScientific(x_332, x_382, x_383); +lean_dec(x_332); +x_385 = l_Float_ofScientific(x_380, x_382, x_383); +lean_dec(x_380); +x_386 = lean_box_float(x_384); +x_387 = lean_box_float(x_385); +lean_ctor_set(x_378, 1, x_387); +lean_ctor_set(x_378, 0, x_386); +lean_ctor_set_tag(x_335, 0); +lean_ctor_set(x_335, 1, x_378); +lean_ctor_set(x_335, 0, x_377); +x_227 = x_335; +x_228 = x_381; +goto block_330; +} +else +{ +lean_object* x_388; lean_object* x_389; uint8_t x_390; lean_object* x_391; double x_392; double x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; +x_388 = lean_ctor_get(x_378, 0); +x_389 = lean_ctor_get(x_378, 1); +lean_inc(x_389); +lean_inc(x_388); +lean_dec(x_378); +x_390 = 0; +x_391 = lean_unsigned_to_nat(0u); +x_392 = l_Float_ofScientific(x_332, x_390, x_391); +lean_dec(x_332); +x_393 = l_Float_ofScientific(x_388, x_390, x_391); +lean_dec(x_388); +x_394 = lean_box_float(x_392); +x_395 = lean_box_float(x_393); +x_396 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_396, 0, x_394); +lean_ctor_set(x_396, 1, x_395); +lean_ctor_set_tag(x_335, 0); +lean_ctor_set(x_335, 1, x_396); +lean_ctor_set(x_335, 0, x_377); +x_227 = x_335; +x_228 = x_389; +goto block_330; +} +} +else +{ +lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; uint8_t x_404; lean_object* x_405; double x_406; double x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; +x_397 = lean_ctor_get(x_335, 0); +x_398 = lean_ctor_get(x_335, 1); +lean_inc(x_398); +lean_inc(x_397); +lean_dec(x_335); +x_399 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_399, 0, x_397); +x_400 = lean_io_get_num_heartbeats(x_398); +x_401 = lean_ctor_get(x_400, 0); +lean_inc(x_401); +x_402 = lean_ctor_get(x_400, 1); +lean_inc(x_402); +if (lean_is_exclusive(x_400)) { + lean_ctor_release(x_400, 0); + lean_ctor_release(x_400, 1); + x_403 = x_400; +} else { + lean_dec_ref(x_400); + x_403 = lean_box(0); +} +x_404 = 0; +x_405 = lean_unsigned_to_nat(0u); +x_406 = l_Float_ofScientific(x_332, x_404, x_405); +lean_dec(x_332); +x_407 = l_Float_ofScientific(x_401, x_404, x_405); +lean_dec(x_401); +x_408 = lean_box_float(x_406); +x_409 = lean_box_float(x_407); +if (lean_is_scalar(x_403)) { + x_410 = lean_alloc_ctor(0, 2, 0); +} else { + x_410 = x_403; +} +lean_ctor_set(x_410, 0, x_408); +lean_ctor_set(x_410, 1, x_409); +x_411 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_411, 0, x_399); +lean_ctor_set(x_411, 1, x_410); +x_227 = x_411; +x_228 = x_402; +goto block_330; +} +} +block_330: +{ +lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; uint8_t x_234; uint8_t x_235; +x_229 = lean_ctor_get(x_227, 1); +lean_inc(x_229); +x_230 = lean_ctor_get(x_227, 0); +lean_inc(x_230); +lean_dec(x_227); +x_231 = lean_ctor_get(x_229, 0); +lean_inc(x_231); +x_232 = lean_ctor_get(x_229, 1); +lean_inc(x_232); +lean_dec(x_229); +x_233 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__2; +x_234 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_233); +if (x_234 == 0) +{ +if (x_6 == 0) +{ +uint8_t x_300; +x_300 = 0; +x_235 = x_300; +goto block_299; +} +else +{ +lean_object* x_301; double x_302; double x_303; lean_object* x_304; +x_301 = lean_box(0); +x_302 = lean_unbox_float(x_231); +lean_dec(x_231); +x_303 = lean_unbox_float(x_232); +lean_dec(x_232); +x_304 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__3(x_2, x_3, x_4, x_20, x_230, x_234, x_302, x_303, x_5, x_301, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_228); +return x_304; +} +} +else +{ +double x_305; double x_306; double x_307; +x_305 = lean_unbox_float(x_232); +x_306 = lean_unbox_float(x_231); +x_307 = lean_float_sub(x_305, x_306); if (x_23 == 0) { -lean_object* x_300; lean_object* x_301; uint8_t x_302; lean_object* x_303; double x_304; double x_305; double x_306; uint8_t x_307; -x_300 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__3; -x_301 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_300); -x_302 = 0; -x_303 = lean_unsigned_to_nat(0u); -x_304 = l_Float_ofScientific(x_301, x_302, x_303); -lean_dec(x_301); -x_305 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__4; -x_306 = lean_float_div(x_304, x_305); -x_307 = lean_float_decLt(x_306, x_299); -x_225 = x_307; -goto block_293; -} -else +if (x_6 == 0) { -lean_object* x_308; lean_object* x_309; uint8_t x_310; lean_object* x_311; double x_312; uint8_t x_313; +lean_object* x_308; lean_object* x_309; uint8_t x_310; lean_object* x_311; double x_312; double x_313; double x_314; uint8_t x_315; x_308 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__3; x_309 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_308); x_310 = 0; x_311 = lean_unsigned_to_nat(0u); x_312 = l_Float_ofScientific(x_309, x_310, x_311); lean_dec(x_309); -x_313 = lean_float_decLt(x_312, x_299); -x_225 = x_313; -goto block_293; +x_313 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__4; +x_314 = lean_float_div(x_312, x_313); +x_315 = lean_float_decLt(x_314, x_307); +x_235 = x_315; +goto block_299; +} +else +{ +lean_object* x_316; double x_317; double x_318; lean_object* x_319; +x_316 = lean_box(0); +x_317 = lean_unbox_float(x_231); +lean_dec(x_231); +x_318 = lean_unbox_float(x_232); +lean_dec(x_232); +x_319 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__3(x_2, x_3, x_4, x_20, x_230, x_234, x_317, x_318, x_5, x_316, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_228); +return x_319; } } -block_293: +else { if (x_6 == 0) { -if (x_225 == 0) +lean_object* x_320; lean_object* x_321; uint8_t x_322; lean_object* x_323; double x_324; uint8_t x_325; +x_320 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___closed__3; +x_321 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_320); +x_322 = 0; +x_323 = lean_unsigned_to_nat(0u); +x_324 = l_Float_ofScientific(x_321, x_322, x_323); +lean_dec(x_321); +x_325 = lean_float_decLt(x_324, x_307); +x_235 = x_325; +goto block_299; +} +else { -lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; uint8_t x_230; -lean_dec(x_224); -lean_dec(x_223); +lean_object* x_326; double x_327; double x_328; lean_object* x_329; +x_326 = lean_box(0); +x_327 = lean_unbox_float(x_231); +lean_dec(x_231); +x_328 = lean_unbox_float(x_232); +lean_dec(x_232); +x_329 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__3(x_2, x_3, x_4, x_20, x_230, x_234, x_327, x_328, x_5, x_326, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_228); +return x_329; +} +} +} +block_299: +{ +if (x_235 == 0) +{ +lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; uint8_t x_240; +lean_dec(x_232); +lean_dec(x_231); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_226 = lean_st_ref_take(x_17, x_220); -x_227 = lean_ctor_get(x_226, 0); -lean_inc(x_227); -x_228 = lean_ctor_get(x_227, 3); -lean_inc(x_228); -x_229 = lean_ctor_get(x_226, 1); -lean_inc(x_229); -lean_dec(x_226); -x_230 = !lean_is_exclusive(x_227); -if (x_230 == 0) -{ -lean_object* x_231; uint8_t x_232; -x_231 = lean_ctor_get(x_227, 3); -lean_dec(x_231); -x_232 = !lean_is_exclusive(x_228); -if (x_232 == 0) -{ -lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; -x_233 = lean_ctor_get(x_228, 0); -x_234 = l_Lean_PersistentArray_append___rarg(x_20, x_233); -lean_dec(x_233); -lean_ctor_set(x_228, 0, x_234); -x_235 = lean_st_ref_set(x_17, x_227, x_229); -x_236 = lean_ctor_get(x_235, 1); -lean_inc(x_236); -lean_dec(x_235); -x_237 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__8(x_222, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_236); -lean_dec(x_17); -lean_dec(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_222); -if (lean_obj_tag(x_237) == 0) -{ -uint8_t x_238; -x_238 = !lean_is_exclusive(x_237); -if (x_238 == 0) -{ -return x_237; -} -else -{ -lean_object* x_239; lean_object* x_240; lean_object* x_241; -x_239 = lean_ctor_get(x_237, 0); -x_240 = lean_ctor_get(x_237, 1); -lean_inc(x_240); +x_236 = lean_st_ref_take(x_17, x_228); +x_237 = lean_ctor_get(x_236, 0); +lean_inc(x_237); +x_238 = lean_ctor_get(x_237, 3); +lean_inc(x_238); +x_239 = lean_ctor_get(x_236, 1); lean_inc(x_239); -lean_dec(x_237); -x_241 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_241, 0, x_239); -lean_ctor_set(x_241, 1, x_240); -return x_241; -} -} -else +lean_dec(x_236); +x_240 = !lean_is_exclusive(x_237); +if (x_240 == 0) { -uint8_t x_242; -x_242 = !lean_is_exclusive(x_237); +lean_object* x_241; uint8_t x_242; +x_241 = lean_ctor_get(x_237, 3); +lean_dec(x_241); +x_242 = !lean_is_exclusive(x_238); if (x_242 == 0) { -return x_237; +lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; +x_243 = lean_ctor_get(x_238, 0); +x_244 = l_Lean_PersistentArray_append___rarg(x_20, x_243); +lean_dec(x_243); +lean_ctor_set(x_238, 0, x_244); +x_245 = lean_st_ref_set(x_17, x_237, x_239); +x_246 = lean_ctor_get(x_245, 1); +lean_inc(x_246); +lean_dec(x_245); +x_247 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__8(x_230, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_246); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_230); +if (lean_obj_tag(x_247) == 0) +{ +uint8_t x_248; +x_248 = !lean_is_exclusive(x_247); +if (x_248 == 0) +{ +return x_247; } else { -lean_object* x_243; lean_object* x_244; lean_object* x_245; -x_243 = lean_ctor_get(x_237, 0); -x_244 = lean_ctor_get(x_237, 1); -lean_inc(x_244); -lean_inc(x_243); -lean_dec(x_237); -x_245 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_245, 0, x_243); -lean_ctor_set(x_245, 1, x_244); -return x_245; -} -} -} -else -{ -uint64_t x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; -x_246 = lean_ctor_get_uint64(x_228, sizeof(void*)*1); -x_247 = lean_ctor_get(x_228, 0); -lean_inc(x_247); -lean_dec(x_228); -x_248 = l_Lean_PersistentArray_append___rarg(x_20, x_247); +lean_object* x_249; lean_object* x_250; lean_object* x_251; +x_249 = lean_ctor_get(x_247, 0); +x_250 = lean_ctor_get(x_247, 1); +lean_inc(x_250); +lean_inc(x_249); lean_dec(x_247); -x_249 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_249, 0, x_248); -lean_ctor_set_uint64(x_249, sizeof(void*)*1, x_246); -lean_ctor_set(x_227, 3, x_249); -x_250 = lean_st_ref_set(x_17, x_227, x_229); -x_251 = lean_ctor_get(x_250, 1); -lean_inc(x_251); -lean_dec(x_250); -x_252 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__8(x_222, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_251); -lean_dec(x_17); -lean_dec(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_222); -if (lean_obj_tag(x_252) == 0) +x_251 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_251, 0, x_249); +lean_ctor_set(x_251, 1, x_250); +return x_251; +} +} +else { -lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; -x_253 = lean_ctor_get(x_252, 0); -lean_inc(x_253); -x_254 = lean_ctor_get(x_252, 1); +uint8_t x_252; +x_252 = !lean_is_exclusive(x_247); +if (x_252 == 0) +{ +return x_247; +} +else +{ +lean_object* x_253; lean_object* x_254; lean_object* x_255; +x_253 = lean_ctor_get(x_247, 0); +x_254 = lean_ctor_get(x_247, 1); lean_inc(x_254); -if (lean_is_exclusive(x_252)) { - lean_ctor_release(x_252, 0); - lean_ctor_release(x_252, 1); - x_255 = x_252; -} else { - lean_dec_ref(x_252); - x_255 = lean_box(0); +lean_inc(x_253); +lean_dec(x_247); +x_255 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_255, 0, x_253); +lean_ctor_set(x_255, 1, x_254); +return x_255; } -if (lean_is_scalar(x_255)) { - x_256 = lean_alloc_ctor(0, 2, 0); -} else { - x_256 = x_255; } -lean_ctor_set(x_256, 0, x_253); -lean_ctor_set(x_256, 1, x_254); -return x_256; } else { -lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; -x_257 = lean_ctor_get(x_252, 0); +uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; +x_256 = lean_ctor_get_uint64(x_238, sizeof(void*)*1); +x_257 = lean_ctor_get(x_238, 0); lean_inc(x_257); -x_258 = lean_ctor_get(x_252, 1); -lean_inc(x_258); -if (lean_is_exclusive(x_252)) { - lean_ctor_release(x_252, 0); - lean_ctor_release(x_252, 1); - x_259 = x_252; -} else { - lean_dec_ref(x_252); - x_259 = lean_box(0); -} -if (lean_is_scalar(x_259)) { - x_260 = lean_alloc_ctor(1, 2, 0); -} else { - x_260 = x_259; -} -lean_ctor_set(x_260, 0, x_257); -lean_ctor_set(x_260, 1, x_258); -return x_260; -} -} -} -else -{ -lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; uint64_t x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; -x_261 = lean_ctor_get(x_227, 0); -x_262 = lean_ctor_get(x_227, 1); -x_263 = lean_ctor_get(x_227, 2); -x_264 = lean_ctor_get(x_227, 4); -x_265 = lean_ctor_get(x_227, 5); -x_266 = lean_ctor_get(x_227, 6); -x_267 = lean_ctor_get(x_227, 7); -lean_inc(x_267); -lean_inc(x_266); -lean_inc(x_265); -lean_inc(x_264); -lean_inc(x_263); -lean_inc(x_262); +lean_dec(x_238); +x_258 = l_Lean_PersistentArray_append___rarg(x_20, x_257); +lean_dec(x_257); +x_259 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_259, 0, x_258); +lean_ctor_set_uint64(x_259, sizeof(void*)*1, x_256); +lean_ctor_set(x_237, 3, x_259); +x_260 = lean_st_ref_set(x_17, x_237, x_239); +x_261 = lean_ctor_get(x_260, 1); lean_inc(x_261); -lean_dec(x_227); -x_268 = lean_ctor_get_uint64(x_228, sizeof(void*)*1); -x_269 = lean_ctor_get(x_228, 0); -lean_inc(x_269); -if (lean_is_exclusive(x_228)) { - lean_ctor_release(x_228, 0); - x_270 = x_228; -} else { - lean_dec_ref(x_228); - x_270 = lean_box(0); -} -x_271 = l_Lean_PersistentArray_append___rarg(x_20, x_269); -lean_dec(x_269); -if (lean_is_scalar(x_270)) { - x_272 = lean_alloc_ctor(0, 1, 8); -} else { - x_272 = x_270; -} -lean_ctor_set(x_272, 0, x_271); -lean_ctor_set_uint64(x_272, sizeof(void*)*1, x_268); -x_273 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_273, 0, x_261); -lean_ctor_set(x_273, 1, x_262); -lean_ctor_set(x_273, 2, x_263); -lean_ctor_set(x_273, 3, x_272); -lean_ctor_set(x_273, 4, x_264); -lean_ctor_set(x_273, 5, x_265); -lean_ctor_set(x_273, 6, x_266); -lean_ctor_set(x_273, 7, x_267); -x_274 = lean_st_ref_set(x_17, x_273, x_229); -x_275 = lean_ctor_get(x_274, 1); -lean_inc(x_275); -lean_dec(x_274); -x_276 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__8(x_222, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_275); +lean_dec(x_260); +x_262 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__8(x_230, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_261); lean_dec(x_17); lean_dec(x_16); lean_dec(x_15); @@ -34867,79 +34821,177 @@ lean_dec(x_13); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_222); -if (lean_obj_tag(x_276) == 0) +lean_dec(x_230); +if (lean_obj_tag(x_262) == 0) { -lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; -x_277 = lean_ctor_get(x_276, 0); +lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; +x_263 = lean_ctor_get(x_262, 0); +lean_inc(x_263); +x_264 = lean_ctor_get(x_262, 1); +lean_inc(x_264); +if (lean_is_exclusive(x_262)) { + lean_ctor_release(x_262, 0); + lean_ctor_release(x_262, 1); + x_265 = x_262; +} else { + lean_dec_ref(x_262); + x_265 = lean_box(0); +} +if (lean_is_scalar(x_265)) { + x_266 = lean_alloc_ctor(0, 2, 0); +} else { + x_266 = x_265; +} +lean_ctor_set(x_266, 0, x_263); +lean_ctor_set(x_266, 1, x_264); +return x_266; +} +else +{ +lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_267 = lean_ctor_get(x_262, 0); +lean_inc(x_267); +x_268 = lean_ctor_get(x_262, 1); +lean_inc(x_268); +if (lean_is_exclusive(x_262)) { + lean_ctor_release(x_262, 0); + lean_ctor_release(x_262, 1); + x_269 = x_262; +} else { + lean_dec_ref(x_262); + x_269 = lean_box(0); +} +if (lean_is_scalar(x_269)) { + x_270 = lean_alloc_ctor(1, 2, 0); +} else { + x_270 = x_269; +} +lean_ctor_set(x_270, 0, x_267); +lean_ctor_set(x_270, 1, x_268); +return x_270; +} +} +} +else +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; uint64_t x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; +x_271 = lean_ctor_get(x_237, 0); +x_272 = lean_ctor_get(x_237, 1); +x_273 = lean_ctor_get(x_237, 2); +x_274 = lean_ctor_get(x_237, 4); +x_275 = lean_ctor_get(x_237, 5); +x_276 = lean_ctor_get(x_237, 6); +x_277 = lean_ctor_get(x_237, 7); lean_inc(x_277); -x_278 = lean_ctor_get(x_276, 1); -lean_inc(x_278); -if (lean_is_exclusive(x_276)) { - lean_ctor_release(x_276, 0); - lean_ctor_release(x_276, 1); - x_279 = x_276; +lean_inc(x_276); +lean_inc(x_275); +lean_inc(x_274); +lean_inc(x_273); +lean_inc(x_272); +lean_inc(x_271); +lean_dec(x_237); +x_278 = lean_ctor_get_uint64(x_238, sizeof(void*)*1); +x_279 = lean_ctor_get(x_238, 0); +lean_inc(x_279); +if (lean_is_exclusive(x_238)) { + lean_ctor_release(x_238, 0); + x_280 = x_238; } else { - lean_dec_ref(x_276); - x_279 = lean_box(0); + lean_dec_ref(x_238); + x_280 = lean_box(0); } -if (lean_is_scalar(x_279)) { - x_280 = lean_alloc_ctor(0, 2, 0); +x_281 = l_Lean_PersistentArray_append___rarg(x_20, x_279); +lean_dec(x_279); +if (lean_is_scalar(x_280)) { + x_282 = lean_alloc_ctor(0, 1, 8); } else { - x_280 = x_279; + x_282 = x_280; } -lean_ctor_set(x_280, 0, x_277); -lean_ctor_set(x_280, 1, x_278); -return x_280; +lean_ctor_set(x_282, 0, x_281); +lean_ctor_set_uint64(x_282, sizeof(void*)*1, x_278); +x_283 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_283, 0, x_271); +lean_ctor_set(x_283, 1, x_272); +lean_ctor_set(x_283, 2, x_273); +lean_ctor_set(x_283, 3, x_282); +lean_ctor_set(x_283, 4, x_274); +lean_ctor_set(x_283, 5, x_275); +lean_ctor_set(x_283, 6, x_276); +lean_ctor_set(x_283, 7, x_277); +x_284 = lean_st_ref_set(x_17, x_283, x_239); +x_285 = lean_ctor_get(x_284, 1); +lean_inc(x_285); +lean_dec(x_284); +x_286 = l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__8(x_230, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_285); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_230); +if (lean_obj_tag(x_286) == 0) +{ +lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; +x_287 = lean_ctor_get(x_286, 0); +lean_inc(x_287); +x_288 = lean_ctor_get(x_286, 1); +lean_inc(x_288); +if (lean_is_exclusive(x_286)) { + lean_ctor_release(x_286, 0); + lean_ctor_release(x_286, 1); + x_289 = x_286; +} else { + lean_dec_ref(x_286); + x_289 = lean_box(0); +} +if (lean_is_scalar(x_289)) { + x_290 = lean_alloc_ctor(0, 2, 0); +} else { + x_290 = x_289; +} +lean_ctor_set(x_290, 0, x_287); +lean_ctor_set(x_290, 1, x_288); +return x_290; } else { -lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; -x_281 = lean_ctor_get(x_276, 0); -lean_inc(x_281); -x_282 = lean_ctor_get(x_276, 1); -lean_inc(x_282); -if (lean_is_exclusive(x_276)) { - lean_ctor_release(x_276, 0); - lean_ctor_release(x_276, 1); - x_283 = x_276; +lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; +x_291 = lean_ctor_get(x_286, 0); +lean_inc(x_291); +x_292 = lean_ctor_get(x_286, 1); +lean_inc(x_292); +if (lean_is_exclusive(x_286)) { + lean_ctor_release(x_286, 0); + lean_ctor_release(x_286, 1); + x_293 = x_286; } else { - lean_dec_ref(x_276); - x_283 = lean_box(0); + lean_dec_ref(x_286); + x_293 = lean_box(0); } -if (lean_is_scalar(x_283)) { - x_284 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_293)) { + x_294 = lean_alloc_ctor(1, 2, 0); } else { - x_284 = x_283; + x_294 = x_293; } -lean_ctor_set(x_284, 0, x_281); -lean_ctor_set(x_284, 1, x_282); -return x_284; +lean_ctor_set(x_294, 0, x_291); +lean_ctor_set(x_294, 1, x_292); +return x_294; } } } else { -lean_object* x_285; double x_286; double x_287; lean_object* x_288; -x_285 = lean_box(0); -x_286 = lean_unbox_float(x_223); -lean_dec(x_223); -x_287 = lean_unbox_float(x_224); -lean_dec(x_224); -x_288 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__3(x_2, x_3, x_4, x_20, x_222, x_1, x_225, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_220); -return x_288; -} -} -else -{ -lean_object* x_289; double x_290; double x_291; lean_object* x_292; -x_289 = lean_box(0); -x_290 = lean_unbox_float(x_223); -lean_dec(x_223); -x_291 = lean_unbox_float(x_224); -lean_dec(x_224); -x_292 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__3(x_2, x_3, x_4, x_20, x_222, x_1, x_225, x_290, x_291, x_5, x_289, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_220); -return x_292; +lean_object* x_295; double x_296; double x_297; lean_object* x_298; +x_295 = lean_box(0); +x_296 = lean_unbox_float(x_231); +lean_dec(x_231); +x_297 = lean_unbox_float(x_232); +lean_dec(x_232); +x_298 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__3(x_2, x_3, x_4, x_20, x_230, x_234, x_296, x_297, x_5, x_295, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_228); +return x_298; } } } @@ -38140,31 +38192,29 @@ lean_object* x_17 = _args[16]; lean_object* x_18 = _args[17]; lean_object* x_19 = _args[18]; lean_object* x_20 = _args[19]; -lean_object* x_21 = _args[20]; _start: { -uint8_t x_22; uint8_t x_23; double x_24; double x_25; uint8_t x_26; lean_object* x_27; -x_22 = lean_unbox(x_2); +uint8_t x_21; uint8_t x_22; double x_23; double x_24; uint8_t x_25; lean_object* x_26; +x_21 = lean_unbox(x_2); lean_dec(x_2); -x_23 = lean_unbox(x_8); +x_22 = lean_unbox(x_7); +lean_dec(x_7); +x_23 = lean_unbox_float(x_8); lean_dec(x_8); x_24 = lean_unbox_float(x_9); lean_dec(x_9); -x_25 = lean_unbox_float(x_10); -lean_dec(x_10); -x_26 = lean_unbox(x_15); -lean_dec(x_15); -x_27 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__2(x_1, x_22, x_3, x_4, x_5, x_6, x_7, x_23, x_24, x_25, x_11, x_12, x_13, x_14, x_26, x_16, x_17, x_18, x_19, x_20, x_21); -lean_dec(x_20); -lean_dec(x_18); +x_25 = lean_unbox(x_14); +lean_dec(x_14); +x_26 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__2(x_1, x_21, x_3, x_4, x_5, x_6, x_22, x_23, x_24, x_10, x_11, x_12, x_13, x_25, x_15, x_16, x_17, x_18, x_19, x_20); +lean_dec(x_19); lean_dec(x_17); lean_dec(x_16); -lean_dec(x_14); +lean_dec(x_15); lean_dec(x_13); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_27; +return x_26; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3___boxed(lean_object** _args) { @@ -38188,24 +38238,22 @@ lean_object* x_17 = _args[16]; lean_object* x_18 = _args[17]; lean_object* x_19 = _args[18]; lean_object* x_20 = _args[19]; -lean_object* x_21 = _args[20]; _start: { -uint8_t x_22; uint8_t x_23; double x_24; double x_25; uint8_t x_26; lean_object* x_27; -x_22 = lean_unbox(x_2); +uint8_t x_21; uint8_t x_22; double x_23; double x_24; uint8_t x_25; lean_object* x_26; +x_21 = lean_unbox(x_2); lean_dec(x_2); -x_23 = lean_unbox(x_7); +x_22 = lean_unbox(x_6); +lean_dec(x_6); +x_23 = lean_unbox_float(x_7); lean_dec(x_7); x_24 = lean_unbox_float(x_8); lean_dec(x_8); -x_25 = lean_unbox_float(x_9); -lean_dec(x_9); -x_26 = lean_unbox(x_15); -lean_dec(x_15); -x_27 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3(x_1, x_22, x_3, x_4, x_5, x_6, x_23, x_24, x_25, x_10, x_11, x_12, x_13, x_14, x_26, x_16, x_17, x_18, x_19, x_20, x_21); -lean_dec(x_11); -lean_dec(x_6); -return x_27; +x_25 = lean_unbox(x_14); +lean_dec(x_14); +x_26 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3(x_1, x_21, x_3, x_4, x_5, x_22, x_23, x_24, x_9, x_10, x_11, x_12, x_13, x_25, x_15, x_16, x_17, x_18, x_19, x_20); +lean_dec(x_10); +return x_26; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__4___boxed(lean_object** _args) { @@ -38337,31 +38385,29 @@ lean_object* x_17 = _args[16]; lean_object* x_18 = _args[17]; lean_object* x_19 = _args[18]; lean_object* x_20 = _args[19]; -lean_object* x_21 = _args[20]; _start: { -uint8_t x_22; uint8_t x_23; double x_24; double x_25; uint8_t x_26; lean_object* x_27; -x_22 = lean_unbox(x_2); +uint8_t x_21; uint8_t x_22; double x_23; double x_24; uint8_t x_25; lean_object* x_26; +x_21 = lean_unbox(x_2); lean_dec(x_2); -x_23 = lean_unbox(x_8); +x_22 = lean_unbox(x_7); +lean_dec(x_7); +x_23 = lean_unbox_float(x_8); lean_dec(x_8); x_24 = lean_unbox_float(x_9); lean_dec(x_9); -x_25 = lean_unbox_float(x_10); -lean_dec(x_10); -x_26 = lean_unbox(x_15); -lean_dec(x_15); -x_27 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__2(x_1, x_22, x_3, x_4, x_5, x_6, x_7, x_23, x_24, x_25, x_11, x_12, x_13, x_14, x_26, x_16, x_17, x_18, x_19, x_20, x_21); -lean_dec(x_20); -lean_dec(x_18); +x_25 = lean_unbox(x_14); +lean_dec(x_14); +x_26 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__2(x_1, x_21, x_3, x_4, x_5, x_6, x_22, x_23, x_24, x_10, x_11, x_12, x_13, x_25, x_15, x_16, x_17, x_18, x_19, x_20); +lean_dec(x_19); lean_dec(x_17); lean_dec(x_16); -lean_dec(x_14); +lean_dec(x_15); lean_dec(x_13); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_27; +return x_26; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__3___boxed(lean_object** _args) { @@ -38385,24 +38431,22 @@ lean_object* x_17 = _args[16]; lean_object* x_18 = _args[17]; lean_object* x_19 = _args[18]; lean_object* x_20 = _args[19]; -lean_object* x_21 = _args[20]; _start: { -uint8_t x_22; uint8_t x_23; double x_24; double x_25; uint8_t x_26; lean_object* x_27; -x_22 = lean_unbox(x_2); +uint8_t x_21; uint8_t x_22; double x_23; double x_24; uint8_t x_25; lean_object* x_26; +x_21 = lean_unbox(x_2); lean_dec(x_2); -x_23 = lean_unbox(x_7); +x_22 = lean_unbox(x_6); +lean_dec(x_6); +x_23 = lean_unbox_float(x_7); lean_dec(x_7); x_24 = lean_unbox_float(x_8); lean_dec(x_8); -x_25 = lean_unbox_float(x_9); -lean_dec(x_9); -x_26 = lean_unbox(x_15); -lean_dec(x_15); -x_27 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__3(x_1, x_22, x_3, x_4, x_5, x_6, x_23, x_24, x_25, x_10, x_11, x_12, x_13, x_14, x_26, x_16, x_17, x_18, x_19, x_20, x_21); -lean_dec(x_11); -lean_dec(x_6); -return x_27; +x_25 = lean_unbox(x_14); +lean_dec(x_14); +x_26 = l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__3(x_1, x_21, x_3, x_4, x_5, x_22, x_23, x_24, x_9, x_10, x_11, x_12, x_13, x_25, x_15, x_16, x_17, x_18, x_19, x_20); +lean_dec(x_10); +return x_26; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__7___lambda__4___boxed(lean_object** _args) { @@ -41721,8 +41765,6 @@ lean_mark_persistent(l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lea l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__3___rarg___closed__3 = _init_l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__3___rarg___closed__3(); lean_mark_persistent(l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__3___rarg___closed__3); l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__2___closed__1(); -l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__2___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__2___closed__2(); -lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__2___closed__2); l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3___closed__1); l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Elab_Tactic_Omega_splitDisjunction___spec__2___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Term.c b/stage0/stdlib/Lean/Elab/Term.c index 151dff21dc..710dcfa797 100644 --- a/stage0/stdlib/Lean/Elab/Term.c +++ b/stage0/stdlib/Lean/Elab/Term.c @@ -75,7 +75,6 @@ static lean_object* l_Lean_Elab_Term_mkAuxName___closed__1; extern lean_object* l_Lean_instMonadExceptOfExceptionCoreM; LEAN_EXPORT lean_object* l_Lean_Elab_Term_getInfoTreeWithContext_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_resolveId_x3f(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_profiler; uint8_t l_Lean_Elab_isAbortExceptionId(lean_object*); static lean_object* l_Lean_Elab_Term_tryPostponeIfHasMVars___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Term_withoutTacticIncrementality___rarg___lambda__1___boxed(lean_object*, lean_object*); @@ -699,6 +698,7 @@ lean_object* l_Lean_instantiateMVars___at___private_Lean_MetavarContext_0__Lean_ LEAN_EXPORT lean_object* l_Lean_Elab_Term_withMacroExpansion(lean_object*); lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); static lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___lambda__2___closed__2; +uint64_t lean_uint64_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_exposeLevelMVars___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_addAutoBoundImplicits_go___spec__40(lean_object*, lean_object*, size_t, size_t); uint8_t l_Lean_TagAttribute_hasTag(lean_object*, lean_object*, lean_object*); @@ -708,7 +708,7 @@ static lean_object* l___auto____x40_Lean_Elab_Term___hyg_3070____closed__37; lean_object* l_Lean_Meta_isType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofSyntax(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_resolveName_process(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitApp___at_Lean_Elab_Term_addAutoBoundImplicits_go___spec__28___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_MVarErrorInfo_logError_addArgName___closed__2; static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20307____closed__4; @@ -977,7 +977,7 @@ static lean_object* l___auto____x40_Lean_Elab_Term___hyg_3070____closed__7; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Term_0__Lean_Elab_Term_withoutModifyingStateWithInfoAndMessagesImpl___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_lengthTRAux___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_withSaveParentDeclInfoContext___at_Lean_Elab_Term_withDeclName___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__3; +static uint64_t l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__3; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Term_resolveId_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_mkNoImplicitLambdaAnnotation(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_MVarErrorInfo_logError___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1233,7 +1233,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_addTermInfo_x27(lean_object*, lean_obj LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Term_mkAuxName___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___auto____x40_Lean_Elab_Term___hyg_3070_; LEAN_EXPORT lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at_Lean_Elab_Term_resolveLocalName___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___lambda__3___closed__5; static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_Lean_Elab_Term_expandDeclId___spec__6___lambda__1___closed__1; @@ -1747,6 +1747,7 @@ static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_18003___ LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at_Lean_Elab_Term_resolveLocalName___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_findSomeRevMAux___at_Lean_Elab_Term_resolveLocalName___spec__9(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20540_(lean_object*); +static lean_object* l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__6; LEAN_EXPORT lean_object* l_Lean_Elab_Term_resolveId_x3f___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___auto____x40_Lean_Elab_Term___hyg_3070____closed__22; LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at_Lean_Elab_Term_resolveLocalName___spec__3(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1899,7 +1900,6 @@ lean_object* l___private_Init_Dynamic_0__Dynamic_get_x3fImpl___rarg(lean_object* LEAN_EXPORT lean_object* l_Lean_logAt___at_Lean_Elab_Term_MVarErrorInfo_logError___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasExprMVar(lean_object*); lean_object* l_Lean_Meta_processPostponed(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__2___closed__1; static lean_object* l_Lean_Elab_Term_ContainsPendingMVar_visit___closed__1; uint8_t l_Array_isEmpty___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Term_expandDeclId___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2530,11 +2530,20 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__3() { +static uint64_t _init_l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__3() { +_start: +{ +lean_object* x_1; uint64_t x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_uint64_of_nat(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__4() { _start: { uint64_t x_1; lean_object* x_2; lean_object* x_3; -x_1 = 0; +x_1 = l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__3; x_2 = l_Lean_Elab_Term_instInhabitedMVarErrorKind___closed__6; x_3 = lean_alloc_ctor(0, 1, 8); lean_ctor_set(x_3, 0, x_2); @@ -2542,14 +2551,14 @@ lean_ctor_set_uint64(x_3, sizeof(void*)*1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__4() { +static lean_object* _init_l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; lean_object* x_6; x_1 = lean_box(0); x_2 = l_Lean_Elab_Term_extraMsgToMsg___closed__3; x_3 = l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__2; -x_4 = l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__3; +x_4 = l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__4; x_5 = 0; x_6 = lean_alloc_ctor(0, 4, 1); lean_ctor_set(x_6, 0, x_2); @@ -2560,12 +2569,12 @@ lean_ctor_set_uint8(x_6, sizeof(void*)*4, x_5); return x_6; } } -static lean_object* _init_l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__5() { +static lean_object* _init_l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__4; +x_2 = l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__5; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); @@ -2576,7 +2585,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot _start: { lean_object* x_1; -x_1 = l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__5; +x_1 = l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__6; return x_1; } } @@ -2621,7 +2630,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_instInhabitedTacticParsedSnapshot__ _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__5; +x_1 = l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__6; x_2 = lean_task_pure(x_1); return x_2; } @@ -2643,7 +2652,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__4; +x_2 = l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__5; x_3 = lean_box(0); x_4 = l_Lean_Elab_Tactic_instInhabitedTacticParsedSnapshot___closed__2; x_5 = l_Lean_Elab_Term_instInhabitedMVarErrorKind___closed__3; @@ -42179,69 +42188,36 @@ lean_dec(x_11); return x_16; } } -static lean_object* _init_l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__2___closed__1() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_18 = l_Lean_addTrace___at_Lean_Elab_Term_traceAtCmdPos___spec__2___closed__1; +x_19 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_19, 0, x_1); +lean_ctor_set(x_19, 1, x_3); +lean_ctor_set_float(x_19, sizeof(void*)*2, x_18); +lean_ctor_set_float(x_19, sizeof(void*)*2 + 8, x_18); +lean_ctor_set_uint8(x_19, sizeof(void*)*2 + 16, x_2); +x_20 = lean_box(0); +x_21 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__1(x_4, x_5, x_10, x_6, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +return x_21; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { -_start: +else { -double x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; -x_19 = l_Lean_addTrace___at_Lean_Elab_Term_traceAtCmdPos___spec__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_20 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_20, 0, x_1); -lean_ctor_set(x_20, 1, x_3); -lean_ctor_set_float(x_20, sizeof(void*)*2, x_19); -lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_19); -lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); -x_21 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__2___closed__1; -x_22 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_21); -if (x_22 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_23; lean_object* x_24; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_22, 0, x_1); +lean_ctor_set(x_22, 1, x_3); +lean_ctor_set_float(x_22, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_22, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_22, sizeof(void*)*2 + 16, x_2); x_23 = lean_box(0); -x_24 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_20, x_23, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +x_24 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__1(x_4, x_5, x_10, x_6, x_22, x_23, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_24; } -else -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; -lean_dec(x_20); -x_25 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_25, 0, x_1); -lean_ctor_set(x_25, 1, x_3); -lean_ctor_set_float(x_25, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_25, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_25, sizeof(void*)*2 + 16, x_2); -x_26 = lean_box(0); -x_27 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_25, x_26, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -return x_27; -} -} -else -{ -lean_object* x_28; lean_object* x_29; lean_object* x_30; -lean_dec(x_20); -x_28 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_28, 0, x_1); -lean_ctor_set(x_28, 1, x_3); -lean_ctor_set_float(x_28, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_28, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_28, sizeof(void*)*2 + 16, x_2); -x_29 = lean_box(0); -x_30 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_28, x_29, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -return x_30; -} } } static lean_object* _init_l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3___closed__1() { @@ -42261,52 +42237,52 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_19; lean_object* x_20; -x_19 = lean_ctor_get(x_16, 5); -lean_inc(x_19); -lean_inc(x_17); +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_15, 5); +lean_inc(x_18); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_20 = lean_apply_8(x_10, x_5, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -if (lean_obj_tag(x_20) == 0) +x_19 = lean_apply_8(x_9, x_5, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +if (lean_obj_tag(x_19) == 0) { -lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_21 = lean_ctor_get(x_20, 0); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); -x_22 = lean_ctor_get(x_20, 1); -lean_inc(x_22); -lean_dec(x_20); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_19, x_5, x_6, x_7, x_8, x_9, x_21, x_12, x_13, x_14, x_15, x_16, x_17, x_22); -lean_dec(x_17); -lean_dec(x_15); +lean_dec(x_19); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_18, x_5, x_6, x_7, x_8, x_20, x_11, x_12, x_13, x_14, x_15, x_16, x_21); +lean_dec(x_16); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_23; +return x_22; } else { -lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_24 = lean_ctor_get(x_20, 1); -lean_inc(x_24); -lean_dec(x_20); -x_25 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3___closed__2; -x_26 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_19, x_5, x_6, x_7, x_8, x_9, x_25, x_12, x_13, x_14, x_15, x_16, x_17, x_24); -lean_dec(x_17); -lean_dec(x_15); +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_19, 1); +lean_inc(x_23); +lean_dec(x_19); +x_24 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3___closed__2; +x_25 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_18, x_5, x_6, x_7, x_8, x_24, x_11, x_12, x_13, x_14, x_15, x_16, x_23); +lean_dec(x_16); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_26; +return x_25; } } } @@ -42370,255 +42346,255 @@ x_19 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__4___cl x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_19); if (x_20 == 0) { -lean_object* x_21; lean_object* x_22; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; -x_111 = lean_io_mono_nanos_now(x_18); -x_112 = lean_ctor_get(x_111, 0); -lean_inc(x_112); -x_113 = lean_ctor_get(x_111, 1); -lean_inc(x_113); -lean_dec(x_111); +lean_object* x_21; lean_object* x_22; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; +x_115 = lean_io_mono_nanos_now(x_18); +x_116 = lean_ctor_get(x_115, 0); +lean_inc(x_116); +x_117 = lean_ctor_get(x_115, 1); +lean_inc(x_117); +lean_dec(x_115); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_114 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_113); -if (lean_obj_tag(x_114) == 0) +x_118 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_117); +if (lean_obj_tag(x_118) == 0) { -uint8_t x_115; -x_115 = !lean_is_exclusive(x_114); -if (x_115 == 0) +uint8_t x_119; +x_119 = !lean_is_exclusive(x_118); +if (x_119 == 0) { -lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; uint8_t x_120; -x_116 = lean_ctor_get(x_114, 0); -x_117 = lean_ctor_get(x_114, 1); -x_118 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_118, 0, x_116); -x_119 = lean_io_mono_nanos_now(x_117); -x_120 = !lean_is_exclusive(x_119); -if (x_120 == 0) +lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; uint8_t x_124; +x_120 = lean_ctor_get(x_118, 0); +x_121 = lean_ctor_get(x_118, 1); +x_122 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_122, 0, x_120); +x_123 = lean_io_mono_nanos_now(x_121); +x_124 = !lean_is_exclusive(x_123); +if (x_124 == 0) { -lean_object* x_121; lean_object* x_122; uint8_t x_123; lean_object* x_124; double x_125; double x_126; double x_127; double x_128; double x_129; lean_object* x_130; lean_object* x_131; -x_121 = lean_ctor_get(x_119, 0); -x_122 = lean_ctor_get(x_119, 1); -x_123 = 0; -x_124 = lean_unsigned_to_nat(0u); -x_125 = l_Float_ofScientific(x_112, x_123, x_124); -lean_dec(x_112); -x_126 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__4___closed__5; -x_127 = lean_float_div(x_125, x_126); -x_128 = l_Float_ofScientific(x_121, x_123, x_124); -lean_dec(x_121); -x_129 = lean_float_div(x_128, x_126); -x_130 = lean_box_float(x_127); -x_131 = lean_box_float(x_129); -lean_ctor_set(x_119, 1, x_131); -lean_ctor_set(x_119, 0, x_130); -lean_ctor_set(x_114, 1, x_119); -lean_ctor_set(x_114, 0, x_118); -x_21 = x_114; -x_22 = x_122; -goto block_110; +lean_object* x_125; lean_object* x_126; uint8_t x_127; lean_object* x_128; double x_129; double x_130; double x_131; double x_132; double x_133; lean_object* x_134; lean_object* x_135; +x_125 = lean_ctor_get(x_123, 0); +x_126 = lean_ctor_get(x_123, 1); +x_127 = 0; +x_128 = lean_unsigned_to_nat(0u); +x_129 = l_Float_ofScientific(x_116, x_127, x_128); +lean_dec(x_116); +x_130 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__4___closed__5; +x_131 = lean_float_div(x_129, x_130); +x_132 = l_Float_ofScientific(x_125, x_127, x_128); +lean_dec(x_125); +x_133 = lean_float_div(x_132, x_130); +x_134 = lean_box_float(x_131); +x_135 = lean_box_float(x_133); +lean_ctor_set(x_123, 1, x_135); +lean_ctor_set(x_123, 0, x_134); +lean_ctor_set(x_118, 1, x_123); +lean_ctor_set(x_118, 0, x_122); +x_21 = x_118; +x_22 = x_126; +goto block_114; } else { -lean_object* x_132; lean_object* x_133; uint8_t x_134; lean_object* x_135; double x_136; double x_137; double x_138; double x_139; double x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; -x_132 = lean_ctor_get(x_119, 0); -x_133 = lean_ctor_get(x_119, 1); -lean_inc(x_133); -lean_inc(x_132); -lean_dec(x_119); -x_134 = 0; -x_135 = lean_unsigned_to_nat(0u); -x_136 = l_Float_ofScientific(x_112, x_134, x_135); -lean_dec(x_112); -x_137 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__4___closed__5; -x_138 = lean_float_div(x_136, x_137); -x_139 = l_Float_ofScientific(x_132, x_134, x_135); -lean_dec(x_132); -x_140 = lean_float_div(x_139, x_137); -x_141 = lean_box_float(x_138); -x_142 = lean_box_float(x_140); -x_143 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_143, 0, x_141); -lean_ctor_set(x_143, 1, x_142); -lean_ctor_set(x_114, 1, x_143); -lean_ctor_set(x_114, 0, x_118); -x_21 = x_114; -x_22 = x_133; -goto block_110; +lean_object* x_136; lean_object* x_137; uint8_t x_138; lean_object* x_139; double x_140; double x_141; double x_142; double x_143; double x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; +x_136 = lean_ctor_get(x_123, 0); +x_137 = lean_ctor_get(x_123, 1); +lean_inc(x_137); +lean_inc(x_136); +lean_dec(x_123); +x_138 = 0; +x_139 = lean_unsigned_to_nat(0u); +x_140 = l_Float_ofScientific(x_116, x_138, x_139); +lean_dec(x_116); +x_141 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__4___closed__5; +x_142 = lean_float_div(x_140, x_141); +x_143 = l_Float_ofScientific(x_136, x_138, x_139); +lean_dec(x_136); +x_144 = lean_float_div(x_143, x_141); +x_145 = lean_box_float(x_142); +x_146 = lean_box_float(x_144); +x_147 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_147, 0, x_145); +lean_ctor_set(x_147, 1, x_146); +lean_ctor_set(x_118, 1, x_147); +lean_ctor_set(x_118, 0, x_122); +x_21 = x_118; +x_22 = x_137; +goto block_114; } } else { -lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; uint8_t x_151; lean_object* x_152; double x_153; double x_154; double x_155; double x_156; double x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; -x_144 = lean_ctor_get(x_114, 0); -x_145 = lean_ctor_get(x_114, 1); -lean_inc(x_145); -lean_inc(x_144); -lean_dec(x_114); -x_146 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_146, 0, x_144); -x_147 = lean_io_mono_nanos_now(x_145); -x_148 = lean_ctor_get(x_147, 0); -lean_inc(x_148); -x_149 = lean_ctor_get(x_147, 1); +lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; uint8_t x_155; lean_object* x_156; double x_157; double x_158; double x_159; double x_160; double x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; +x_148 = lean_ctor_get(x_118, 0); +x_149 = lean_ctor_get(x_118, 1); lean_inc(x_149); -if (lean_is_exclusive(x_147)) { - lean_ctor_release(x_147, 0); - lean_ctor_release(x_147, 1); - x_150 = x_147; +lean_inc(x_148); +lean_dec(x_118); +x_150 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_150, 0, x_148); +x_151 = lean_io_mono_nanos_now(x_149); +x_152 = lean_ctor_get(x_151, 0); +lean_inc(x_152); +x_153 = lean_ctor_get(x_151, 1); +lean_inc(x_153); +if (lean_is_exclusive(x_151)) { + lean_ctor_release(x_151, 0); + lean_ctor_release(x_151, 1); + x_154 = x_151; } else { - lean_dec_ref(x_147); - x_150 = lean_box(0); + lean_dec_ref(x_151); + x_154 = lean_box(0); } -x_151 = 0; -x_152 = lean_unsigned_to_nat(0u); -x_153 = l_Float_ofScientific(x_112, x_151, x_152); -lean_dec(x_112); -x_154 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__4___closed__5; -x_155 = lean_float_div(x_153, x_154); -x_156 = l_Float_ofScientific(x_148, x_151, x_152); -lean_dec(x_148); -x_157 = lean_float_div(x_156, x_154); -x_158 = lean_box_float(x_155); -x_159 = lean_box_float(x_157); -if (lean_is_scalar(x_150)) { - x_160 = lean_alloc_ctor(0, 2, 0); +x_155 = 0; +x_156 = lean_unsigned_to_nat(0u); +x_157 = l_Float_ofScientific(x_116, x_155, x_156); +lean_dec(x_116); +x_158 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__4___closed__5; +x_159 = lean_float_div(x_157, x_158); +x_160 = l_Float_ofScientific(x_152, x_155, x_156); +lean_dec(x_152); +x_161 = lean_float_div(x_160, x_158); +x_162 = lean_box_float(x_159); +x_163 = lean_box_float(x_161); +if (lean_is_scalar(x_154)) { + x_164 = lean_alloc_ctor(0, 2, 0); } else { - x_160 = x_150; + x_164 = x_154; } -lean_ctor_set(x_160, 0, x_158); -lean_ctor_set(x_160, 1, x_159); -x_161 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_161, 0, x_146); -lean_ctor_set(x_161, 1, x_160); -x_21 = x_161; -x_22 = x_149; -goto block_110; +lean_ctor_set(x_164, 0, x_162); +lean_ctor_set(x_164, 1, x_163); +x_165 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_165, 0, x_150); +lean_ctor_set(x_165, 1, x_164); +x_21 = x_165; +x_22 = x_153; +goto block_114; } } else { -uint8_t x_162; -x_162 = !lean_is_exclusive(x_114); -if (x_162 == 0) +uint8_t x_166; +x_166 = !lean_is_exclusive(x_118); +if (x_166 == 0) { -lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; uint8_t x_167; -x_163 = lean_ctor_get(x_114, 0); -x_164 = lean_ctor_get(x_114, 1); -x_165 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_165, 0, x_163); -x_166 = lean_io_mono_nanos_now(x_164); -x_167 = !lean_is_exclusive(x_166); -if (x_167 == 0) +lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; uint8_t x_171; +x_167 = lean_ctor_get(x_118, 0); +x_168 = lean_ctor_get(x_118, 1); +x_169 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_169, 0, x_167); +x_170 = lean_io_mono_nanos_now(x_168); +x_171 = !lean_is_exclusive(x_170); +if (x_171 == 0) { -lean_object* x_168; lean_object* x_169; uint8_t x_170; lean_object* x_171; double x_172; double x_173; double x_174; double x_175; double x_176; lean_object* x_177; lean_object* x_178; -x_168 = lean_ctor_get(x_166, 0); -x_169 = lean_ctor_get(x_166, 1); -x_170 = 0; -x_171 = lean_unsigned_to_nat(0u); -x_172 = l_Float_ofScientific(x_112, x_170, x_171); -lean_dec(x_112); -x_173 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__4___closed__5; -x_174 = lean_float_div(x_172, x_173); -x_175 = l_Float_ofScientific(x_168, x_170, x_171); -lean_dec(x_168); -x_176 = lean_float_div(x_175, x_173); -x_177 = lean_box_float(x_174); -x_178 = lean_box_float(x_176); -lean_ctor_set(x_166, 1, x_178); -lean_ctor_set(x_166, 0, x_177); -lean_ctor_set_tag(x_114, 0); -lean_ctor_set(x_114, 1, x_166); -lean_ctor_set(x_114, 0, x_165); -x_21 = x_114; -x_22 = x_169; -goto block_110; +lean_object* x_172; lean_object* x_173; uint8_t x_174; lean_object* x_175; double x_176; double x_177; double x_178; double x_179; double x_180; lean_object* x_181; lean_object* x_182; +x_172 = lean_ctor_get(x_170, 0); +x_173 = lean_ctor_get(x_170, 1); +x_174 = 0; +x_175 = lean_unsigned_to_nat(0u); +x_176 = l_Float_ofScientific(x_116, x_174, x_175); +lean_dec(x_116); +x_177 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__4___closed__5; +x_178 = lean_float_div(x_176, x_177); +x_179 = l_Float_ofScientific(x_172, x_174, x_175); +lean_dec(x_172); +x_180 = lean_float_div(x_179, x_177); +x_181 = lean_box_float(x_178); +x_182 = lean_box_float(x_180); +lean_ctor_set(x_170, 1, x_182); +lean_ctor_set(x_170, 0, x_181); +lean_ctor_set_tag(x_118, 0); +lean_ctor_set(x_118, 1, x_170); +lean_ctor_set(x_118, 0, x_169); +x_21 = x_118; +x_22 = x_173; +goto block_114; } else { -lean_object* x_179; lean_object* x_180; uint8_t x_181; lean_object* x_182; double x_183; double x_184; double x_185; double x_186; double x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; -x_179 = lean_ctor_get(x_166, 0); -x_180 = lean_ctor_get(x_166, 1); -lean_inc(x_180); -lean_inc(x_179); -lean_dec(x_166); -x_181 = 0; -x_182 = lean_unsigned_to_nat(0u); -x_183 = l_Float_ofScientific(x_112, x_181, x_182); -lean_dec(x_112); -x_184 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__4___closed__5; -x_185 = lean_float_div(x_183, x_184); -x_186 = l_Float_ofScientific(x_179, x_181, x_182); -lean_dec(x_179); -x_187 = lean_float_div(x_186, x_184); -x_188 = lean_box_float(x_185); -x_189 = lean_box_float(x_187); -x_190 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_190, 0, x_188); -lean_ctor_set(x_190, 1, x_189); -lean_ctor_set_tag(x_114, 0); -lean_ctor_set(x_114, 1, x_190); -lean_ctor_set(x_114, 0, x_165); -x_21 = x_114; -x_22 = x_180; -goto block_110; +lean_object* x_183; lean_object* x_184; uint8_t x_185; lean_object* x_186; double x_187; double x_188; double x_189; double x_190; double x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; +x_183 = lean_ctor_get(x_170, 0); +x_184 = lean_ctor_get(x_170, 1); +lean_inc(x_184); +lean_inc(x_183); +lean_dec(x_170); +x_185 = 0; +x_186 = lean_unsigned_to_nat(0u); +x_187 = l_Float_ofScientific(x_116, x_185, x_186); +lean_dec(x_116); +x_188 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__4___closed__5; +x_189 = lean_float_div(x_187, x_188); +x_190 = l_Float_ofScientific(x_183, x_185, x_186); +lean_dec(x_183); +x_191 = lean_float_div(x_190, x_188); +x_192 = lean_box_float(x_189); +x_193 = lean_box_float(x_191); +x_194 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_194, 0, x_192); +lean_ctor_set(x_194, 1, x_193); +lean_ctor_set_tag(x_118, 0); +lean_ctor_set(x_118, 1, x_194); +lean_ctor_set(x_118, 0, x_169); +x_21 = x_118; +x_22 = x_184; +goto block_114; } } else { -lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; uint8_t x_198; lean_object* x_199; double x_200; double x_201; double x_202; double x_203; double x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; -x_191 = lean_ctor_get(x_114, 0); -x_192 = lean_ctor_get(x_114, 1); -lean_inc(x_192); -lean_inc(x_191); -lean_dec(x_114); -x_193 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_193, 0, x_191); -x_194 = lean_io_mono_nanos_now(x_192); -x_195 = lean_ctor_get(x_194, 0); -lean_inc(x_195); -x_196 = lean_ctor_get(x_194, 1); +lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; uint8_t x_202; lean_object* x_203; double x_204; double x_205; double x_206; double x_207; double x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; +x_195 = lean_ctor_get(x_118, 0); +x_196 = lean_ctor_get(x_118, 1); lean_inc(x_196); -if (lean_is_exclusive(x_194)) { - lean_ctor_release(x_194, 0); - lean_ctor_release(x_194, 1); - x_197 = x_194; +lean_inc(x_195); +lean_dec(x_118); +x_197 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_197, 0, x_195); +x_198 = lean_io_mono_nanos_now(x_196); +x_199 = lean_ctor_get(x_198, 0); +lean_inc(x_199); +x_200 = lean_ctor_get(x_198, 1); +lean_inc(x_200); +if (lean_is_exclusive(x_198)) { + lean_ctor_release(x_198, 0); + lean_ctor_release(x_198, 1); + x_201 = x_198; } else { - lean_dec_ref(x_194); - x_197 = lean_box(0); + lean_dec_ref(x_198); + x_201 = lean_box(0); } -x_198 = 0; -x_199 = lean_unsigned_to_nat(0u); -x_200 = l_Float_ofScientific(x_112, x_198, x_199); -lean_dec(x_112); -x_201 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__4___closed__5; -x_202 = lean_float_div(x_200, x_201); -x_203 = l_Float_ofScientific(x_195, x_198, x_199); -lean_dec(x_195); -x_204 = lean_float_div(x_203, x_201); -x_205 = lean_box_float(x_202); -x_206 = lean_box_float(x_204); -if (lean_is_scalar(x_197)) { - x_207 = lean_alloc_ctor(0, 2, 0); +x_202 = 0; +x_203 = lean_unsigned_to_nat(0u); +x_204 = l_Float_ofScientific(x_116, x_202, x_203); +lean_dec(x_116); +x_205 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__4___closed__5; +x_206 = lean_float_div(x_204, x_205); +x_207 = l_Float_ofScientific(x_199, x_202, x_203); +lean_dec(x_199); +x_208 = lean_float_div(x_207, x_205); +x_209 = lean_box_float(x_206); +x_210 = lean_box_float(x_208); +if (lean_is_scalar(x_201)) { + x_211 = lean_alloc_ctor(0, 2, 0); } else { - x_207 = x_197; + x_211 = x_201; } -lean_ctor_set(x_207, 0, x_205); -lean_ctor_set(x_207, 1, x_206); -x_208 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_208, 0, x_193); -lean_ctor_set(x_208, 1, x_207); -x_21 = x_208; -x_22 = x_196; -goto block_110; +lean_ctor_set(x_211, 0, x_209); +lean_ctor_set(x_211, 1, x_210); +x_212 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_212, 0, x_197); +lean_ctor_set(x_212, 1, x_211); +x_21 = x_212; +x_22 = x_200; +goto block_114; } } -block_110: +block_114: { -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_96; uint8_t x_97; +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; uint8_t x_29; x_23 = lean_ctor_get(x_21, 1); lean_inc(x_23); x_24 = lean_ctor_get(x_21, 0); @@ -42629,17 +42605,33 @@ lean_inc(x_25); x_26 = lean_ctor_get(x_23, 1); lean_inc(x_26); lean_dec(x_23); -x_96 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__4___closed__2; -x_97 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_96); -if (x_97 == 0) +x_27 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__4___closed__2; +x_28 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_27); +if (x_28 == 0) { -uint8_t x_98; -x_98 = 0; -x_27 = x_98; -goto block_95; +if (x_6 == 0) +{ +uint8_t x_94; +x_94 = 0; +x_29 = x_94; +goto block_93; } else { +lean_object* x_95; double x_96; double x_97; lean_object* x_98; +x_95 = lean_box(0); +x_96 = lean_unbox_float(x_25); +lean_dec(x_25); +x_97 = lean_unbox_float(x_26); +lean_dec(x_26); +x_98 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3(x_2, x_3, x_4, x_17, x_24, x_28, x_96, x_97, x_5, x_95, x_9, x_10, x_11, x_12, x_13, x_14, x_22); +return x_98; +} +} +else +{ +if (x_6 == 0) +{ double x_99; double x_100; double x_101; lean_object* x_102; lean_object* x_103; uint8_t x_104; lean_object* x_105; double x_106; double x_107; double x_108; uint8_t x_109; x_99 = lean_unbox_float(x_26); x_100 = lean_unbox_float(x_25); @@ -42653,48 +42645,58 @@ lean_dec(x_103); x_107 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__4___closed__4; x_108 = lean_float_div(x_106, x_107); x_109 = lean_float_decLt(x_108, x_101); -x_27 = x_109; -goto block_95; +x_29 = x_109; +goto block_93; } -block_95: +else { -if (x_6 == 0) +lean_object* x_110; double x_111; double x_112; lean_object* x_113; +x_110 = lean_box(0); +x_111 = lean_unbox_float(x_25); +lean_dec(x_25); +x_112 = lean_unbox_float(x_26); +lean_dec(x_26); +x_113 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3(x_2, x_3, x_4, x_17, x_24, x_28, x_111, x_112, x_5, x_110, x_9, x_10, x_11, x_12, x_13, x_14, x_22); +return x_113; +} +} +block_93: { -if (x_27 == 0) +if (x_29 == 0) { -lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; lean_dec(x_26); lean_dec(x_25); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_28 = lean_st_ref_take(x_14, x_22); -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -x_30 = lean_ctor_get(x_29, 3); -lean_inc(x_30); -x_31 = lean_ctor_get(x_28, 1); +x_30 = lean_st_ref_take(x_14, x_22); +x_31 = lean_ctor_get(x_30, 0); lean_inc(x_31); -lean_dec(x_28); -x_32 = !lean_is_exclusive(x_29); -if (x_32 == 0) -{ -lean_object* x_33; uint8_t x_34; -x_33 = lean_ctor_get(x_29, 3); -lean_dec(x_33); -x_34 = !lean_is_exclusive(x_30); +x_32 = lean_ctor_get(x_31, 3); +lean_inc(x_32); +x_33 = lean_ctor_get(x_30, 1); +lean_inc(x_33); +lean_dec(x_30); +x_34 = !lean_is_exclusive(x_31); if (x_34 == 0) { -lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_35 = lean_ctor_get(x_30, 0); -x_36 = l_Lean_PersistentArray_append___rarg(x_17, x_35); +lean_object* x_35; uint8_t x_36; +x_35 = lean_ctor_get(x_31, 3); lean_dec(x_35); -lean_ctor_set(x_30, 0, x_36); -x_37 = lean_st_ref_set(x_14, x_29, x_31); -x_38 = lean_ctor_get(x_37, 1); -lean_inc(x_38); +x_36 = !lean_is_exclusive(x_32); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_37 = lean_ctor_get(x_32, 0); +x_38 = l_Lean_PersistentArray_append___rarg(x_17, x_37); lean_dec(x_37); -x_39 = l_MonadExcept_ofExcept___at_Lean_Elab_Term_mkCoe___spec__5(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_38); +lean_ctor_set(x_32, 0, x_38); +x_39 = lean_st_ref_set(x_14, x_31, x_33); +x_40 = lean_ctor_get(x_39, 1); +lean_inc(x_40); +lean_dec(x_39); +x_41 = l_MonadExcept_ofExcept___at_Lean_Elab_Term_mkCoe___spec__5(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_40); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); @@ -42702,177 +42704,177 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_24); -if (lean_obj_tag(x_39) == 0) +if (lean_obj_tag(x_41) == 0) { -uint8_t x_40; -x_40 = !lean_is_exclusive(x_39); -if (x_40 == 0) +uint8_t x_42; +x_42 = !lean_is_exclusive(x_41); +if (x_42 == 0) { -return x_39; +return x_41; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_39, 0); -x_42 = lean_ctor_get(x_39, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_39); -x_43 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_42); -return x_43; +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_41, 0); +x_44 = lean_ctor_get(x_41, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_41); +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; } } else { -uint8_t x_44; -x_44 = !lean_is_exclusive(x_39); -if (x_44 == 0) +uint8_t x_46; +x_46 = !lean_is_exclusive(x_41); +if (x_46 == 0) { -return x_39; +return x_41; } else { -lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_45 = lean_ctor_get(x_39, 0); -x_46 = lean_ctor_get(x_39, 1); -lean_inc(x_46); -lean_inc(x_45); -lean_dec(x_39); -x_47 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_47, 0, x_45); -lean_ctor_set(x_47, 1, x_46); -return x_47; +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_41, 0); +x_48 = lean_ctor_get(x_41, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_41); +x_49 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set(x_49, 1, x_48); +return x_49; } } } else { -uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); -x_49 = lean_ctor_get(x_30, 0); -lean_inc(x_49); -lean_dec(x_30); -x_50 = l_Lean_PersistentArray_append___rarg(x_17, x_49); -lean_dec(x_49); -x_51 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_51, 0, x_50); -lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); -lean_ctor_set(x_29, 3, x_51); -x_52 = lean_st_ref_set(x_14, x_29, x_31); -x_53 = lean_ctor_get(x_52, 1); -lean_inc(x_53); -lean_dec(x_52); -x_54 = l_MonadExcept_ofExcept___at_Lean_Elab_Term_mkCoe___spec__5(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_53); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_24); -if (lean_obj_tag(x_54) == 0) -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_55 = lean_ctor_get(x_54, 0); +uint64_t x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_50 = lean_ctor_get_uint64(x_32, sizeof(void*)*1); +x_51 = lean_ctor_get(x_32, 0); +lean_inc(x_51); +lean_dec(x_32); +x_52 = l_Lean_PersistentArray_append___rarg(x_17, x_51); +lean_dec(x_51); +x_53 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_53, 0, x_52); +lean_ctor_set_uint64(x_53, sizeof(void*)*1, x_50); +lean_ctor_set(x_31, 3, x_53); +x_54 = lean_st_ref_set(x_14, x_31, x_33); +x_55 = lean_ctor_get(x_54, 1); lean_inc(x_55); -x_56 = lean_ctor_get(x_54, 1); -lean_inc(x_56); -if (lean_is_exclusive(x_54)) { - lean_ctor_release(x_54, 0); - lean_ctor_release(x_54, 1); - x_57 = x_54; +lean_dec(x_54); +x_56 = l_MonadExcept_ofExcept___at_Lean_Elab_Term_mkCoe___spec__5(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_55); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_24); +if (lean_obj_tag(x_56) == 0) +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_57 = lean_ctor_get(x_56, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_56, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_56)) { + lean_ctor_release(x_56, 0); + lean_ctor_release(x_56, 1); + x_59 = x_56; } else { - lean_dec_ref(x_54); - x_57 = lean_box(0); + lean_dec_ref(x_56); + x_59 = lean_box(0); } -if (lean_is_scalar(x_57)) { - x_58 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(0, 2, 0); } else { - x_58 = x_57; + x_60 = x_59; } -lean_ctor_set(x_58, 0, x_55); -lean_ctor_set(x_58, 1, x_56); -return x_58; +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_58); +return x_60; } else { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; -x_59 = lean_ctor_get(x_54, 0); -lean_inc(x_59); -x_60 = lean_ctor_get(x_54, 1); -lean_inc(x_60); -if (lean_is_exclusive(x_54)) { - lean_ctor_release(x_54, 0); - lean_ctor_release(x_54, 1); - x_61 = x_54; +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_61 = lean_ctor_get(x_56, 0); +lean_inc(x_61); +x_62 = lean_ctor_get(x_56, 1); +lean_inc(x_62); +if (lean_is_exclusive(x_56)) { + lean_ctor_release(x_56, 0); + lean_ctor_release(x_56, 1); + x_63 = x_56; } else { - lean_dec_ref(x_54); - x_61 = lean_box(0); + lean_dec_ref(x_56); + x_63 = lean_box(0); } -if (lean_is_scalar(x_61)) { - x_62 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_63)) { + x_64 = lean_alloc_ctor(1, 2, 0); } else { - x_62 = x_61; + x_64 = x_63; } -lean_ctor_set(x_62, 0, x_59); -lean_ctor_set(x_62, 1, x_60); -return x_62; +lean_ctor_set(x_64, 0, x_61); +lean_ctor_set(x_64, 1, x_62); +return x_64; } } } else { -lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_63 = lean_ctor_get(x_29, 0); -x_64 = lean_ctor_get(x_29, 1); -x_65 = lean_ctor_get(x_29, 2); -x_66 = lean_ctor_get(x_29, 4); -x_67 = lean_ctor_get(x_29, 5); -x_68 = lean_ctor_get(x_29, 6); -x_69 = lean_ctor_get(x_29, 7); +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; uint64_t x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_65 = lean_ctor_get(x_31, 0); +x_66 = lean_ctor_get(x_31, 1); +x_67 = lean_ctor_get(x_31, 2); +x_68 = lean_ctor_get(x_31, 4); +x_69 = lean_ctor_get(x_31, 5); +x_70 = lean_ctor_get(x_31, 6); +x_71 = lean_ctor_get(x_31, 7); +lean_inc(x_71); +lean_inc(x_70); lean_inc(x_69); lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); -lean_inc(x_64); -lean_inc(x_63); -lean_dec(x_29); -x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); -x_71 = lean_ctor_get(x_30, 0); -lean_inc(x_71); -if (lean_is_exclusive(x_30)) { - lean_ctor_release(x_30, 0); - x_72 = x_30; +lean_dec(x_31); +x_72 = lean_ctor_get_uint64(x_32, sizeof(void*)*1); +x_73 = lean_ctor_get(x_32, 0); +lean_inc(x_73); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + x_74 = x_32; } else { - lean_dec_ref(x_30); - x_72 = lean_box(0); + lean_dec_ref(x_32); + x_74 = lean_box(0); } -x_73 = l_Lean_PersistentArray_append___rarg(x_17, x_71); -lean_dec(x_71); -if (lean_is_scalar(x_72)) { - x_74 = lean_alloc_ctor(0, 1, 8); +x_75 = l_Lean_PersistentArray_append___rarg(x_17, x_73); +lean_dec(x_73); +if (lean_is_scalar(x_74)) { + x_76 = lean_alloc_ctor(0, 1, 8); } else { - x_74 = x_72; + x_76 = x_74; } -lean_ctor_set(x_74, 0, x_73); -lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); -x_75 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_75, 0, x_63); -lean_ctor_set(x_75, 1, x_64); -lean_ctor_set(x_75, 2, x_65); -lean_ctor_set(x_75, 3, x_74); -lean_ctor_set(x_75, 4, x_66); -lean_ctor_set(x_75, 5, x_67); -lean_ctor_set(x_75, 6, x_68); -lean_ctor_set(x_75, 7, x_69); -x_76 = lean_st_ref_set(x_14, x_75, x_31); -x_77 = lean_ctor_get(x_76, 1); -lean_inc(x_77); -lean_dec(x_76); -x_78 = l_MonadExcept_ofExcept___at_Lean_Elab_Term_mkCoe___spec__5(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_77); +lean_ctor_set(x_76, 0, x_75); +lean_ctor_set_uint64(x_76, sizeof(void*)*1, x_72); +x_77 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_77, 0, x_65); +lean_ctor_set(x_77, 1, x_66); +lean_ctor_set(x_77, 2, x_67); +lean_ctor_set(x_77, 3, x_76); +lean_ctor_set(x_77, 4, x_68); +lean_ctor_set(x_77, 5, x_69); +lean_ctor_set(x_77, 6, x_70); +lean_ctor_set(x_77, 7, x_71); +x_78 = lean_st_ref_set(x_14, x_77, x_33); +x_79 = lean_ctor_get(x_78, 1); +lean_inc(x_79); +lean_dec(x_78); +x_80 = l_MonadExcept_ofExcept___at_Lean_Elab_Term_mkCoe___spec__5(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_79); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); @@ -42880,646 +42882,648 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_24); -if (lean_obj_tag(x_78) == 0) +if (lean_obj_tag(x_80) == 0) { -lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_79 = lean_ctor_get(x_78, 0); -lean_inc(x_79); -x_80 = lean_ctor_get(x_78, 1); -lean_inc(x_80); -if (lean_is_exclusive(x_78)) { - lean_ctor_release(x_78, 0); - lean_ctor_release(x_78, 1); - x_81 = x_78; +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_81 = lean_ctor_get(x_80, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_80, 1); +lean_inc(x_82); +if (lean_is_exclusive(x_80)) { + lean_ctor_release(x_80, 0); + lean_ctor_release(x_80, 1); + x_83 = x_80; } else { - lean_dec_ref(x_78); - x_81 = lean_box(0); + lean_dec_ref(x_80); + x_83 = lean_box(0); } -if (lean_is_scalar(x_81)) { - x_82 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_83)) { + x_84 = lean_alloc_ctor(0, 2, 0); } else { - x_82 = x_81; + x_84 = x_83; } -lean_ctor_set(x_82, 0, x_79); -lean_ctor_set(x_82, 1, x_80); -return x_82; +lean_ctor_set(x_84, 0, x_81); +lean_ctor_set(x_84, 1, x_82); +return x_84; } else { -lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; -x_83 = lean_ctor_get(x_78, 0); -lean_inc(x_83); -x_84 = lean_ctor_get(x_78, 1); -lean_inc(x_84); -if (lean_is_exclusive(x_78)) { - lean_ctor_release(x_78, 0); - lean_ctor_release(x_78, 1); - x_85 = x_78; +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_85 = lean_ctor_get(x_80, 0); +lean_inc(x_85); +x_86 = lean_ctor_get(x_80, 1); +lean_inc(x_86); +if (lean_is_exclusive(x_80)) { + lean_ctor_release(x_80, 0); + lean_ctor_release(x_80, 1); + x_87 = x_80; } else { - lean_dec_ref(x_78); - x_85 = lean_box(0); + lean_dec_ref(x_80); + x_87 = lean_box(0); } -if (lean_is_scalar(x_85)) { - x_86 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_87)) { + x_88 = lean_alloc_ctor(1, 2, 0); } else { - x_86 = x_85; + x_88 = x_87; } -lean_ctor_set(x_86, 0, x_83); -lean_ctor_set(x_86, 1, x_84); -return x_86; +lean_ctor_set(x_88, 0, x_85); +lean_ctor_set(x_88, 1, x_86); +return x_88; } } } else { -lean_object* x_87; double x_88; double x_89; lean_object* x_90; -x_87 = lean_box(0); -x_88 = lean_unbox_float(x_25); +lean_object* x_89; double x_90; double x_91; lean_object* x_92; +x_89 = lean_box(0); +x_90 = lean_unbox_float(x_25); lean_dec(x_25); -x_89 = lean_unbox_float(x_26); +x_91 = lean_unbox_float(x_26); lean_dec(x_26); -x_90 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3(x_2, x_3, x_4, x_17, x_24, x_1, x_27, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_13, x_14, x_22); -return x_90; -} -} -else -{ -lean_object* x_91; double x_92; double x_93; lean_object* x_94; -x_91 = lean_box(0); -x_92 = lean_unbox_float(x_25); -lean_dec(x_25); -x_93 = lean_unbox_float(x_26); -lean_dec(x_26); -x_94 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3(x_2, x_3, x_4, x_17, x_24, x_1, x_27, x_92, x_93, x_5, x_91, x_9, x_10, x_11, x_12, x_13, x_14, x_22); -return x_94; +x_92 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3(x_2, x_3, x_4, x_17, x_24, x_28, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_13, x_14, x_22); +return x_92; } } } } else { -lean_object* x_209; lean_object* x_210; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; -x_297 = lean_io_get_num_heartbeats(x_18); -x_298 = lean_ctor_get(x_297, 0); -lean_inc(x_298); -x_299 = lean_ctor_get(x_297, 1); -lean_inc(x_299); -lean_dec(x_297); +lean_object* x_213; lean_object* x_214; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; +x_305 = lean_io_get_num_heartbeats(x_18); +x_306 = lean_ctor_get(x_305, 0); +lean_inc(x_306); +x_307 = lean_ctor_get(x_305, 1); +lean_inc(x_307); +lean_dec(x_305); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_300 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_299); -if (lean_obj_tag(x_300) == 0) +x_308 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_307); +if (lean_obj_tag(x_308) == 0) { -uint8_t x_301; -x_301 = !lean_is_exclusive(x_300); -if (x_301 == 0) +uint8_t x_309; +x_309 = !lean_is_exclusive(x_308); +if (x_309 == 0) { -lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; uint8_t x_306; -x_302 = lean_ctor_get(x_300, 0); -x_303 = lean_ctor_get(x_300, 1); -x_304 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_304, 0, x_302); -x_305 = lean_io_get_num_heartbeats(x_303); -x_306 = !lean_is_exclusive(x_305); -if (x_306 == 0) +lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; uint8_t x_314; +x_310 = lean_ctor_get(x_308, 0); +x_311 = lean_ctor_get(x_308, 1); +x_312 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_312, 0, x_310); +x_313 = lean_io_get_num_heartbeats(x_311); +x_314 = !lean_is_exclusive(x_313); +if (x_314 == 0) { -lean_object* x_307; lean_object* x_308; uint8_t x_309; lean_object* x_310; double x_311; double x_312; lean_object* x_313; lean_object* x_314; -x_307 = lean_ctor_get(x_305, 0); -x_308 = lean_ctor_get(x_305, 1); -x_309 = 0; -x_310 = lean_unsigned_to_nat(0u); -x_311 = l_Float_ofScientific(x_298, x_309, x_310); -lean_dec(x_298); -x_312 = l_Float_ofScientific(x_307, x_309, x_310); -lean_dec(x_307); -x_313 = lean_box_float(x_311); -x_314 = lean_box_float(x_312); -lean_ctor_set(x_305, 1, x_314); -lean_ctor_set(x_305, 0, x_313); -lean_ctor_set(x_300, 1, x_305); -lean_ctor_set(x_300, 0, x_304); -x_209 = x_300; -x_210 = x_308; -goto block_296; -} -else -{ -lean_object* x_315; lean_object* x_316; uint8_t x_317; lean_object* x_318; double x_319; double x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; -x_315 = lean_ctor_get(x_305, 0); -x_316 = lean_ctor_get(x_305, 1); -lean_inc(x_316); -lean_inc(x_315); -lean_dec(x_305); +lean_object* x_315; lean_object* x_316; uint8_t x_317; lean_object* x_318; double x_319; double x_320; lean_object* x_321; lean_object* x_322; +x_315 = lean_ctor_get(x_313, 0); +x_316 = lean_ctor_get(x_313, 1); x_317 = 0; x_318 = lean_unsigned_to_nat(0u); -x_319 = l_Float_ofScientific(x_298, x_317, x_318); -lean_dec(x_298); +x_319 = l_Float_ofScientific(x_306, x_317, x_318); +lean_dec(x_306); x_320 = l_Float_ofScientific(x_315, x_317, x_318); lean_dec(x_315); x_321 = lean_box_float(x_319); x_322 = lean_box_float(x_320); -x_323 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_323, 0, x_321); -lean_ctor_set(x_323, 1, x_322); -lean_ctor_set(x_300, 1, x_323); -lean_ctor_set(x_300, 0, x_304); -x_209 = x_300; -x_210 = x_316; -goto block_296; -} +lean_ctor_set(x_313, 1, x_322); +lean_ctor_set(x_313, 0, x_321); +lean_ctor_set(x_308, 1, x_313); +lean_ctor_set(x_308, 0, x_312); +x_213 = x_308; +x_214 = x_316; +goto block_304; } else { -lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; uint8_t x_331; lean_object* x_332; double x_333; double x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; -x_324 = lean_ctor_get(x_300, 0); -x_325 = lean_ctor_get(x_300, 1); -lean_inc(x_325); +lean_object* x_323; lean_object* x_324; uint8_t x_325; lean_object* x_326; double x_327; double x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; +x_323 = lean_ctor_get(x_313, 0); +x_324 = lean_ctor_get(x_313, 1); lean_inc(x_324); -lean_dec(x_300); -x_326 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_326, 0, x_324); -x_327 = lean_io_get_num_heartbeats(x_325); -x_328 = lean_ctor_get(x_327, 0); -lean_inc(x_328); -x_329 = lean_ctor_get(x_327, 1); -lean_inc(x_329); -if (lean_is_exclusive(x_327)) { - lean_ctor_release(x_327, 0); - lean_ctor_release(x_327, 1); - x_330 = x_327; -} else { - lean_dec_ref(x_327); - x_330 = lean_box(0); -} -x_331 = 0; -x_332 = lean_unsigned_to_nat(0u); -x_333 = l_Float_ofScientific(x_298, x_331, x_332); -lean_dec(x_298); -x_334 = l_Float_ofScientific(x_328, x_331, x_332); -lean_dec(x_328); -x_335 = lean_box_float(x_333); -x_336 = lean_box_float(x_334); -if (lean_is_scalar(x_330)) { - x_337 = lean_alloc_ctor(0, 2, 0); -} else { - x_337 = x_330; -} -lean_ctor_set(x_337, 0, x_335); -lean_ctor_set(x_337, 1, x_336); -x_338 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_338, 0, x_326); -lean_ctor_set(x_338, 1, x_337); -x_209 = x_338; -x_210 = x_329; -goto block_296; +lean_inc(x_323); +lean_dec(x_313); +x_325 = 0; +x_326 = lean_unsigned_to_nat(0u); +x_327 = l_Float_ofScientific(x_306, x_325, x_326); +lean_dec(x_306); +x_328 = l_Float_ofScientific(x_323, x_325, x_326); +lean_dec(x_323); +x_329 = lean_box_float(x_327); +x_330 = lean_box_float(x_328); +x_331 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_331, 0, x_329); +lean_ctor_set(x_331, 1, x_330); +lean_ctor_set(x_308, 1, x_331); +lean_ctor_set(x_308, 0, x_312); +x_213 = x_308; +x_214 = x_324; +goto block_304; } } else { -uint8_t x_339; -x_339 = !lean_is_exclusive(x_300); -if (x_339 == 0) -{ -lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; uint8_t x_344; -x_340 = lean_ctor_get(x_300, 0); -x_341 = lean_ctor_get(x_300, 1); -x_342 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_342, 0, x_340); -x_343 = lean_io_get_num_heartbeats(x_341); -x_344 = !lean_is_exclusive(x_343); -if (x_344 == 0) -{ -lean_object* x_345; lean_object* x_346; uint8_t x_347; lean_object* x_348; double x_349; double x_350; lean_object* x_351; lean_object* x_352; -x_345 = lean_ctor_get(x_343, 0); -x_346 = lean_ctor_get(x_343, 1); -x_347 = 0; -x_348 = lean_unsigned_to_nat(0u); -x_349 = l_Float_ofScientific(x_298, x_347, x_348); -lean_dec(x_298); -x_350 = l_Float_ofScientific(x_345, x_347, x_348); -lean_dec(x_345); -x_351 = lean_box_float(x_349); -x_352 = lean_box_float(x_350); -lean_ctor_set(x_343, 1, x_352); -lean_ctor_set(x_343, 0, x_351); -lean_ctor_set_tag(x_300, 0); -lean_ctor_set(x_300, 1, x_343); -lean_ctor_set(x_300, 0, x_342); -x_209 = x_300; -x_210 = x_346; -goto block_296; +lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; uint8_t x_339; lean_object* x_340; double x_341; double x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; +x_332 = lean_ctor_get(x_308, 0); +x_333 = lean_ctor_get(x_308, 1); +lean_inc(x_333); +lean_inc(x_332); +lean_dec(x_308); +x_334 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_334, 0, x_332); +x_335 = lean_io_get_num_heartbeats(x_333); +x_336 = lean_ctor_get(x_335, 0); +lean_inc(x_336); +x_337 = lean_ctor_get(x_335, 1); +lean_inc(x_337); +if (lean_is_exclusive(x_335)) { + lean_ctor_release(x_335, 0); + lean_ctor_release(x_335, 1); + x_338 = x_335; +} else { + lean_dec_ref(x_335); + x_338 = lean_box(0); +} +x_339 = 0; +x_340 = lean_unsigned_to_nat(0u); +x_341 = l_Float_ofScientific(x_306, x_339, x_340); +lean_dec(x_306); +x_342 = l_Float_ofScientific(x_336, x_339, x_340); +lean_dec(x_336); +x_343 = lean_box_float(x_341); +x_344 = lean_box_float(x_342); +if (lean_is_scalar(x_338)) { + x_345 = lean_alloc_ctor(0, 2, 0); +} else { + x_345 = x_338; +} +lean_ctor_set(x_345, 0, x_343); +lean_ctor_set(x_345, 1, x_344); +x_346 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_346, 0, x_334); +lean_ctor_set(x_346, 1, x_345); +x_213 = x_346; +x_214 = x_337; +goto block_304; +} } else { -lean_object* x_353; lean_object* x_354; uint8_t x_355; lean_object* x_356; double x_357; double x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; -x_353 = lean_ctor_get(x_343, 0); -x_354 = lean_ctor_get(x_343, 1); -lean_inc(x_354); -lean_inc(x_353); -lean_dec(x_343); +uint8_t x_347; +x_347 = !lean_is_exclusive(x_308); +if (x_347 == 0) +{ +lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; uint8_t x_352; +x_348 = lean_ctor_get(x_308, 0); +x_349 = lean_ctor_get(x_308, 1); +x_350 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_350, 0, x_348); +x_351 = lean_io_get_num_heartbeats(x_349); +x_352 = !lean_is_exclusive(x_351); +if (x_352 == 0) +{ +lean_object* x_353; lean_object* x_354; uint8_t x_355; lean_object* x_356; double x_357; double x_358; lean_object* x_359; lean_object* x_360; +x_353 = lean_ctor_get(x_351, 0); +x_354 = lean_ctor_get(x_351, 1); x_355 = 0; x_356 = lean_unsigned_to_nat(0u); -x_357 = l_Float_ofScientific(x_298, x_355, x_356); -lean_dec(x_298); +x_357 = l_Float_ofScientific(x_306, x_355, x_356); +lean_dec(x_306); x_358 = l_Float_ofScientific(x_353, x_355, x_356); lean_dec(x_353); x_359 = lean_box_float(x_357); x_360 = lean_box_float(x_358); -x_361 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_361, 0, x_359); -lean_ctor_set(x_361, 1, x_360); -lean_ctor_set_tag(x_300, 0); -lean_ctor_set(x_300, 1, x_361); -lean_ctor_set(x_300, 0, x_342); -x_209 = x_300; -x_210 = x_354; -goto block_296; -} +lean_ctor_set(x_351, 1, x_360); +lean_ctor_set(x_351, 0, x_359); +lean_ctor_set_tag(x_308, 0); +lean_ctor_set(x_308, 1, x_351); +lean_ctor_set(x_308, 0, x_350); +x_213 = x_308; +x_214 = x_354; +goto block_304; } else { -lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; uint8_t x_369; lean_object* x_370; double x_371; double x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; -x_362 = lean_ctor_get(x_300, 0); -x_363 = lean_ctor_get(x_300, 1); -lean_inc(x_363); +lean_object* x_361; lean_object* x_362; uint8_t x_363; lean_object* x_364; double x_365; double x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; +x_361 = lean_ctor_get(x_351, 0); +x_362 = lean_ctor_get(x_351, 1); lean_inc(x_362); -lean_dec(x_300); -x_364 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_364, 0, x_362); -x_365 = lean_io_get_num_heartbeats(x_363); -x_366 = lean_ctor_get(x_365, 0); -lean_inc(x_366); -x_367 = lean_ctor_get(x_365, 1); -lean_inc(x_367); -if (lean_is_exclusive(x_365)) { - lean_ctor_release(x_365, 0); - lean_ctor_release(x_365, 1); - x_368 = x_365; -} else { - lean_dec_ref(x_365); - x_368 = lean_box(0); +lean_inc(x_361); +lean_dec(x_351); +x_363 = 0; +x_364 = lean_unsigned_to_nat(0u); +x_365 = l_Float_ofScientific(x_306, x_363, x_364); +lean_dec(x_306); +x_366 = l_Float_ofScientific(x_361, x_363, x_364); +lean_dec(x_361); +x_367 = lean_box_float(x_365); +x_368 = lean_box_float(x_366); +x_369 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_369, 0, x_367); +lean_ctor_set(x_369, 1, x_368); +lean_ctor_set_tag(x_308, 0); +lean_ctor_set(x_308, 1, x_369); +lean_ctor_set(x_308, 0, x_350); +x_213 = x_308; +x_214 = x_362; +goto block_304; } -x_369 = 0; -x_370 = lean_unsigned_to_nat(0u); -x_371 = l_Float_ofScientific(x_298, x_369, x_370); -lean_dec(x_298); -x_372 = l_Float_ofScientific(x_366, x_369, x_370); -lean_dec(x_366); -x_373 = lean_box_float(x_371); -x_374 = lean_box_float(x_372); -if (lean_is_scalar(x_368)) { - x_375 = lean_alloc_ctor(0, 2, 0); -} else { - x_375 = x_368; -} -lean_ctor_set(x_375, 0, x_373); -lean_ctor_set(x_375, 1, x_374); -x_376 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_376, 0, x_364); -lean_ctor_set(x_376, 1, x_375); -x_209 = x_376; -x_210 = x_367; -goto block_296; -} -} -block_296: -{ -lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; uint8_t x_215; lean_object* x_284; uint8_t x_285; -x_211 = lean_ctor_get(x_209, 1); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 0); -lean_inc(x_212); -lean_dec(x_209); -x_213 = lean_ctor_get(x_211, 0); -lean_inc(x_213); -x_214 = lean_ctor_get(x_211, 1); -lean_inc(x_214); -lean_dec(x_211); -x_284 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__4___closed__2; -x_285 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_284); -if (x_285 == 0) -{ -uint8_t x_286; -x_286 = 0; -x_215 = x_286; -goto block_283; } else { -double x_287; double x_288; double x_289; lean_object* x_290; lean_object* x_291; uint8_t x_292; lean_object* x_293; double x_294; uint8_t x_295; -x_287 = lean_unbox_float(x_214); -x_288 = lean_unbox_float(x_213); -x_289 = lean_float_sub(x_287, x_288); -x_290 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__4___closed__3; -x_291 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_290); -x_292 = 0; -x_293 = lean_unsigned_to_nat(0u); -x_294 = l_Float_ofScientific(x_291, x_292, x_293); -lean_dec(x_291); -x_295 = lean_float_decLt(x_294, x_289); -x_215 = x_295; -goto block_283; +lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; uint8_t x_377; lean_object* x_378; double x_379; double x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; +x_370 = lean_ctor_get(x_308, 0); +x_371 = lean_ctor_get(x_308, 1); +lean_inc(x_371); +lean_inc(x_370); +lean_dec(x_308); +x_372 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_372, 0, x_370); +x_373 = lean_io_get_num_heartbeats(x_371); +x_374 = lean_ctor_get(x_373, 0); +lean_inc(x_374); +x_375 = lean_ctor_get(x_373, 1); +lean_inc(x_375); +if (lean_is_exclusive(x_373)) { + lean_ctor_release(x_373, 0); + lean_ctor_release(x_373, 1); + x_376 = x_373; +} else { + lean_dec_ref(x_373); + x_376 = lean_box(0); } -block_283: +x_377 = 0; +x_378 = lean_unsigned_to_nat(0u); +x_379 = l_Float_ofScientific(x_306, x_377, x_378); +lean_dec(x_306); +x_380 = l_Float_ofScientific(x_374, x_377, x_378); +lean_dec(x_374); +x_381 = lean_box_float(x_379); +x_382 = lean_box_float(x_380); +if (lean_is_scalar(x_376)) { + x_383 = lean_alloc_ctor(0, 2, 0); +} else { + x_383 = x_376; +} +lean_ctor_set(x_383, 0, x_381); +lean_ctor_set(x_383, 1, x_382); +x_384 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_384, 0, x_372); +lean_ctor_set(x_384, 1, x_383); +x_213 = x_384; +x_214 = x_375; +goto block_304; +} +} +block_304: +{ +lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; uint8_t x_220; uint8_t x_221; +x_215 = lean_ctor_get(x_213, 1); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 0); +lean_inc(x_216); +lean_dec(x_213); +x_217 = lean_ctor_get(x_215, 0); +lean_inc(x_217); +x_218 = lean_ctor_get(x_215, 1); +lean_inc(x_218); +lean_dec(x_215); +x_219 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__4___closed__2; +x_220 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_219); +if (x_220 == 0) { if (x_6 == 0) { -if (x_215 == 0) +uint8_t x_286; +x_286 = 0; +x_221 = x_286; +goto block_285; +} +else { -lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; uint8_t x_220; -lean_dec(x_214); -lean_dec(x_213); +lean_object* x_287; double x_288; double x_289; lean_object* x_290; +x_287 = lean_box(0); +x_288 = lean_unbox_float(x_217); +lean_dec(x_217); +x_289 = lean_unbox_float(x_218); +lean_dec(x_218); +x_290 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3(x_2, x_3, x_4, x_17, x_216, x_220, x_288, x_289, x_5, x_287, x_9, x_10, x_11, x_12, x_13, x_14, x_214); +return x_290; +} +} +else +{ +if (x_6 == 0) +{ +double x_291; double x_292; double x_293; lean_object* x_294; lean_object* x_295; uint8_t x_296; lean_object* x_297; double x_298; uint8_t x_299; +x_291 = lean_unbox_float(x_218); +x_292 = lean_unbox_float(x_217); +x_293 = lean_float_sub(x_291, x_292); +x_294 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__4___closed__3; +x_295 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_294); +x_296 = 0; +x_297 = lean_unsigned_to_nat(0u); +x_298 = l_Float_ofScientific(x_295, x_296, x_297); +lean_dec(x_295); +x_299 = lean_float_decLt(x_298, x_293); +x_221 = x_299; +goto block_285; +} +else +{ +lean_object* x_300; double x_301; double x_302; lean_object* x_303; +x_300 = lean_box(0); +x_301 = lean_unbox_float(x_217); +lean_dec(x_217); +x_302 = lean_unbox_float(x_218); +lean_dec(x_218); +x_303 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3(x_2, x_3, x_4, x_17, x_216, x_220, x_301, x_302, x_5, x_300, x_9, x_10, x_11, x_12, x_13, x_14, x_214); +return x_303; +} +} +block_285: +{ +if (x_221 == 0) +{ +lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; uint8_t x_226; +lean_dec(x_218); +lean_dec(x_217); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_216 = lean_st_ref_take(x_14, x_210); -x_217 = lean_ctor_get(x_216, 0); -lean_inc(x_217); -x_218 = lean_ctor_get(x_217, 3); -lean_inc(x_218); -x_219 = lean_ctor_get(x_216, 1); -lean_inc(x_219); -lean_dec(x_216); -x_220 = !lean_is_exclusive(x_217); -if (x_220 == 0) +x_222 = lean_st_ref_take(x_14, x_214); +x_223 = lean_ctor_get(x_222, 0); +lean_inc(x_223); +x_224 = lean_ctor_get(x_223, 3); +lean_inc(x_224); +x_225 = lean_ctor_get(x_222, 1); +lean_inc(x_225); +lean_dec(x_222); +x_226 = !lean_is_exclusive(x_223); +if (x_226 == 0) { -lean_object* x_221; uint8_t x_222; -x_221 = lean_ctor_get(x_217, 3); -lean_dec(x_221); -x_222 = !lean_is_exclusive(x_218); -if (x_222 == 0) -{ -lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; -x_223 = lean_ctor_get(x_218, 0); -x_224 = l_Lean_PersistentArray_append___rarg(x_17, x_223); -lean_dec(x_223); -lean_ctor_set(x_218, 0, x_224); -x_225 = lean_st_ref_set(x_14, x_217, x_219); -x_226 = lean_ctor_get(x_225, 1); -lean_inc(x_226); -lean_dec(x_225); -x_227 = l_MonadExcept_ofExcept___at_Lean_Elab_Term_mkCoe___spec__5(x_212, x_9, x_10, x_11, x_12, x_13, x_14, x_226); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_212); -if (lean_obj_tag(x_227) == 0) -{ -uint8_t x_228; -x_228 = !lean_is_exclusive(x_227); +lean_object* x_227; uint8_t x_228; +x_227 = lean_ctor_get(x_223, 3); +lean_dec(x_227); +x_228 = !lean_is_exclusive(x_224); if (x_228 == 0) { -return x_227; -} -else -{ -lean_object* x_229; lean_object* x_230; lean_object* x_231; -x_229 = lean_ctor_get(x_227, 0); -x_230 = lean_ctor_get(x_227, 1); -lean_inc(x_230); -lean_inc(x_229); -lean_dec(x_227); -x_231 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_231, 0, x_229); -lean_ctor_set(x_231, 1, x_230); -return x_231; -} -} -else -{ -uint8_t x_232; -x_232 = !lean_is_exclusive(x_227); -if (x_232 == 0) -{ -return x_227; -} -else -{ -lean_object* x_233; lean_object* x_234; lean_object* x_235; -x_233 = lean_ctor_get(x_227, 0); -x_234 = lean_ctor_get(x_227, 1); -lean_inc(x_234); -lean_inc(x_233); -lean_dec(x_227); -x_235 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_235, 0, x_233); -lean_ctor_set(x_235, 1, x_234); -return x_235; -} -} -} -else -{ -uint64_t x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; -x_236 = lean_ctor_get_uint64(x_218, sizeof(void*)*1); -x_237 = lean_ctor_get(x_218, 0); -lean_inc(x_237); -lean_dec(x_218); -x_238 = l_Lean_PersistentArray_append___rarg(x_17, x_237); -lean_dec(x_237); -x_239 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_239, 0, x_238); -lean_ctor_set_uint64(x_239, sizeof(void*)*1, x_236); -lean_ctor_set(x_217, 3, x_239); -x_240 = lean_st_ref_set(x_14, x_217, x_219); -x_241 = lean_ctor_get(x_240, 1); -lean_inc(x_241); -lean_dec(x_240); -x_242 = l_MonadExcept_ofExcept___at_Lean_Elab_Term_mkCoe___spec__5(x_212, x_9, x_10, x_11, x_12, x_13, x_14, x_241); +lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; +x_229 = lean_ctor_get(x_224, 0); +x_230 = l_Lean_PersistentArray_append___rarg(x_17, x_229); +lean_dec(x_229); +lean_ctor_set(x_224, 0, x_230); +x_231 = lean_st_ref_set(x_14, x_223, x_225); +x_232 = lean_ctor_get(x_231, 1); +lean_inc(x_232); +lean_dec(x_231); +x_233 = l_MonadExcept_ofExcept___at_Lean_Elab_Term_mkCoe___spec__5(x_216, x_9, x_10, x_11, x_12, x_13, x_14, x_232); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_212); -if (lean_obj_tag(x_242) == 0) +lean_dec(x_216); +if (lean_obj_tag(x_233) == 0) { -lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; -x_243 = lean_ctor_get(x_242, 0); +uint8_t x_234; +x_234 = !lean_is_exclusive(x_233); +if (x_234 == 0) +{ +return x_233; +} +else +{ +lean_object* x_235; lean_object* x_236; lean_object* x_237; +x_235 = lean_ctor_get(x_233, 0); +x_236 = lean_ctor_get(x_233, 1); +lean_inc(x_236); +lean_inc(x_235); +lean_dec(x_233); +x_237 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_237, 0, x_235); +lean_ctor_set(x_237, 1, x_236); +return x_237; +} +} +else +{ +uint8_t x_238; +x_238 = !lean_is_exclusive(x_233); +if (x_238 == 0) +{ +return x_233; +} +else +{ +lean_object* x_239; lean_object* x_240; lean_object* x_241; +x_239 = lean_ctor_get(x_233, 0); +x_240 = lean_ctor_get(x_233, 1); +lean_inc(x_240); +lean_inc(x_239); +lean_dec(x_233); +x_241 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_241, 0, x_239); +lean_ctor_set(x_241, 1, x_240); +return x_241; +} +} +} +else +{ +uint64_t x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; +x_242 = lean_ctor_get_uint64(x_224, sizeof(void*)*1); +x_243 = lean_ctor_get(x_224, 0); lean_inc(x_243); -x_244 = lean_ctor_get(x_242, 1); -lean_inc(x_244); -if (lean_is_exclusive(x_242)) { - lean_ctor_release(x_242, 0); - lean_ctor_release(x_242, 1); - x_245 = x_242; -} else { - lean_dec_ref(x_242); - x_245 = lean_box(0); -} -if (lean_is_scalar(x_245)) { - x_246 = lean_alloc_ctor(0, 2, 0); -} else { - x_246 = x_245; -} -lean_ctor_set(x_246, 0, x_243); -lean_ctor_set(x_246, 1, x_244); -return x_246; -} -else -{ -lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; -x_247 = lean_ctor_get(x_242, 0); +lean_dec(x_224); +x_244 = l_Lean_PersistentArray_append___rarg(x_17, x_243); +lean_dec(x_243); +x_245 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_245, 0, x_244); +lean_ctor_set_uint64(x_245, sizeof(void*)*1, x_242); +lean_ctor_set(x_223, 3, x_245); +x_246 = lean_st_ref_set(x_14, x_223, x_225); +x_247 = lean_ctor_get(x_246, 1); lean_inc(x_247); -x_248 = lean_ctor_get(x_242, 1); -lean_inc(x_248); -if (lean_is_exclusive(x_242)) { - lean_ctor_release(x_242, 0); - lean_ctor_release(x_242, 1); - x_249 = x_242; -} else { - lean_dec_ref(x_242); - x_249 = lean_box(0); -} -if (lean_is_scalar(x_249)) { - x_250 = lean_alloc_ctor(1, 2, 0); -} else { - x_250 = x_249; -} -lean_ctor_set(x_250, 0, x_247); -lean_ctor_set(x_250, 1, x_248); -return x_250; -} -} -} -else -{ -lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; uint64_t x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; -x_251 = lean_ctor_get(x_217, 0); -x_252 = lean_ctor_get(x_217, 1); -x_253 = lean_ctor_get(x_217, 2); -x_254 = lean_ctor_get(x_217, 4); -x_255 = lean_ctor_get(x_217, 5); -x_256 = lean_ctor_get(x_217, 6); -x_257 = lean_ctor_get(x_217, 7); -lean_inc(x_257); -lean_inc(x_256); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_dec(x_217); -x_258 = lean_ctor_get_uint64(x_218, sizeof(void*)*1); -x_259 = lean_ctor_get(x_218, 0); -lean_inc(x_259); -if (lean_is_exclusive(x_218)) { - lean_ctor_release(x_218, 0); - x_260 = x_218; -} else { - lean_dec_ref(x_218); - x_260 = lean_box(0); -} -x_261 = l_Lean_PersistentArray_append___rarg(x_17, x_259); -lean_dec(x_259); -if (lean_is_scalar(x_260)) { - x_262 = lean_alloc_ctor(0, 1, 8); -} else { - x_262 = x_260; -} -lean_ctor_set(x_262, 0, x_261); -lean_ctor_set_uint64(x_262, sizeof(void*)*1, x_258); -x_263 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_263, 0, x_251); -lean_ctor_set(x_263, 1, x_252); -lean_ctor_set(x_263, 2, x_253); -lean_ctor_set(x_263, 3, x_262); -lean_ctor_set(x_263, 4, x_254); -lean_ctor_set(x_263, 5, x_255); -lean_ctor_set(x_263, 6, x_256); -lean_ctor_set(x_263, 7, x_257); -x_264 = lean_st_ref_set(x_14, x_263, x_219); -x_265 = lean_ctor_get(x_264, 1); -lean_inc(x_265); -lean_dec(x_264); -x_266 = l_MonadExcept_ofExcept___at_Lean_Elab_Term_mkCoe___spec__5(x_212, x_9, x_10, x_11, x_12, x_13, x_14, x_265); +lean_dec(x_246); +x_248 = l_MonadExcept_ofExcept___at_Lean_Elab_Term_mkCoe___spec__5(x_216, x_9, x_10, x_11, x_12, x_13, x_14, x_247); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_212); -if (lean_obj_tag(x_266) == 0) +lean_dec(x_216); +if (lean_obj_tag(x_248) == 0) { -lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; -x_267 = lean_ctor_get(x_266, 0); -lean_inc(x_267); -x_268 = lean_ctor_get(x_266, 1); -lean_inc(x_268); -if (lean_is_exclusive(x_266)) { - lean_ctor_release(x_266, 0); - lean_ctor_release(x_266, 1); - x_269 = x_266; +lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; +x_249 = lean_ctor_get(x_248, 0); +lean_inc(x_249); +x_250 = lean_ctor_get(x_248, 1); +lean_inc(x_250); +if (lean_is_exclusive(x_248)) { + lean_ctor_release(x_248, 0); + lean_ctor_release(x_248, 1); + x_251 = x_248; } else { - lean_dec_ref(x_266); - x_269 = lean_box(0); + lean_dec_ref(x_248); + x_251 = lean_box(0); } -if (lean_is_scalar(x_269)) { - x_270 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_251)) { + x_252 = lean_alloc_ctor(0, 2, 0); } else { - x_270 = x_269; + x_252 = x_251; } -lean_ctor_set(x_270, 0, x_267); -lean_ctor_set(x_270, 1, x_268); -return x_270; +lean_ctor_set(x_252, 0, x_249); +lean_ctor_set(x_252, 1, x_250); +return x_252; } else { -lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; -x_271 = lean_ctor_get(x_266, 0); +lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; +x_253 = lean_ctor_get(x_248, 0); +lean_inc(x_253); +x_254 = lean_ctor_get(x_248, 1); +lean_inc(x_254); +if (lean_is_exclusive(x_248)) { + lean_ctor_release(x_248, 0); + lean_ctor_release(x_248, 1); + x_255 = x_248; +} else { + lean_dec_ref(x_248); + x_255 = lean_box(0); +} +if (lean_is_scalar(x_255)) { + x_256 = lean_alloc_ctor(1, 2, 0); +} else { + x_256 = x_255; +} +lean_ctor_set(x_256, 0, x_253); +lean_ctor_set(x_256, 1, x_254); +return x_256; +} +} +} +else +{ +lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; uint64_t x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; +x_257 = lean_ctor_get(x_223, 0); +x_258 = lean_ctor_get(x_223, 1); +x_259 = lean_ctor_get(x_223, 2); +x_260 = lean_ctor_get(x_223, 4); +x_261 = lean_ctor_get(x_223, 5); +x_262 = lean_ctor_get(x_223, 6); +x_263 = lean_ctor_get(x_223, 7); +lean_inc(x_263); +lean_inc(x_262); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_dec(x_223); +x_264 = lean_ctor_get_uint64(x_224, sizeof(void*)*1); +x_265 = lean_ctor_get(x_224, 0); +lean_inc(x_265); +if (lean_is_exclusive(x_224)) { + lean_ctor_release(x_224, 0); + x_266 = x_224; +} else { + lean_dec_ref(x_224); + x_266 = lean_box(0); +} +x_267 = l_Lean_PersistentArray_append___rarg(x_17, x_265); +lean_dec(x_265); +if (lean_is_scalar(x_266)) { + x_268 = lean_alloc_ctor(0, 1, 8); +} else { + x_268 = x_266; +} +lean_ctor_set(x_268, 0, x_267); +lean_ctor_set_uint64(x_268, sizeof(void*)*1, x_264); +x_269 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_269, 0, x_257); +lean_ctor_set(x_269, 1, x_258); +lean_ctor_set(x_269, 2, x_259); +lean_ctor_set(x_269, 3, x_268); +lean_ctor_set(x_269, 4, x_260); +lean_ctor_set(x_269, 5, x_261); +lean_ctor_set(x_269, 6, x_262); +lean_ctor_set(x_269, 7, x_263); +x_270 = lean_st_ref_set(x_14, x_269, x_225); +x_271 = lean_ctor_get(x_270, 1); lean_inc(x_271); -x_272 = lean_ctor_get(x_266, 1); -lean_inc(x_272); -if (lean_is_exclusive(x_266)) { - lean_ctor_release(x_266, 0); - lean_ctor_release(x_266, 1); - x_273 = x_266; +lean_dec(x_270); +x_272 = l_MonadExcept_ofExcept___at_Lean_Elab_Term_mkCoe___spec__5(x_216, x_9, x_10, x_11, x_12, x_13, x_14, x_271); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_216); +if (lean_obj_tag(x_272) == 0) +{ +lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; +x_273 = lean_ctor_get(x_272, 0); +lean_inc(x_273); +x_274 = lean_ctor_get(x_272, 1); +lean_inc(x_274); +if (lean_is_exclusive(x_272)) { + lean_ctor_release(x_272, 0); + lean_ctor_release(x_272, 1); + x_275 = x_272; } else { - lean_dec_ref(x_266); - x_273 = lean_box(0); + lean_dec_ref(x_272); + x_275 = lean_box(0); } -if (lean_is_scalar(x_273)) { - x_274 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_275)) { + x_276 = lean_alloc_ctor(0, 2, 0); } else { - x_274 = x_273; + x_276 = x_275; } -lean_ctor_set(x_274, 0, x_271); -lean_ctor_set(x_274, 1, x_272); -return x_274; +lean_ctor_set(x_276, 0, x_273); +lean_ctor_set(x_276, 1, x_274); +return x_276; +} +else +{ +lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; +x_277 = lean_ctor_get(x_272, 0); +lean_inc(x_277); +x_278 = lean_ctor_get(x_272, 1); +lean_inc(x_278); +if (lean_is_exclusive(x_272)) { + lean_ctor_release(x_272, 0); + lean_ctor_release(x_272, 1); + x_279 = x_272; +} else { + lean_dec_ref(x_272); + x_279 = lean_box(0); +} +if (lean_is_scalar(x_279)) { + x_280 = lean_alloc_ctor(1, 2, 0); +} else { + x_280 = x_279; +} +lean_ctor_set(x_280, 0, x_277); +lean_ctor_set(x_280, 1, x_278); +return x_280; } } } else { -lean_object* x_275; double x_276; double x_277; lean_object* x_278; -x_275 = lean_box(0); -x_276 = lean_unbox_float(x_213); -lean_dec(x_213); -x_277 = lean_unbox_float(x_214); -lean_dec(x_214); -x_278 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3(x_2, x_3, x_4, x_17, x_212, x_1, x_215, x_276, x_277, x_5, x_275, x_9, x_10, x_11, x_12, x_13, x_14, x_210); -return x_278; -} -} -else -{ -lean_object* x_279; double x_280; double x_281; lean_object* x_282; -x_279 = lean_box(0); -x_280 = lean_unbox_float(x_213); -lean_dec(x_213); -x_281 = lean_unbox_float(x_214); -lean_dec(x_214); -x_282 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3(x_2, x_3, x_4, x_17, x_212, x_1, x_215, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_13, x_14, x_210); -return x_282; +lean_object* x_281; double x_282; double x_283; lean_object* x_284; +x_281 = lean_box(0); +x_282 = lean_unbox_float(x_217); +lean_dec(x_217); +x_283 = lean_unbox_float(x_218); +lean_dec(x_218); +x_284 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3(x_2, x_3, x_4, x_17, x_216, x_220, x_282, x_283, x_5, x_281, x_9, x_10, x_11, x_12, x_13, x_14, x_214); +return x_284; } } } @@ -44935,27 +44939,25 @@ lean_object* x_14 = _args[13]; lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; _start: { -uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; -x_19 = lean_unbox(x_2); +uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; +x_18 = lean_unbox(x_2); lean_dec(x_2); -x_20 = lean_unbox(x_8); +x_19 = lean_unbox(x_7); +lean_dec(x_7); +x_20 = lean_unbox_float(x_8); lean_dec(x_8); x_21 = lean_unbox_float(x_9); lean_dec(x_9); -x_22 = lean_unbox_float(x_10); -lean_dec(x_10); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__2(x_1, x_19, x_3, x_4, x_5, x_6, x_7, x_20, x_21, x_22, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -lean_dec(x_17); -lean_dec(x_15); +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__2(x_1, x_18, x_3, x_4, x_5, x_6, x_19, x_20, x_21, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +lean_dec(x_16); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_23; +return x_22; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3___boxed(lean_object** _args) { @@ -44976,22 +44978,20 @@ lean_object* x_14 = _args[13]; lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; _start: { -uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; -x_19 = lean_unbox(x_2); +uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; +x_18 = lean_unbox(x_2); lean_dec(x_2); -x_20 = lean_unbox(x_7); +x_19 = lean_unbox(x_6); +lean_dec(x_6); +x_20 = lean_unbox_float(x_7); lean_dec(x_7); x_21 = lean_unbox_float(x_8); lean_dec(x_8); -x_22 = lean_unbox_float(x_9); -lean_dec(x_9); -x_23 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3(x_1, x_19, x_3, x_4, x_5, x_6, x_20, x_21, x_22, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -lean_dec(x_11); -lean_dec(x_6); -return x_23; +x_22 = l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3(x_1, x_18, x_3, x_4, x_5, x_19, x_20, x_21, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +lean_dec(x_10); +return x_22; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { @@ -80954,11 +80954,12 @@ lean_mark_persistent(l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___cl l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__2 = _init_l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__2(); lean_mark_persistent(l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__2); l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__3 = _init_l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__3); l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__4 = _init_l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__4(); lean_mark_persistent(l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__4); l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__5 = _init_l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__5(); lean_mark_persistent(l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__5); +l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__6 = _init_l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot___closed__6); l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot = _init_l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot(); lean_mark_persistent(l_Lean_Elab_Tactic_instInhabitedTacticFinishedSnapshot); l_Lean_Elab_Tactic_instToSnapshotTreeTacticFinishedSnapshot___closed__1 = _init_l_Lean_Elab_Tactic_instToSnapshotTreeTacticFinishedSnapshot___closed__1(); @@ -81404,8 +81405,6 @@ l_Lean_Elab_Term_synthesizeInstMVarCore___closed__4 = _init_l_Lean_Elab_Term_syn lean_mark_persistent(l_Lean_Elab_Term_synthesizeInstMVarCore___closed__4); l_Lean_Elab_Term_synthesizeInstMVarCore___closed__5 = _init_l_Lean_Elab_Term_synthesizeInstMVarCore___closed__5(); lean_mark_persistent(l_Lean_Elab_Term_synthesizeInstMVarCore___closed__5); -l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__2___closed__1(); -lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__2___closed__1); l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3___closed__1); l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Elab_Term_mkCoe___spec__2___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Environment.c b/stage0/stdlib/Lean/Environment.c index e08920458f..e51f13b566 100644 --- a/stage0/stdlib/Lean/Environment.c +++ b/stage0/stdlib/Lean/Environment.c @@ -18,7 +18,6 @@ static lean_object* l_Lean_TagDeclarationExtension_instInhabited___closed__1; LEAN_EXPORT lean_object* l_Lean_ConstantInfo_instantiateTypeLevelParams(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwAlreadyImported___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instMonadEnvOfMonadLift(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_SMap_switch___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__4(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_Environment_find_x3f___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_importModulesCore___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_reprPrec(lean_object*, lean_object*); @@ -31,6 +30,7 @@ static lean_object* l_Lean_MapDeclarationExtension_insert___rarg___closed__2; static lean_object* l___private_Lean_Environment_0__Lean_Environment_throwUnexpectedType___rarg___closed__2; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Environment_0__Lean_setImportedEntries___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instInhabitedPersistentEnvExtension___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2___closed__2; LEAN_EXPORT lean_object* l_Lean_MapDeclarationExtension_insert___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_instBEqOfDecidableEq___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_read_module_data(lean_object*, lean_object*); @@ -39,6 +39,7 @@ LEAN_EXPORT lean_object* l_Lean_mkModuleData___lambda__1(lean_object*, lean_obje static lean_object* l_Lean_Kernel_enableDiag___closed__1; LEAN_EXPORT lean_object* l_Lean_EnvExtension_getState___rarg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkModuleData(lean_object*, lean_object*); +static lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__5; uint32_t lean_string_utf8_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f_x27___at_Lean_Environment_find_x3f___spec__1___boxed(lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_importModules___spec__1___closed__2; @@ -77,7 +78,6 @@ LEAN_EXPORT lean_object* l_Lean_PersistentEnvExtension_modifyState___rarg___boxe lean_object* l_Lean_ConstantInfo_type(lean_object*); LEAN_EXPORT lean_object* l_Lean_Kernel_enableDiag___boxed(lean_object*, lean_object*); static lean_object* l_List_toString___at_Lean_Environment_displayStats___spec__1___closed__1; -LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2(lean_object*); LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_mkTagDeclarationExtension___spec__1___boxed(lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_le(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_MapDeclarationExtension_insert(lean_object*); @@ -85,26 +85,24 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_finalizeImport___sp lean_object* l_Lean_ConstantInfo_levelParams(lean_object*); static lean_object* l_Lean_EnvExtensionInterfaceUnsafe_imp___closed__8; static lean_object* l_Lean_instInhabitedEnvExtensionInterface___closed__3; -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Environment_allImportedModuleNames___boxed(lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_importModulesCore___spec__1___lambda__2___closed__2; static lean_object* l___auto____x40_Lean_Environment___hyg_2684____closed__11; LEAN_EXPORT lean_object* l___private_Lean_Environment_0__Lean_setImportedEntries(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__9___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_uint64_to_usize(uint64_t); LEAN_EXPORT lean_object* l_Lean_finalizeImport___lambda__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__7(lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_instModuleIdxBEq___closed__2; LEAN_EXPORT lean_object* l_Lean_mkMapDeclarationExtension___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_registerPersistentEnvExtensionUnsafe___spec__1(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_toString(lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___private_Lean_Environment_0__Lean_Environment_addAux___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instInhabitedEnvExtensionState; LEAN_EXPORT uint8_t l_Lean_Environment_hasUnsafe___lambda__1(lean_object*, lean_object*); -static lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2___closed__3; static lean_object* l___private_Lean_Environment_0__Lean_Environment_throwUnexpectedType___rarg___closed__1; lean_object* l_Array_findIdx_x3f_loop___rarg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at_Lean_Environment_find_x3f___spec__5___boxed(lean_object*, lean_object*); static lean_object* l___auto____x40_Lean_Environment___hyg_2684____closed__19; LEAN_EXPORT lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*); @@ -113,11 +111,11 @@ lean_object* lean_array_push(lean_object*, lean_object*); lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l___auto____x40_Lean_Environment___hyg_2684____closed__21; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at_Lean_Environment_getModuleIdxFor_x3f___spec__1(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_qpartition___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentEnvExtension_getModuleEntries(lean_object*, lean_object*, lean_object*); size_t lean_usize_mul(size_t, size_t); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_finalizeImport___spec__8(lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__3(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_EnvExtensionInterfaceUnsafe_registerExt___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_registerPersistentEnvExtensionUnsafe___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Environment_0__Lean_setImportedEntries___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -142,6 +140,7 @@ LEAN_EXPORT lean_object* l_Lean_EnvExtensionInterfaceUnsafe_modifyState___rarg__ static lean_object* l_Lean_Kernel_resetDiag___closed__1; LEAN_EXPORT lean_object* l_Lean_PersistentEnvExtension_modifyState(lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___auto____x40_Lean_Environment___hyg_3062_; LEAN_EXPORT lean_object* l___auto____x40_Lean_Environment___hyg_3542_; LEAN_EXPORT lean_object* l_Lean_PersistentEnvExtension_getState(lean_object*, lean_object*, lean_object*); @@ -149,7 +148,6 @@ lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_importModules___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_importModules___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_Kernel_Diagnostics_recordUnfold___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2___closed__1; lean_object* l_Lean_ConstantInfo_name(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Environment_0__Lean_EnvExtensionInterfaceUnsafe_envExtensionsRef; static lean_object* l___private_Lean_Environment_0__Lean_reprImport____x40_Lean_Environment___hyg_84____closed__2; @@ -164,9 +162,10 @@ LEAN_EXPORT lean_object* lean_environment_find(lean_object*, lean_object*); lean_object* l_Std_DHashMap_Raw_Internal_numBuckets___rarg(lean_object*); lean_object* l_Lean_RBNode_insert___at_Lean_NameSet_insert___spec__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___private_Lean_Environment_0__Lean_Environment_addAux___spec__3(lean_object*, size_t, size_t, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_finalizeImport_unsafe__2(lean_object*); +LEAN_EXPORT lean_object* l_Lean_finalizeImport_unsafe__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Environment_imports___boxed(lean_object*); static lean_object* l_List_toString___at_Lean_Environment_displayStats___spec__1___closed__2; +LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6724_(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Environment_0__Lean_finalizePersistentExtensions_loop___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkModuleData___lambda__2___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getNumBuiltinAttributes___boxed(lean_object*); @@ -177,9 +176,8 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_foldlMAux___at_Lean_mkModuleDa uint8_t l_List_beq___at___private_Lean_Declaration_0__Lean_beqConstantVal____x40_Lean_Declaration___hyg_434____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* lean_kernel_get_diag(lean_object*); LEAN_EXPORT lean_object* l_Lean_ImportStateM_run(lean_object*); -LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_importModules___lambda__1(lean_object*, lean_object*, uint32_t, uint8_t, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_finalizeImport_unsafe__1(lean_object*); +LEAN_EXPORT lean_object* l_Lean_finalizeImport_unsafe__1(lean_object*, lean_object*); uint8_t l_Lean_Name_quickLt(lean_object*, lean_object*); lean_object* l_Nat_nextPowerOfTwo_go(lean_object*, lean_object*, lean_object*); lean_object* lean_kernel_check(lean_object*, lean_object*, lean_object*); @@ -189,7 +187,6 @@ LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand_go___at_Lean_m LEAN_EXPORT lean_object* l_panic___at_Lean_EnvExtensionInterfaceUnsafe_imp___elambda__2___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_mkModuleData___spec__4___rarg(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_EnvExtensionInterfaceUnsafe_registerExt___rarg___lambda__1(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Environment_0__Lean_mkInitialExtensionStates(lean_object*); LEAN_EXPORT lean_object* l_Lean_EnvExtensionInterfaceUnsafe_imp___elambda__4___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___private_Lean_Environment_0__Lean_Environment_addAux___spec__9(lean_object*, lean_object*); @@ -199,7 +196,6 @@ LEAN_EXPORT lean_object* l_Lean_Environment_isNamespace___boxed(lean_object*, le LEAN_EXPORT lean_object* l_Lean_mkTagDeclarationExtension___lambda__2(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_Environment_find_x3f___spec__3___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_MapDeclarationExtension_contains___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__2(lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_importModulesCore___spec__1___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_EnvExtensionEntrySpec; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x21___at_Lean_throwAlreadyImported___spec__1___boxed(lean_object*, lean_object*, lean_object*); @@ -223,7 +219,9 @@ lean_object* lean_string_push(lean_object*, uint32_t); static lean_object* l___auto____x40_Lean_Environment___hyg_2684____closed__2; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at_Lean_Kernel_Diagnostics_recordUnfold___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Environment_registerNamespace(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2(lean_object*); uint8_t l_Std_Format_isNil(lean_object*); +static lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2___closed__1; static lean_object* l_Lean_EnvExtensionInterfaceUnsafe_modifyState___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_foldlMAux_traverse___at_Lean_mkModuleData___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Kernel_enableDiag(lean_object*, uint8_t); @@ -235,8 +233,10 @@ LEAN_EXPORT uint8_t l_Lean_Kernel_isDiagnosticsEnabled(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Environment_0__Lean_reprImport____x40_Lean_Environment___hyg_84_(lean_object*, lean_object*); lean_object* l_Lean_initializing(lean_object*); static lean_object* l___private_Lean_Environment_0__Lean_reprImport____x40_Lean_Environment___hyg_84____closed__22; +LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_registerSimplePersistentEnvExtension(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_finalizeImport___spec__5___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__5(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkMapDeclarationExtension___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_TagDeclarationExtension_tag___closed__1; LEAN_EXPORT lean_object* l_Lean_EnvExtensionInterfaceUnsafe_imp___elambda__4(lean_object*); @@ -244,8 +244,8 @@ static lean_object* l_Lean_instInhabitedEnvExtensionInterface___closed__6; LEAN_EXPORT lean_object* l_Lean_EnvExtension_getState___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___private_Lean_Environment_0__Lean_Environment_addAux___spec__6(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_registerEnvExtension(lean_object*); +static lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__4; static lean_object* l___auto____x40_Lean_Environment___hyg_2684____closed__7; -LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__9(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentEnvExtension_modifyState___rarg(lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_SimplePersistentEnvExtension_getState___rarg___boxed(lean_object*, lean_object*, lean_object*); @@ -254,13 +254,13 @@ static lean_object* l_Lean_instToStringImport___closed__3; static lean_object* l___auto____x40_Lean_Environment___hyg_2684____closed__27; LEAN_EXPORT lean_object* l_Lean_Kernel_Diagnostics_isEnabled___boxed(lean_object*); static lean_object* l___private_Lean_Environment_0__Lean_reprImport____x40_Lean_Environment___hyg_84____closed__23; -static lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2___closed__2; lean_object* l_panic___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at_Lean_Kernel_Diagnostics_recordUnfold___spec__1___boxed(lean_object*, lean_object*); static lean_object* l_Lean_instInhabitedPersistentEnvExtension___closed__2; static lean_object* l_Lean_Environment_displayStats___closed__3; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x21___at_Lean_throwAlreadyImported___spec__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Environment_displayStats___spec__7___lambda__1___closed__2; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__2(lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_Kernel_instInhabitedDiagnostics___closed__1; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_mkModuleData___spec__4(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_EnvExtensionInterfaceUnsafe_instInhabitedExt___lambda__1___closed__2; @@ -271,11 +271,10 @@ LEAN_EXPORT lean_object* l_Lean_SimplePersistentEnvExtension_setState___rarg___l LEAN_EXPORT lean_object* l_Lean_Environment_evalConstCheck(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentEnvExtension_setState(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_mkModuleData___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__10(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_EnvExtensionInterfaceUnsafe_getState___rarg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__6(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_instToStringImport(lean_object*); uint8_t lean_expr_eqv(lean_object*, lean_object*); -static lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__6; lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at_Lean_NameSSet_insert___spec__7(lean_object*); lean_object* l_List_toArray___rarg(lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_registerPersistentEnvExtensionUnsafe___spec__1___rarg(lean_object*, lean_object*, size_t, size_t); @@ -290,9 +289,9 @@ LEAN_EXPORT lean_object* l_Lean_PersistentEnvExtension_getModuleEntries___rarg(l static lean_object* l_Lean_EnvExtensionInterfaceUnsafe_imp___closed__2; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at_Lean_Environment_addExtraName___spec__3___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Environment_freeRegions___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__5___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_to_int(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Environment_0__Lean_Environment_throwUnexpectedType___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__5___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_div(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkEmptyEnvironment___boxed(lean_object*, lean_object*); static lean_object* l_Lean_mkMapDeclarationExtension___rarg___closed__2; @@ -306,7 +305,6 @@ LEAN_EXPORT lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_obje LEAN_EXPORT lean_object* l_Lean_SimplePersistentEnvExtension_getEntries___rarg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkEmptyEnvironment___lambda__1(uint32_t, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Environment_0__Lean_setImportedEntries___spec__3___closed__1; -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__8(lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_MapDeclarationExtension_insert___rarg___closed__4; static lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__1; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at_Lean_finalizeImport___spec__1___boxed(lean_object*, lean_object*); @@ -316,7 +314,6 @@ lean_object* lean_eval_const(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_Kernel_Diagnostics_recordUnfold___spec__6(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Environment_0__Lean_reprImport____x40_Lean_Environment___hyg_84____closed__16; LEAN_EXPORT lean_object* l_Lean_instModuleIdxToString; -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__10(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Environment_0__Lean_setImportedEntries___spec__1___lambda__1___boxed(lean_object*, lean_object*); static lean_object* l_Lean_mkEmptyEnvironment___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Environment_0__Lean_Environment_addAux(lean_object*, lean_object*); @@ -337,6 +334,7 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_Kernel_Dia static lean_object* l_Lean_mkEmptyEnvironment___lambda__1___closed__6; static lean_object* l_Lean_EnvExtensionInterfaceUnsafe_instInhabitedExt___closed__1; LEAN_EXPORT lean_object* l_Lean_EnvExtensionInterfaceUnsafe_imp___elambda__1(lean_object*); +static lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6724____closed__1; static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Environment_displayStats___spec__7___closed__1; static size_t l_Lean_PersistentHashMap_insertAux___at___private_Lean_Environment_0__Lean_Environment_addAux___spec__3___closed__2; static lean_object* l_Lean_throwAlreadyImported___rarg___closed__1; @@ -356,6 +354,7 @@ LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_2639_(lean_ static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_importModules___spec__1___closed__1; LEAN_EXPORT lean_object* l_Lean_importModules___lambda__2(lean_object*, lean_object*, uint32_t, uint8_t, lean_object*, lean_object*); uint8_t l_Lean_SMap_contains___at_Lean_NameSSet_contains___spec__1(lean_object*, lean_object*); +static lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__2; lean_object* lean_st_mk_ref(lean_object*, lean_object*); extern lean_object* l_Lean_NameSSet_instInhabited; static lean_object* l_Lean_EnvExtensionInterfaceUnsafe_imp___closed__4; @@ -369,6 +368,7 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at_Lean_Environment LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at_Lean_Environment_addExtraName___spec__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_numBuckets___at_Lean_Environment_displayStats___spec__5(lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at_Lean_mkExtNameMap___spec__2(lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withImportModules___rarg(lean_object*, lean_object*, uint32_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_finalizeImport___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_EStateM_pure___rarg(lean_object*, lean_object*); @@ -377,7 +377,6 @@ static lean_object* l___private_Lean_Environment_0__Lean_reprImport____x40_Lean_ LEAN_EXPORT lean_object* l_Array_binSearchAux___at_Lean_MapDeclarationExtension_contains___spec__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_instInhabitedEnvExtensionInterface___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___auto____x40_Lean_Environment___hyg_2684____closed__13; -LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6696_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Environment_addDeclCore___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_RBNode_insert___at_Lean_NameMap_insert___spec__1___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Environment_0__Lean_setImportedEntries___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -393,6 +392,7 @@ lean_object* l_List_lengthTRAux___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkDefinitionValInferrringUnsafe(lean_object*); LEAN_EXPORT uint32_t lean_environment_trust_level(lean_object*); lean_object* l_IO_print___at_IO_println___spec__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__1(lean_object*, lean_object*); static lean_object* l_Std_DHashMap_Internal_AssocList_get_x21___at_Lean_throwAlreadyImported___spec__1___closed__2; LEAN_EXPORT lean_object* l_Lean_PersistentEnvExtension_getModuleEntries___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_EnvExtensionInterfaceUnsafe_instInhabitedExt(lean_object*); @@ -433,7 +433,6 @@ static lean_object* l___auto____x40_Lean_Environment___hyg_2684____closed__23; LEAN_EXPORT lean_object* l_Lean_RBNode_fold___at_Lean_mkMapDeclarationExtension___spec__2___rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Environment_0__Lean_Environment_isNamespaceName___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_ConstantInfo_instantiateValueLevelParams_x21___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6569_(lean_object*); static lean_object* l___auto____x40_Lean_Environment___hyg_2684____closed__25; LEAN_EXPORT lean_object* l_panic___at_Lean_MapDeclarationExtension_insert___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_instToStringImport___closed__2; @@ -444,12 +443,14 @@ LEAN_EXPORT lean_object* l_Lean_instInhabitedPersistentEnvExtension___lambda__4( LEAN_EXPORT lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__2(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_TagDeclarationExtension_tag___closed__2; LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___rarg(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withImportModules(lean_object*); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__3(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_instInhabitedImport; +static lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2___closed__3; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_EnvExtensionInterfaceUnsafe_mkInitialExtStates___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_EnvExtensionInterfaceUnsafe_ensureExtensionsArraySize(lean_object*, lean_object*); static lean_object* l_Lean_mkEmptyEnvironment___closed__2; +LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_EnvExtensionInterfaceUnsafe_imp___elambda__3(lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_fold___at_Lean_mkMapDeclarationExtension___spec__2___rarg(lean_object*, lean_object*); extern lean_object* l_Std_Format_defWidth; @@ -457,6 +458,7 @@ LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at_Lean_mk LEAN_EXPORT uint8_t l_Lean_Environment_hasUnsafe(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_SimplePersistentEnvExtension_getEntries___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Environment_freeRegions___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__6(lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_MapDeclarationExtension_instInhabited___closed__1; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_importModulesCore___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Environment_0__Lean_setImportedEntries___spec__1___lambda__1(lean_object*, lean_object*); @@ -465,21 +467,19 @@ LEAN_EXPORT lean_object* l_Lean_registerEnvExtension___rarg(lean_object*, lean_o LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_finalizeImport___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Environment_0__Lean_reprImport____x40_Lean_Environment___hyg_84____closed__26; lean_object* lean_usize_to_nat(size_t); +LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Environment_evalConstCheck___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_EnvExtensionInterfaceUnsafe_imp___elambda__2___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Environment_displayStats___spec__7___lambda__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Kernel_isDefEqGuarded___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Environment_contains(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__5(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Environment_isNamespace(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Environment_0__Lean_setImportedEntries___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_binSearchAux___at_Lean_TagDeclarationExtension_isTagged___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__11(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___lambda__2(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_Environment_find_x3f___spec__3(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwAlreadyImported___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_instInhabitedEnvExtensionInterface___closed__1; -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_withImporting___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_SMap_contains___at_Lean_Environment_addExtraName___spec__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_finalizeImport___lambda__1___boxed(lean_object*, lean_object*, lean_object*); @@ -493,7 +493,6 @@ LEAN_EXPORT lean_object* l_Lean_EnvExtensionInterfaceUnsafe_registerExt___rarg__ static lean_object* l___auto____x40_Lean_Environment___hyg_2684____closed__17; LEAN_EXPORT lean_object* l_Lean_RBMap_toArray___at_Lean_mkMapDeclarationExtension___spec__1___rarg___boxed(lean_object*); static lean_object* l_Lean_mkTagDeclarationExtension___closed__2; -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_foldlMAux_traverse___at_Lean_mkModuleData___spec__5___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_EnvExtensionStateSpec___closed__1; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Environment_0__Lean_setImportedEntries___spec__3___lambda__1(lean_object*, lean_object*, lean_object*); @@ -524,7 +523,6 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_finalizeImport__ LEAN_EXPORT lean_object* l_Lean_Environment_getModuleIdx_x3f___boxed(lean_object*, lean_object*); LEAN_EXPORT uint8_t lean_kernel_diag_is_enabled(lean_object*); extern lean_object* l_Lean_NameSet_empty; -static lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__1; static lean_object* l___private_Lean_Environment_0__Lean_reprImport____x40_Lean_Environment___hyg_84____closed__10; static lean_object* l_Lean_EnvExtensionInterfaceUnsafe_modifyState___rarg___closed__2; LEAN_EXPORT lean_object* l_Lean_mkMapDeclarationExtension___rarg___lambda__2(lean_object*, lean_object*); @@ -533,6 +531,7 @@ lean_object* lean_string_length(lean_object*); static lean_object* l___private_Lean_Environment_0__Lean_reprImport____x40_Lean_Environment___hyg_84____closed__17; static lean_object* l_Lean_EnvExtensionInterfaceUnsafe_imp___closed__6; LEAN_EXPORT lean_object* l_IO_println___at_Lean_Environment_displayStats___spec__3(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__9___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_instReprImport___closed__1; LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_mkExtNameMap___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___rarg___lambda__1(lean_object*, lean_object*, lean_object*); @@ -544,12 +543,10 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Environment_display LEAN_EXPORT lean_object* l_Array_binSearchAux___at_Lean_MapDeclarationExtension_find_x3f___spec__1(lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* l___auto____x40_Lean_Environment___hyg_2684____closed__14; -static lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6696____closed__1; LEAN_EXPORT lean_object* l_Lean_SimplePersistentEnvExtension_getState(lean_object*, lean_object*); LEAN_EXPORT lean_object* lean_environment_main_module(lean_object*); LEAN_EXPORT lean_object* l_Lean_EnvExtension_setState___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_EnvExtensionInterfaceUnsafe_imp___elambda__3___rarg___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Environment_displayStats___closed__1; static lean_object* l_Lean_instInhabitedPersistentEnvExtension___closed__3; LEAN_EXPORT lean_object* l_Lean_EnvExtension_getState(lean_object*); @@ -574,6 +571,7 @@ lean_object* lean_add_decl_without_checking(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_SMap_contains___at_Lean_Environment_addExtraName___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_Kernel_Diagnostics_recordUnfold___spec__2___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_ConstantInfo_instantiateTypeLevelParams___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__9(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_TagDeclarationExtension_tag(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Environment_isSafeDefinition(lean_object*, lean_object*); static lean_object* l_Lean_EnvExtensionInterfaceUnsafe_imp___closed__5; @@ -582,6 +580,7 @@ lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); uint64_t l_Lean_Name_hash___override(lean_object*); LEAN_EXPORT lean_object* l_Lean_instInhabitedEnvExtensionInterface___lambda__1(lean_object*, lean_object*); static lean_object* l_Lean_mkTagDeclarationExtension___closed__1; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBMap_toArray___at_Lean_mkMapDeclarationExtension___spec__1(lean_object*); LEAN_EXPORT lean_object* l_panic___at_Lean_EnvExtensionInterfaceUnsafe_setState___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instInhabitedPersistentEnvExtension___lambda__2___boxed(lean_object*, lean_object*); @@ -589,14 +588,16 @@ uint64_t lean_uint64_xor(uint64_t, uint64_t); extern lean_object* l_Id_instMonad; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_importModulesCore___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f_x27___at_Lean_Environment_find_x3f___spec__1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_SMap_switch___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__4(lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MapDeclarationExtension_contains___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Environment_0__Lean_finalizePersistentExtensions_loop___closed__1; -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Environment_0__Lean_reprImport____x40_Lean_Environment___hyg_84____closed__7; static lean_object* l_Lean_throwAlreadyImported___rarg___closed__3; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at___private_Lean_Environment_0__Lean_Environment_addAux___spec__10(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__11(lean_object*, lean_object*, size_t, size_t, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6597_(lean_object*); static lean_object* l_Lean_mkEmptyEnvironment___lambda__1___closed__5; LEAN_EXPORT lean_object* l_Lean_instInhabitedPersistentEnvExtension___lambda__2(lean_object*, lean_object*); uint32_t lean_uint32_of_nat(lean_object*); @@ -627,7 +628,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Environment_0__Lean_finalizePersistent LEAN_EXPORT lean_object* l_Lean_EnvExtensionStateSpec; LEAN_EXPORT lean_object* l_panic___at_Lean_EnvExtensionInterfaceUnsafe_modifyState___spec__1(lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__7(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_CompactedRegion_free___boxed(lean_object*, lean_object*); static lean_object* l___auto____x40_Lean_Environment___hyg_2684____closed__16; LEAN_EXPORT lean_object* l_Lean_Kernel_whnf___boxed(lean_object*, lean_object*, lean_object*); @@ -642,10 +642,10 @@ LEAN_EXPORT lean_object* l_Lean_persistentEnvExtensionsRef; lean_object* lean_io_initializing(lean_object*); lean_object* l_List_reverse___rarg(lean_object*); static lean_object* l___auto____x40_Lean_Environment___hyg_2684____closed__9; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___auto____x40_Lean_Environment___hyg_2684____closed__18; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at_Lean_finalizeImport___spec__2(lean_object*); static lean_object* l_Lean_EnvExtensionInterfaceUnsafe_imp___closed__1; -LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Environment_imports(lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_importModulesCore___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_foldlM___at_Lean_mkModuleData___spec__6___boxed(lean_object*, lean_object*, lean_object*); @@ -658,6 +658,7 @@ LEAN_EXPORT lean_object* l_Lean_instInhabitedEnvExtensionInterface___lambda__1__ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_Kernel_Diagnostics_recordUnfold___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_namespacesExt; LEAN_EXPORT lean_object* l_Lean_EnvExtension_modifyState(lean_object*); +static lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__1; static lean_object* l_Lean_instInhabitedPersistentEnvExtension___closed__1; LEAN_EXPORT lean_object* l_Lean_TagDeclarationExtension_isTagged___boxed(lean_object*, lean_object*, lean_object*); static size_t l_Lean_PersistentHashMap_insertAux___at___private_Lean_Environment_0__Lean_Environment_addAux___spec__3___closed__1; @@ -681,6 +682,7 @@ LEAN_EXPORT lean_object* l_Lean_Kernel_isDiagnosticsEnabled___boxed(lean_object* LEAN_EXPORT lean_object* l___private_Lean_Environment_0__Lean_Environment_isQuotInit___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_instInhabitedEnvExtensionInterface___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uget(lean_object*, size_t); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__8(lean_object*, size_t, size_t, lean_object*); size_t lean_array_size(lean_object*); static lean_object* l_Lean_Environment_displayStats___closed__5; lean_object* l_Array_foldlMUnsafe_fold___rarg(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); @@ -692,7 +694,6 @@ LEAN_EXPORT lean_object* l_Lean_SMap_numBuckets___at_Lean_Environment_displaySta lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* lean_write_module(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_MapDeclarationExtension_insert___rarg___closed__3; -static lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__3; LEAN_EXPORT lean_object* l_Lean_SimplePersistentEnvExtension_modifyState___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_fold___at_Lean_mkModuleData___spec__8(lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Environment_displayStats___spec__7___lambda__1___closed__1; @@ -701,7 +702,6 @@ LEAN_EXPORT lean_object* l_Lean_mkDefinitionValInferrringUnsafe___rarg___lambda_ LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at_Lean_Environment_getModuleIdxFor_x3f___spec__1___boxed(lean_object*, lean_object*); size_t lean_usize_shift_left(size_t, size_t); lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__2; LEAN_EXPORT lean_object* l_Lean_EnvExtensionInterfaceUnsafe_imp___elambda__3___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t lean_environment_quot_init(lean_object*); static lean_object* l_Lean_mkModuleData___closed__2; @@ -741,7 +741,7 @@ LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_mkExtNameMap___spe lean_object* lean_compacted_region_free(size_t, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_EnvExtensionInterfaceUnsafe_imp___elambda__5___boxed(lean_object*, lean_object*); -lean_object* lean_runtime_mark_persistent(lean_object*); +lean_object* lean_runtime_mark_persistent(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkTagDeclarationExtension___lambda__2___boxed(lean_object*); static lean_object* l_Lean_instModuleIdxBEq___closed__1; lean_object* l_Lean_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*); @@ -761,7 +761,6 @@ lean_object* lean_kernel_whnf(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at___private_Lean_Environment_0__Lean_Environment_addAux___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkEmptyEnvironment___lambda__1___closed__2; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_importModulesCore___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand_go___at_Lean_finalizeImport___spec__3(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_EnvExtensionInterfaceUnsafe_getState___rarg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_foldlM___at_Lean_mkModuleData___spec__2___boxed(lean_object*, lean_object*, lean_object*); @@ -769,7 +768,6 @@ LEAN_EXPORT lean_object* l_panic___at_Lean_TagDeclarationExtension_tag___spec__1 LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_EnvExtensionInterfaceUnsafe_mkInitialExtStates___spec__1(size_t, size_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Environment_0__Lean_setImportedEntries___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_SimplePersistentEnvExtension_instInhabited(lean_object*, lean_object*); -static lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__4; static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Environment_displayStats___spec__7___lambda__1___closed__3; LEAN_EXPORT lean_object* lean_kernel_record_unfold(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -781,14 +779,16 @@ lean_object* lean_array_uset(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* lean_environment_free_regions(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Repr_0__Nat_reprFast(lean_object*); +static lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__3; LEAN_EXPORT lean_object* l_List_foldl___at_Lean_Environment_displayStats___spec__2(lean_object*, lean_object*); static lean_object* l_List_foldl___at_Lean_Environment_displayStats___spec__2___closed__1; static lean_object* l___auto____x40_Lean_Environment___hyg_2684____closed__6; static lean_object* l_Lean_instInhabitedPersistentEnvExtension___closed__4; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__6; static lean_object* l___auto____x40_Lean_Environment___hyg_2684____closed__4; LEAN_EXPORT lean_object* l_Lean_EnvExtension_setState(lean_object*); LEAN_EXPORT lean_object* l_Lean_withImportModules___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__5; size_t lean_usize_land(size_t, size_t); lean_object* lean_save_module_data(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkEmptyEnvironment___lambda__1___boxed(lean_object*, lean_object*, lean_object*); @@ -12417,20 +12417,20 @@ x_4 = lean_box(x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_finalizeImport_unsafe__1(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_finalizeImport_unsafe__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_2; -x_2 = lean_runtime_mark_persistent(x_1); -return x_2; +lean_object* x_3; +x_3 = lean_runtime_mark_persistent(x_1, x_2); +return x_3; } } -LEAN_EXPORT lean_object* l_Lean_finalizeImport_unsafe__2(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_finalizeImport_unsafe__2(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_2; -x_2 = lean_runtime_mark_persistent(x_1); -return x_2; +lean_object* x_3; +x_3 = lean_runtime_mark_persistent(x_1, x_2); +return x_3; } } LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at_Lean_finalizeImport___spec__1(lean_object* x_1, lean_object* x_2) { @@ -14386,33 +14386,38 @@ return x_13; } else { -lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_14 = lean_runtime_mark_persistent(x_9); -x_15 = lean_box(0); -x_16 = lean_apply_3(x_11, x_14, x_15, x_10); -return x_16; +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_14 = lean_runtime_mark_persistent(x_9, x_10); +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_dec(x_14); +x_17 = lean_box(0); +x_18 = lean_apply_3(x_11, x_15, x_17, x_16); +return x_18; } } else { -uint8_t x_17; -x_17 = !lean_is_exclusive(x_8); -if (x_17 == 0) +uint8_t x_19; +x_19 = !lean_is_exclusive(x_8); +if (x_19 == 0) { return x_8; } else { -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_8, 0); -x_19 = lean_ctor_get(x_8, 1); -lean_inc(x_19); -lean_inc(x_18); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_8, 0); +x_21 = lean_ctor_get(x_8, 1); +lean_inc(x_21); +lean_inc(x_20); lean_dec(x_8); -x_20 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_20, 0, x_18); -lean_ctor_set(x_20, 1, x_19); -return x_20; +x_22 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); +return x_22; } } } @@ -14436,28 +14441,28 @@ lean_ctor_set(x_13, 2, x_12); if (x_10 == 0) { x_14 = x_9; -goto block_76; +goto block_64; } else { -uint8_t x_77; -x_77 = lean_nat_dec_le(x_8, x_8); -if (x_77 == 0) +uint8_t x_65; +x_65 = lean_nat_dec_le(x_8, x_8); +if (x_65 == 0) { x_14 = x_9; -goto block_76; +goto block_64; } else { -size_t x_78; size_t x_79; lean_object* x_80; -x_78 = 0; -x_79 = lean_usize_of_nat(x_8); -x_80 = l_Array_foldlMUnsafe_fold___at_Lean_finalizeImport___spec__8(x_7, x_78, x_79, x_9); -x_14 = x_80; -goto block_76; +size_t x_66; size_t x_67; lean_object* x_68; +x_66 = 0; +x_67 = lean_usize_of_nat(x_8); +x_68 = l_Array_foldlMUnsafe_fold___at_Lean_finalizeImport___spec__8(x_7, x_66, x_67, x_9); +x_14 = x_68; +goto block_64; } } -block_76: +block_64: { lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; x_15 = lean_unsigned_to_nat(4u); @@ -14502,22 +14507,33 @@ lean_ctor_set_uint8(x_30, sizeof(void*)*2, x_28); x_31 = l_Lean_EnvExtensionInterfaceUnsafe_mkInitialExtStates(x_25); if (lean_obj_tag(x_31) == 0) { -lean_object* x_32; lean_object* x_33; uint8_t x_34; +lean_object* x_32; lean_object* x_33; uint8_t x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; x_32 = lean_ctor_get(x_31, 0); lean_inc(x_32); x_33 = lean_ctor_get(x_31, 1); lean_inc(x_33); lean_dec(x_31); x_34 = l_Array_isEmpty___rarg(x_2); -if (x_34 == 0) -{ -lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; x_35 = lean_ctor_get(x_1, 3); lean_inc(x_35); x_36 = lean_ctor_get(x_1, 1); lean_inc(x_36); lean_dec(x_1); -x_37 = 1; +if (x_34 == 0) +{ +uint8_t x_55; +x_55 = 1; +x_37 = x_55; +goto block_54; +} +else +{ +x_37 = x_28; +goto block_54; +} +block_54: +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; x_38 = lean_box(0); lean_inc(x_7); x_39 = lean_alloc_ctor(0, 5, 5); @@ -14551,125 +14567,77 @@ return x_46; } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; x_47 = lean_ctor_get(x_42, 0); lean_inc(x_47); x_48 = lean_ctor_get(x_42, 1); lean_inc(x_48); lean_dec(x_42); -x_49 = lean_runtime_mark_persistent(x_47); -x_50 = lean_box(0); -x_51 = l_Lean_finalizeImport___lambda__2(x_7, x_3, x_5, x_49, x_50, x_48); -return x_51; -} -} -else -{ -lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_52 = lean_ctor_get(x_1, 3); -lean_inc(x_52); -x_53 = lean_ctor_get(x_1, 1); -lean_inc(x_53); -lean_dec(x_1); -x_54 = lean_box(0); -lean_inc(x_7); -x_55 = lean_alloc_ctor(0, 5, 5); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_55, 1, x_2); -lean_ctor_set(x_55, 2, x_52); -lean_ctor_set(x_55, 3, x_53); -lean_ctor_set(x_55, 4, x_7); -lean_ctor_set_uint32(x_55, sizeof(void*)*5, x_4); -lean_ctor_set_uint8(x_55, sizeof(void*)*5 + 4, x_28); -x_56 = l_Lean_NameSet_empty; -x_57 = lean_alloc_ctor(0, 5, 0); -lean_ctor_set(x_57, 0, x_26); -lean_ctor_set(x_57, 1, x_30); -lean_ctor_set(x_57, 2, x_32); -lean_ctor_set(x_57, 3, x_56); -lean_ctor_set(x_57, 4, x_55); -lean_inc(x_7); -x_58 = l___private_Lean_Environment_0__Lean_setImportedEntries(x_57, x_7, x_9, x_33); -if (x_5 == 0) -{ -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; -x_59 = lean_ctor_get(x_58, 0); -lean_inc(x_59); -x_60 = lean_ctor_get(x_58, 1); -lean_inc(x_60); -lean_dec(x_58); -x_61 = lean_box(0); -x_62 = l_Lean_finalizeImport___lambda__2(x_7, x_3, x_5, x_59, x_61, x_60); -return x_62; -} -else -{ -lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_63 = lean_ctor_get(x_58, 0); -lean_inc(x_63); -x_64 = lean_ctor_get(x_58, 1); -lean_inc(x_64); -lean_dec(x_58); -x_65 = lean_runtime_mark_persistent(x_63); -x_66 = lean_box(0); -x_67 = l_Lean_finalizeImport___lambda__2(x_7, x_3, x_5, x_65, x_66, x_64); -return x_67; +x_49 = lean_runtime_mark_persistent(x_47, x_48); +x_50 = lean_ctor_get(x_49, 0); +lean_inc(x_50); +x_51 = lean_ctor_get(x_49, 1); +lean_inc(x_51); +lean_dec(x_49); +x_52 = lean_box(0); +x_53 = l_Lean_finalizeImport___lambda__2(x_7, x_3, x_5, x_50, x_52, x_51); +return x_53; } } } else { -uint8_t x_68; +uint8_t x_56; lean_dec(x_30); lean_dec(x_26); lean_dec(x_7); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_68 = !lean_is_exclusive(x_31); -if (x_68 == 0) +x_56 = !lean_is_exclusive(x_31); +if (x_56 == 0) { return x_31; } else { -lean_object* x_69; lean_object* x_70; lean_object* x_71; -x_69 = lean_ctor_get(x_31, 0); -x_70 = lean_ctor_get(x_31, 1); -lean_inc(x_70); -lean_inc(x_69); +lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_57 = lean_ctor_get(x_31, 0); +x_58 = lean_ctor_get(x_31, 1); +lean_inc(x_58); +lean_inc(x_57); lean_dec(x_31); -x_71 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_71, 0, x_69); -lean_ctor_set(x_71, 1, x_70); -return x_71; +x_59 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_59, 0, x_57); +lean_ctor_set(x_59, 1, x_58); +return x_59; } } } else { -uint8_t x_72; +uint8_t x_60; lean_dec(x_7); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_72 = !lean_is_exclusive(x_23); -if (x_72 == 0) +x_60 = !lean_is_exclusive(x_23); +if (x_60 == 0) { return x_23; } else { -lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_73 = lean_ctor_get(x_23, 0); -x_74 = lean_ctor_get(x_23, 1); -lean_inc(x_74); -lean_inc(x_73); +lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_61 = lean_ctor_get(x_23, 0); +x_62 = lean_ctor_get(x_23, 1); +lean_inc(x_62); +lean_inc(x_61); lean_dec(x_23); -x_75 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_75, 0, x_73); -lean_ctor_set(x_75, 1, x_74); -return x_75; +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_61); +lean_ctor_set(x_63, 1, x_62); +return x_63; } } } @@ -15176,7 +15144,7 @@ x_7 = l_Lean_withImportModules___rarg(x_1, x_2, x_6, x_4, x_5); return x_7; } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__2(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__2(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5) { _start: { uint8_t x_6; @@ -15349,7 +15317,7 @@ return x_5; } } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__3(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__3(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5) { _start: { uint8_t x_6; @@ -15388,7 +15356,7 @@ x_16 = 0; x_17 = lean_usize_of_nat(x_8); lean_dec(x_8); lean_inc(x_1); -x_18 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__2(x_1, x_7, x_16, x_17, x_5); +x_18 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__2(x_1, x_7, x_16, x_17, x_5); lean_dec(x_7); x_3 = x_12; x_5 = x_18; @@ -15403,7 +15371,7 @@ return x_5; } } } -LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; @@ -15432,13 +15400,13 @@ size_t x_8; size_t x_9; lean_object* x_10; x_8 = 0; x_9 = lean_usize_of_nat(x_4); lean_dec(x_4); -x_10 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__3(x_1, x_3, x_8, x_9, x_2); +x_10 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__3(x_1, x_3, x_8, x_9, x_2); return x_10; } } } } -LEAN_EXPORT lean_object* l_Lean_SMap_switch___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__4(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_SMap_switch___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__4(lean_object* x_1) { _start: { uint8_t x_2; @@ -15476,7 +15444,7 @@ return x_8; } } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__6(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__6(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5) { _start: { uint8_t x_6; @@ -15649,7 +15617,7 @@ return x_5; } } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__7(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__7(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5) { _start: { uint8_t x_6; @@ -15688,7 +15656,7 @@ x_16 = 0; x_17 = lean_usize_of_nat(x_8); lean_dec(x_8); lean_inc(x_1); -x_18 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__6(x_1, x_7, x_16, x_17, x_5); +x_18 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__6(x_1, x_7, x_16, x_17, x_5); lean_dec(x_7); x_3 = x_12; x_5 = x_18; @@ -15703,7 +15671,7 @@ return x_5; } } } -LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; @@ -15732,13 +15700,13 @@ size_t x_8; size_t x_9; lean_object* x_10; x_8 = 0; x_9 = lean_usize_of_nat(x_4); lean_dec(x_4); -x_10 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__7(x_1, x_3, x_8, x_9, x_2); +x_10 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__7(x_1, x_3, x_8, x_9, x_2); return x_10; } } } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__8(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__8(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { _start: { uint8_t x_5; @@ -15764,7 +15732,7 @@ return x_4; } } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__10(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__10(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5) { _start: { uint8_t x_6; @@ -15937,7 +15905,7 @@ return x_5; } } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__11(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__11(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5) { _start: { uint8_t x_6; @@ -15976,7 +15944,7 @@ x_16 = 0; x_17 = lean_usize_of_nat(x_8); lean_dec(x_8); lean_inc(x_1); -x_18 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__10(x_1, x_7, x_16, x_17, x_5); +x_18 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__10(x_1, x_7, x_16, x_17, x_5); lean_dec(x_7); x_3 = x_12; x_5 = x_18; @@ -15991,7 +15959,7 @@ return x_5; } } } -LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; @@ -16020,13 +15988,13 @@ size_t x_8; size_t x_9; lean_object* x_10; x_8 = 0; x_9 = lean_usize_of_nat(x_4); lean_dec(x_4); -x_10 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__11(x_1, x_3, x_8, x_9, x_2); +x_10 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__11(x_1, x_3, x_8, x_9, x_2); return x_10; } } } } -LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__1(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; @@ -16035,7 +16003,7 @@ x_4 = l_Lean_SMap_insert___at_Lean_NameSSet_insert___spec__1(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2___closed__1() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -16045,29 +16013,29 @@ x_3 = l_Nat_nextPowerOfTwo_go(x_1, x_2, lean_box(0)); return x_3; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2___closed__2() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2___closed__1; +x_2 = l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2___closed__1; x_3 = lean_mk_array(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2___closed__3() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_unsigned_to_nat(0u); -x_2 = l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2___closed__2; +x_2 = l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2___closed__2; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; @@ -16079,15 +16047,15 @@ if (x_4 == 0) { lean_object* x_6; lean_object* x_7; uint8_t x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_dec(x_2); -x_6 = l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2___closed__3; -x_7 = l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__1(x_5, x_6, x_1); +x_6 = l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2___closed__3; +x_7 = l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__1(x_5, x_6, x_1); x_8 = 1; x_9 = l_Lean_mkEmptyEnvironment___lambda__1___closed__5; x_10 = lean_alloc_ctor(0, 2, 1); lean_ctor_set(x_10, 0, x_7); lean_ctor_set(x_10, 1, x_9); lean_ctor_set_uint8(x_10, sizeof(void*)*2, x_8); -x_11 = l_Lean_SMap_switch___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__4(x_10); +x_11 = l_Lean_SMap_switch___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__4(x_10); return x_11; } else @@ -16098,15 +16066,15 @@ if (x_12 == 0) { lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_dec(x_2); -x_13 = l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2___closed__3; -x_14 = l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__5(x_5, x_13, x_1); +x_13 = l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2___closed__3; +x_14 = l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__5(x_5, x_13, x_1); x_15 = 1; x_16 = l_Lean_mkEmptyEnvironment___lambda__1___closed__5; x_17 = lean_alloc_ctor(0, 2, 1); lean_ctor_set(x_17, 0, x_14); lean_ctor_set(x_17, 1, x_16); lean_ctor_set_uint8(x_17, sizeof(void*)*2, x_15); -x_18 = l_Lean_SMap_switch___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__4(x_17); +x_18 = l_Lean_SMap_switch___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__4(x_17); return x_18; } else @@ -16115,7 +16083,7 @@ size_t x_19; size_t x_20; lean_object* x_21; lean_object* x_22; lean_object* x_2 x_19 = 0; x_20 = lean_usize_of_nat(x_2); lean_dec(x_2); -x_21 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__8(x_1, x_19, x_20, x_3); +x_21 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__8(x_1, x_19, x_20, x_3); x_22 = lean_unsigned_to_nat(4u); x_23 = lean_nat_mul(x_21, x_22); lean_dec(x_21); @@ -16129,20 +16097,20 @@ x_28 = lean_mk_array(x_27, x_5); x_29 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_29, 0, x_3); lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__9(x_5, x_29, x_1); +x_30 = l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__9(x_5, x_29, x_1); x_31 = 1; x_32 = l_Lean_mkEmptyEnvironment___lambda__1___closed__5; x_33 = lean_alloc_ctor(0, 2, 1); lean_ctor_set(x_33, 0, x_30); lean_ctor_set(x_33, 1, x_32); lean_ctor_set_uint8(x_33, sizeof(void*)*2, x_31); -x_34 = l_Lean_SMap_switch___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__4(x_33); +x_34 = l_Lean_SMap_switch___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__4(x_33); return x_34; } } } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__1() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__1() { _start: { lean_object* x_1; @@ -16150,33 +16118,33 @@ x_1 = lean_mk_string_unchecked("namespacesExt", 13, 13); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__2() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___auto____x40_Lean_Environment___hyg_2684____closed__1; -x_2 = l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__1; +x_2 = l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__3() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__1), 2, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__1), 2, 0); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__4() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__4() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2___boxed), 1, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2___boxed), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__5() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__5() { _start: { lean_object* x_1; @@ -16184,14 +16152,14 @@ x_1 = lean_alloc_closure((void*)(l_List_toArray___rarg), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__6() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__2; -x_2 = l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__3; -x_3 = l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__4; -x_4 = l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__5; +x_1 = l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__2; +x_2 = l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__3; +x_3 = l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__4; +x_4 = l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__5; x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); lean_ctor_set(x_5, 1, x_2); @@ -16200,16 +16168,16 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6569_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6597_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__6; +x_2 = l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__6; x_3 = l_Lean_registerSimplePersistentEnvExtension___rarg(x_2, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { size_t x_6; size_t x_7; lean_object* x_8; @@ -16217,12 +16185,12 @@ x_6 = lean_unbox_usize(x_3); lean_dec(x_3); x_7 = lean_unbox_usize(x_4); lean_dec(x_4); -x_8 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__2(x_1, x_2, x_6, x_7, x_5); +x_8 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__2(x_1, x_2, x_6, x_7, x_5); lean_dec(x_2); return x_8; } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { size_t x_6; size_t x_7; lean_object* x_8; @@ -16230,21 +16198,21 @@ x_6 = lean_unbox_usize(x_3); lean_dec(x_3); x_7 = lean_unbox_usize(x_4); lean_dec(x_4); -x_8 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__3(x_1, x_2, x_6, x_7, x_5); +x_8 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__3(x_1, x_2, x_6, x_7, x_5); lean_dec(x_2); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__1(x_1, x_2, x_3); +x_4 = l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__1(x_1, x_2, x_3); lean_dec(x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { size_t x_6; size_t x_7; lean_object* x_8; @@ -16252,12 +16220,12 @@ x_6 = lean_unbox_usize(x_3); lean_dec(x_3); x_7 = lean_unbox_usize(x_4); lean_dec(x_4); -x_8 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__6(x_1, x_2, x_6, x_7, x_5); +x_8 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__6(x_1, x_2, x_6, x_7, x_5); lean_dec(x_2); return x_8; } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { size_t x_6; size_t x_7; lean_object* x_8; @@ -16265,21 +16233,21 @@ x_6 = lean_unbox_usize(x_3); lean_dec(x_3); x_7 = lean_unbox_usize(x_4); lean_dec(x_4); -x_8 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__7(x_1, x_2, x_6, x_7, x_5); +x_8 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__7(x_1, x_2, x_6, x_7, x_5); lean_dec(x_2); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__5(x_1, x_2, x_3); +x_4 = l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__5(x_1, x_2, x_3); lean_dec(x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { size_t x_5; size_t x_6; lean_object* x_7; @@ -16287,12 +16255,12 @@ x_5 = lean_unbox_usize(x_2); lean_dec(x_2); x_6 = lean_unbox_usize(x_3); lean_dec(x_3); -x_7 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__8(x_1, x_5, x_6, x_4); +x_7 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__8(x_1, x_5, x_6, x_4); lean_dec(x_1); return x_7; } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { size_t x_6; size_t x_7; lean_object* x_8; @@ -16300,12 +16268,12 @@ x_6 = lean_unbox_usize(x_3); lean_dec(x_3); x_7 = lean_unbox_usize(x_4); lean_dec(x_4); -x_8 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__10(x_1, x_2, x_6, x_7, x_5); +x_8 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__10(x_1, x_2, x_6, x_7, x_5); lean_dec(x_2); return x_8; } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { size_t x_6; size_t x_7; lean_object* x_8; @@ -16313,25 +16281,25 @@ x_6 = lean_unbox_usize(x_3); lean_dec(x_3); x_7 = lean_unbox_usize(x_4); lean_dec(x_4); -x_8 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__11(x_1, x_2, x_6, x_7, x_5); +x_8 = l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__11(x_1, x_2, x_6, x_7, x_5); lean_dec(x_2); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6569____spec__9(x_1, x_2, x_3); +x_4 = l_Lean_mkStateFromImportedEntries___at_Lean_initFn____x40_Lean_Environment___hyg_6597____spec__9(x_1, x_2, x_3); lean_dec(x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2(x_1); +x_2 = l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2(x_1); lean_dec(x_1); return x_2; } @@ -16356,7 +16324,7 @@ x_1 = l_Lean_Kernel_instInhabitedDiagnostics___closed__1; return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Environment___hyg_6696____closed__1() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Environment___hyg_6724____closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -16366,11 +16334,11 @@ lean_closure_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6696_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Environment___hyg_6724_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_initFn____x40_Lean_Environment___hyg_6696____closed__1; +x_2 = l_Lean_initFn____x40_Lean_Environment___hyg_6724____closed__1; x_3 = l_Lean_EnvExtensionInterfaceUnsafe_registerExt___rarg(x_2, x_1); return x_3; } @@ -19481,25 +19449,25 @@ l_Lean_importModules___closed__1 = _init_l_Lean_importModules___closed__1(); lean_mark_persistent(l_Lean_importModules___closed__1); l_Lean_importModules___boxed__const__1 = _init_l_Lean_importModules___boxed__const__1(); lean_mark_persistent(l_Lean_importModules___boxed__const__1); -l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2___closed__1 = _init_l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2___closed__1(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2___closed__1); -l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2___closed__2 = _init_l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2___closed__2(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2___closed__2); -l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2___closed__3 = _init_l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2___closed__3(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Environment___hyg_6569____lambda__2___closed__3); -l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__1 = _init_l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__1(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__1); -l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__2 = _init_l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__2(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__2); -l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__3 = _init_l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__3(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__3); -l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__4 = _init_l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__4(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__4); -l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__5 = _init_l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__5(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__5); -l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__6 = _init_l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__6(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Environment___hyg_6569____closed__6); -if (builtin) {res = l_Lean_initFn____x40_Lean_Environment___hyg_6569_(lean_io_mk_world()); +l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2___closed__1 = _init_l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2___closed__1(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2___closed__1); +l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2___closed__2 = _init_l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2___closed__2(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2___closed__2); +l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2___closed__3 = _init_l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2___closed__3(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Environment___hyg_6597____lambda__2___closed__3); +l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__1 = _init_l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__1(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__1); +l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__2 = _init_l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__2(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__2); +l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__3 = _init_l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__3(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__3); +l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__4 = _init_l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__4(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__4); +l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__5 = _init_l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__5(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__5); +l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__6 = _init_l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__6(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Environment___hyg_6597____closed__6); +if (builtin) {res = l_Lean_initFn____x40_Lean_Environment___hyg_6597_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_namespacesExt = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_namespacesExt); @@ -19508,9 +19476,9 @@ lean_dec_ref(res); lean_mark_persistent(l_Lean_Kernel_instInhabitedDiagnostics___closed__1); l_Lean_Kernel_instInhabitedDiagnostics = _init_l_Lean_Kernel_instInhabitedDiagnostics(); lean_mark_persistent(l_Lean_Kernel_instInhabitedDiagnostics); -l_Lean_initFn____x40_Lean_Environment___hyg_6696____closed__1 = _init_l_Lean_initFn____x40_Lean_Environment___hyg_6696____closed__1(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Environment___hyg_6696____closed__1); -if (builtin) {res = l_Lean_initFn____x40_Lean_Environment___hyg_6696_(lean_io_mk_world()); +l_Lean_initFn____x40_Lean_Environment___hyg_6724____closed__1 = _init_l_Lean_initFn____x40_Lean_Environment___hyg_6724____closed__1(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Environment___hyg_6724____closed__1); +if (builtin) {res = l_Lean_initFn____x40_Lean_Environment___hyg_6724_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_diagExt = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_diagExt); diff --git a/stage0/stdlib/Lean/Expr.c b/stage0/stdlib/Lean/Expr.c index a33e9b96a7..a07cae0d3e 100644 --- a/stage0/stdlib/Lean/Expr.c +++ b/stage0/stdlib/Lean/Expr.c @@ -479,6 +479,7 @@ LEAN_EXPORT lean_object* l_Lean_Expr_instToString; LEAN_EXPORT uint8_t lean_expr_has_level_mvar(lean_object*); static lean_object* l_Lean_Nat_mkInstHMod___closed__4; LEAN_EXPORT lean_object* l_Lean_Expr_projIdx_x21(lean_object*); +extern uint64_t l_instInhabitedUInt64; lean_object* lean_expr_instantiate(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Expr_isMVar(lean_object*); static lean_object* l_Lean_Nat_mkInstAdd___closed__1; @@ -967,7 +968,6 @@ LEAN_EXPORT lean_object* l_Lean_mkEM(lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_isSemiOutParam___boxed(lean_object*); LEAN_EXPORT uint8_t l_Lean_Expr_isTrue(lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_hasMVar___boxed(lean_object*); -extern uint64_t l_UInt64_instInhabited; LEAN_EXPORT lean_object* l_Lean_mkApp(lean_object*, lean_object*); lean_object* l_Std_HashSet_instEmptyCollection(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_ins___at_Lean_MVarIdSet_insert___spec__2(lean_object*, lean_object*, lean_object*); @@ -2404,7 +2404,7 @@ static uint64_t _init_l_Lean_instInhabitedData__1() { _start: { uint64_t x_1; -x_1 = l_UInt64_instInhabited; +x_1 = l_instInhabitedUInt64; return x_1; } } @@ -28848,7 +28848,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Expr_mkData___closed__5; x_2 = l___private_Lean_Expr_0__Lean_Expr_updateApp_x21Impl___closed__1; -x_3 = lean_unsigned_to_nat(1686u); +x_3 = lean_unsigned_to_nat(1690u); x_4 = lean_unsigned_to_nat(18u); x_5 = l_Lean_Expr_appFn_x21___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -28927,7 +28927,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Expr_mkData___closed__5; x_2 = l_Lean_Expr_updateFVar_x21___closed__1; -x_3 = lean_unsigned_to_nat(1697u); +x_3 = lean_unsigned_to_nat(1701u); x_4 = lean_unsigned_to_nat(20u); x_5 = l_Lean_Expr_fvarId_x21___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -28988,7 +28988,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Expr_mkData___closed__5; x_2 = l___private_Lean_Expr_0__Lean_Expr_updateConst_x21Impl___closed__1; -x_3 = lean_unsigned_to_nat(1702u); +x_3 = lean_unsigned_to_nat(1706u); x_4 = lean_unsigned_to_nat(18u); x_5 = l_Lean_Expr_constName_x21___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -29054,7 +29054,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Expr_mkData___closed__5; x_2 = l___private_Lean_Expr_0__Lean_Expr_updateSort_x21Impl___closed__1; -x_3 = lean_unsigned_to_nat(1713u); +x_3 = lean_unsigned_to_nat(1717u); x_4 = lean_unsigned_to_nat(14u); x_5 = l___private_Lean_Expr_0__Lean_Expr_updateSort_x21Impl___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -29125,7 +29125,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Expr_mkData___closed__5; x_2 = l___private_Lean_Expr_0__Lean_Expr_updateMData_x21Impl___closed__1; -x_3 = lean_unsigned_to_nat(1724u); +x_3 = lean_unsigned_to_nat(1728u); x_4 = lean_unsigned_to_nat(17u); x_5 = l___private_Lean_Expr_0__Lean_Expr_updateMData_x21Impl___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -29193,7 +29193,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Expr_mkData___closed__5; x_2 = l___private_Lean_Expr_0__Lean_Expr_updateProj_x21Impl___closed__1; -x_3 = lean_unsigned_to_nat(1735u); +x_3 = lean_unsigned_to_nat(1739u); x_4 = lean_unsigned_to_nat(18u); x_5 = l___private_Lean_Expr_0__Lean_Expr_updateProj_x21Impl___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -29264,7 +29264,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Expr_mkData___closed__5; x_2 = l___private_Lean_Expr_0__Lean_Expr_updateForall_x21Impl___closed__1; -x_3 = lean_unsigned_to_nat(1750u); +x_3 = lean_unsigned_to_nat(1754u); x_4 = lean_unsigned_to_nat(23u); x_5 = l___private_Lean_Expr_0__Lean_Expr_updateForall_x21Impl___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -29367,7 +29367,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Expr_mkData___closed__5; x_2 = l_Lean_Expr_updateForallE_x21___closed__1; -x_3 = lean_unsigned_to_nat(1761u); +x_3 = lean_unsigned_to_nat(1765u); x_4 = lean_unsigned_to_nat(24u); x_5 = l___private_Lean_Expr_0__Lean_Expr_updateForall_x21Impl___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -29473,7 +29473,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Expr_mkData___closed__5; x_2 = l___private_Lean_Expr_0__Lean_Expr_updateLambda_x21Impl___closed__1; -x_3 = lean_unsigned_to_nat(1770u); +x_3 = lean_unsigned_to_nat(1774u); x_4 = lean_unsigned_to_nat(19u); x_5 = l___private_Lean_Expr_0__Lean_Expr_updateLambda_x21Impl___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -29576,7 +29576,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Expr_mkData___closed__5; x_2 = l_Lean_Expr_updateLambdaE_x21___closed__1; -x_3 = lean_unsigned_to_nat(1781u); +x_3 = lean_unsigned_to_nat(1785u); x_4 = lean_unsigned_to_nat(20u); x_5 = l___private_Lean_Expr_0__Lean_Expr_updateLambda_x21Impl___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -29674,7 +29674,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Expr_mkData___closed__5; x_2 = l___private_Lean_Expr_0__Lean_Expr_updateLet_x21Impl___closed__1; -x_3 = lean_unsigned_to_nat(1790u); +x_3 = lean_unsigned_to_nat(1794u); x_4 = lean_unsigned_to_nat(22u); x_5 = l_Lean_Expr_letName_x21___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); diff --git a/stage0/stdlib/Lean/Language/Basic.c b/stage0/stdlib/Lean/Language/Basic.c index c6f9bcb790..53bf2f7de0 100644 --- a/stage0/stdlib/Lean/Language/Basic.c +++ b/stage0/stdlib/Lean/Language/Basic.c @@ -35,7 +35,7 @@ static lean_object* l_Lean_Language_diagnosticsOfHeaderError___closed__2; LEAN_EXPORT lean_object* l_Lean_PersistentArray_forM___at_Lean_Language_reportMessages___spec__2(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Language_withAlwaysResolvedPromises___spec__1___rarg___lambda__1(size_t, lean_object*, lean_object*, lean_object*, size_t, lean_object*); lean_object* l_Lean_FileMap_toPosition(lean_object*, lean_object*); -static lean_object* l_Lean_Language_instInhabitedSnapshot___closed__1; +static uint64_t l_Lean_Language_instInhabitedSnapshot___closed__1; LEAN_EXPORT lean_object* l_Lean_Language_reportMessages___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* lean_io_as_task(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_toString(lean_object*, uint8_t, lean_object*); @@ -73,6 +73,7 @@ LEAN_EXPORT lean_object* l_Lean_Language_SnapshotTree_getAll(lean_object*); LEAN_EXPORT lean_object* l_Lean_Language_SnapshotTree_forM___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Language_reportMessages___lambda__1___closed__1; LEAN_EXPORT uint8_t l_Lean_Language_instInhabitedDynamicSnapshot___lambda__1(lean_object*); +static lean_object* l_Lean_Language_instInhabitedSnapshot___closed__4; lean_object* lean_string_utf8_byte_size(lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Language_withAlwaysResolvedPromises___spec__2___rarg___lambda__2(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Language_withHeaderExceptions___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -96,6 +97,7 @@ static lean_object* l_Lean_Language_instInhabitedSnapshotTree___closed__1; static lean_object* l_Lean_Language_diagnosticsOfHeaderError___closed__1; static lean_object* l_Lean_Language_instInhabitedDynamicSnapshot___closed__8; LEAN_EXPORT lean_object* l_Lean_Language_SnapshotTree_waitAll(lean_object*, lean_object*); +uint64_t lean_uint64_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_Language_DynamicSnapshot_ofTyped___rarg___lambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Language_SnapshotTask_pure(lean_object*); static lean_object* l___auto____x40_Lean_Language_Basic___hyg_62____closed__21; @@ -814,11 +816,20 @@ x_1 = l___auto____x40_Lean_Language_Basic___hyg_62____closed__41; return x_1; } } -static lean_object* _init_l_Lean_Language_instInhabitedSnapshot___closed__1() { +static uint64_t _init_l_Lean_Language_instInhabitedSnapshot___closed__1() { +_start: +{ +lean_object* x_1; uint64_t x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_uint64_of_nat(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Language_instInhabitedSnapshot___closed__2() { _start: { uint64_t x_1; lean_object* x_2; lean_object* x_3; -x_1 = 0; +x_1 = l_Lean_Language_instInhabitedSnapshot___closed__1; x_2 = l_Lean_Language_Snapshot_instInhabitedDiagnostics___closed__4; x_3 = lean_alloc_ctor(0, 1, 8); lean_ctor_set(x_3, 0, x_2); @@ -826,7 +837,7 @@ lean_ctor_set_uint64(x_3, sizeof(void*)*1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Language_instInhabitedSnapshot___closed__2() { +static lean_object* _init_l_Lean_Language_instInhabitedSnapshot___closed__3() { _start: { lean_object* x_1; @@ -834,14 +845,14 @@ x_1 = lean_mk_string_unchecked("", 0, 0); return x_1; } } -static lean_object* _init_l_Lean_Language_instInhabitedSnapshot___closed__3() { +static lean_object* _init_l_Lean_Language_instInhabitedSnapshot___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; lean_object* x_6; x_1 = lean_box(0); -x_2 = l_Lean_Language_instInhabitedSnapshot___closed__2; +x_2 = l_Lean_Language_instInhabitedSnapshot___closed__3; x_3 = l_Lean_Language_Snapshot_instInhabitedDiagnostics___closed__6; -x_4 = l_Lean_Language_instInhabitedSnapshot___closed__1; +x_4 = l_Lean_Language_instInhabitedSnapshot___closed__2; x_5 = 0; x_6 = lean_alloc_ctor(0, 4, 1); lean_ctor_set(x_6, 0, x_2); @@ -856,7 +867,7 @@ static lean_object* _init_l_Lean_Language_instInhabitedSnapshot() { _start: { lean_object* x_1; -x_1 = l_Lean_Language_instInhabitedSnapshot___closed__3; +x_1 = l_Lean_Language_instInhabitedSnapshot___closed__4; return x_1; } } @@ -1808,7 +1819,7 @@ static lean_object* _init_l_Lean_Language_instInhabitedSnapshotTree___closed__1( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Language_instInhabitedSnapshot___closed__3; +x_1 = l_Lean_Language_instInhabitedSnapshot___closed__4; x_2 = l_Lean_Language_Snapshot_instInhabitedDiagnostics___closed__1; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -2320,7 +2331,7 @@ _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = 0; -x_2 = l_Lean_Language_instInhabitedSnapshot___closed__2; +x_2 = l_Lean_Language_instInhabitedSnapshot___closed__3; x_3 = l_Lean_Language_initFn____x40_Lean_Language_Basic___hyg_1192____closed__3; x_4 = lean_box(x_1); x_5 = lean_alloc_ctor(0, 3, 0); @@ -3669,7 +3680,7 @@ x_11 = l_Lean_Language_diagnosticsOfHeaderError___closed__2; x_12 = l_Lean_Language_diagnosticsOfHeaderError___closed__1; x_13 = 0; x_14 = 2; -x_15 = l_Lean_Language_instInhabitedSnapshot___closed__2; +x_15 = l_Lean_Language_instInhabitedSnapshot___closed__3; x_16 = lean_alloc_ctor(0, 5, 2); lean_ctor_set(x_16, 0, x_11); lean_ctor_set(x_16, 1, x_12); @@ -4164,11 +4175,12 @@ lean_mark_persistent(l___auto____x40_Lean_Language_Basic___hyg_62____closed__41) l___auto____x40_Lean_Language_Basic___hyg_62_ = _init_l___auto____x40_Lean_Language_Basic___hyg_62_(); lean_mark_persistent(l___auto____x40_Lean_Language_Basic___hyg_62_); l_Lean_Language_instInhabitedSnapshot___closed__1 = _init_l_Lean_Language_instInhabitedSnapshot___closed__1(); -lean_mark_persistent(l_Lean_Language_instInhabitedSnapshot___closed__1); l_Lean_Language_instInhabitedSnapshot___closed__2 = _init_l_Lean_Language_instInhabitedSnapshot___closed__2(); lean_mark_persistent(l_Lean_Language_instInhabitedSnapshot___closed__2); l_Lean_Language_instInhabitedSnapshot___closed__3 = _init_l_Lean_Language_instInhabitedSnapshot___closed__3(); lean_mark_persistent(l_Lean_Language_instInhabitedSnapshot___closed__3); +l_Lean_Language_instInhabitedSnapshot___closed__4 = _init_l_Lean_Language_instInhabitedSnapshot___closed__4(); +lean_mark_persistent(l_Lean_Language_instInhabitedSnapshot___closed__4); l_Lean_Language_instInhabitedSnapshot = _init_l_Lean_Language_instInhabitedSnapshot(); lean_mark_persistent(l_Lean_Language_instInhabitedSnapshot); l_Lean_Language_withAlwaysResolvedPromise___rarg___lambda__3___closed__1 = _init_l_Lean_Language_withAlwaysResolvedPromise___rarg___lambda__3___closed__1(); diff --git a/stage0/stdlib/Lean/Language/Lean.c b/stage0/stdlib/Lean/Language/Lean.c index 094c2caece..42823bb1c8 100644 --- a/stage0/stdlib/Lean/Language/Lean.c +++ b/stage0/stdlib/Lean/Language/Lean.c @@ -17,14 +17,13 @@ static lean_object* l_Lean_Language_Lean_process_parseCmd___lambda__7___closed__ LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_processHeader___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Language_Lean_process(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_profileit(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_processHeader___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_processHeader___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Core_getMaxHeartbeats(lean_object*); static lean_object* l_Lean_Language_Lean_process_parseCmd___lambda__7___closed__6; LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_processHeader___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Language_Lean_process_parseCmd___lambda__7___closed__5; lean_object* lean_mk_empty_array_with_capacity(lean_object*); static lean_object* l_Lean_Language_Lean_process_parseHeader___lambda__3___closed__3; -static lean_object* l_Lean_Language_Lean_process_doElab___lambda__3___closed__1; static lean_object* l_List_forIn_x27_loop___at_Lean_Language_Lean_reparseOptions___spec__1___lambda__1___closed__11; LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_Language_Lean_process_parseCmd___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__19; @@ -111,8 +110,6 @@ uint8_t lean_string_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_parseCmd___lambda__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_parseCmd___lambda__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_forIn_x27_loop___at_Lean_Language_Lean_reparseOptions___spec__1___lambda__1___closed__6; -LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_doElab_unsafe__1(lean_object*); -static lean_object* l_Lean_Language_Lean_process_doElab___lambda__3___closed__2; lean_object* lean_string_utf8_byte_size(lean_object*); static lean_object* l_List_forIn_x27_loop___at_Lean_Language_Lean_reparseOptions___spec__1___lambda__1___closed__12; static lean_object* l_Lean_Language_Lean_initFn____x40_Lean_Language_Lean___hyg_402____closed__7; @@ -129,7 +126,6 @@ static lean_object* l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHea static lean_object* l_Lean_Language_Lean_process_processHeader___lambda__4___closed__5; static lean_object* l_List_forIn_x27_loop___at_Lean_Language_Lean_reparseOptions___spec__1___lambda__1___closed__3; LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at_Lean_Language_Lean_reparseOptions___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Language_Lean_process_doElab___lambda__3___closed__3; LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_parseHeader___lambda__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_promise_resolve(lean_object*, lean_object*, lean_object*); lean_object* l_IO_Promise_new___boxed(lean_object*, lean_object*, lean_object*); @@ -146,13 +142,16 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Language_Lean_pr LEAN_EXPORT lean_object* l_Lean_Language_Lean_processCommands(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__7; static lean_object* l_Lean_Language_Lean_process_parseCmd___lambda__16___closed__1; -static lean_object* l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__9; +static uint64_t l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__9; static lean_object* l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__5; static lean_object* l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__12; lean_object* l_Lean_Language_SnapshotTree_waitAll(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_parseHeader___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint64_t lean_uint64_of_nat(lean_object*); +static lean_object* l_Lean_Language_Lean_process_doElab___lambda__4___closed__8; +static lean_object* l_Lean_Language_Lean_process_doElab___lambda__4___closed__6; extern lean_object* l_ByteArray_empty; -LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_processHeader___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint64_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_processHeader___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_toPArray_x27___rarg(lean_object*); lean_object* l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_parseCmd___lambda__15(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -171,9 +170,8 @@ lean_object* l_Lean_Elab_getResetInfoTrees___at___private_Lean_Elab_Command_0__L LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_doElab___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_outOfBounds___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Language_Lean_instMonadLiftProcessingTLeanProcessingT(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_doElab___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_doElab___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Language_Lean_HeaderParsedSnapshot_processedResult(lean_object*); -extern lean_object* l_Lean_Elab_async; static lean_object* l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__16; lean_object* l_String_firstDiffPos(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_doElab___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -206,7 +204,7 @@ extern lean_object* l_Task_Priority_default; LEAN_EXPORT lean_object* l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___lambda__1___boxed(lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_doElab___lambda__3(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_doElab___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_IO_FS_Stream_ofBuffer(lean_object*); static lean_object* l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__12; LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_parseCmd___lambda__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); @@ -232,16 +230,17 @@ LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_parseHeader___lambda__2(le lean_object* lean_string_from_utf8_unchecked(lean_object*); static lean_object* l_Lean_Language_Lean_process_processHeader___lambda__4___closed__3; LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_processHeader___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, double, double, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__14; static lean_object* l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__3; static lean_object* l_Lean_Language_Lean_initFn____x40_Lean_Language_Lean___hyg_402____closed__3; static lean_object* l_Lean_Language_Lean_process_processHeader___lambda__4___closed__4; static lean_object* l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__9; lean_object* l_Array_append___rarg(lean_object*, lean_object*); lean_object* l_Lean_Option_register___at_Lean_Elab_initFn____x40_Lean_Elab_AutoBound___hyg_6____spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_doElab___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_doElab___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_parseCmd___lambda__14(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Language_Lean_process_parseCmd___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_doElab___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_doElab___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); double l_Float_ofScientific(lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_parseCmd___lambda__3___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_parseCmd___lambda__12(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -256,6 +255,7 @@ LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_Language_Lean static lean_object* l_Lean_Language_Lean_process_doElab___closed__1; LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at_Lean_Language_Lean_reparseOptions___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_Language_Lean_process_parseCmd___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Language_Lean_process_doElab___lambda__4___closed__7; extern lean_object* l_Lean_NameSet_empty; LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_parseHeader___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Language_Lean_process_parseCmd___lambda__7___closed__4; @@ -307,7 +307,6 @@ static lean_object* l_IO_FS_withIsolatedStreams___at_Lean_Language_Lean_process_ extern lean_object* l_Lean_Core_stderrAsMessages; extern lean_object* l_Lean_Elab_Command_instInhabitedScope; lean_object* lean_array_mk(lean_object*); -static lean_object* l_Lean_Language_Lean_process_doElab___lambda__3___closed__4; static lean_object* l_Lean_Language_Lean_process_parseCmd___lambda__7___closed__9; lean_object* l_Lean_PersistentArray_get_x21___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Language_Lean_process_parseCmd___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -327,7 +326,6 @@ lean_object* l_Lean_Language_SnapshotTree_trace(lean_object*, lean_object*, lean lean_object* lean_io_error_to_string(lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); static lean_object* l_IO_FS_withIsolatedStreams___at_Lean_Language_Lean_process_doElab___spec__1___closed__3; -LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_doElab_unsafe__2(lean_object*); lean_object* l_Lean_Syntax_unsetTrailing(lean_object*); static size_t l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__5; LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_parseHeader___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -347,9 +345,9 @@ lean_object* l_Lean_RBNode_find___at_Lean_NameMap_find_x3f___spec__1___rarg(lean static lean_object* l_List_forIn_x27_loop___at_Lean_Language_Lean_reparseOptions___spec__1___lambda__1___closed__1; lean_object* l_Lean_Option_get_x3f___at_Lean_addTraceAsMessages___spec__17(lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* lean_runtime_mark_persistent(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_Language_Lean_process_parseCmd___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_EStateM_bind___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Language_Lean_process_processHeader___lambda__4___closed__7; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Language_Lean_process_parseCmd___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_parseCmd___lambda__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Language_Lean_process_parseCmd___lambda__6___closed__1; @@ -998,7 +996,7 @@ static lean_object* _init_l_Lean_Language_Lean_initFn____x40_Lean_Language_Lean_ _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("mark persistent and reduce information stored in snapshots to the minimum necessary for the cmdline driver: diagnostics per command and final full snapshot", 155, 155); +x_1 = lean_mk_string_unchecked("reduce information stored in snapshots to the minimum necessary for the cmdline driver: diagnostics per command and final full snapshot", 135, 135); return x_1; } } @@ -1848,25 +1846,6 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_doElab_unsafe__1(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_runtime_mark_persistent(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_doElab_unsafe__2(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -lean_dec(x_1); -x_3 = lean_runtime_mark_persistent(x_2); -return x_3; -} -} LEAN_EXPORT lean_object* l_IO_withStdout___at_Lean_Language_Lean_process_doElab___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { @@ -2836,258 +2815,105 @@ return x_19; } } } -static lean_object* _init_l_Lean_Language_Lean_process_doElab___lambda__3___closed__1() { +LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_doElab___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_firstFrontendMacroScope; -x_2 = lean_unsigned_to_nat(1u); -x_3 = lean_nat_add(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Language_Lean_process_doElab___lambda__3___closed__2() { -_start: +lean_object* x_11; +x_11 = l_Lean_Language_Snapshot_Diagnostics_ofMessageLog(x_1, x_10); +if (lean_obj_tag(x_11) == 0) { -lean_object* x_1; -x_1 = lean_mk_string_unchecked("_uniq", 5, 5); -return x_1; -} -} -static lean_object* _init_l_Lean_Language_Lean_process_doElab___lambda__3___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Language_Lean_process_doElab___lambda__3___closed__2; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Language_Lean_process_doElab___lambda__3___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Language_Lean_process_doElab___lambda__3___closed__3; -x_2 = lean_unsigned_to_nat(1u); -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_doElab___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { -_start: -{ -lean_object* x_16; -x_16 = l_Lean_Language_Snapshot_Diagnostics_ofMessageLog(x_1, x_15); -if (lean_obj_tag(x_16) == 0) -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; lean_object* x_21; -x_17 = lean_ctor_get(x_16, 0); -lean_inc(x_17); -x_18 = lean_ctor_get(x_16, 1); -lean_inc(x_18); -lean_dec(x_16); -x_19 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_19, 0, x_12); -x_20 = 0; -x_21 = lean_alloc_ctor(0, 4, 1); -lean_ctor_set(x_21, 0, x_2); -lean_ctor_set(x_21, 1, x_17); -lean_ctor_set(x_21, 2, x_19); -lean_ctor_set(x_21, 3, x_3); -lean_ctor_set_uint8(x_21, sizeof(void*)*4, x_20); -if (x_4 == 0) -{ -lean_object* x_22; lean_object* x_23; +lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_inc(x_5); +x_14 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_14, 0, x_2); +x_15 = 0; +x_16 = lean_alloc_ctor(0, 4, 1); +lean_ctor_set(x_16, 0, x_3); +lean_ctor_set(x_16, 1, x_12); +lean_ctor_set(x_16, 2, x_14); +lean_ctor_set(x_16, 3, x_4); +lean_ctor_set_uint8(x_16, sizeof(void*)*4, x_15); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_7); +x_18 = lean_io_promise_resolve(x_17, x_5, x_13); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_18); +if (x_19 == 0) +{ +lean_object* x_20; +x_20 = lean_ctor_get(x_18, 0); +lean_dec(x_20); +lean_ctor_set(x_18, 0, x_6); +return x_18; +} +else +{ +lean_object* x_21; lean_object* x_22; +x_21 = lean_ctor_get(x_18, 1); +lean_inc(x_21); +lean_dec(x_18); x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_5); -x_23 = lean_io_promise_resolve(x_22, x_6, x_18); -if (lean_obj_tag(x_23) == 0) -{ -uint8_t x_24; -x_24 = !lean_is_exclusive(x_23); -if (x_24 == 0) -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_23, 0); -lean_dec(x_25); -lean_ctor_set(x_23, 0, x_5); -return x_23; -} -else -{ -lean_object* x_26; lean_object* x_27; -x_26 = lean_ctor_get(x_23, 1); -lean_inc(x_26); -lean_dec(x_23); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_5); -lean_ctor_set(x_27, 1, x_26); -return x_27; +lean_ctor_set(x_22, 0, x_6); +lean_ctor_set(x_22, 1, x_21); +return x_22; } } else { -uint8_t x_28; -lean_dec(x_5); -x_28 = !lean_is_exclusive(x_23); -if (x_28 == 0) +uint8_t x_23; +lean_dec(x_6); +x_23 = !lean_is_exclusive(x_18); +if (x_23 == 0) { -return x_23; +return x_18; } else { -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_23, 0); -x_30 = lean_ctor_get(x_23, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_23); -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_29); -lean_ctor_set(x_31, 1, x_30); -return x_31; +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_18, 0); +x_25 = lean_ctor_get(x_18, 1); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_18); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; } } } else { -lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; -lean_inc(x_5); -x_32 = l_Lean_Language_Lean_process_doElab_unsafe__2(x_5); -x_33 = l_Lean_NameSet_empty; -lean_inc(x_7); -x_34 = lean_alloc_ctor(0, 2, 1); -lean_ctor_set(x_34, 0, x_7); -lean_ctor_set(x_34, 1, x_33); -lean_ctor_set_uint8(x_34, sizeof(void*)*2, x_20); -x_35 = l_Lean_Language_Lean_initFn____x40_Lean_Language_Lean___hyg_402____closed__4; -x_36 = lean_box(0); -lean_inc_n(x_9, 2); -lean_inc_n(x_8, 5); -x_37 = lean_alloc_ctor(0, 9, 1); -lean_ctor_set(x_37, 0, x_35); -lean_ctor_set(x_37, 1, x_8); -lean_ctor_set(x_37, 2, x_36); -lean_ctor_set(x_37, 3, x_8); -lean_ctor_set(x_37, 4, x_8); -lean_ctor_set(x_37, 5, x_9); -lean_ctor_set(x_37, 6, x_9); -lean_ctor_set(x_37, 7, x_8); -lean_ctor_set(x_37, 8, x_8); -lean_ctor_set_uint8(x_37, sizeof(void*)*9, x_20); -x_38 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_38, 1, x_8); -x_39 = 1; -x_40 = lean_alloc_ctor(0, 2, 1); -lean_ctor_set(x_40, 0, x_10); -lean_ctor_set(x_40, 1, x_7); -lean_ctor_set_uint8(x_40, sizeof(void*)*2, x_39); -x_41 = l_Lean_Language_Lean_process_doElab___lambda__3___closed__1; -x_42 = lean_unsigned_to_nat(0u); -x_43 = l_Lean_Language_Lean_process_doElab___lambda__3___closed__4; -x_44 = lean_alloc_ctor(0, 9, 0); -lean_ctor_set(x_44, 0, x_32); -lean_ctor_set(x_44, 1, x_34); -lean_ctor_set(x_44, 2, x_38); -lean_ctor_set(x_44, 3, x_41); -lean_ctor_set(x_44, 4, x_42); -lean_ctor_set(x_44, 5, x_43); -lean_ctor_set(x_44, 6, x_40); -lean_ctor_set(x_44, 7, x_11); -lean_ctor_set(x_44, 8, x_9); -x_45 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_45, 0, x_21); -lean_ctor_set(x_45, 1, x_44); -x_46 = lean_io_promise_resolve(x_45, x_6, x_18); -if (lean_obj_tag(x_46) == 0) -{ -uint8_t x_47; -x_47 = !lean_is_exclusive(x_46); -if (x_47 == 0) -{ -lean_object* x_48; -x_48 = lean_ctor_get(x_46, 0); -lean_dec(x_48); -lean_ctor_set(x_46, 0, x_5); -return x_46; -} -else -{ -lean_object* x_49; lean_object* x_50; -x_49 = lean_ctor_get(x_46, 1); -lean_inc(x_49); -lean_dec(x_46); -x_50 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_50, 0, x_5); -lean_ctor_set(x_50, 1, x_49); -return x_50; -} -} -else -{ -uint8_t x_51; -lean_dec(x_5); -x_51 = !lean_is_exclusive(x_46); -if (x_51 == 0) -{ -return x_46; -} -else -{ -lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_52 = lean_ctor_get(x_46, 0); -x_53 = lean_ctor_get(x_46, 1); -lean_inc(x_53); -lean_inc(x_52); -lean_dec(x_46); -x_54 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_54, 0, x_52); -lean_ctor_set(x_54, 1, x_53); -return x_54; -} -} -} -} -else -{ -uint8_t x_55; -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); +uint8_t x_27; lean_dec(x_7); -lean_dec(x_5); +lean_dec(x_6); +lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_55 = !lean_is_exclusive(x_16); -if (x_55 == 0) +x_27 = !lean_is_exclusive(x_11); +if (x_27 == 0) { -return x_16; +return x_11; } else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_56 = lean_ctor_get(x_16, 0); -x_57 = lean_ctor_get(x_16, 1); -lean_inc(x_57); -lean_inc(x_56); -lean_dec(x_16); -x_58 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_58, 0, x_56); -lean_ctor_set(x_58, 1, x_57); -return x_58; +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_11, 0); +x_29 = lean_ctor_get(x_11, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_11); +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +return x_30; } } } @@ -3134,180 +2960,242 @@ return x_4; static lean_object* _init_l_Lean_Language_Lean_process_doElab___lambda__4___closed__5() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_firstFrontendMacroScope; +x_2 = lean_unsigned_to_nat(1u); +x_3 = lean_nat_add(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Language_Lean_process_doElab___lambda__4___closed__6() { +_start: +{ lean_object* x_1; -x_1 = l_Lean_Elab_async; +x_1 = lean_mk_string_unchecked("_uniq", 5, 5); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_doElab___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, uint8_t x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +static lean_object* _init_l_Lean_Language_Lean_process_doElab___lambda__4___closed__7() { _start: { -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; -x_16 = lean_ctor_get(x_1, 0); +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Language_Lean_process_doElab___lambda__4___closed__6; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Language_Lean_process_doElab___lambda__4___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Language_Lean_process_doElab___lambda__4___closed__7; +x_2 = lean_unsigned_to_nat(1u); +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_doElab___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_15 = lean_ctor_get(x_1, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_1, 2); lean_inc(x_16); -x_17 = lean_ctor_get(x_1, 2); +x_17 = lean_ctor_get(x_1, 3); lean_inc(x_17); -x_18 = lean_ctor_get(x_1, 3); +x_18 = lean_ctor_get(x_1, 4); lean_inc(x_18); -x_19 = lean_ctor_get(x_1, 4); +x_19 = lean_ctor_get(x_1, 5); lean_inc(x_19); -x_20 = lean_ctor_get(x_1, 5); +x_20 = lean_ctor_get(x_1, 6); lean_inc(x_20); -x_21 = lean_ctor_get(x_1, 6); +x_21 = lean_ctor_get(x_1, 7); lean_inc(x_21); -x_22 = lean_ctor_get(x_1, 7); +x_22 = lean_ctor_get(x_1, 8); lean_inc(x_22); -x_23 = lean_ctor_get(x_1, 8); -lean_inc(x_23); lean_dec(x_1); -lean_inc(x_22); lean_inc(x_21); -lean_inc(x_12); -x_24 = lean_alloc_ctor(0, 9, 0); -lean_ctor_set(x_24, 0, x_16); -lean_ctor_set(x_24, 1, x_12); -lean_ctor_set(x_24, 2, x_17); -lean_ctor_set(x_24, 3, x_18); -lean_ctor_set(x_24, 4, x_19); -lean_ctor_set(x_24, 5, x_20); -lean_ctor_set(x_24, 6, x_21); -lean_ctor_set(x_24, 7, x_22); -lean_ctor_set(x_24, 8, x_23); -x_25 = lean_box(0); -x_26 = l_Lean_Language_Lean_process_doElab___lambda__4___closed__4; -x_27 = l_Lean_Language_Snapshot_Diagnostics_empty; -x_28 = 0; +lean_inc(x_20); +lean_inc(x_11); +lean_inc(x_15); +x_23 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_23, 0, x_15); +lean_ctor_set(x_23, 1, x_11); +lean_ctor_set(x_23, 2, x_16); +lean_ctor_set(x_23, 3, x_17); +lean_ctor_set(x_23, 4, x_18); +lean_ctor_set(x_23, 5, x_19); +lean_ctor_set(x_23, 6, x_20); +lean_ctor_set(x_23, 7, x_21); +lean_ctor_set(x_23, 8, x_22); +x_24 = lean_box(0); +x_25 = l_Lean_Language_Lean_process_doElab___lambda__4___closed__4; +x_26 = l_Lean_Language_Snapshot_Diagnostics_empty; +x_27 = 0; lean_inc(x_2); -x_29 = lean_alloc_ctor(0, 4, 1); -lean_ctor_set(x_29, 0, x_26); -lean_ctor_set(x_29, 1, x_27); -lean_ctor_set(x_29, 2, x_25); -lean_ctor_set(x_29, 3, x_2); -lean_ctor_set_uint8(x_29, sizeof(void*)*4, x_28); -x_30 = l_Lean_Language_instTypeNameSnapshotLeaf; -x_31 = l_Lean_Language_DynamicSnapshot_ofTyped___at_Lean_Language_instInhabitedDynamicSnapshot___spec__1(x_30, x_29); -x_32 = lean_ctor_get(x_3, 1); -x_33 = lean_io_promise_resolve(x_31, x_32, x_15); -if (lean_obj_tag(x_33) == 0) +x_28 = lean_alloc_ctor(0, 4, 1); +lean_ctor_set(x_28, 0, x_25); +lean_ctor_set(x_28, 1, x_26); +lean_ctor_set(x_28, 2, x_24); +lean_ctor_set(x_28, 3, x_2); +lean_ctor_set_uint8(x_28, sizeof(void*)*4, x_27); +x_29 = l_Lean_Language_instTypeNameSnapshotLeaf; +x_30 = l_Lean_Language_DynamicSnapshot_ofTyped___at_Lean_Language_instInhabitedDynamicSnapshot___spec__1(x_29, x_28); +x_31 = lean_ctor_get(x_3, 1); +x_32 = lean_io_promise_resolve(x_30, x_31, x_14); +if (lean_obj_tag(x_32) == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; -x_34 = lean_ctor_get(x_33, 1); -lean_inc(x_34); -lean_dec(x_33); -x_50 = lean_ctor_get(x_21, 1); -lean_inc(x_50); -lean_dec(x_21); -x_51 = lean_ctor_get(x_50, 2); -lean_inc(x_51); -x_52 = lean_unsigned_to_nat(0u); -x_53 = lean_nat_dec_lt(x_52, x_51); -lean_dec(x_51); -if (x_53 == 0) +lean_object* x_33; lean_object* x_34; lean_object* x_55; lean_object* x_56; lean_object* x_57; uint8_t x_58; +x_33 = lean_ctor_get(x_32, 1); +lean_inc(x_33); +lean_dec(x_32); +x_55 = lean_ctor_get(x_20, 1); +lean_inc(x_55); +lean_dec(x_20); +x_56 = lean_ctor_get(x_55, 2); +lean_inc(x_56); +x_57 = lean_unsigned_to_nat(0u); +x_58 = lean_nat_dec_lt(x_57, x_56); +lean_dec(x_56); +if (x_58 == 0) { -lean_object* x_54; lean_object* x_55; -lean_dec(x_50); -x_54 = l_Lean_Elab_instInhabitedInfoTree; -x_55 = l_outOfBounds___rarg(x_54); -x_35 = x_55; -goto block_49; +lean_object* x_59; lean_object* x_60; +lean_dec(x_55); +x_59 = l_Lean_Elab_instInhabitedInfoTree; +x_60 = l_outOfBounds___rarg(x_59); +x_34 = x_60; +goto block_54; } else { -lean_object* x_56; lean_object* x_57; -x_56 = l_Lean_Elab_instInhabitedInfoTree; -x_57 = l_Lean_PersistentArray_get_x21___rarg(x_56, x_50, x_52); -x_35 = x_57; -goto block_49; +lean_object* x_61; lean_object* x_62; +x_61 = l_Lean_Elab_instInhabitedInfoTree; +x_62 = l_Lean_PersistentArray_get_x21___rarg(x_61, x_55, x_57); +x_34 = x_62; +goto block_54; } -block_49: +block_54: { -uint8_t x_36; -if (x_10 == 0) +if (x_5 == 0) { -lean_dec(x_11); -x_36 = x_28; -goto block_46; -} -else -{ -uint8_t x_47; -x_47 = l_Lean_Parser_isTerminalCommand(x_11); -if (x_47 == 0) -{ -uint8_t x_48; -x_48 = 1; -x_36 = x_48; -goto block_46; -} -else -{ -x_36 = x_28; -goto block_46; -} -} -block_46: -{ -if (x_36 == 0) -{ -lean_object* x_37; lean_object* x_38; -x_37 = lean_box(0); -x_38 = l_Lean_Language_Lean_process_doElab___lambda__3(x_12, x_26, x_22, x_36, x_24, x_4, x_5, x_6, x_7, x_8, x_2, x_35, x_37, x_14, x_34); -return x_38; -} -else -{ -lean_object* x_39; uint8_t x_40; -x_39 = l_Lean_Language_Lean_process_doElab___lambda__4___closed__5; -x_40 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_9, x_39); -if (x_40 == 0) -{ -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_runtime_mark_persistent(x_35); -x_42 = lean_box(0); -x_43 = l_Lean_Language_Lean_process_doElab___lambda__3(x_12, x_26, x_22, x_36, x_24, x_4, x_5, x_6, x_7, x_8, x_2, x_41, x_42, x_14, x_34); -return x_43; -} -else -{ -lean_object* x_44; lean_object* x_45; -x_44 = lean_box(0); -x_45 = l_Lean_Language_Lean_process_doElab___lambda__3(x_12, x_26, x_22, x_36, x_24, x_4, x_5, x_6, x_7, x_8, x_2, x_35, x_44, x_14, x_34); -return x_45; -} -} -} -} -} -else -{ -uint8_t x_58; -lean_dec(x_24); -lean_dec(x_22); -lean_dec(x_21); -lean_dec(x_12); -lean_dec(x_11); +lean_object* x_35; lean_object* x_36; +lean_dec(x_15); +lean_dec(x_10); +lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -lean_dec(x_5); lean_dec(x_2); -x_58 = !lean_is_exclusive(x_33); -if (x_58 == 0) -{ -return x_33; +x_35 = lean_box(0); +lean_inc(x_23); +x_36 = l_Lean_Language_Lean_process_doElab___lambda__3(x_11, x_34, x_25, x_21, x_4, x_23, x_23, x_35, x_13, x_33); +return x_36; } else { -lean_object* x_59; lean_object* x_60; lean_object* x_61; -x_59 = lean_ctor_get(x_33, 0); -x_60 = lean_ctor_get(x_33, 1); -lean_inc(x_60); -lean_inc(x_59); -lean_dec(x_33); -x_61 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_61, 0, x_59); -lean_ctor_set(x_61, 1, x_60); -return x_61; +uint8_t x_37; +x_37 = l_Lean_Parser_isTerminalCommand(x_6); +if (x_37 == 0) +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_38 = l_Lean_NameSet_empty; +lean_inc(x_7); +x_39 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_39, 0, x_7); +lean_ctor_set(x_39, 1, x_38); +lean_ctor_set_uint8(x_39, sizeof(void*)*2, x_27); +x_40 = l_Lean_Language_Lean_initFn____x40_Lean_Language_Lean___hyg_402____closed__4; +x_41 = lean_box(0); +lean_inc_n(x_9, 2); +lean_inc_n(x_8, 5); +x_42 = lean_alloc_ctor(0, 9, 1); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_8); +lean_ctor_set(x_42, 2, x_41); +lean_ctor_set(x_42, 3, x_8); +lean_ctor_set(x_42, 4, x_8); +lean_ctor_set(x_42, 5, x_9); +lean_ctor_set(x_42, 6, x_9); +lean_ctor_set(x_42, 7, x_8); +lean_ctor_set(x_42, 8, x_8); +lean_ctor_set_uint8(x_42, sizeof(void*)*9, x_27); +x_43 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_8); +x_44 = 1; +x_45 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_45, 0, x_10); +lean_ctor_set(x_45, 1, x_7); +lean_ctor_set_uint8(x_45, sizeof(void*)*2, x_44); +x_46 = l_Lean_Language_Lean_process_doElab___lambda__4___closed__5; +x_47 = lean_unsigned_to_nat(0u); +x_48 = l_Lean_Language_Lean_process_doElab___lambda__4___closed__8; +x_49 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_49, 0, x_15); +lean_ctor_set(x_49, 1, x_39); +lean_ctor_set(x_49, 2, x_43); +lean_ctor_set(x_49, 3, x_46); +lean_ctor_set(x_49, 4, x_47); +lean_ctor_set(x_49, 5, x_48); +lean_ctor_set(x_49, 6, x_45); +lean_ctor_set(x_49, 7, x_2); +lean_ctor_set(x_49, 8, x_9); +x_50 = lean_box(0); +x_51 = l_Lean_Language_Lean_process_doElab___lambda__3(x_11, x_34, x_25, x_21, x_4, x_23, x_49, x_50, x_13, x_33); +return x_51; +} +else +{ +lean_object* x_52; lean_object* x_53; +lean_dec(x_15); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_2); +x_52 = lean_box(0); +lean_inc(x_23); +x_53 = l_Lean_Language_Lean_process_doElab___lambda__3(x_11, x_34, x_25, x_21, x_4, x_23, x_23, x_52, x_13, x_33); +return x_53; +} +} +} +} +else +{ +uint8_t x_63; +lean_dec(x_23); +lean_dec(x_21); +lean_dec(x_20); +lean_dec(x_15); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_2); +x_63 = !lean_is_exclusive(x_32); +if (x_63 == 0) +{ +return x_32; +} +else +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_64 = lean_ctor_get(x_32, 0); +x_65 = lean_ctor_get(x_32, 1); +lean_inc(x_65); +lean_inc(x_64); +lean_dec(x_32); +x_66 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_66, 0, x_64); +lean_ctor_set(x_66, 1, x_65); +return x_66; } } } @@ -3430,6 +3318,7 @@ x_38 = lean_alloc_closure((void*)(l_Lean_Language_Lean_process_doElab___lambda__ lean_closure_set(x_38, 0, x_1); x_39 = l_Lean_Language_Lean_process_doElab___closed__3; x_40 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_33, x_39); +lean_dec(x_33); if (x_35 == 0) { lean_object* x_151; @@ -3557,9 +3446,8 @@ lean_ctor_set_uint8(x_75, sizeof(void*)*5 + 1, x_73); x_76 = l_Lean_MessageLog_add(x_75, x_66); x_77 = l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__18; x_78 = lean_box(0); -x_79 = l_Lean_Language_Lean_process_doElab___lambda__4(x_64, x_18, x_4, x_5, x_77, x_16, x_19, x_60, x_33, x_35, x_1, x_76, x_78, x_7, x_65); +x_79 = l_Lean_Language_Lean_process_doElab___lambda__4(x_64, x_18, x_4, x_5, x_35, x_1, x_77, x_16, x_19, x_60, x_76, x_78, x_7, x_65); lean_dec(x_7); -lean_dec(x_33); lean_dec(x_4); return x_79; } @@ -3572,9 +3460,8 @@ lean_dec(x_30); lean_dec(x_3); x_80 = l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__18; x_81 = lean_box(0); -x_82 = l_Lean_Language_Lean_process_doElab___lambda__4(x_64, x_18, x_4, x_5, x_80, x_16, x_19, x_60, x_33, x_35, x_1, x_66, x_81, x_7, x_65); +x_82 = l_Lean_Language_Lean_process_doElab___lambda__4(x_64, x_18, x_4, x_5, x_35, x_1, x_80, x_16, x_19, x_60, x_66, x_81, x_7, x_65); lean_dec(x_7); -lean_dec(x_33); lean_dec(x_4); return x_82; } @@ -3583,7 +3470,6 @@ else { uint8_t x_83; lean_dec(x_52); -lean_dec(x_33); lean_dec(x_31); lean_dec(x_30); lean_dec(x_7); @@ -3614,7 +3500,6 @@ else { uint8_t x_87; lean_dec(x_52); -lean_dec(x_33); lean_dec(x_31); lean_dec(x_30); lean_dec(x_21); @@ -3648,7 +3533,6 @@ uint8_t x_91; lean_dec(x_57); lean_free_object(x_49); lean_dec(x_52); -lean_dec(x_33); lean_dec(x_31); lean_dec(x_30); lean_dec(x_21); @@ -3681,7 +3565,6 @@ else uint8_t x_95; lean_free_object(x_49); lean_dec(x_52); -lean_dec(x_33); lean_dec(x_31); lean_dec(x_30); lean_dec(x_21); @@ -3783,9 +3666,8 @@ lean_ctor_set_uint8(x_122, sizeof(void*)*5 + 1, x_120); x_123 = l_Lean_MessageLog_add(x_122, x_113); x_124 = l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__18; x_125 = lean_box(0); -x_126 = l_Lean_Language_Lean_process_doElab___lambda__4(x_111, x_18, x_4, x_5, x_124, x_16, x_19, x_106, x_33, x_35, x_1, x_123, x_125, x_7, x_112); +x_126 = l_Lean_Language_Lean_process_doElab___lambda__4(x_111, x_18, x_4, x_5, x_35, x_1, x_124, x_16, x_19, x_106, x_123, x_125, x_7, x_112); lean_dec(x_7); -lean_dec(x_33); lean_dec(x_4); return x_126; } @@ -3798,9 +3680,8 @@ lean_dec(x_30); lean_dec(x_3); x_127 = l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__18; x_128 = lean_box(0); -x_129 = l_Lean_Language_Lean_process_doElab___lambda__4(x_111, x_18, x_4, x_5, x_127, x_16, x_19, x_106, x_33, x_35, x_1, x_113, x_128, x_7, x_112); +x_129 = l_Lean_Language_Lean_process_doElab___lambda__4(x_111, x_18, x_4, x_5, x_35, x_1, x_127, x_16, x_19, x_106, x_113, x_128, x_7, x_112); lean_dec(x_7); -lean_dec(x_33); lean_dec(x_4); return x_129; } @@ -3809,7 +3690,6 @@ else { lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_dec(x_99); -lean_dec(x_33); lean_dec(x_31); lean_dec(x_30); lean_dec(x_7); @@ -3842,7 +3722,6 @@ else { lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_dec(x_99); -lean_dec(x_33); lean_dec(x_31); lean_dec(x_30); lean_dec(x_21); @@ -3877,7 +3756,6 @@ else lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_dec(x_103); lean_dec(x_99); -lean_dec(x_33); lean_dec(x_31); lean_dec(x_30); lean_dec(x_21); @@ -3911,7 +3789,6 @@ else { lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_dec(x_99); -lean_dec(x_33); lean_dec(x_31); lean_dec(x_30); lean_dec(x_21); @@ -3945,7 +3822,6 @@ return x_145; else { uint8_t x_146; -lean_dec(x_33); lean_dec(x_31); lean_dec(x_30); lean_dec(x_27); @@ -4144,6 +4020,7 @@ x_196 = lean_alloc_closure((void*)(l_Lean_Language_Lean_process_doElab___lambda_ lean_closure_set(x_196, 0, x_1); x_197 = l_Lean_Language_Lean_process_doElab___closed__3; x_198 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_191, x_197); +lean_dec(x_191); if (x_193 == 0) { lean_object* x_262; @@ -4279,9 +4156,8 @@ lean_ctor_set_uint8(x_233, sizeof(void*)*5 + 1, x_231); x_234 = l_Lean_MessageLog_add(x_233, x_224); x_235 = l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__18; x_236 = lean_box(0); -x_237 = l_Lean_Language_Lean_process_doElab___lambda__4(x_222, x_175, x_4, x_5, x_235, x_173, x_176, x_217, x_191, x_193, x_1, x_234, x_236, x_7, x_223); +x_237 = l_Lean_Language_Lean_process_doElab___lambda__4(x_222, x_175, x_4, x_5, x_193, x_1, x_235, x_173, x_176, x_217, x_234, x_236, x_7, x_223); lean_dec(x_7); -lean_dec(x_191); lean_dec(x_4); return x_237; } @@ -4294,9 +4170,8 @@ lean_dec(x_188); lean_dec(x_3); x_238 = l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__18; x_239 = lean_box(0); -x_240 = l_Lean_Language_Lean_process_doElab___lambda__4(x_222, x_175, x_4, x_5, x_238, x_173, x_176, x_217, x_191, x_193, x_1, x_224, x_239, x_7, x_223); +x_240 = l_Lean_Language_Lean_process_doElab___lambda__4(x_222, x_175, x_4, x_5, x_193, x_1, x_238, x_173, x_176, x_217, x_224, x_239, x_7, x_223); lean_dec(x_7); -lean_dec(x_191); lean_dec(x_4); return x_240; } @@ -4305,7 +4180,6 @@ else { lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_dec(x_209); -lean_dec(x_191); lean_dec(x_189); lean_dec(x_188); lean_dec(x_7); @@ -4338,7 +4212,6 @@ else { lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_dec(x_209); -lean_dec(x_191); lean_dec(x_189); lean_dec(x_188); lean_dec(x_179); @@ -4374,7 +4247,6 @@ lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_dec(x_214); lean_dec(x_210); lean_dec(x_209); -lean_dec(x_191); lean_dec(x_189); lean_dec(x_188); lean_dec(x_179); @@ -4409,7 +4281,6 @@ else lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_dec(x_210); lean_dec(x_209); -lean_dec(x_191); lean_dec(x_189); lean_dec(x_188); lean_dec(x_179); @@ -4442,7 +4313,6 @@ return x_256; else { lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; -lean_dec(x_191); lean_dec(x_189); lean_dec(x_188); lean_dec(x_185); @@ -4587,32 +4457,29 @@ lean_dec(x_4); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_doElab___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_doElab___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -uint8_t x_16; lean_object* x_17; -x_16 = lean_unbox(x_4); -lean_dec(x_4); -x_17 = l_Lean_Language_Lean_process_doElab___lambda__3(x_1, x_2, x_3, x_16, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_6); -return x_17; -} -} -LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_doElab___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { -_start: -{ -uint8_t x_16; lean_object* x_17; -x_16 = lean_unbox(x_10); -lean_dec(x_10); -x_17 = l_Lean_Language_Lean_process_doElab___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_16, x_11, x_12, x_13, x_14, x_15); -lean_dec(x_14); -lean_dec(x_13); +lean_object* x_11; +x_11 = l_Lean_Language_Lean_process_doElab___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_doElab___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +uint8_t x_15; lean_object* x_16; +x_15 = lean_unbox(x_5); +lean_dec(x_5); +x_16 = l_Lean_Language_Lean_process_doElab___lambda__4(x_1, x_2, x_3, x_4, x_15, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_13); +lean_dec(x_12); lean_dec(x_4); lean_dec(x_3); -return x_17; +return x_16; } } LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_doElab___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { @@ -5977,8 +5844,8 @@ lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_5); lean_ctor_set_uint8(x_29, sizeof(void*)*2, x_27); x_30 = lean_array_mk(x_3); -x_74 = l_Lean_Language_Lean_process_doElab___lambda__3___closed__1; -x_75 = l_Lean_Language_Lean_process_doElab___lambda__3___closed__4; +x_74 = l_Lean_Language_Lean_process_doElab___lambda__4___closed__5; +x_75 = l_Lean_Language_Lean_process_doElab___lambda__4___closed__8; x_76 = l_Lean_Language_Lean_process_parseCmd___lambda__6___closed__1; lean_inc(x_30); lean_inc(x_9); @@ -7188,8 +7055,8 @@ lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_5); lean_ctor_set_uint8(x_29, sizeof(void*)*2, x_27); x_30 = lean_array_mk(x_3); -x_74 = l_Lean_Language_Lean_process_doElab___lambda__3___closed__1; -x_75 = l_Lean_Language_Lean_process_doElab___lambda__3___closed__4; +x_74 = l_Lean_Language_Lean_process_doElab___lambda__4___closed__5; +x_75 = l_Lean_Language_Lean_process_doElab___lambda__4___closed__8; x_76 = l_Lean_Language_Lean_process_parseCmd___lambda__6___closed__1; lean_inc(x_30); lean_inc(x_9); @@ -9098,11 +8965,20 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__9() { +static uint64_t _init_l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__9() { +_start: +{ +lean_object* x_1; uint64_t x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_uint64_of_nat(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__10() { _start: { uint64_t x_1; lean_object* x_2; lean_object* x_3; -x_1 = 0; +x_1 = l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__9; x_2 = l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__6; x_3 = lean_alloc_ctor(0, 1, 8); lean_ctor_set(x_3, 0, x_2); @@ -9110,14 +8986,14 @@ lean_ctor_set_uint64(x_3, sizeof(void*)*1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__10() { +static lean_object* _init_l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; lean_object* x_6; x_1 = lean_box(0); x_2 = l_Lean_Language_Lean_initFn____x40_Lean_Language_Lean___hyg_402____closed__4; x_3 = l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__8; -x_4 = l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__9; +x_4 = l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__10; x_5 = 0; x_6 = lean_alloc_ctor(0, 4, 1); lean_ctor_set(x_6, 0, x_2); @@ -9128,11 +9004,11 @@ lean_ctor_set_uint8(x_6, sizeof(void*)*4, x_5); return x_6; } } -static lean_object* _init_l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__11() { +static lean_object* _init_l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__10; +x_1 = l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__11; x_2 = l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__3; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -9140,21 +9016,21 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__12() { +static lean_object* _init_l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__13() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__11; +x_1 = l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__12; x_2 = lean_task_pure(x_1); return x_2; } } -static lean_object* _init_l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__13() { +static lean_object* _init_l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__12; +x_2 = l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__13; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -9216,7 +9092,7 @@ lean_ctor_set(x_28, 1, x_6); x_29 = l_Lean_Language_SnapshotTask_pure___rarg(x_28); x_30 = lean_box(0); x_31 = l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__2; -x_32 = l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__13; +x_32 = l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__14; x_33 = lean_alloc_ctor(0, 8, 0); lean_ctor_set(x_33, 0, x_27); lean_ctor_set(x_33, 1, x_30); @@ -12417,555 +12293,547 @@ x_4 = l_Lean_Name_toString(x_1, x_2, x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_processHeader___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint64_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_processHeader___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_14; -x_14 = l_Lean_Language_Lean_reparseOptions(x_1, x_13); -if (lean_obj_tag(x_14) == 0) +lean_object* x_13; +x_13 = l_Lean_Language_Lean_reparseOptions(x_1, x_12); +if (lean_obj_tag(x_13) == 0) { -lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_15 = lean_ctor_get(x_14, 0); -lean_inc(x_15); -x_16 = lean_ctor_get(x_14, 1); -lean_inc(x_16); -lean_dec(x_14); +lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_13, 1); lean_inc(x_15); +lean_dec(x_13); +lean_inc(x_14); lean_inc(x_3); lean_inc(x_2); -x_17 = l_Lean_Elab_Command_mkState(x_2, x_3, x_15); -x_18 = !lean_is_exclusive(x_17); -if (x_18 == 0) +x_16 = l_Lean_Elab_Command_mkState(x_2, x_3, x_14); +x_17 = !lean_is_exclusive(x_16); +if (x_17 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; -x_19 = lean_ctor_get(x_17, 7); +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint8_t x_52; +x_18 = lean_ctor_get(x_16, 7); +lean_dec(x_18); +x_19 = lean_ctor_get(x_16, 6); lean_dec(x_19); -x_20 = lean_ctor_get(x_17, 6); +x_20 = lean_ctor_get(x_16, 4); lean_dec(x_20); -x_21 = lean_ctor_get(x_17, 4); +x_21 = lean_ctor_get(x_16, 3); lean_dec(x_21); -x_22 = lean_ctor_get(x_17, 3); +x_22 = lean_ctor_get(x_16, 1); lean_dec(x_22); -x_23 = lean_ctor_get(x_17, 1); +x_23 = lean_ctor_get(x_16, 0); lean_dec(x_23); -x_24 = lean_ctor_get(x_17, 0); -lean_dec(x_24); -x_25 = l_Lean_Language_Lean_process_parseCmd___lambda__5___closed__1; -x_26 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_15, x_25); -lean_dec(x_15); -x_27 = lean_ctor_get(x_4, 2); -x_28 = lean_box(0); -x_29 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__1; -x_30 = lean_box(0); -x_31 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__4; -lean_inc(x_27); +x_24 = l_Lean_Language_Lean_process_parseCmd___lambda__5___closed__1; +x_25 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_14, x_24); +lean_dec(x_14); +x_26 = lean_ctor_get(x_4, 2); +x_27 = lean_box(0); +x_28 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__1; +x_29 = lean_box(0); +x_30 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__4; +lean_inc(x_26); lean_inc(x_2); -x_32 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_32, 0, x_2); -lean_ctor_set(x_32, 1, x_27); -lean_ctor_set(x_32, 2, x_29); -lean_ctor_set(x_32, 3, x_28); -lean_ctor_set(x_32, 4, x_30); -lean_ctor_set(x_32, 5, x_28); -lean_ctor_set(x_32, 6, x_31); -x_33 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_33, 0, x_32); -x_34 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__6; +x_31 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_31, 0, x_2); +lean_ctor_set(x_31, 1, x_26); +lean_ctor_set(x_31, 2, x_28); +lean_ctor_set(x_31, 3, x_27); +lean_ctor_set(x_31, 4, x_29); +lean_ctor_set(x_31, 5, x_27); +lean_ctor_set(x_31, 6, x_30); +x_32 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_32, 0, x_31); +x_33 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__6; lean_inc(x_5); -x_35 = lean_alloc_ctor(0, 2, 0); +x_34 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_34, 1, x_5); +x_35 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_35, 0, x_34); -lean_ctor_set(x_35, 1, x_5); -x_36 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_36, 0, x_35); -x_37 = lean_unsigned_to_nat(1u); -x_38 = l_Lean_Syntax_getArg(x_5, x_37); +x_36 = lean_unsigned_to_nat(1u); +x_37 = l_Lean_Syntax_getArg(x_5, x_36); lean_dec(x_5); -x_39 = l_Lean_Syntax_getArgs(x_38); -lean_dec(x_38); -x_40 = lean_array_to_list(x_39); -x_41 = l_List_mapTR_loop___at_Lean_Language_Lean_process_processHeader___spec__1(x_40, x_28); -x_42 = l_List_toPArray_x27___rarg(x_41); -x_43 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_43, 0, x_36); +x_38 = l_Lean_Syntax_getArgs(x_37); +lean_dec(x_37); +x_39 = lean_array_to_list(x_38); +x_40 = l_List_mapTR_loop___at_Lean_Language_Lean_process_processHeader___spec__1(x_39, x_27); +x_41 = l_List_toPArray_x27___rarg(x_40); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_35); +lean_ctor_set(x_42, 1, x_41); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_32); lean_ctor_set(x_43, 1, x_42); -x_44 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_44, 0, x_33); -lean_ctor_set(x_44, 1, x_43); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_44); -lean_ctor_set(x_45, 1, x_28); -x_46 = lean_array_mk(x_45); -x_47 = l_Array_toPArray_x27___rarg(x_46); -lean_dec(x_46); -x_48 = 1; -x_49 = l_Lean_Language_Lean_process_doElab___closed__5; -lean_inc(x_47); -x_50 = lean_alloc_ctor(0, 2, 1); -lean_ctor_set(x_50, 0, x_49); -lean_ctor_set(x_50, 1, x_47); -lean_ctor_set_uint8(x_50, sizeof(void*)*2, x_48); -x_51 = l_Lean_Language_Lean_process_doElab___lambda__3___closed__1; -lean_ctor_set(x_17, 7, x_10); -lean_ctor_set(x_17, 6, x_50); -lean_ctor_set(x_17, 4, x_26); -lean_ctor_set(x_17, 3, x_51); -lean_ctor_set(x_17, 1, x_3); -lean_ctor_set(x_17, 0, x_2); -x_52 = lean_io_promise_new(x_16); -x_53 = !lean_is_exclusive(x_52); -if (x_53 == 0) +x_44 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_44, 0, x_43); +lean_ctor_set(x_44, 1, x_27); +x_45 = lean_array_mk(x_44); +x_46 = l_Array_toPArray_x27___rarg(x_45); +lean_dec(x_45); +x_47 = 1; +x_48 = l_Lean_Language_Lean_process_doElab___closed__5; +lean_inc(x_46); +x_49 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_49, 1, x_46); +lean_ctor_set_uint8(x_49, sizeof(void*)*2, x_47); +x_50 = l_Lean_Language_Lean_process_doElab___lambda__4___closed__5; +lean_ctor_set(x_16, 7, x_9); +lean_ctor_set(x_16, 6, x_49); +lean_ctor_set(x_16, 4, x_25); +lean_ctor_set(x_16, 3, x_50); +lean_ctor_set(x_16, 1, x_3); +lean_ctor_set(x_16, 0, x_2); +x_51 = lean_io_promise_new(x_15); +x_52 = !lean_is_exclusive(x_51); +if (x_52 == 0) { -lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; uint8_t x_58; -x_54 = lean_ctor_get(x_52, 0); -x_55 = lean_ctor_get(x_52, 1); -x_56 = lean_box(0); -lean_inc(x_54); -lean_inc(x_17); -x_57 = l_Lean_Language_Lean_process_parseCmd(x_56, x_6, x_17, x_54, x_48, x_7, x_55); -x_58 = !lean_is_exclusive(x_57); -if (x_58 == 0) +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; uint8_t x_57; +x_53 = lean_ctor_get(x_51, 0); +x_54 = lean_ctor_get(x_51, 1); +x_55 = lean_box(0); +lean_inc(x_53); +lean_inc(x_16); +x_56 = l_Lean_Language_Lean_process_parseCmd(x_55, x_6, x_16, x_53, x_47, x_7, x_54); +x_57 = !lean_is_exclusive(x_56); +if (x_57 == 0) { -lean_object* x_59; lean_object* x_60; lean_object* x_61; uint8_t x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_59 = lean_ctor_get(x_57, 0); +lean_object* x_58; lean_object* x_59; lean_object* x_60; uint8_t x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_58 = lean_ctor_get(x_56, 0); +lean_dec(x_58); +x_59 = lean_ctor_get(x_46, 2); +lean_inc(x_59); +x_60 = lean_unsigned_to_nat(0u); +x_61 = lean_nat_dec_lt(x_60, x_59); lean_dec(x_59); -x_60 = lean_ctor_get(x_47, 2); -lean_inc(x_60); -x_61 = lean_unsigned_to_nat(0u); -x_62 = lean_nat_dec_lt(x_61, x_60); -lean_dec(x_60); -x_63 = l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__18; -x_64 = lean_alloc_ctor(0, 1, 8); +x_62 = lean_io_promise_result(x_53); +lean_ctor_set(x_51, 1, x_62); +lean_ctor_set(x_51, 0, x_55); +x_63 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_63, 0, x_16); +lean_ctor_set(x_63, 1, x_51); +x_64 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_64, 0, x_63); -lean_ctor_set_uint64(x_64, sizeof(void*)*1, x_8); -x_65 = lean_io_promise_result(x_54); -lean_ctor_set(x_52, 1, x_65); -lean_ctor_set(x_52, 0, x_56); -x_66 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_66, 0, x_17); -lean_ctor_set(x_66, 1, x_52); +if (x_61 == 0) +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint8_t x_70; lean_object* x_71; lean_object* x_72; +lean_dec(x_46); +x_65 = l_Lean_Elab_instInhabitedInfoTree; +x_66 = l_outOfBounds___rarg(x_65); x_67 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_67, 0, x_66); -if (x_62 == 0) -{ -lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; uint8_t x_72; lean_object* x_73; lean_object* x_74; -lean_dec(x_47); -x_68 = l_Lean_Elab_instInhabitedInfoTree; -x_69 = l_outOfBounds___rarg(x_68); -x_70 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_70, 0, x_69); -x_71 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__9; -x_72 = 0; -x_73 = lean_alloc_ctor(0, 4, 1); -lean_ctor_set(x_73, 0, x_71); -lean_ctor_set(x_73, 1, x_9); -lean_ctor_set(x_73, 2, x_70); -lean_ctor_set(x_73, 3, x_64); -lean_ctor_set_uint8(x_73, sizeof(void*)*4, x_72); -x_74 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_74, 0, x_73); -lean_ctor_set(x_74, 1, x_67); -lean_ctor_set(x_57, 0, x_74); -return x_57; +x_68 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__9; +x_69 = l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__19; +x_70 = 0; +x_71 = lean_alloc_ctor(0, 4, 1); +lean_ctor_set(x_71, 0, x_68); +lean_ctor_set(x_71, 1, x_8); +lean_ctor_set(x_71, 2, x_67); +lean_ctor_set(x_71, 3, x_69); +lean_ctor_set_uint8(x_71, sizeof(void*)*4, x_70); +x_72 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_72, 0, x_71); +lean_ctor_set(x_72, 1, x_64); +lean_ctor_set(x_56, 0, x_72); +return x_56; } else { -lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; uint8_t x_79; lean_object* x_80; lean_object* x_81; -x_75 = l_Lean_Elab_instInhabitedInfoTree; -x_76 = l_Lean_PersistentArray_get_x21___rarg(x_75, x_47, x_61); -x_77 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_77, 0, x_76); -x_78 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__9; -x_79 = 0; -x_80 = lean_alloc_ctor(0, 4, 1); -lean_ctor_set(x_80, 0, x_78); -lean_ctor_set(x_80, 1, x_9); -lean_ctor_set(x_80, 2, x_77); -lean_ctor_set(x_80, 3, x_64); -lean_ctor_set_uint8(x_80, sizeof(void*)*4, x_79); -x_81 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_81, 0, x_80); -lean_ctor_set(x_81, 1, x_67); -lean_ctor_set(x_57, 0, x_81); -return x_57; +lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; uint8_t x_78; lean_object* x_79; lean_object* x_80; +x_73 = l_Lean_Elab_instInhabitedInfoTree; +x_74 = l_Lean_PersistentArray_get_x21___rarg(x_73, x_46, x_60); +x_75 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_75, 0, x_74); +x_76 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__9; +x_77 = l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__19; +x_78 = 0; +x_79 = lean_alloc_ctor(0, 4, 1); +lean_ctor_set(x_79, 0, x_76); +lean_ctor_set(x_79, 1, x_8); +lean_ctor_set(x_79, 2, x_75); +lean_ctor_set(x_79, 3, x_77); +lean_ctor_set_uint8(x_79, sizeof(void*)*4, x_78); +x_80 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_80, 0, x_79); +lean_ctor_set(x_80, 1, x_64); +lean_ctor_set(x_56, 0, x_80); +return x_56; } } else { -lean_object* x_82; lean_object* x_83; lean_object* x_84; uint8_t x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; -x_82 = lean_ctor_get(x_57, 1); +lean_object* x_81; lean_object* x_82; lean_object* x_83; uint8_t x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_81 = lean_ctor_get(x_56, 1); +lean_inc(x_81); +lean_dec(x_56); +x_82 = lean_ctor_get(x_46, 2); lean_inc(x_82); -lean_dec(x_57); -x_83 = lean_ctor_get(x_47, 2); -lean_inc(x_83); -x_84 = lean_unsigned_to_nat(0u); -x_85 = lean_nat_dec_lt(x_84, x_83); -lean_dec(x_83); -x_86 = l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__18; -x_87 = lean_alloc_ctor(0, 1, 8); +x_83 = lean_unsigned_to_nat(0u); +x_84 = lean_nat_dec_lt(x_83, x_82); +lean_dec(x_82); +x_85 = lean_io_promise_result(x_53); +lean_ctor_set(x_51, 1, x_85); +lean_ctor_set(x_51, 0, x_55); +x_86 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_86, 0, x_16); +lean_ctor_set(x_86, 1, x_51); +x_87 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_87, 0, x_86); -lean_ctor_set_uint64(x_87, sizeof(void*)*1, x_8); -x_88 = lean_io_promise_result(x_54); -lean_ctor_set(x_52, 1, x_88); -lean_ctor_set(x_52, 0, x_56); -x_89 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_89, 0, x_17); -lean_ctor_set(x_89, 1, x_52); +if (x_84 == 0) +{ +lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; uint8_t x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; +lean_dec(x_46); +x_88 = l_Lean_Elab_instInhabitedInfoTree; +x_89 = l_outOfBounds___rarg(x_88); x_90 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_90, 0, x_89); -if (x_85 == 0) -{ -lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; -lean_dec(x_47); -x_91 = l_Lean_Elab_instInhabitedInfoTree; -x_92 = l_outOfBounds___rarg(x_91); -x_93 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_93, 0, x_92); -x_94 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__9; -x_95 = 0; -x_96 = lean_alloc_ctor(0, 4, 1); -lean_ctor_set(x_96, 0, x_94); -lean_ctor_set(x_96, 1, x_9); -lean_ctor_set(x_96, 2, x_93); -lean_ctor_set(x_96, 3, x_87); -lean_ctor_set_uint8(x_96, sizeof(void*)*4, x_95); -x_97 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_97, 0, x_96); -lean_ctor_set(x_97, 1, x_90); -x_98 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_98, 0, x_97); -lean_ctor_set(x_98, 1, x_82); -return x_98; +x_91 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__9; +x_92 = l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__19; +x_93 = 0; +x_94 = lean_alloc_ctor(0, 4, 1); +lean_ctor_set(x_94, 0, x_91); +lean_ctor_set(x_94, 1, x_8); +lean_ctor_set(x_94, 2, x_90); +lean_ctor_set(x_94, 3, x_92); +lean_ctor_set_uint8(x_94, sizeof(void*)*4, x_93); +x_95 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_95, 0, x_94); +lean_ctor_set(x_95, 1, x_87); +x_96 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_96, 0, x_95); +lean_ctor_set(x_96, 1, x_81); +return x_96; } else { -lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; uint8_t x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; -x_99 = l_Lean_Elab_instInhabitedInfoTree; -x_100 = l_Lean_PersistentArray_get_x21___rarg(x_99, x_47, x_84); -x_101 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_101, 0, x_100); -x_102 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__9; -x_103 = 0; -x_104 = lean_alloc_ctor(0, 4, 1); -lean_ctor_set(x_104, 0, x_102); -lean_ctor_set(x_104, 1, x_9); -lean_ctor_set(x_104, 2, x_101); -lean_ctor_set(x_104, 3, x_87); -lean_ctor_set_uint8(x_104, sizeof(void*)*4, x_103); +lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; +x_97 = l_Lean_Elab_instInhabitedInfoTree; +x_98 = l_Lean_PersistentArray_get_x21___rarg(x_97, x_46, x_83); +x_99 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_99, 0, x_98); +x_100 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__9; +x_101 = l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__19; +x_102 = 0; +x_103 = lean_alloc_ctor(0, 4, 1); +lean_ctor_set(x_103, 0, x_100); +lean_ctor_set(x_103, 1, x_8); +lean_ctor_set(x_103, 2, x_99); +lean_ctor_set(x_103, 3, x_101); +lean_ctor_set_uint8(x_103, sizeof(void*)*4, x_102); +x_104 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_104, 0, x_103); +lean_ctor_set(x_104, 1, x_87); x_105 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_105, 0, x_104); -lean_ctor_set(x_105, 1, x_90); -x_106 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_106, 0, x_105); -lean_ctor_set(x_106, 1, x_82); -return x_106; +lean_ctor_set(x_105, 1, x_81); +return x_105; } } } else { -lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; uint8_t x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; -x_107 = lean_ctor_get(x_52, 0); -x_108 = lean_ctor_get(x_52, 1); -lean_inc(x_108); +lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; uint8_t x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; +x_106 = lean_ctor_get(x_51, 0); +x_107 = lean_ctor_get(x_51, 1); lean_inc(x_107); -lean_dec(x_52); -x_109 = lean_box(0); -lean_inc(x_107); -lean_inc(x_17); -x_110 = l_Lean_Language_Lean_process_parseCmd(x_109, x_6, x_17, x_107, x_48, x_7, x_108); -x_111 = lean_ctor_get(x_110, 1); -lean_inc(x_111); -if (lean_is_exclusive(x_110)) { - lean_ctor_release(x_110, 0); - lean_ctor_release(x_110, 1); - x_112 = x_110; +lean_inc(x_106); +lean_dec(x_51); +x_108 = lean_box(0); +lean_inc(x_106); +lean_inc(x_16); +x_109 = l_Lean_Language_Lean_process_parseCmd(x_108, x_6, x_16, x_106, x_47, x_7, x_107); +x_110 = lean_ctor_get(x_109, 1); +lean_inc(x_110); +if (lean_is_exclusive(x_109)) { + lean_ctor_release(x_109, 0); + lean_ctor_release(x_109, 1); + x_111 = x_109; } else { - lean_dec_ref(x_110); - x_112 = lean_box(0); + lean_dec_ref(x_109); + x_111 = lean_box(0); } -x_113 = lean_ctor_get(x_47, 2); -lean_inc(x_113); -x_114 = lean_unsigned_to_nat(0u); -x_115 = lean_nat_dec_lt(x_114, x_113); -lean_dec(x_113); -x_116 = l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__18; -x_117 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_117, 0, x_116); -lean_ctor_set_uint64(x_117, sizeof(void*)*1, x_8); -x_118 = lean_io_promise_result(x_107); -x_119 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_119, 0, x_109); -lean_ctor_set(x_119, 1, x_118); -x_120 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_120, 0, x_17); -lean_ctor_set(x_120, 1, x_119); +x_112 = lean_ctor_get(x_46, 2); +lean_inc(x_112); +x_113 = lean_unsigned_to_nat(0u); +x_114 = lean_nat_dec_lt(x_113, x_112); +lean_dec(x_112); +x_115 = lean_io_promise_result(x_106); +x_116 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_116, 0, x_108); +lean_ctor_set(x_116, 1, x_115); +x_117 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_117, 0, x_16); +lean_ctor_set(x_117, 1, x_116); +x_118 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_118, 0, x_117); +if (x_114 == 0) +{ +lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; uint8_t x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; +lean_dec(x_46); +x_119 = l_Lean_Elab_instInhabitedInfoTree; +x_120 = l_outOfBounds___rarg(x_119); x_121 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_121, 0, x_120); -if (x_115 == 0) -{ -lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; uint8_t x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; -lean_dec(x_47); -x_122 = l_Lean_Elab_instInhabitedInfoTree; -x_123 = l_outOfBounds___rarg(x_122); -x_124 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_124, 0, x_123); -x_125 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__9; -x_126 = 0; -x_127 = lean_alloc_ctor(0, 4, 1); -lean_ctor_set(x_127, 0, x_125); -lean_ctor_set(x_127, 1, x_9); -lean_ctor_set(x_127, 2, x_124); -lean_ctor_set(x_127, 3, x_117); -lean_ctor_set_uint8(x_127, sizeof(void*)*4, x_126); -x_128 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_128, 0, x_127); -lean_ctor_set(x_128, 1, x_121); -if (lean_is_scalar(x_112)) { - x_129 = lean_alloc_ctor(0, 2, 0); +x_122 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__9; +x_123 = l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__19; +x_124 = 0; +x_125 = lean_alloc_ctor(0, 4, 1); +lean_ctor_set(x_125, 0, x_122); +lean_ctor_set(x_125, 1, x_8); +lean_ctor_set(x_125, 2, x_121); +lean_ctor_set(x_125, 3, x_123); +lean_ctor_set_uint8(x_125, sizeof(void*)*4, x_124); +x_126 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_126, 0, x_125); +lean_ctor_set(x_126, 1, x_118); +if (lean_is_scalar(x_111)) { + x_127 = lean_alloc_ctor(0, 2, 0); } else { - x_129 = x_112; + x_127 = x_111; } -lean_ctor_set(x_129, 0, x_128); -lean_ctor_set(x_129, 1, x_111); -return x_129; +lean_ctor_set(x_127, 0, x_126); +lean_ctor_set(x_127, 1, x_110); +return x_127; } else { -lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; uint8_t x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; -x_130 = l_Lean_Elab_instInhabitedInfoTree; -x_131 = l_Lean_PersistentArray_get_x21___rarg(x_130, x_47, x_114); -x_132 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_132, 0, x_131); -x_133 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__9; -x_134 = 0; -x_135 = lean_alloc_ctor(0, 4, 1); -lean_ctor_set(x_135, 0, x_133); -lean_ctor_set(x_135, 1, x_9); -lean_ctor_set(x_135, 2, x_132); -lean_ctor_set(x_135, 3, x_117); -lean_ctor_set_uint8(x_135, sizeof(void*)*4, x_134); -x_136 = lean_alloc_ctor(0, 2, 0); +lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; uint8_t x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; +x_128 = l_Lean_Elab_instInhabitedInfoTree; +x_129 = l_Lean_PersistentArray_get_x21___rarg(x_128, x_46, x_113); +x_130 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_130, 0, x_129); +x_131 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__9; +x_132 = l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__19; +x_133 = 0; +x_134 = lean_alloc_ctor(0, 4, 1); +lean_ctor_set(x_134, 0, x_131); +lean_ctor_set(x_134, 1, x_8); +lean_ctor_set(x_134, 2, x_130); +lean_ctor_set(x_134, 3, x_132); +lean_ctor_set_uint8(x_134, sizeof(void*)*4, x_133); +x_135 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_135, 0, x_134); +lean_ctor_set(x_135, 1, x_118); +if (lean_is_scalar(x_111)) { + x_136 = lean_alloc_ctor(0, 2, 0); +} else { + x_136 = x_111; +} lean_ctor_set(x_136, 0, x_135); -lean_ctor_set(x_136, 1, x_121); -if (lean_is_scalar(x_112)) { - x_137 = lean_alloc_ctor(0, 2, 0); -} else { - x_137 = x_112; -} -lean_ctor_set(x_137, 0, x_136); -lean_ctor_set(x_137, 1, x_111); -return x_137; +lean_ctor_set(x_136, 1, x_110); +return x_136; } } } else { -lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; uint8_t x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; -x_138 = lean_ctor_get(x_17, 2); -x_139 = lean_ctor_get(x_17, 5); -x_140 = lean_ctor_get(x_17, 8); -lean_inc(x_140); +lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; uint8_t x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; uint8_t x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; +x_137 = lean_ctor_get(x_16, 2); +x_138 = lean_ctor_get(x_16, 5); +x_139 = lean_ctor_get(x_16, 8); lean_inc(x_139); lean_inc(x_138); -lean_dec(x_17); -x_141 = l_Lean_Language_Lean_process_parseCmd___lambda__5___closed__1; -x_142 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_15, x_141); -lean_dec(x_15); -x_143 = lean_ctor_get(x_4, 2); -x_144 = lean_box(0); -x_145 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__1; -x_146 = lean_box(0); -x_147 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__4; -lean_inc(x_143); +lean_inc(x_137); +lean_dec(x_16); +x_140 = l_Lean_Language_Lean_process_parseCmd___lambda__5___closed__1; +x_141 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_14, x_140); +lean_dec(x_14); +x_142 = lean_ctor_get(x_4, 2); +x_143 = lean_box(0); +x_144 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__1; +x_145 = lean_box(0); +x_146 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__4; +lean_inc(x_142); lean_inc(x_2); -x_148 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_148, 0, x_2); -lean_ctor_set(x_148, 1, x_143); -lean_ctor_set(x_148, 2, x_145); -lean_ctor_set(x_148, 3, x_144); -lean_ctor_set(x_148, 4, x_146); -lean_ctor_set(x_148, 5, x_144); -lean_ctor_set(x_148, 6, x_147); -x_149 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_149, 0, x_148); -x_150 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__6; +x_147 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_147, 0, x_2); +lean_ctor_set(x_147, 1, x_142); +lean_ctor_set(x_147, 2, x_144); +lean_ctor_set(x_147, 3, x_143); +lean_ctor_set(x_147, 4, x_145); +lean_ctor_set(x_147, 5, x_143); +lean_ctor_set(x_147, 6, x_146); +x_148 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_148, 0, x_147); +x_149 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__6; lean_inc(x_5); -x_151 = lean_alloc_ctor(0, 2, 0); +x_150 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_150, 0, x_149); +lean_ctor_set(x_150, 1, x_5); +x_151 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_151, 0, x_150); -lean_ctor_set(x_151, 1, x_5); -x_152 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_152, 0, x_151); -x_153 = lean_unsigned_to_nat(1u); -x_154 = l_Lean_Syntax_getArg(x_5, x_153); +x_152 = lean_unsigned_to_nat(1u); +x_153 = l_Lean_Syntax_getArg(x_5, x_152); lean_dec(x_5); -x_155 = l_Lean_Syntax_getArgs(x_154); -lean_dec(x_154); -x_156 = lean_array_to_list(x_155); -x_157 = l_List_mapTR_loop___at_Lean_Language_Lean_process_processHeader___spec__1(x_156, x_144); -x_158 = l_List_toPArray_x27___rarg(x_157); -x_159 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_159, 0, x_152); +x_154 = l_Lean_Syntax_getArgs(x_153); +lean_dec(x_153); +x_155 = lean_array_to_list(x_154); +x_156 = l_List_mapTR_loop___at_Lean_Language_Lean_process_processHeader___spec__1(x_155, x_143); +x_157 = l_List_toPArray_x27___rarg(x_156); +x_158 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_158, 0, x_151); +lean_ctor_set(x_158, 1, x_157); +x_159 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_159, 0, x_148); lean_ctor_set(x_159, 1, x_158); -x_160 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_160, 0, x_149); -lean_ctor_set(x_160, 1, x_159); -x_161 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_161, 0, x_160); -lean_ctor_set(x_161, 1, x_144); -x_162 = lean_array_mk(x_161); -x_163 = l_Array_toPArray_x27___rarg(x_162); +x_160 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_160, 0, x_159); +lean_ctor_set(x_160, 1, x_143); +x_161 = lean_array_mk(x_160); +x_162 = l_Array_toPArray_x27___rarg(x_161); +lean_dec(x_161); +x_163 = 1; +x_164 = l_Lean_Language_Lean_process_doElab___closed__5; +lean_inc(x_162); +x_165 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_165, 0, x_164); +lean_ctor_set(x_165, 1, x_162); +lean_ctor_set_uint8(x_165, sizeof(void*)*2, x_163); +x_166 = l_Lean_Language_Lean_process_doElab___lambda__4___closed__5; +x_167 = lean_alloc_ctor(0, 9, 0); +lean_ctor_set(x_167, 0, x_2); +lean_ctor_set(x_167, 1, x_3); +lean_ctor_set(x_167, 2, x_137); +lean_ctor_set(x_167, 3, x_166); +lean_ctor_set(x_167, 4, x_141); +lean_ctor_set(x_167, 5, x_138); +lean_ctor_set(x_167, 6, x_165); +lean_ctor_set(x_167, 7, x_9); +lean_ctor_set(x_167, 8, x_139); +x_168 = lean_io_promise_new(x_15); +x_169 = lean_ctor_get(x_168, 0); +lean_inc(x_169); +x_170 = lean_ctor_get(x_168, 1); +lean_inc(x_170); +if (lean_is_exclusive(x_168)) { + lean_ctor_release(x_168, 0); + lean_ctor_release(x_168, 1); + x_171 = x_168; +} else { + lean_dec_ref(x_168); + x_171 = lean_box(0); +} +x_172 = lean_box(0); +lean_inc(x_169); +lean_inc(x_167); +x_173 = l_Lean_Language_Lean_process_parseCmd(x_172, x_6, x_167, x_169, x_163, x_7, x_170); +x_174 = lean_ctor_get(x_173, 1); +lean_inc(x_174); +if (lean_is_exclusive(x_173)) { + lean_ctor_release(x_173, 0); + lean_ctor_release(x_173, 1); + x_175 = x_173; +} else { + lean_dec_ref(x_173); + x_175 = lean_box(0); +} +x_176 = lean_ctor_get(x_162, 2); +lean_inc(x_176); +x_177 = lean_unsigned_to_nat(0u); +x_178 = lean_nat_dec_lt(x_177, x_176); +lean_dec(x_176); +x_179 = lean_io_promise_result(x_169); +if (lean_is_scalar(x_171)) { + x_180 = lean_alloc_ctor(0, 2, 0); +} else { + x_180 = x_171; +} +lean_ctor_set(x_180, 0, x_172); +lean_ctor_set(x_180, 1, x_179); +x_181 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_181, 0, x_167); +lean_ctor_set(x_181, 1, x_180); +x_182 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_182, 0, x_181); +if (x_178 == 0) +{ +lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; uint8_t x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_dec(x_162); -x_164 = 1; -x_165 = l_Lean_Language_Lean_process_doElab___closed__5; -lean_inc(x_163); -x_166 = lean_alloc_ctor(0, 2, 1); -lean_ctor_set(x_166, 0, x_165); -lean_ctor_set(x_166, 1, x_163); -lean_ctor_set_uint8(x_166, sizeof(void*)*2, x_164); -x_167 = l_Lean_Language_Lean_process_doElab___lambda__3___closed__1; -x_168 = lean_alloc_ctor(0, 9, 0); -lean_ctor_set(x_168, 0, x_2); -lean_ctor_set(x_168, 1, x_3); -lean_ctor_set(x_168, 2, x_138); -lean_ctor_set(x_168, 3, x_167); -lean_ctor_set(x_168, 4, x_142); -lean_ctor_set(x_168, 5, x_139); -lean_ctor_set(x_168, 6, x_166); -lean_ctor_set(x_168, 7, x_10); -lean_ctor_set(x_168, 8, x_140); -x_169 = lean_io_promise_new(x_16); -x_170 = lean_ctor_get(x_169, 0); -lean_inc(x_170); -x_171 = lean_ctor_get(x_169, 1); -lean_inc(x_171); -if (lean_is_exclusive(x_169)) { - lean_ctor_release(x_169, 0); - lean_ctor_release(x_169, 1); - x_172 = x_169; -} else { - lean_dec_ref(x_169); - x_172 = lean_box(0); -} -x_173 = lean_box(0); -lean_inc(x_170); -lean_inc(x_168); -x_174 = l_Lean_Language_Lean_process_parseCmd(x_173, x_6, x_168, x_170, x_164, x_7, x_171); -x_175 = lean_ctor_get(x_174, 1); -lean_inc(x_175); -if (lean_is_exclusive(x_174)) { - lean_ctor_release(x_174, 0); - lean_ctor_release(x_174, 1); - x_176 = x_174; -} else { - lean_dec_ref(x_174); - x_176 = lean_box(0); -} -x_177 = lean_ctor_get(x_163, 2); -lean_inc(x_177); -x_178 = lean_unsigned_to_nat(0u); -x_179 = lean_nat_dec_lt(x_178, x_177); -lean_dec(x_177); -x_180 = l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__18; -x_181 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_181, 0, x_180); -lean_ctor_set_uint64(x_181, sizeof(void*)*1, x_8); -x_182 = lean_io_promise_result(x_170); -if (lean_is_scalar(x_172)) { - x_183 = lean_alloc_ctor(0, 2, 0); -} else { - x_183 = x_172; -} -lean_ctor_set(x_183, 0, x_173); -lean_ctor_set(x_183, 1, x_182); -x_184 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_184, 0, x_168); -lean_ctor_set(x_184, 1, x_183); +x_183 = l_Lean_Elab_instInhabitedInfoTree; +x_184 = l_outOfBounds___rarg(x_183); x_185 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_185, 0, x_184); -if (x_179 == 0) -{ -lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; uint8_t x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; -lean_dec(x_163); -x_186 = l_Lean_Elab_instInhabitedInfoTree; -x_187 = l_outOfBounds___rarg(x_186); -x_188 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_188, 0, x_187); -x_189 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__9; -x_190 = 0; -x_191 = lean_alloc_ctor(0, 4, 1); -lean_ctor_set(x_191, 0, x_189); -lean_ctor_set(x_191, 1, x_9); -lean_ctor_set(x_191, 2, x_188); -lean_ctor_set(x_191, 3, x_181); -lean_ctor_set_uint8(x_191, sizeof(void*)*4, x_190); -x_192 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_192, 0, x_191); -lean_ctor_set(x_192, 1, x_185); -if (lean_is_scalar(x_176)) { - x_193 = lean_alloc_ctor(0, 2, 0); +x_186 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__9; +x_187 = l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__19; +x_188 = 0; +x_189 = lean_alloc_ctor(0, 4, 1); +lean_ctor_set(x_189, 0, x_186); +lean_ctor_set(x_189, 1, x_8); +lean_ctor_set(x_189, 2, x_185); +lean_ctor_set(x_189, 3, x_187); +lean_ctor_set_uint8(x_189, sizeof(void*)*4, x_188); +x_190 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_190, 0, x_189); +lean_ctor_set(x_190, 1, x_182); +if (lean_is_scalar(x_175)) { + x_191 = lean_alloc_ctor(0, 2, 0); } else { - x_193 = x_176; + x_191 = x_175; } -lean_ctor_set(x_193, 0, x_192); -lean_ctor_set(x_193, 1, x_175); -return x_193; +lean_ctor_set(x_191, 0, x_190); +lean_ctor_set(x_191, 1, x_174); +return x_191; } else { -lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; uint8_t x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; -x_194 = l_Lean_Elab_instInhabitedInfoTree; -x_195 = l_Lean_PersistentArray_get_x21___rarg(x_194, x_163, x_178); -x_196 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_196, 0, x_195); -x_197 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__9; -x_198 = 0; -x_199 = lean_alloc_ctor(0, 4, 1); -lean_ctor_set(x_199, 0, x_197); -lean_ctor_set(x_199, 1, x_9); -lean_ctor_set(x_199, 2, x_196); -lean_ctor_set(x_199, 3, x_181); -lean_ctor_set_uint8(x_199, sizeof(void*)*4, x_198); -x_200 = lean_alloc_ctor(0, 2, 0); +lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; uint8_t x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; +x_192 = l_Lean_Elab_instInhabitedInfoTree; +x_193 = l_Lean_PersistentArray_get_x21___rarg(x_192, x_162, x_177); +x_194 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_194, 0, x_193); +x_195 = l_Lean_Language_Lean_process_processHeader___lambda__3___closed__9; +x_196 = l___private_Lean_Language_Lean_0__Lean_Language_Lean_withHeaderExceptions___rarg___closed__19; +x_197 = 0; +x_198 = lean_alloc_ctor(0, 4, 1); +lean_ctor_set(x_198, 0, x_195); +lean_ctor_set(x_198, 1, x_8); +lean_ctor_set(x_198, 2, x_194); +lean_ctor_set(x_198, 3, x_196); +lean_ctor_set_uint8(x_198, sizeof(void*)*4, x_197); +x_199 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_199, 0, x_198); +lean_ctor_set(x_199, 1, x_182); +if (lean_is_scalar(x_175)) { + x_200 = lean_alloc_ctor(0, 2, 0); +} else { + x_200 = x_175; +} lean_ctor_set(x_200, 0, x_199); -lean_ctor_set(x_200, 1, x_185); -if (lean_is_scalar(x_176)) { - x_201 = lean_alloc_ctor(0, 2, 0); -} else { - x_201 = x_176; -} -lean_ctor_set(x_201, 0, x_200); -lean_ctor_set(x_201, 1, x_175); -return x_201; +lean_ctor_set(x_200, 1, x_174); +return x_200; } } } else { -uint8_t x_202; -lean_dec(x_10); +uint8_t x_201; lean_dec(x_9); +lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); -x_202 = !lean_is_exclusive(x_14); -if (x_202 == 0) +x_201 = !lean_is_exclusive(x_13); +if (x_201 == 0) { -return x_14; +return x_13; } else { -lean_object* x_203; lean_object* x_204; lean_object* x_205; -x_203 = lean_ctor_get(x_14, 0); -x_204 = lean_ctor_get(x_14, 1); -lean_inc(x_204); +lean_object* x_202; lean_object* x_203; lean_object* x_204; +x_202 = lean_ctor_get(x_13, 0); +x_203 = lean_ctor_get(x_13, 1); lean_inc(x_203); -lean_dec(x_14); -x_205 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_205, 0, x_203); -lean_ctor_set(x_205, 1, x_204); -return x_205; +lean_inc(x_202); +lean_dec(x_13); +x_204 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_204, 0, x_202); +lean_ctor_set(x_204, 1, x_203); +return x_204; } } } @@ -12973,12 +12841,24 @@ return x_205; static lean_object* _init_l_Lean_Language_Lean_process_processHeader___lambda__4___closed__1() { _start: { +uint64_t x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__9; +x_2 = l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__6; +x_3 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set_uint64(x_3, sizeof(void*)*1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Language_Lean_process_processHeader___lambda__4___closed__2() { +_start: +{ lean_object* x_1; x_1 = l_Lean_trace_profiler_output; return x_1; } } -static lean_object* _init_l_Lean_Language_Lean_process_processHeader___lambda__4___closed__2() { +static lean_object* _init_l_Lean_Language_Lean_process_processHeader___lambda__4___closed__3() { _start: { lean_object* x_1; @@ -12986,17 +12866,17 @@ x_1 = lean_mk_string_unchecked("Import", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_Language_Lean_process_processHeader___lambda__4___closed__3() { +static lean_object* _init_l_Lean_Language_Lean_process_processHeader___lambda__4___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Language_Lean_process_processHeader___lambda__4___closed__2; +x_2 = l_Lean_Language_Lean_process_processHeader___lambda__4___closed__3; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Language_Lean_process_processHeader___lambda__4___closed__4() { +static lean_object* _init_l_Lean_Language_Lean_process_processHeader___lambda__4___closed__5() { _start: { lean_object* x_1; @@ -13004,21 +12884,21 @@ x_1 = lean_mk_string_unchecked("importing", 9, 9); return x_1; } } -static lean_object* _init_l_Lean_Language_Lean_process_processHeader___lambda__4___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Language_Lean_process_processHeader___lambda__4___closed__4; -x_2 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} static lean_object* _init_l_Lean_Language_Lean_process_processHeader___lambda__4___closed__6() { _start: { lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Language_Lean_process_processHeader___lambda__4___closed__5; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Language_Lean_process_processHeader___lambda__4___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Language_Lean_process_processHeader___lambda__4___closed__6; x_2 = l_Lean_MessageData_ofFormat(x_1); return x_2; } @@ -13026,27 +12906,27 @@ return x_2; LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_processHeader___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, double x_10, double x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { -lean_object* x_15; lean_object* x_16; uint64_t x_17; lean_object* x_18; lean_object* x_19; +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; x_15 = lean_ctor_get(x_1, 0); lean_inc(x_15); lean_dec(x_1); x_16 = lean_environment_set_main_module(x_2, x_15); -x_17 = 0; -x_18 = l_Lean_Language_Lean_process_processHeader___lambda__4___closed__1; -x_19 = l_Lean_Option_get_x3f___at_Lean_addTraceAsMessages___spec__17(x_3, x_18); -if (lean_obj_tag(x_19) == 0) +x_17 = l_Lean_Language_Lean_process_processHeader___lambda__4___closed__2; +x_18 = l_Lean_Option_get_x3f___at_Lean_addTraceAsMessages___spec__17(x_3, x_17); +if (lean_obj_tag(x_18) == 0) { -lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_20 = l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__9; -x_21 = lean_box(0); -x_22 = l_Lean_Language_Lean_process_processHeader___lambda__3(x_3, x_16, x_4, x_5, x_6, x_7, x_8, x_17, x_9, x_20, x_21, x_13, x_14); -return x_22; +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = l_Lean_Language_Lean_process_processHeader___lambda__4___closed__1; +x_20 = lean_box(0); +x_21 = l_Lean_Language_Lean_process_processHeader___lambda__3(x_3, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_19, x_20, x_13, x_14); +return x_21; } else { -lean_object* x_23; uint8_t x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; -lean_dec(x_19); -x_23 = l_Lean_Language_Lean_process_processHeader___lambda__4___closed__3; +uint64_t x_22; lean_object* x_23; uint8_t x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +lean_dec(x_18); +x_22 = 0; +x_23 = l_Lean_Language_Lean_process_processHeader___lambda__4___closed__4; x_24 = 1; x_25 = l_Lean_Language_Lean_initFn____x40_Lean_Language_Lean___hyg_402____closed__4; x_26 = lean_alloc_ctor(0, 2, 17); @@ -13056,7 +12936,7 @@ lean_ctor_set_float(x_26, sizeof(void*)*2, x_10); lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_11); lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_24); x_27 = lean_box(0); -x_28 = l_Lean_Language_Lean_process_processHeader___lambda__4___closed__6; +x_28 = l_Lean_Language_Lean_process_processHeader___lambda__4___closed__7; x_29 = l_Lean_Language_Lean_process_doElab___closed__1; x_30 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_30, 0, x_26); @@ -13074,9 +12954,9 @@ x_35 = l_Array_toPArray_x27___rarg(x_34); lean_dec(x_34); x_36 = lean_alloc_ctor(0, 1, 8); lean_ctor_set(x_36, 0, x_35); -lean_ctor_set_uint64(x_36, sizeof(void*)*1, x_17); +lean_ctor_set_uint64(x_36, sizeof(void*)*1, x_22); x_37 = lean_box(0); -x_38 = l_Lean_Language_Lean_process_processHeader___lambda__3(x_3, x_16, x_4, x_5, x_6, x_7, x_8, x_17, x_9, x_36, x_37, x_13, x_14); +x_38 = l_Lean_Language_Lean_process_processHeader___lambda__3(x_3, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_36, x_37, x_13, x_14); return x_38; } } @@ -13405,17 +13285,15 @@ x_17 = l_Lean_Language_SnapshotTask_ofIO___rarg(x_11, x_16, x_5); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_processHeader___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_processHeader___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -uint64_t x_14; lean_object* x_15; -x_14 = lean_unbox_uint64(x_8); -lean_dec(x_8); -x_15 = l_Lean_Language_Lean_process_processHeader___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_14, x_9, x_10, x_11, x_12, x_13); -lean_dec(x_12); +lean_object* x_13; +x_13 = l_Lean_Language_Lean_process_processHeader___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_11); +lean_dec(x_10); lean_dec(x_4); -return x_15; +return x_13; } } LEAN_EXPORT lean_object* l_Lean_Language_Lean_process_processHeader___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { @@ -16455,14 +16333,6 @@ l_IO_FS_withIsolatedStreams___at_Lean_Language_Lean_process_doElab___spec__1___c lean_mark_persistent(l_IO_FS_withIsolatedStreams___at_Lean_Language_Lean_process_doElab___spec__1___closed__5); l_Lean_Language_Lean_process_doElab___lambda__2___closed__1 = _init_l_Lean_Language_Lean_process_doElab___lambda__2___closed__1(); lean_mark_persistent(l_Lean_Language_Lean_process_doElab___lambda__2___closed__1); -l_Lean_Language_Lean_process_doElab___lambda__3___closed__1 = _init_l_Lean_Language_Lean_process_doElab___lambda__3___closed__1(); -lean_mark_persistent(l_Lean_Language_Lean_process_doElab___lambda__3___closed__1); -l_Lean_Language_Lean_process_doElab___lambda__3___closed__2 = _init_l_Lean_Language_Lean_process_doElab___lambda__3___closed__2(); -lean_mark_persistent(l_Lean_Language_Lean_process_doElab___lambda__3___closed__2); -l_Lean_Language_Lean_process_doElab___lambda__3___closed__3 = _init_l_Lean_Language_Lean_process_doElab___lambda__3___closed__3(); -lean_mark_persistent(l_Lean_Language_Lean_process_doElab___lambda__3___closed__3); -l_Lean_Language_Lean_process_doElab___lambda__3___closed__4 = _init_l_Lean_Language_Lean_process_doElab___lambda__3___closed__4(); -lean_mark_persistent(l_Lean_Language_Lean_process_doElab___lambda__3___closed__4); l_Lean_Language_Lean_process_doElab___lambda__4___closed__1 = _init_l_Lean_Language_Lean_process_doElab___lambda__4___closed__1(); lean_mark_persistent(l_Lean_Language_Lean_process_doElab___lambda__4___closed__1); l_Lean_Language_Lean_process_doElab___lambda__4___closed__2 = _init_l_Lean_Language_Lean_process_doElab___lambda__4___closed__2(); @@ -16473,6 +16343,12 @@ l_Lean_Language_Lean_process_doElab___lambda__4___closed__4 = _init_l_Lean_Langu lean_mark_persistent(l_Lean_Language_Lean_process_doElab___lambda__4___closed__4); l_Lean_Language_Lean_process_doElab___lambda__4___closed__5 = _init_l_Lean_Language_Lean_process_doElab___lambda__4___closed__5(); lean_mark_persistent(l_Lean_Language_Lean_process_doElab___lambda__4___closed__5); +l_Lean_Language_Lean_process_doElab___lambda__4___closed__6 = _init_l_Lean_Language_Lean_process_doElab___lambda__4___closed__6(); +lean_mark_persistent(l_Lean_Language_Lean_process_doElab___lambda__4___closed__6); +l_Lean_Language_Lean_process_doElab___lambda__4___closed__7 = _init_l_Lean_Language_Lean_process_doElab___lambda__4___closed__7(); +lean_mark_persistent(l_Lean_Language_Lean_process_doElab___lambda__4___closed__7); +l_Lean_Language_Lean_process_doElab___lambda__4___closed__8 = _init_l_Lean_Language_Lean_process_doElab___lambda__4___closed__8(); +lean_mark_persistent(l_Lean_Language_Lean_process_doElab___lambda__4___closed__8); l_Lean_Language_Lean_process_doElab___closed__1 = _init_l_Lean_Language_Lean_process_doElab___closed__1(); lean_mark_persistent(l_Lean_Language_Lean_process_doElab___closed__1); l_Lean_Language_Lean_process_doElab___closed__2 = _init_l_Lean_Language_Lean_process_doElab___closed__2(); @@ -16533,7 +16409,6 @@ lean_mark_persistent(l_Lean_Language_Lean_process_parseCmd___lambda__12___closed l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__8 = _init_l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__8(); lean_mark_persistent(l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__8); l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__9 = _init_l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__9(); -lean_mark_persistent(l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__9); l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__10 = _init_l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__10(); lean_mark_persistent(l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__10); l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__11 = _init_l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__11(); @@ -16542,6 +16417,8 @@ l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__12 = _init_l_Lean_L lean_mark_persistent(l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__12); l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__13 = _init_l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__13(); lean_mark_persistent(l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__13); +l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__14 = _init_l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__14(); +lean_mark_persistent(l_Lean_Language_Lean_process_parseCmd___lambda__12___closed__14); l_Lean_Language_Lean_process_parseCmd___lambda__14___closed__1 = _init_l_Lean_Language_Lean_process_parseCmd___lambda__14___closed__1(); lean_mark_persistent(l_Lean_Language_Lean_process_parseCmd___lambda__14___closed__1); l_Lean_Language_Lean_process_parseCmd___lambda__16___closed__1 = _init_l_Lean_Language_Lean_process_parseCmd___lambda__16___closed__1(); @@ -16582,6 +16459,8 @@ l_Lean_Language_Lean_process_processHeader___lambda__4___closed__5 = _init_l_Lea lean_mark_persistent(l_Lean_Language_Lean_process_processHeader___lambda__4___closed__5); l_Lean_Language_Lean_process_processHeader___lambda__4___closed__6 = _init_l_Lean_Language_Lean_process_processHeader___lambda__4___closed__6(); lean_mark_persistent(l_Lean_Language_Lean_process_processHeader___lambda__4___closed__6); +l_Lean_Language_Lean_process_processHeader___lambda__4___closed__7 = _init_l_Lean_Language_Lean_process_processHeader___lambda__4___closed__7(); +lean_mark_persistent(l_Lean_Language_Lean_process_processHeader___lambda__4___closed__7); l_Lean_Language_Lean_process_processHeader___lambda__5___closed__1 = _init_l_Lean_Language_Lean_process_processHeader___lambda__5___closed__1(); l_Lean_Language_Lean_process_processHeader___closed__1 = _init_l_Lean_Language_Lean_process_processHeader___closed__1(); lean_mark_persistent(l_Lean_Language_Lean_process_processHeader___closed__1); diff --git a/stage0/stdlib/Lean/Level.c b/stage0/stdlib/Lean/Level.c index e3ba182492..d0190624f0 100644 --- a/stage0/stdlib/Lean/Level.c +++ b/stage0/stdlib/Lean/Level.c @@ -171,6 +171,7 @@ static lean_object* l___private_Lean_Level_0__Lean_reprLevel____x40_Lean_Level__ static lean_object* l_Lean_Level_mvarId_x21___closed__2; LEAN_EXPORT uint8_t l_Lean_Level_occurs(lean_object*, lean_object*); static lean_object* l___private_Lean_Level_0__Lean_reprLevel____x40_Lean_Level___hyg_1013____closed__17; +extern uint64_t l_instInhabitedUInt64; static lean_object* l_Lean_Level_mkData___closed__2; LEAN_EXPORT lean_object* l_Nat_imax___boxed(lean_object*, lean_object*); lean_object* lean_uint64_to_nat(uint64_t); @@ -321,7 +322,6 @@ LEAN_EXPORT lean_object* l_panic___at_Lean_Level_normalize___spec__1(lean_object LEAN_EXPORT lean_object* l_Lean_Level_getOffset___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Level_getParamSubst(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Level_PP_Result_format___closed__1; -extern uint64_t l_UInt64_instInhabited; LEAN_EXPORT lean_object* l_Lean_instBEqLevelMVarId; LEAN_EXPORT lean_object* l_Lean_Level_mkNaryMax(lean_object*); static lean_object* l___private_Lean_Level_0__Lean_reprLevel____x40_Lean_Level___hyg_1013____closed__22; @@ -448,7 +448,7 @@ static uint64_t _init_l_Lean_instInhabitedData() { _start: { uint64_t x_1; -x_1 = l_UInt64_instInhabited; +x_1 = l_instInhabitedUInt64; return x_1; } } diff --git a/stage0/stdlib/Lean/Meta/Basic.c b/stage0/stdlib/Lean/Meta/Basic.c index 565908d858..169249e3ec 100644 --- a/stage0/stdlib/Lean/Meta/Basic.c +++ b/stage0/stdlib/Lean/Meta/Basic.c @@ -54,14 +54,12 @@ LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_FVarId_hasForwardDeps_ LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalContextImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withReplaceFVarId(lean_object*); static lean_object* l_Lean_Meta_mkFunUnit___closed__4; -static lean_object* l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__2___closed__1; lean_object* l_Lean_MetavarContext_findDecl_x3f(lean_object*, lean_object*); static lean_object* l_Lean_Meta_instAlternativeMetaM___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_withErasedFVars___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_withContext(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at___private_Lean_Meta_Basic_0__Lean_Meta_mkLevelErrorMessageCore___spec__2(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_savingCache___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_profiler; LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at_Lean_Meta_getParamNames___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Meta_withIncRecDepth___spec__1___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -314,7 +312,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_throwIsDefEqStuck___rarg(lean_object*); extern lean_object* l_Lean_Compiler_inlineAttrs; LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Meta_Basic_0__Lean_Meta_beqSynthInstanceCacheKey____x40_Lean_Meta_Basic___hyg_1168_(lean_object*, lean_object*); -static lean_object* l_Lean_Meta_instInhabitedConfigWithKey___closed__1; +static uint64_t l_Lean_Meta_instInhabitedConfigWithKey___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAuxAux(lean_object*); static size_t l_Lean_PersistentHashMap_containsAux___at_Lean_Meta_recordSynthPendingFailure___spec__2___closed__2; static lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_reprProjReductionKind____x40_Lean_Meta_Basic___hyg_210____closed__21; @@ -392,7 +390,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclD(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitMain___at_Lean_FVarId_hasForwardDeps___spec__35___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_FVarId_findDecl_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_getKind___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getNumPostponed___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_EtaStructMode_toUInt64___boxed(lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_FVarId_hasForwardDeps___spec__48(lean_object*, lean_object*, size_t, size_t); @@ -506,6 +504,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___rarg___lambda__1(lean_obj static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_3098____closed__11; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalInstances___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint64_t lean_uint64_of_nat(lean_object*); static lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_reprProjReductionKind____x40_Lean_Meta_Basic___hyg_210____closed__12; lean_object* lean_nat_to_int(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_instHashableInfoCacheKey___boxed(lean_object*); @@ -1021,7 +1020,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDeclsD___rarg(lean_object*, lean_o LEAN_EXPORT lean_object* l_Lean_Meta_ProjReductionKind_noConfusion___rarg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_instMonadEnvMetaM___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Meta_Basic_0__Lean_Meta_getConstTemp_x3f___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_instBEqSynthInstanceCacheKey___closed__1; LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_FVarId_hasForwardDeps___spec__16(lean_object*, lean_object*, size_t, size_t); @@ -1090,6 +1089,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_ParamInfo_isInstImplicit___boxed(lean_objec size_t lean_usize_sub(size_t, size_t); static lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_reprProjReductionKind____x40_Lean_Meta_Basic___hyg_210____closed__14; lean_object* lean_array_mk(lean_object*); +static lean_object* l_Lean_Meta_instInhabitedConfigWithKey___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalInstancesImp(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_processPostponed___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_reprProjReductionKind____x40_Lean_Meta_Basic___hyg_210____closed__18; @@ -1189,7 +1189,7 @@ LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostpo LEAN_EXPORT lean_object* l_Lean_Meta_withMCtx___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withInTypeClassResolution(lean_object*); LEAN_EXPORT lean_object* l_Array_filterMapM___at_Lean_Meta_withInstImplicitAsImplict___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at___private_Lean_Meta_Basic_0__Lean_Meta_processPostponedStep___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getPostponed(lean_object*); @@ -1269,7 +1269,7 @@ lean_object* l_Lean_MetavarContext_incDepth(lean_object*, uint8_t); uint8_t l_Lean_Expr_isForall(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallMetaTelescopeReducingAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_setKind___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_instantiateForall(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Meta_withIncRecDepth___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withoutProofIrrelevance(lean_object*); @@ -2203,15 +2203,24 @@ x_3 = lean_box_uint64(x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_instInhabitedConfigWithKey___closed__1() { +static uint64_t _init_l_Lean_Meta_instInhabitedConfigWithKey___closed__1() { _start: { -uint64_t x_1; lean_object* x_2; lean_object* x_3; -x_1 = 0; -x_2 = l_Lean_Meta_instInhabitedConfig___closed__1; +lean_object* x_1; uint64_t x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_uint64_of_nat(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_instInhabitedConfigWithKey___closed__2() { +_start: +{ +lean_object* x_1; uint64_t x_2; lean_object* x_3; +x_1 = l_Lean_Meta_instInhabitedConfig___closed__1; +x_2 = l_Lean_Meta_instInhabitedConfigWithKey___closed__1; x_3 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set_uint64(x_3, sizeof(void*)*1, x_1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint64(x_3, sizeof(void*)*1, x_2); return x_3; } } @@ -2219,7 +2228,7 @@ static lean_object* _init_l_Lean_Meta_instInhabitedConfigWithKey() { _start: { lean_object* x_1; -x_1 = l_Lean_Meta_instInhabitedConfigWithKey___closed__1; +x_1 = l_Lean_Meta_instInhabitedConfigWithKey___closed__2; return x_1; } } @@ -2361,14 +2370,14 @@ return x_2; static lean_object* _init_l_Lean_Meta_instInhabitedInfoCacheKey___closed__2() { _start: { -uint64_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = 0; -x_2 = lean_box(0); +lean_object* x_1; uint64_t x_2; lean_object* x_3; lean_object* x_4; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_instInhabitedConfigWithKey___closed__1; x_3 = l_Lean_Meta_instInhabitedInfoCacheKey___closed__1; x_4 = lean_alloc_ctor(0, 2, 8); lean_ctor_set(x_4, 0, x_3); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set_uint64(x_4, sizeof(void*)*2, x_1); +lean_ctor_set(x_4, 1, x_1); +lean_ctor_set_uint64(x_4, sizeof(void*)*2, x_2); return x_4; } } @@ -2955,12 +2964,12 @@ return x_1; static lean_object* _init_l_Lean_Meta_instInhabitedExprConfigCacheKey___closed__1() { _start: { -uint64_t x_1; lean_object* x_2; lean_object* x_3; -x_1 = 0; -x_2 = l_Lean_Meta_instInhabitedInfoCacheKey___closed__1; +lean_object* x_1; uint64_t x_2; lean_object* x_3; +x_1 = l_Lean_Meta_instInhabitedInfoCacheKey___closed__1; +x_2 = l_Lean_Meta_instInhabitedConfigWithKey___closed__1; x_3 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set_uint64(x_3, sizeof(void*)*1, x_1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint64(x_3, sizeof(void*)*1, x_2); return x_3; } } @@ -3030,13 +3039,13 @@ return x_3; static lean_object* _init_l_Lean_Meta_instInhabitedDefEqCacheKey___closed__1() { _start: { -uint64_t x_1; lean_object* x_2; lean_object* x_3; -x_1 = 0; -x_2 = l_Lean_Meta_instInhabitedInfoCacheKey___closed__1; +lean_object* x_1; uint64_t x_2; lean_object* x_3; +x_1 = l_Lean_Meta_instInhabitedInfoCacheKey___closed__1; +x_2 = l_Lean_Meta_instInhabitedConfigWithKey___closed__1; x_3 = lean_alloc_ctor(0, 2, 8); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_2); -lean_ctor_set_uint64(x_3, sizeof(void*)*2, x_1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_1); +lean_ctor_set_uint64(x_3, sizeof(void*)*2, x_2); return x_3; } } @@ -48331,69 +48340,36 @@ lean_dec(x_9); return x_14; } } -static lean_object* _init_l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__2___closed__1() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2___closed__1; +x_17 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_3); +lean_ctor_set_float(x_17, sizeof(void*)*2, x_16); +lean_ctor_set_float(x_17, sizeof(void*)*2 + 8, x_16); +lean_ctor_set_uint8(x_17, sizeof(void*)*2 + 16, x_2); +x_18 = lean_box(0); +x_19 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_17, x_18, x_11, x_12, x_13, x_14, x_15); +return x_19; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { -_start: +else { -double x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_18 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_18, 0, x_1); -lean_ctor_set(x_18, 1, x_3); -lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); -lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); -lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); -x_19 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__2___closed__1; -x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_19); -if (x_20 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_21; lean_object* x_22; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); x_21 = lean_box(0); -x_22 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_18, x_21, x_12, x_13, x_14, x_15, x_16); +x_22 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15); return x_22; } -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_18); -x_23 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_3); -lean_ctor_set_float(x_23, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); -x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_23, x_24, x_12, x_13, x_14, x_15, x_16); -return x_25; -} -} -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_18); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16); -return x_28; -} } } static lean_object* _init_l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3___closed__1() { @@ -48413,46 +48389,46 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 5); -lean_inc(x_17); -lean_inc(x_15); +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 5); +lean_inc(x_16); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_18 = lean_apply_6(x_10, x_5, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_18) == 0) +x_17 = lean_apply_6(x_9, x_5, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_14, x_15, x_20); -lean_dec(x_15); -lean_dec(x_13); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_13, x_14, x_19); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_21; +return x_20; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_14, x_15, x_22); -lean_dec(x_15); -lean_dec(x_13); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } } } @@ -48516,253 +48492,253 @@ x_17 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__ x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_17); if (x_18 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_109 = lean_io_mono_nanos_now(x_16); -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_109, 1); -lean_inc(x_111); -lean_dec(x_109); +lean_object* x_19; lean_object* x_20; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_113 = lean_io_mono_nanos_now(x_16); +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +lean_dec(x_113); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_112 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_111); -if (lean_obj_tag(x_112) == 0) +x_116 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_115); +if (lean_obj_tag(x_116) == 0) { -uint8_t x_113; -x_113 = !lean_is_exclusive(x_112); -if (x_113 == 0) +uint8_t x_117; +x_117 = !lean_is_exclusive(x_116); +if (x_117 == 0) { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_114 = lean_ctor_get(x_112, 0); -x_115 = lean_ctor_get(x_112, 1); -x_116 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_116, 0, x_114); -x_117 = lean_io_mono_nanos_now(x_115); -x_118 = !lean_is_exclusive(x_117); -if (x_118 == 0) +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_118 = lean_ctor_get(x_116, 0); +x_119 = lean_ctor_get(x_116, 1); +x_120 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_120, 0, x_118); +x_121 = lean_io_mono_nanos_now(x_119); +x_122 = !lean_is_exclusive(x_121); +if (x_122 == 0) { -lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_122; double x_123; double x_124; double x_125; double x_126; double x_127; lean_object* x_128; lean_object* x_129; -x_119 = lean_ctor_get(x_117, 0); -x_120 = lean_ctor_get(x_117, 1); -x_121 = 0; -x_122 = lean_unsigned_to_nat(0u); -x_123 = l_Float_ofScientific(x_110, x_121, x_122); -lean_dec(x_110); -x_124 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__4___closed__5; -x_125 = lean_float_div(x_123, x_124); -x_126 = l_Float_ofScientific(x_119, x_121, x_122); -lean_dec(x_119); -x_127 = lean_float_div(x_126, x_124); -x_128 = lean_box_float(x_125); -x_129 = lean_box_float(x_127); -lean_ctor_set(x_117, 1, x_129); -lean_ctor_set(x_117, 0, x_128); -lean_ctor_set(x_112, 1, x_117); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_120; -goto block_108; +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; double x_130; double x_131; lean_object* x_132; lean_object* x_133; +x_123 = lean_ctor_get(x_121, 0); +x_124 = lean_ctor_get(x_121, 1); +x_125 = 0; +x_126 = lean_unsigned_to_nat(0u); +x_127 = l_Float_ofScientific(x_114, x_125, x_126); +lean_dec(x_114); +x_128 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__4___closed__5; +x_129 = lean_float_div(x_127, x_128); +x_130 = l_Float_ofScientific(x_123, x_125, x_126); +lean_dec(x_123); +x_131 = lean_float_div(x_130, x_128); +x_132 = lean_box_float(x_129); +x_133 = lean_box_float(x_131); +lean_ctor_set(x_121, 1, x_133); +lean_ctor_set(x_121, 0, x_132); +lean_ctor_set(x_116, 1, x_121); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_124; +goto block_112; } else { -lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; double x_134; double x_135; double x_136; double x_137; double x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_130 = lean_ctor_get(x_117, 0); -x_131 = lean_ctor_get(x_117, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_117); -x_132 = 0; -x_133 = lean_unsigned_to_nat(0u); -x_134 = l_Float_ofScientific(x_110, x_132, x_133); -lean_dec(x_110); -x_135 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__4___closed__5; -x_136 = lean_float_div(x_134, x_135); -x_137 = l_Float_ofScientific(x_130, x_132, x_133); -lean_dec(x_130); -x_138 = lean_float_div(x_137, x_135); -x_139 = lean_box_float(x_136); -x_140 = lean_box_float(x_138); -x_141 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -lean_ctor_set(x_112, 1, x_141); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_131; -goto block_108; +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_134 = lean_ctor_get(x_121, 0); +x_135 = lean_ctor_get(x_121, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_121); +x_136 = 0; +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Float_ofScientific(x_114, x_136, x_137); +lean_dec(x_114); +x_139 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__4___closed__5; +x_140 = lean_float_div(x_138, x_139); +x_141 = l_Float_ofScientific(x_134, x_136, x_137); +lean_dec(x_134); +x_142 = lean_float_div(x_141, x_139); +x_143 = lean_box_float(x_140); +x_144 = lean_box_float(x_142); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_116, 1, x_145); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_135; +goto block_112; } } else { -lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_142 = lean_ctor_get(x_112, 0); -x_143 = lean_ctor_get(x_112, 1); -lean_inc(x_143); -lean_inc(x_142); -lean_dec(x_112); -x_144 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_144, 0, x_142); -x_145 = lean_io_mono_nanos_now(x_143); -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; lean_object* x_154; double x_155; double x_156; double x_157; double x_158; double x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_146 = lean_ctor_get(x_116, 0); +x_147 = lean_ctor_get(x_116, 1); lean_inc(x_147); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - lean_ctor_release(x_145, 1); - x_148 = x_145; +lean_inc(x_146); +lean_dec(x_116); +x_148 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_148, 0, x_146); +x_149 = lean_io_mono_nanos_now(x_147); +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + lean_ctor_release(x_149, 1); + x_152 = x_149; } else { - lean_dec_ref(x_145); - x_148 = lean_box(0); + lean_dec_ref(x_149); + x_152 = lean_box(0); } -x_149 = 0; -x_150 = lean_unsigned_to_nat(0u); -x_151 = l_Float_ofScientific(x_110, x_149, x_150); -lean_dec(x_110); -x_152 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__4___closed__5; -x_153 = lean_float_div(x_151, x_152); -x_154 = l_Float_ofScientific(x_146, x_149, x_150); -lean_dec(x_146); -x_155 = lean_float_div(x_154, x_152); -x_156 = lean_box_float(x_153); -x_157 = lean_box_float(x_155); -if (lean_is_scalar(x_148)) { - x_158 = lean_alloc_ctor(0, 2, 0); +x_153 = 0; +x_154 = lean_unsigned_to_nat(0u); +x_155 = l_Float_ofScientific(x_114, x_153, x_154); +lean_dec(x_114); +x_156 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__4___closed__5; +x_157 = lean_float_div(x_155, x_156); +x_158 = l_Float_ofScientific(x_150, x_153, x_154); +lean_dec(x_150); +x_159 = lean_float_div(x_158, x_156); +x_160 = lean_box_float(x_157); +x_161 = lean_box_float(x_159); +if (lean_is_scalar(x_152)) { + x_162 = lean_alloc_ctor(0, 2, 0); } else { - x_158 = x_148; + x_162 = x_152; } -lean_ctor_set(x_158, 0, x_156); -lean_ctor_set(x_158, 1, x_157); -x_159 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_159, 0, x_144); -lean_ctor_set(x_159, 1, x_158); -x_19 = x_159; -x_20 = x_147; -goto block_108; +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_161); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_148); +lean_ctor_set(x_163, 1, x_162); +x_19 = x_163; +x_20 = x_151; +goto block_112; } } else { -uint8_t x_160; -x_160 = !lean_is_exclusive(x_112); -if (x_160 == 0) +uint8_t x_164; +x_164 = !lean_is_exclusive(x_116); +if (x_164 == 0) { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_161 = lean_ctor_get(x_112, 0); -x_162 = lean_ctor_get(x_112, 1); -x_163 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_163, 0, x_161); -x_164 = lean_io_mono_nanos_now(x_162); -x_165 = !lean_is_exclusive(x_164); -if (x_165 == 0) +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; +x_165 = lean_ctor_get(x_116, 0); +x_166 = lean_ctor_get(x_116, 1); +x_167 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_167, 0, x_165); +x_168 = lean_io_mono_nanos_now(x_166); +x_169 = !lean_is_exclusive(x_168); +if (x_169 == 0) { -lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; double x_170; double x_171; double x_172; double x_173; double x_174; lean_object* x_175; lean_object* x_176; -x_166 = lean_ctor_get(x_164, 0); -x_167 = lean_ctor_get(x_164, 1); -x_168 = 0; -x_169 = lean_unsigned_to_nat(0u); -x_170 = l_Float_ofScientific(x_110, x_168, x_169); -lean_dec(x_110); -x_171 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__4___closed__5; -x_172 = lean_float_div(x_170, x_171); -x_173 = l_Float_ofScientific(x_166, x_168, x_169); -lean_dec(x_166); -x_174 = lean_float_div(x_173, x_171); -x_175 = lean_box_float(x_172); -x_176 = lean_box_float(x_174); -lean_ctor_set(x_164, 1, x_176); -lean_ctor_set(x_164, 0, x_175); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_164); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_167; -goto block_108; +lean_object* x_170; lean_object* x_171; uint8_t x_172; lean_object* x_173; double x_174; double x_175; double x_176; double x_177; double x_178; lean_object* x_179; lean_object* x_180; +x_170 = lean_ctor_get(x_168, 0); +x_171 = lean_ctor_get(x_168, 1); +x_172 = 0; +x_173 = lean_unsigned_to_nat(0u); +x_174 = l_Float_ofScientific(x_114, x_172, x_173); +lean_dec(x_114); +x_175 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__4___closed__5; +x_176 = lean_float_div(x_174, x_175); +x_177 = l_Float_ofScientific(x_170, x_172, x_173); +lean_dec(x_170); +x_178 = lean_float_div(x_177, x_175); +x_179 = lean_box_float(x_176); +x_180 = lean_box_float(x_178); +lean_ctor_set(x_168, 1, x_180); +lean_ctor_set(x_168, 0, x_179); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_168); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_171; +goto block_112; } else { -lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_object* x_180; double x_181; double x_182; double x_183; double x_184; double x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_177 = lean_ctor_get(x_164, 0); -x_178 = lean_ctor_get(x_164, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_164); -x_179 = 0; -x_180 = lean_unsigned_to_nat(0u); -x_181 = l_Float_ofScientific(x_110, x_179, x_180); -lean_dec(x_110); -x_182 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__4___closed__5; -x_183 = lean_float_div(x_181, x_182); -x_184 = l_Float_ofScientific(x_177, x_179, x_180); -lean_dec(x_177); -x_185 = lean_float_div(x_184, x_182); -x_186 = lean_box_float(x_183); -x_187 = lean_box_float(x_185); -x_188 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_188); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_178; -goto block_108; +lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_181 = lean_ctor_get(x_168, 0); +x_182 = lean_ctor_get(x_168, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_168); +x_183 = 0; +x_184 = lean_unsigned_to_nat(0u); +x_185 = l_Float_ofScientific(x_114, x_183, x_184); +lean_dec(x_114); +x_186 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__4___closed__5; +x_187 = lean_float_div(x_185, x_186); +x_188 = l_Float_ofScientific(x_181, x_183, x_184); +lean_dec(x_181); +x_189 = lean_float_div(x_188, x_186); +x_190 = lean_box_float(x_187); +x_191 = lean_box_float(x_189); +x_192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_192); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_182; +goto block_112; } } else { -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_189 = lean_ctor_get(x_112, 0); -x_190 = lean_ctor_get(x_112, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_112); -x_191 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_191, 0, x_189); -x_192 = lean_io_mono_nanos_now(x_190); -x_193 = lean_ctor_get(x_192, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; lean_object* x_201; double x_202; double x_203; double x_204; double x_205; double x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_193 = lean_ctor_get(x_116, 0); +x_194 = lean_ctor_get(x_116, 1); lean_inc(x_194); -if (lean_is_exclusive(x_192)) { - lean_ctor_release(x_192, 0); - lean_ctor_release(x_192, 1); - x_195 = x_192; +lean_inc(x_193); +lean_dec(x_116); +x_195 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_195, 0, x_193); +x_196 = lean_io_mono_nanos_now(x_194); +x_197 = lean_ctor_get(x_196, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_196, 1); +lean_inc(x_198); +if (lean_is_exclusive(x_196)) { + lean_ctor_release(x_196, 0); + lean_ctor_release(x_196, 1); + x_199 = x_196; } else { - lean_dec_ref(x_192); - x_195 = lean_box(0); + lean_dec_ref(x_196); + x_199 = lean_box(0); } -x_196 = 0; -x_197 = lean_unsigned_to_nat(0u); -x_198 = l_Float_ofScientific(x_110, x_196, x_197); -lean_dec(x_110); -x_199 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__4___closed__5; -x_200 = lean_float_div(x_198, x_199); -x_201 = l_Float_ofScientific(x_193, x_196, x_197); -lean_dec(x_193); -x_202 = lean_float_div(x_201, x_199); -x_203 = lean_box_float(x_200); -x_204 = lean_box_float(x_202); -if (lean_is_scalar(x_195)) { - x_205 = lean_alloc_ctor(0, 2, 0); +x_200 = 0; +x_201 = lean_unsigned_to_nat(0u); +x_202 = l_Float_ofScientific(x_114, x_200, x_201); +lean_dec(x_114); +x_203 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__4___closed__5; +x_204 = lean_float_div(x_202, x_203); +x_205 = l_Float_ofScientific(x_197, x_200, x_201); +lean_dec(x_197); +x_206 = lean_float_div(x_205, x_203); +x_207 = lean_box_float(x_204); +x_208 = lean_box_float(x_206); +if (lean_is_scalar(x_199)) { + x_209 = lean_alloc_ctor(0, 2, 0); } else { - x_205 = x_195; + x_209 = x_199; } -lean_ctor_set(x_205, 0, x_203); -lean_ctor_set(x_205, 1, x_204); -x_206 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_206, 0, x_191); -lean_ctor_set(x_206, 1, x_205); -x_19 = x_206; -x_20 = x_194; -goto block_108; +lean_ctor_set(x_209, 0, x_207); +lean_ctor_set(x_209, 1, x_208); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_195); +lean_ctor_set(x_210, 1, x_209); +x_19 = x_210; +x_20 = x_198; +goto block_112; } } -block_108: +block_112: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_94; uint8_t x_95; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); x_22 = lean_ctor_get(x_19, 0); @@ -48773,17 +48749,33 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_21, 1); lean_inc(x_24); lean_dec(x_21); -x_94 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__4___closed__2; -x_95 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_94); -if (x_95 == 0) +x_25 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__4___closed__2; +x_26 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_25); +if (x_26 == 0) { -uint8_t x_96; -x_96 = 0; -x_25 = x_96; -goto block_93; +if (x_6 == 0) +{ +uint8_t x_92; +x_92 = 0; +x_27 = x_92; +goto block_91; } else { +lean_object* x_93; double x_94; double x_95; lean_object* x_96; +x_93 = lean_box(0); +x_94 = lean_unbox_float(x_23); +lean_dec(x_23); +x_95 = lean_unbox_float(x_24); +lean_dec(x_24); +x_96 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_94, x_95, x_5, x_93, x_9, x_10, x_11, x_12, x_20); +return x_96; +} +} +else +{ +if (x_6 == 0) +{ double x_97; double x_98; double x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; double x_104; double x_105; double x_106; uint8_t x_107; x_97 = lean_unbox_float(x_24); x_98 = lean_unbox_float(x_23); @@ -48797,859 +48789,871 @@ lean_dec(x_101); x_105 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__4___closed__4; x_106 = lean_float_div(x_104, x_105); x_107 = lean_float_decLt(x_106, x_99); -x_25 = x_107; -goto block_93; +x_27 = x_107; +goto block_91; } -block_93: +else { -if (x_6 == 0) +lean_object* x_108; double x_109; double x_110; lean_object* x_111; +x_108 = lean_box(0); +x_109 = lean_unbox_float(x_23); +lean_dec(x_23); +x_110 = lean_unbox_float(x_24); +lean_dec(x_24); +x_111 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_109, x_110, x_5, x_108, x_9, x_10, x_11, x_12, x_20); +return x_111; +} +} +block_91: { -if (x_25 == 0) +if (x_27 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_24); lean_dec(x_23); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_26 = lean_st_ref_take(x_12, x_20); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -x_29 = lean_ctor_get(x_26, 1); +x_28 = lean_st_ref_take(x_12, x_20); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -lean_dec(x_26); -x_30 = !lean_is_exclusive(x_27); -if (x_30 == 0) -{ -lean_object* x_31; uint8_t x_32; -x_31 = lean_ctor_get(x_27, 3); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_28); +x_30 = lean_ctor_get(x_29, 3); +lean_inc(x_30); +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = !lean_is_exclusive(x_29); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_33 = lean_ctor_get(x_28, 0); -x_34 = l_Lean_PersistentArray_append___rarg(x_15, x_33); +lean_object* x_33; uint8_t x_34; +x_33 = lean_ctor_get(x_29, 3); lean_dec(x_33); -lean_ctor_set(x_28, 0, x_34); -x_35 = lean_st_ref_set(x_12, x_27, x_29); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); +x_34 = !lean_is_exclusive(x_30); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_ctor_get(x_30, 0); +x_36 = l_Lean_PersistentArray_append___rarg(x_15, x_35); lean_dec(x_35); -x_37 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_22, x_9, x_10, x_11, x_12, x_36); +lean_ctor_set(x_30, 0, x_36); +x_37 = lean_st_ref_set(x_12, x_29, x_31); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +x_39 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_22, x_9, x_10, x_11, x_12, x_38); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_37) == 0) +if (lean_obj_tag(x_39) == 0) { -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -return x_37; +return x_39; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_ctor_get(x_37, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_37); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_39); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } else { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_37); -if (x_42 == 0) +uint8_t x_44; +x_44 = !lean_is_exclusive(x_39); +if (x_44 == 0) { -return x_37; +return x_39; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_37, 0); -x_44 = lean_ctor_get(x_37, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_37); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_39, 0); +x_46 = lean_ctor_get(x_39, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_39); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } } else { -uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_47 = lean_ctor_get(x_28, 0); -lean_inc(x_47); -lean_dec(x_28); -x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_47); -lean_dec(x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); -lean_ctor_set(x_27, 3, x_49); -x_50 = lean_st_ref_set(x_12, x_27, x_29); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -lean_dec(x_50); -x_52 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_22, x_9, x_10, x_11, x_12, x_51); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_22); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); +uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_49 = lean_ctor_get(x_30, 0); +lean_inc(x_49); +lean_dec(x_30); +x_50 = l_Lean_PersistentArray_append___rarg(x_15, x_49); +lean_dec(x_49); +x_51 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); +lean_ctor_set(x_29, 3, x_51); +x_52 = lean_st_ref_set(x_12, x_29, x_31); +x_53 = lean_ctor_get(x_52, 1); lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_55 = x_52; +lean_dec(x_52); +x_54 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_22, x_9, x_10, x_11, x_12, x_53); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_22); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; } else { - lean_dec_ref(x_52); - x_55 = lean_box(0); + lean_dec_ref(x_54); + x_57 = lean_box(0); } -if (lean_is_scalar(x_55)) { - x_56 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_57)) { + x_58 = lean_alloc_ctor(0, 2, 0); } else { - x_56 = x_55; + x_58 = x_57; } -lean_ctor_set(x_56, 0, x_53); -lean_ctor_set(x_56, 1, x_54); -return x_56; +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_56); +return x_58; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_52, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_52, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_59 = x_52; +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_54, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_54, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_61 = x_54; } else { - lean_dec_ref(x_52); - x_59 = lean_box(0); + lean_dec_ref(x_54); + x_61 = lean_box(0); } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(1, 2, 0); } else { - x_60 = x_59; + x_62 = x_61; } -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_58); -return x_60; +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; } } } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_61 = lean_ctor_get(x_27, 0); -x_62 = lean_ctor_get(x_27, 1); -x_63 = lean_ctor_get(x_27, 2); -x_64 = lean_ctor_get(x_27, 4); -x_65 = lean_ctor_get(x_27, 5); -x_66 = lean_ctor_get(x_27, 6); -x_67 = lean_ctor_get(x_27, 7); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_63 = lean_ctor_get(x_29, 0); +x_64 = lean_ctor_get(x_29, 1); +x_65 = lean_ctor_get(x_29, 2); +x_66 = lean_ctor_get(x_29, 4); +x_67 = lean_ctor_get(x_29, 5); +x_68 = lean_ctor_get(x_29, 6); +x_69 = lean_ctor_get(x_29, 7); +lean_inc(x_69); +lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_27); -x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_69 = lean_ctor_get(x_28, 0); -lean_inc(x_69); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - x_70 = x_28; +lean_dec(x_29); +x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_71 = lean_ctor_get(x_30, 0); +lean_inc(x_71); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + x_72 = x_30; } else { - lean_dec_ref(x_28); - x_70 = lean_box(0); + lean_dec_ref(x_30); + x_72 = lean_box(0); } -x_71 = l_Lean_PersistentArray_append___rarg(x_15, x_69); -lean_dec(x_69); -if (lean_is_scalar(x_70)) { - x_72 = lean_alloc_ctor(0, 1, 8); +x_73 = l_Lean_PersistentArray_append___rarg(x_15, x_71); +lean_dec(x_71); +if (lean_is_scalar(x_72)) { + x_74 = lean_alloc_ctor(0, 1, 8); } else { - x_72 = x_70; + x_74 = x_72; } -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); -x_73 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_73, 0, x_61); -lean_ctor_set(x_73, 1, x_62); -lean_ctor_set(x_73, 2, x_63); -lean_ctor_set(x_73, 3, x_72); -lean_ctor_set(x_73, 4, x_64); -lean_ctor_set(x_73, 5, x_65); -lean_ctor_set(x_73, 6, x_66); -lean_ctor_set(x_73, 7, x_67); -x_74 = lean_st_ref_set(x_12, x_73, x_29); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_76 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_22, x_9, x_10, x_11, x_12, x_75); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); +x_75 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_64); +lean_ctor_set(x_75, 2, x_65); +lean_ctor_set(x_75, 3, x_74); +lean_ctor_set(x_75, 4, x_66); +lean_ctor_set(x_75, 5, x_67); +lean_ctor_set(x_75, 6, x_68); +lean_ctor_set(x_75, 7, x_69); +x_76 = lean_st_ref_set(x_12, x_75, x_31); +x_77 = lean_ctor_get(x_76, 1); +lean_inc(x_77); +lean_dec(x_76); +x_78 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_22, x_9, x_10, x_11, x_12, x_77); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_76) == 0) +if (lean_obj_tag(x_78) == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_76, 0); -lean_inc(x_77); -x_78 = lean_ctor_get(x_76, 1); -lean_inc(x_78); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_79 = x_76; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_81 = x_78; } else { - lean_dec_ref(x_76); - x_79 = lean_box(0); + lean_dec_ref(x_78); + x_81 = lean_box(0); } -if (lean_is_scalar(x_79)) { - x_80 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(0, 2, 0); } else { - x_80 = x_79; + x_82 = x_81; } -lean_ctor_set(x_80, 0, x_77); -lean_ctor_set(x_80, 1, x_78); -return x_80; +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_80); +return x_82; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_81 = lean_ctor_get(x_76, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_76, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_83 = x_76; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_83 = lean_ctor_get(x_78, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_78, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_85 = x_78; } else { - lean_dec_ref(x_76); - x_83 = lean_box(0); + lean_dec_ref(x_78); + x_85 = lean_box(0); } -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); } else { - x_84 = x_83; + x_86 = x_85; } -lean_ctor_set(x_84, 0, x_81); -lean_ctor_set(x_84, 1, x_82); -return x_84; +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; } } } else { -lean_object* x_85; double x_86; double x_87; lean_object* x_88; -x_85 = lean_box(0); -x_86 = lean_unbox_float(x_23); +lean_object* x_87; double x_88; double x_89; lean_object* x_90; +x_87 = lean_box(0); +x_88 = lean_unbox_float(x_23); lean_dec(x_23); -x_87 = lean_unbox_float(x_24); +x_89 = lean_unbox_float(x_24); lean_dec(x_24); -x_88 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_86, x_87, x_5, x_85, x_9, x_10, x_11, x_12, x_20); -return x_88; -} -} -else -{ -lean_object* x_89; double x_90; double x_91; lean_object* x_92; -x_89 = lean_box(0); -x_90 = lean_unbox_float(x_23); -lean_dec(x_23); -x_91 = lean_unbox_float(x_24); -lean_dec(x_24); -x_92 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_20); -return x_92; +x_90 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_20); +return x_90; } } } } else { -lean_object* x_207; lean_object* x_208; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_16); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_211; lean_object* x_212; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_16); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_207 = x_336; -x_208 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_211 = x_344; +x_212 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_207 = x_374; -x_208 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_282; uint8_t x_283; -x_209 = lean_ctor_get(x_207, 1); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 0); -lean_inc(x_210); -lean_dec(x_207); -x_211 = lean_ctor_get(x_209, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 1); -lean_inc(x_212); -lean_dec(x_209); -x_282 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_213 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_212); -x_286 = lean_unbox_float(x_211); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_213 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_211 = x_382; +x_212 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; uint8_t x_219; +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 0); +lean_inc(x_214); +lean_dec(x_211); +x_215 = lean_ctor_get(x_213, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 1); +lean_inc(x_216); +lean_dec(x_213); +x_217 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__4___closed__2; +x_218 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_217); +if (x_218 == 0) { if (x_6 == 0) { -if (x_213 == 0) +uint8_t x_284; +x_284 = 0; +x_219 = x_284; +goto block_283; +} +else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; -lean_dec(x_212); -lean_dec(x_211); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_215); +lean_dec(x_215); +x_287 = lean_unbox_float(x_216); +lean_dec(x_216); +x_288 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_212); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_216); +x_290 = lean_unbox_float(x_215); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_219 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_215); +lean_dec(x_215); +x_300 = lean_unbox_float(x_216); +lean_dec(x_216); +x_301 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_212); +return x_301; +} +} +block_283: +{ +if (x_219 == 0) +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; +lean_dec(x_216); +lean_dec(x_215); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_214 = lean_st_ref_take(x_12, x_208); -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_215, 3); -lean_inc(x_216); -x_217 = lean_ctor_get(x_214, 1); -lean_inc(x_217); -lean_dec(x_214); -x_218 = !lean_is_exclusive(x_215); -if (x_218 == 0) +x_220 = lean_st_ref_take(x_12, x_212); +x_221 = lean_ctor_get(x_220, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_221, 3); +lean_inc(x_222); +x_223 = lean_ctor_get(x_220, 1); +lean_inc(x_223); +lean_dec(x_220); +x_224 = !lean_is_exclusive(x_221); +if (x_224 == 0) { -lean_object* x_219; uint8_t x_220; -x_219 = lean_ctor_get(x_215, 3); -lean_dec(x_219); -x_220 = !lean_is_exclusive(x_216); -if (x_220 == 0) -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_221 = lean_ctor_get(x_216, 0); -x_222 = l_Lean_PersistentArray_append___rarg(x_15, x_221); -lean_dec(x_221); -lean_ctor_set(x_216, 0, x_222); -x_223 = lean_st_ref_set(x_12, x_215, x_217); -x_224 = lean_ctor_get(x_223, 1); -lean_inc(x_224); -lean_dec(x_223); -x_225 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_210, x_9, x_10, x_11, x_12, x_224); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_225) == 0) -{ -uint8_t x_226; -x_226 = !lean_is_exclusive(x_225); +lean_object* x_225; uint8_t x_226; +x_225 = lean_ctor_get(x_221, 3); +lean_dec(x_225); +x_226 = !lean_is_exclusive(x_222); if (x_226 == 0) { -return x_225; -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; -x_227 = lean_ctor_get(x_225, 0); -x_228 = lean_ctor_get(x_225, 1); -lean_inc(x_228); -lean_inc(x_227); -lean_dec(x_225); -x_229 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_229, 0, x_227); -lean_ctor_set(x_229, 1, x_228); -return x_229; -} -} -else -{ -uint8_t x_230; -x_230 = !lean_is_exclusive(x_225); -if (x_230 == 0) -{ -return x_225; -} -else -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_225, 0); -x_232 = lean_ctor_get(x_225, 1); -lean_inc(x_232); -lean_inc(x_231); -lean_dec(x_225); -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_231); -lean_ctor_set(x_233, 1, x_232); -return x_233; -} -} -} -else -{ -uint64_t x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_234 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_235 = lean_ctor_get(x_216, 0); -lean_inc(x_235); -lean_dec(x_216); -x_236 = l_Lean_PersistentArray_append___rarg(x_15, x_235); -lean_dec(x_235); -x_237 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_237, 0, x_236); -lean_ctor_set_uint64(x_237, sizeof(void*)*1, x_234); -lean_ctor_set(x_215, 3, x_237); -x_238 = lean_st_ref_set(x_12, x_215, x_217); -x_239 = lean_ctor_get(x_238, 1); -lean_inc(x_239); -lean_dec(x_238); -x_240 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_210, x_9, x_10, x_11, x_12, x_239); +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_227 = lean_ctor_get(x_222, 0); +x_228 = l_Lean_PersistentArray_append___rarg(x_15, x_227); +lean_dec(x_227); +lean_ctor_set(x_222, 0, x_228); +x_229 = lean_st_ref_set(x_12, x_221, x_223); +x_230 = lean_ctor_get(x_229, 1); +lean_inc(x_230); +lean_dec(x_229); +x_231 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_214, x_9, x_10, x_11, x_12, x_230); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_240) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_231) == 0) { -lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; -x_241 = lean_ctor_get(x_240, 0); +uint8_t x_232; +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +return x_231; +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_231, 0); +x_234 = lean_ctor_get(x_231, 1); +lean_inc(x_234); +lean_inc(x_233); +lean_dec(x_231); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +return x_235; +} +} +else +{ +uint8_t x_236; +x_236 = !lean_is_exclusive(x_231); +if (x_236 == 0) +{ +return x_231; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_231, 0); +x_238 = lean_ctor_get(x_231, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_231); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} +} +} +else +{ +uint64_t x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_240 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_241 = lean_ctor_get(x_222, 0); lean_inc(x_241); -x_242 = lean_ctor_get(x_240, 1); -lean_inc(x_242); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_243 = x_240; -} else { - lean_dec_ref(x_240); - x_243 = lean_box(0); -} -if (lean_is_scalar(x_243)) { - x_244 = lean_alloc_ctor(0, 2, 0); -} else { - x_244 = x_243; -} -lean_ctor_set(x_244, 0, x_241); -lean_ctor_set(x_244, 1, x_242); -return x_244; -} -else -{ -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_245 = lean_ctor_get(x_240, 0); +lean_dec(x_222); +x_242 = l_Lean_PersistentArray_append___rarg(x_15, x_241); +lean_dec(x_241); +x_243 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set_uint64(x_243, sizeof(void*)*1, x_240); +lean_ctor_set(x_221, 3, x_243); +x_244 = lean_st_ref_set(x_12, x_221, x_223); +x_245 = lean_ctor_get(x_244, 1); lean_inc(x_245); -x_246 = lean_ctor_get(x_240, 1); -lean_inc(x_246); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_247 = x_240; -} else { - lean_dec_ref(x_240); - x_247 = lean_box(0); -} -if (lean_is_scalar(x_247)) { - x_248 = lean_alloc_ctor(1, 2, 0); -} else { - x_248 = x_247; -} -lean_ctor_set(x_248, 0, x_245); -lean_ctor_set(x_248, 1, x_246); -return x_248; -} -} -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_249 = lean_ctor_get(x_215, 0); -x_250 = lean_ctor_get(x_215, 1); -x_251 = lean_ctor_get(x_215, 2); -x_252 = lean_ctor_get(x_215, 4); -x_253 = lean_ctor_get(x_215, 5); -x_254 = lean_ctor_get(x_215, 6); -x_255 = lean_ctor_get(x_215, 7); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_dec(x_215); -x_256 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_257 = lean_ctor_get(x_216, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_216)) { - lean_ctor_release(x_216, 0); - x_258 = x_216; -} else { - lean_dec_ref(x_216); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_15, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_261, 0, x_249); -lean_ctor_set(x_261, 1, x_250); -lean_ctor_set(x_261, 2, x_251); -lean_ctor_set(x_261, 3, x_260); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_255); -x_262 = lean_st_ref_set(x_12, x_261, x_217); -x_263 = lean_ctor_get(x_262, 1); -lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_210, x_9, x_10, x_11, x_12, x_263); +lean_dec(x_244); +x_246 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_214, x_9, x_10, x_11, x_12, x_245); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_246) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_247 = lean_ctor_get(x_246, 0); +lean_inc(x_247); +x_248 = lean_ctor_get(x_246, 1); +lean_inc(x_248); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_249 = x_246; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_246); + x_249 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_249)) { + x_250 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_250 = x_249; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_250, 0, x_247); +lean_ctor_set(x_250, 1, x_248); +return x_250; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_251 = lean_ctor_get(x_246, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_246, 1); +lean_inc(x_252); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_253 = x_246; +} else { + lean_dec_ref(x_246); + x_253 = lean_box(0); +} +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(1, 2, 0); +} else { + x_254 = x_253; +} +lean_ctor_set(x_254, 0, x_251); +lean_ctor_set(x_254, 1, x_252); +return x_254; +} +} +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_255 = lean_ctor_get(x_221, 0); +x_256 = lean_ctor_get(x_221, 1); +x_257 = lean_ctor_get(x_221, 2); +x_258 = lean_ctor_get(x_221, 4); +x_259 = lean_ctor_get(x_221, 5); +x_260 = lean_ctor_get(x_221, 6); +x_261 = lean_ctor_get(x_221, 7); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_221); +x_262 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_263 = lean_ctor_get(x_222, 0); +lean_inc(x_263); +if (lean_is_exclusive(x_222)) { + lean_ctor_release(x_222, 0); + x_264 = x_222; +} else { + lean_dec_ref(x_222); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_15, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_267, 0, x_255); +lean_ctor_set(x_267, 1, x_256); +lean_ctor_set(x_267, 2, x_257); +lean_ctor_set(x_267, 3, x_266); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_261); +x_268 = lean_st_ref_set(x_12, x_267, x_223); +x_269 = lean_ctor_get(x_268, 1); lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_214, x_9, x_10, x_11, x_12, x_269); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_214); +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_272 = x_271; + x_274 = x_273; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; +} else { + lean_dec_ref(x_270); + x_277 = lean_box(0); +} +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); +} else { + x_278 = x_277; +} +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_211); -lean_dec(x_211); -x_275 = lean_unbox_float(x_212); -lean_dec(x_212); -x_276 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_274, x_275, x_5, x_273, x_9, x_10, x_11, x_12, x_208); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_211); -lean_dec(x_211); -x_279 = lean_unbox_float(x_212); -lean_dec(x_212); -x_280 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_278, x_279, x_5, x_277, x_9, x_10, x_11, x_12, x_208); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_215); +lean_dec(x_215); +x_281 = lean_unbox_float(x_216); +lean_dec(x_216); +x_282 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_212); +return x_282; } } } @@ -49968,43 +49972,41 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_8); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); lean_dec(x_8); x_19 = lean_unbox_float(x_9); lean_dec(x_9); -x_20 = lean_unbox_float(x_10); -lean_dec(x_10); -x_21 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_18, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_15); -lean_dec(x_13); +x_20 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__2(x_1, x_16, x_3, x_4, x_5, x_6, x_17, x_18, x_19, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_14); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_21; +return x_20; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_7); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); lean_dec(x_7); x_19 = lean_unbox_float(x_8); lean_dec(x_8); -x_20 = lean_unbox_float(x_9); -lean_dec(x_9); -x_21 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_11); -lean_dec(x_6); -return x_21; +x_20 = l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3(x_1, x_16, x_3, x_4, x_5, x_17, x_18, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +return x_20; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -54211,7 +54213,8 @@ lean_mark_persistent(l_Lean_Meta_instInhabitedConfig___closed__1); l_Lean_Meta_instInhabitedConfig = _init_l_Lean_Meta_instInhabitedConfig(); lean_mark_persistent(l_Lean_Meta_instInhabitedConfig); l_Lean_Meta_instInhabitedConfigWithKey___closed__1 = _init_l_Lean_Meta_instInhabitedConfigWithKey___closed__1(); -lean_mark_persistent(l_Lean_Meta_instInhabitedConfigWithKey___closed__1); +l_Lean_Meta_instInhabitedConfigWithKey___closed__2 = _init_l_Lean_Meta_instInhabitedConfigWithKey___closed__2(); +lean_mark_persistent(l_Lean_Meta_instInhabitedConfigWithKey___closed__2); l_Lean_Meta_instInhabitedConfigWithKey = _init_l_Lean_Meta_instInhabitedConfigWithKey(); lean_mark_persistent(l_Lean_Meta_instInhabitedConfigWithKey); l_Lean_Meta_instInhabitedParamInfo___closed__1 = _init_l_Lean_Meta_instInhabitedParamInfo___closed__1(); @@ -54548,8 +54551,6 @@ l_Lean_Meta_processPostponed_loop___closed__4 = _init_l_Lean_Meta_processPostpon lean_mark_persistent(l_Lean_Meta_processPostponed_loop___closed__4); l_Lean_Meta_processPostponed_loop___closed__5 = _init_l_Lean_Meta_processPostponed_loop___closed__5(); lean_mark_persistent(l_Lean_Meta_processPostponed_loop___closed__5); -l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__2___closed__1(); -lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__2___closed__1); l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3___closed__1); l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Meta/Check.c b/stage0/stdlib/Lean/Meta/Check.c index ada7994ade..3150c10f5e 100644 --- a/stage0/stdlib/Lean/Meta/Check.c +++ b/stage0/stdlib/Lean/Meta/Check.c @@ -18,7 +18,6 @@ LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_Meta_check___spec__2(l LEAN_EXPORT lean_object* l_Lean_Meta_lambdaLetTelescope___at___private_Lean_Meta_Check_0__Lean_Meta_checkAux_checkLambdaLet___spec__2___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_check___lambda__1___closed__8; LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___private_Lean_Meta_Check_0__Lean_Meta_checkAux_check___spec__2(lean_object*, lean_object*); -extern lean_object* l_Lean_profiler; lean_object* l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__8; lean_object* l_Lean_mkAppN(lean_object*, lean_object*); @@ -49,7 +48,7 @@ uint64_t lean_uint64_lor(uint64_t, uint64_t); static lean_object* l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__10; static lean_object* l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__3; LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_throwLetTypeMismatchMessage___spec__2(lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Check_0__Lean_Meta_checkConstant(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__7; LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -125,7 +124,7 @@ lean_object* l_Lean_Meta_SavedState_restore(lean_object*, lean_object*, lean_obj lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_check___lambda__1___closed__3; lean_object* l_Lean_PersistentArray_append___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isMVar(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_check(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3___closed__2; @@ -147,7 +146,6 @@ LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_throwLetTypeMismatchMessage___sp LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_throwAppTypeMismatch___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_levelZero; lean_object* lean_io_mono_nanos_now(lean_object*); -static lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2___closed__2; extern lean_object* l_Lean_instInhabitedExpr; lean_object* l_Lean_Meta_whnfD(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint64_t l_Lean_Expr_hash(lean_object*); @@ -166,7 +164,7 @@ lean_object* l_Lean_Meta_saveState___rarg(lean_object*, lean_object*, lean_objec LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___private_Lean_Meta_Check_0__Lean_Meta_checkAux_checkForall___spec__2(lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Check_0__Lean_Meta_checkAux_checkForall___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_throwIncorrectNumberOfLevels___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at___private_Lean_Meta_Check_0__Lean_Meta_checkAux_check___spec__6(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_check___closed__2; @@ -247,7 +245,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_throwAppTypeMismatch___rarg___lambda__1___b LEAN_EXPORT lean_object* l_Lean_Meta_checkApp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__12; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__5; LEAN_EXPORT lean_object* l___private_Lean_Meta_Check_0__Lean_Meta_getFunctionDomain(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___private_Lean_Meta_Check_0__Lean_Meta_checkAux_check___spec__1(lean_object*, lean_object*); @@ -14011,69 +14009,36 @@ x_3 = l_Float_ofScientific(x_1, x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2___closed__2() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2___closed__1; +x_17 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_3); +lean_ctor_set_float(x_17, sizeof(void*)*2, x_16); +lean_ctor_set_float(x_17, sizeof(void*)*2 + 8, x_16); +lean_ctor_set_uint8(x_17, sizeof(void*)*2 + 16, x_2); +x_18 = lean_box(0); +x_19 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_17, x_18, x_11, x_12, x_13, x_14, x_15); +return x_19; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { -_start: +else { -double x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_18 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_18, 0, x_1); -lean_ctor_set(x_18, 1, x_3); -lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); -lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); -lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); -x_19 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2___closed__2; -x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_19); -if (x_20 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_21; lean_object* x_22; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); x_21 = lean_box(0); -x_22 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_18, x_21, x_12, x_13, x_14, x_15, x_16); +x_22 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15); return x_22; } -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_18); -x_23 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_3); -lean_ctor_set_float(x_23, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); -x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_23, x_24, x_12, x_13, x_14, x_15, x_16); -return x_25; -} -} -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_18); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16); -return x_28; -} } } static lean_object* _init_l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3___closed__1() { @@ -14093,46 +14058,46 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 5); -lean_inc(x_17); -lean_inc(x_15); +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 5); +lean_inc(x_16); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_18 = lean_apply_6(x_10, x_5, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_18) == 0) +x_17 = lean_apply_6(x_9, x_5, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_14, x_15, x_20); -lean_dec(x_15); -lean_dec(x_13); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_13, x_14, x_19); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_21; +return x_20; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_14, x_15, x_22); -lean_dec(x_15); -lean_dec(x_13); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } } } @@ -14196,253 +14161,253 @@ x_17 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed_ x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_17); if (x_18 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_109 = lean_io_mono_nanos_now(x_16); -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_109, 1); -lean_inc(x_111); -lean_dec(x_109); +lean_object* x_19; lean_object* x_20; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_113 = lean_io_mono_nanos_now(x_16); +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +lean_dec(x_113); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_112 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_111); -if (lean_obj_tag(x_112) == 0) +x_116 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_115); +if (lean_obj_tag(x_116) == 0) { -uint8_t x_113; -x_113 = !lean_is_exclusive(x_112); -if (x_113 == 0) +uint8_t x_117; +x_117 = !lean_is_exclusive(x_116); +if (x_117 == 0) { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_114 = lean_ctor_get(x_112, 0); -x_115 = lean_ctor_get(x_112, 1); -x_116 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_116, 0, x_114); -x_117 = lean_io_mono_nanos_now(x_115); -x_118 = !lean_is_exclusive(x_117); -if (x_118 == 0) +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_118 = lean_ctor_get(x_116, 0); +x_119 = lean_ctor_get(x_116, 1); +x_120 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_120, 0, x_118); +x_121 = lean_io_mono_nanos_now(x_119); +x_122 = !lean_is_exclusive(x_121); +if (x_122 == 0) { -lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_122; double x_123; double x_124; double x_125; double x_126; double x_127; lean_object* x_128; lean_object* x_129; -x_119 = lean_ctor_get(x_117, 0); -x_120 = lean_ctor_get(x_117, 1); -x_121 = 0; -x_122 = lean_unsigned_to_nat(0u); -x_123 = l_Float_ofScientific(x_110, x_121, x_122); -lean_dec(x_110); -x_124 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__5; -x_125 = lean_float_div(x_123, x_124); -x_126 = l_Float_ofScientific(x_119, x_121, x_122); -lean_dec(x_119); -x_127 = lean_float_div(x_126, x_124); -x_128 = lean_box_float(x_125); -x_129 = lean_box_float(x_127); -lean_ctor_set(x_117, 1, x_129); -lean_ctor_set(x_117, 0, x_128); -lean_ctor_set(x_112, 1, x_117); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_120; -goto block_108; +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; double x_130; double x_131; lean_object* x_132; lean_object* x_133; +x_123 = lean_ctor_get(x_121, 0); +x_124 = lean_ctor_get(x_121, 1); +x_125 = 0; +x_126 = lean_unsigned_to_nat(0u); +x_127 = l_Float_ofScientific(x_114, x_125, x_126); +lean_dec(x_114); +x_128 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__5; +x_129 = lean_float_div(x_127, x_128); +x_130 = l_Float_ofScientific(x_123, x_125, x_126); +lean_dec(x_123); +x_131 = lean_float_div(x_130, x_128); +x_132 = lean_box_float(x_129); +x_133 = lean_box_float(x_131); +lean_ctor_set(x_121, 1, x_133); +lean_ctor_set(x_121, 0, x_132); +lean_ctor_set(x_116, 1, x_121); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_124; +goto block_112; } else { -lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; double x_134; double x_135; double x_136; double x_137; double x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_130 = lean_ctor_get(x_117, 0); -x_131 = lean_ctor_get(x_117, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_117); -x_132 = 0; -x_133 = lean_unsigned_to_nat(0u); -x_134 = l_Float_ofScientific(x_110, x_132, x_133); -lean_dec(x_110); -x_135 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__5; -x_136 = lean_float_div(x_134, x_135); -x_137 = l_Float_ofScientific(x_130, x_132, x_133); -lean_dec(x_130); -x_138 = lean_float_div(x_137, x_135); -x_139 = lean_box_float(x_136); -x_140 = lean_box_float(x_138); -x_141 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -lean_ctor_set(x_112, 1, x_141); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_131; -goto block_108; +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_134 = lean_ctor_get(x_121, 0); +x_135 = lean_ctor_get(x_121, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_121); +x_136 = 0; +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Float_ofScientific(x_114, x_136, x_137); +lean_dec(x_114); +x_139 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__5; +x_140 = lean_float_div(x_138, x_139); +x_141 = l_Float_ofScientific(x_134, x_136, x_137); +lean_dec(x_134); +x_142 = lean_float_div(x_141, x_139); +x_143 = lean_box_float(x_140); +x_144 = lean_box_float(x_142); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_116, 1, x_145); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_135; +goto block_112; } } else { -lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_142 = lean_ctor_get(x_112, 0); -x_143 = lean_ctor_get(x_112, 1); -lean_inc(x_143); -lean_inc(x_142); -lean_dec(x_112); -x_144 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_144, 0, x_142); -x_145 = lean_io_mono_nanos_now(x_143); -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; lean_object* x_154; double x_155; double x_156; double x_157; double x_158; double x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_146 = lean_ctor_get(x_116, 0); +x_147 = lean_ctor_get(x_116, 1); lean_inc(x_147); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - lean_ctor_release(x_145, 1); - x_148 = x_145; +lean_inc(x_146); +lean_dec(x_116); +x_148 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_148, 0, x_146); +x_149 = lean_io_mono_nanos_now(x_147); +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + lean_ctor_release(x_149, 1); + x_152 = x_149; } else { - lean_dec_ref(x_145); - x_148 = lean_box(0); + lean_dec_ref(x_149); + x_152 = lean_box(0); } -x_149 = 0; -x_150 = lean_unsigned_to_nat(0u); -x_151 = l_Float_ofScientific(x_110, x_149, x_150); -lean_dec(x_110); -x_152 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__5; -x_153 = lean_float_div(x_151, x_152); -x_154 = l_Float_ofScientific(x_146, x_149, x_150); -lean_dec(x_146); -x_155 = lean_float_div(x_154, x_152); -x_156 = lean_box_float(x_153); -x_157 = lean_box_float(x_155); -if (lean_is_scalar(x_148)) { - x_158 = lean_alloc_ctor(0, 2, 0); +x_153 = 0; +x_154 = lean_unsigned_to_nat(0u); +x_155 = l_Float_ofScientific(x_114, x_153, x_154); +lean_dec(x_114); +x_156 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__5; +x_157 = lean_float_div(x_155, x_156); +x_158 = l_Float_ofScientific(x_150, x_153, x_154); +lean_dec(x_150); +x_159 = lean_float_div(x_158, x_156); +x_160 = lean_box_float(x_157); +x_161 = lean_box_float(x_159); +if (lean_is_scalar(x_152)) { + x_162 = lean_alloc_ctor(0, 2, 0); } else { - x_158 = x_148; + x_162 = x_152; } -lean_ctor_set(x_158, 0, x_156); -lean_ctor_set(x_158, 1, x_157); -x_159 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_159, 0, x_144); -lean_ctor_set(x_159, 1, x_158); -x_19 = x_159; -x_20 = x_147; -goto block_108; +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_161); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_148); +lean_ctor_set(x_163, 1, x_162); +x_19 = x_163; +x_20 = x_151; +goto block_112; } } else { -uint8_t x_160; -x_160 = !lean_is_exclusive(x_112); -if (x_160 == 0) +uint8_t x_164; +x_164 = !lean_is_exclusive(x_116); +if (x_164 == 0) { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_161 = lean_ctor_get(x_112, 0); -x_162 = lean_ctor_get(x_112, 1); -x_163 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_163, 0, x_161); -x_164 = lean_io_mono_nanos_now(x_162); -x_165 = !lean_is_exclusive(x_164); -if (x_165 == 0) +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; +x_165 = lean_ctor_get(x_116, 0); +x_166 = lean_ctor_get(x_116, 1); +x_167 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_167, 0, x_165); +x_168 = lean_io_mono_nanos_now(x_166); +x_169 = !lean_is_exclusive(x_168); +if (x_169 == 0) { -lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; double x_170; double x_171; double x_172; double x_173; double x_174; lean_object* x_175; lean_object* x_176; -x_166 = lean_ctor_get(x_164, 0); -x_167 = lean_ctor_get(x_164, 1); -x_168 = 0; -x_169 = lean_unsigned_to_nat(0u); -x_170 = l_Float_ofScientific(x_110, x_168, x_169); -lean_dec(x_110); -x_171 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__5; -x_172 = lean_float_div(x_170, x_171); -x_173 = l_Float_ofScientific(x_166, x_168, x_169); -lean_dec(x_166); -x_174 = lean_float_div(x_173, x_171); -x_175 = lean_box_float(x_172); -x_176 = lean_box_float(x_174); -lean_ctor_set(x_164, 1, x_176); -lean_ctor_set(x_164, 0, x_175); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_164); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_167; -goto block_108; +lean_object* x_170; lean_object* x_171; uint8_t x_172; lean_object* x_173; double x_174; double x_175; double x_176; double x_177; double x_178; lean_object* x_179; lean_object* x_180; +x_170 = lean_ctor_get(x_168, 0); +x_171 = lean_ctor_get(x_168, 1); +x_172 = 0; +x_173 = lean_unsigned_to_nat(0u); +x_174 = l_Float_ofScientific(x_114, x_172, x_173); +lean_dec(x_114); +x_175 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__5; +x_176 = lean_float_div(x_174, x_175); +x_177 = l_Float_ofScientific(x_170, x_172, x_173); +lean_dec(x_170); +x_178 = lean_float_div(x_177, x_175); +x_179 = lean_box_float(x_176); +x_180 = lean_box_float(x_178); +lean_ctor_set(x_168, 1, x_180); +lean_ctor_set(x_168, 0, x_179); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_168); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_171; +goto block_112; } else { -lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_object* x_180; double x_181; double x_182; double x_183; double x_184; double x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_177 = lean_ctor_get(x_164, 0); -x_178 = lean_ctor_get(x_164, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_164); -x_179 = 0; -x_180 = lean_unsigned_to_nat(0u); -x_181 = l_Float_ofScientific(x_110, x_179, x_180); -lean_dec(x_110); -x_182 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__5; -x_183 = lean_float_div(x_181, x_182); -x_184 = l_Float_ofScientific(x_177, x_179, x_180); -lean_dec(x_177); -x_185 = lean_float_div(x_184, x_182); -x_186 = lean_box_float(x_183); -x_187 = lean_box_float(x_185); -x_188 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_188); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_178; -goto block_108; +lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_181 = lean_ctor_get(x_168, 0); +x_182 = lean_ctor_get(x_168, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_168); +x_183 = 0; +x_184 = lean_unsigned_to_nat(0u); +x_185 = l_Float_ofScientific(x_114, x_183, x_184); +lean_dec(x_114); +x_186 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__5; +x_187 = lean_float_div(x_185, x_186); +x_188 = l_Float_ofScientific(x_181, x_183, x_184); +lean_dec(x_181); +x_189 = lean_float_div(x_188, x_186); +x_190 = lean_box_float(x_187); +x_191 = lean_box_float(x_189); +x_192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_192); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_182; +goto block_112; } } else { -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_189 = lean_ctor_get(x_112, 0); -x_190 = lean_ctor_get(x_112, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_112); -x_191 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_191, 0, x_189); -x_192 = lean_io_mono_nanos_now(x_190); -x_193 = lean_ctor_get(x_192, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; lean_object* x_201; double x_202; double x_203; double x_204; double x_205; double x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_193 = lean_ctor_get(x_116, 0); +x_194 = lean_ctor_get(x_116, 1); lean_inc(x_194); -if (lean_is_exclusive(x_192)) { - lean_ctor_release(x_192, 0); - lean_ctor_release(x_192, 1); - x_195 = x_192; +lean_inc(x_193); +lean_dec(x_116); +x_195 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_195, 0, x_193); +x_196 = lean_io_mono_nanos_now(x_194); +x_197 = lean_ctor_get(x_196, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_196, 1); +lean_inc(x_198); +if (lean_is_exclusive(x_196)) { + lean_ctor_release(x_196, 0); + lean_ctor_release(x_196, 1); + x_199 = x_196; } else { - lean_dec_ref(x_192); - x_195 = lean_box(0); + lean_dec_ref(x_196); + x_199 = lean_box(0); } -x_196 = 0; -x_197 = lean_unsigned_to_nat(0u); -x_198 = l_Float_ofScientific(x_110, x_196, x_197); -lean_dec(x_110); -x_199 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__5; -x_200 = lean_float_div(x_198, x_199); -x_201 = l_Float_ofScientific(x_193, x_196, x_197); -lean_dec(x_193); -x_202 = lean_float_div(x_201, x_199); -x_203 = lean_box_float(x_200); -x_204 = lean_box_float(x_202); -if (lean_is_scalar(x_195)) { - x_205 = lean_alloc_ctor(0, 2, 0); +x_200 = 0; +x_201 = lean_unsigned_to_nat(0u); +x_202 = l_Float_ofScientific(x_114, x_200, x_201); +lean_dec(x_114); +x_203 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__5; +x_204 = lean_float_div(x_202, x_203); +x_205 = l_Float_ofScientific(x_197, x_200, x_201); +lean_dec(x_197); +x_206 = lean_float_div(x_205, x_203); +x_207 = lean_box_float(x_204); +x_208 = lean_box_float(x_206); +if (lean_is_scalar(x_199)) { + x_209 = lean_alloc_ctor(0, 2, 0); } else { - x_205 = x_195; + x_209 = x_199; } -lean_ctor_set(x_205, 0, x_203); -lean_ctor_set(x_205, 1, x_204); -x_206 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_206, 0, x_191); -lean_ctor_set(x_206, 1, x_205); -x_19 = x_206; -x_20 = x_194; -goto block_108; +lean_ctor_set(x_209, 0, x_207); +lean_ctor_set(x_209, 1, x_208); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_195); +lean_ctor_set(x_210, 1, x_209); +x_19 = x_210; +x_20 = x_198; +goto block_112; } } -block_108: +block_112: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_94; uint8_t x_95; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); x_22 = lean_ctor_get(x_19, 0); @@ -14453,17 +14418,33 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_21, 1); lean_inc(x_24); lean_dec(x_21); -x_94 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__2; -x_95 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_94); -if (x_95 == 0) +x_25 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__2; +x_26 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_25); +if (x_26 == 0) { -uint8_t x_96; -x_96 = 0; -x_25 = x_96; -goto block_93; +if (x_6 == 0) +{ +uint8_t x_92; +x_92 = 0; +x_27 = x_92; +goto block_91; } else { +lean_object* x_93; double x_94; double x_95; lean_object* x_96; +x_93 = lean_box(0); +x_94 = lean_unbox_float(x_23); +lean_dec(x_23); +x_95 = lean_unbox_float(x_24); +lean_dec(x_24); +x_96 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_94, x_95, x_5, x_93, x_9, x_10, x_11, x_12, x_20); +return x_96; +} +} +else +{ +if (x_6 == 0) +{ double x_97; double x_98; double x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; double x_104; double x_105; double x_106; uint8_t x_107; x_97 = lean_unbox_float(x_24); x_98 = lean_unbox_float(x_23); @@ -14477,859 +14458,871 @@ lean_dec(x_101); x_105 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__4; x_106 = lean_float_div(x_104, x_105); x_107 = lean_float_decLt(x_106, x_99); -x_25 = x_107; -goto block_93; +x_27 = x_107; +goto block_91; } -block_93: +else { -if (x_6 == 0) +lean_object* x_108; double x_109; double x_110; lean_object* x_111; +x_108 = lean_box(0); +x_109 = lean_unbox_float(x_23); +lean_dec(x_23); +x_110 = lean_unbox_float(x_24); +lean_dec(x_24); +x_111 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_109, x_110, x_5, x_108, x_9, x_10, x_11, x_12, x_20); +return x_111; +} +} +block_91: { -if (x_25 == 0) +if (x_27 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_24); lean_dec(x_23); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_26 = lean_st_ref_take(x_12, x_20); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -x_29 = lean_ctor_get(x_26, 1); +x_28 = lean_st_ref_take(x_12, x_20); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -lean_dec(x_26); -x_30 = !lean_is_exclusive(x_27); -if (x_30 == 0) -{ -lean_object* x_31; uint8_t x_32; -x_31 = lean_ctor_get(x_27, 3); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_28); +x_30 = lean_ctor_get(x_29, 3); +lean_inc(x_30); +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = !lean_is_exclusive(x_29); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_33 = lean_ctor_get(x_28, 0); -x_34 = l_Lean_PersistentArray_append___rarg(x_15, x_33); +lean_object* x_33; uint8_t x_34; +x_33 = lean_ctor_get(x_29, 3); lean_dec(x_33); -lean_ctor_set(x_28, 0, x_34); -x_35 = lean_st_ref_set(x_12, x_27, x_29); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); +x_34 = !lean_is_exclusive(x_30); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_ctor_get(x_30, 0); +x_36 = l_Lean_PersistentArray_append___rarg(x_15, x_35); lean_dec(x_35); -x_37 = l_MonadExcept_ofExcept___at_Lean_Meta_check___spec__2(x_22, x_9, x_10, x_11, x_12, x_36); +lean_ctor_set(x_30, 0, x_36); +x_37 = lean_st_ref_set(x_12, x_29, x_31); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +x_39 = l_MonadExcept_ofExcept___at_Lean_Meta_check___spec__2(x_22, x_9, x_10, x_11, x_12, x_38); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_37) == 0) +if (lean_obj_tag(x_39) == 0) { -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -return x_37; +return x_39; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_ctor_get(x_37, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_37); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_39); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } else { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_37); -if (x_42 == 0) +uint8_t x_44; +x_44 = !lean_is_exclusive(x_39); +if (x_44 == 0) { -return x_37; +return x_39; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_37, 0); -x_44 = lean_ctor_get(x_37, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_37); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_39, 0); +x_46 = lean_ctor_get(x_39, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_39); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } } else { -uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_47 = lean_ctor_get(x_28, 0); -lean_inc(x_47); -lean_dec(x_28); -x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_47); -lean_dec(x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); -lean_ctor_set(x_27, 3, x_49); -x_50 = lean_st_ref_set(x_12, x_27, x_29); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -lean_dec(x_50); -x_52 = l_MonadExcept_ofExcept___at_Lean_Meta_check___spec__2(x_22, x_9, x_10, x_11, x_12, x_51); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_22); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); +uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_49 = lean_ctor_get(x_30, 0); +lean_inc(x_49); +lean_dec(x_30); +x_50 = l_Lean_PersistentArray_append___rarg(x_15, x_49); +lean_dec(x_49); +x_51 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); +lean_ctor_set(x_29, 3, x_51); +x_52 = lean_st_ref_set(x_12, x_29, x_31); +x_53 = lean_ctor_get(x_52, 1); lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_55 = x_52; +lean_dec(x_52); +x_54 = l_MonadExcept_ofExcept___at_Lean_Meta_check___spec__2(x_22, x_9, x_10, x_11, x_12, x_53); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_22); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; } else { - lean_dec_ref(x_52); - x_55 = lean_box(0); + lean_dec_ref(x_54); + x_57 = lean_box(0); } -if (lean_is_scalar(x_55)) { - x_56 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_57)) { + x_58 = lean_alloc_ctor(0, 2, 0); } else { - x_56 = x_55; + x_58 = x_57; } -lean_ctor_set(x_56, 0, x_53); -lean_ctor_set(x_56, 1, x_54); -return x_56; +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_56); +return x_58; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_52, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_52, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_59 = x_52; +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_54, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_54, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_61 = x_54; } else { - lean_dec_ref(x_52); - x_59 = lean_box(0); + lean_dec_ref(x_54); + x_61 = lean_box(0); } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(1, 2, 0); } else { - x_60 = x_59; + x_62 = x_61; } -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_58); -return x_60; +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; } } } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_61 = lean_ctor_get(x_27, 0); -x_62 = lean_ctor_get(x_27, 1); -x_63 = lean_ctor_get(x_27, 2); -x_64 = lean_ctor_get(x_27, 4); -x_65 = lean_ctor_get(x_27, 5); -x_66 = lean_ctor_get(x_27, 6); -x_67 = lean_ctor_get(x_27, 7); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_63 = lean_ctor_get(x_29, 0); +x_64 = lean_ctor_get(x_29, 1); +x_65 = lean_ctor_get(x_29, 2); +x_66 = lean_ctor_get(x_29, 4); +x_67 = lean_ctor_get(x_29, 5); +x_68 = lean_ctor_get(x_29, 6); +x_69 = lean_ctor_get(x_29, 7); +lean_inc(x_69); +lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_27); -x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_69 = lean_ctor_get(x_28, 0); -lean_inc(x_69); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - x_70 = x_28; +lean_dec(x_29); +x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_71 = lean_ctor_get(x_30, 0); +lean_inc(x_71); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + x_72 = x_30; } else { - lean_dec_ref(x_28); - x_70 = lean_box(0); + lean_dec_ref(x_30); + x_72 = lean_box(0); } -x_71 = l_Lean_PersistentArray_append___rarg(x_15, x_69); -lean_dec(x_69); -if (lean_is_scalar(x_70)) { - x_72 = lean_alloc_ctor(0, 1, 8); +x_73 = l_Lean_PersistentArray_append___rarg(x_15, x_71); +lean_dec(x_71); +if (lean_is_scalar(x_72)) { + x_74 = lean_alloc_ctor(0, 1, 8); } else { - x_72 = x_70; + x_74 = x_72; } -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); -x_73 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_73, 0, x_61); -lean_ctor_set(x_73, 1, x_62); -lean_ctor_set(x_73, 2, x_63); -lean_ctor_set(x_73, 3, x_72); -lean_ctor_set(x_73, 4, x_64); -lean_ctor_set(x_73, 5, x_65); -lean_ctor_set(x_73, 6, x_66); -lean_ctor_set(x_73, 7, x_67); -x_74 = lean_st_ref_set(x_12, x_73, x_29); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_76 = l_MonadExcept_ofExcept___at_Lean_Meta_check___spec__2(x_22, x_9, x_10, x_11, x_12, x_75); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); +x_75 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_64); +lean_ctor_set(x_75, 2, x_65); +lean_ctor_set(x_75, 3, x_74); +lean_ctor_set(x_75, 4, x_66); +lean_ctor_set(x_75, 5, x_67); +lean_ctor_set(x_75, 6, x_68); +lean_ctor_set(x_75, 7, x_69); +x_76 = lean_st_ref_set(x_12, x_75, x_31); +x_77 = lean_ctor_get(x_76, 1); +lean_inc(x_77); +lean_dec(x_76); +x_78 = l_MonadExcept_ofExcept___at_Lean_Meta_check___spec__2(x_22, x_9, x_10, x_11, x_12, x_77); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_76) == 0) +if (lean_obj_tag(x_78) == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_76, 0); -lean_inc(x_77); -x_78 = lean_ctor_get(x_76, 1); -lean_inc(x_78); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_79 = x_76; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_81 = x_78; } else { - lean_dec_ref(x_76); - x_79 = lean_box(0); + lean_dec_ref(x_78); + x_81 = lean_box(0); } -if (lean_is_scalar(x_79)) { - x_80 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(0, 2, 0); } else { - x_80 = x_79; + x_82 = x_81; } -lean_ctor_set(x_80, 0, x_77); -lean_ctor_set(x_80, 1, x_78); -return x_80; +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_80); +return x_82; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_81 = lean_ctor_get(x_76, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_76, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_83 = x_76; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_83 = lean_ctor_get(x_78, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_78, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_85 = x_78; } else { - lean_dec_ref(x_76); - x_83 = lean_box(0); + lean_dec_ref(x_78); + x_85 = lean_box(0); } -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); } else { - x_84 = x_83; + x_86 = x_85; } -lean_ctor_set(x_84, 0, x_81); -lean_ctor_set(x_84, 1, x_82); -return x_84; +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; } } } else { -lean_object* x_85; double x_86; double x_87; lean_object* x_88; -x_85 = lean_box(0); -x_86 = lean_unbox_float(x_23); +lean_object* x_87; double x_88; double x_89; lean_object* x_90; +x_87 = lean_box(0); +x_88 = lean_unbox_float(x_23); lean_dec(x_23); -x_87 = lean_unbox_float(x_24); +x_89 = lean_unbox_float(x_24); lean_dec(x_24); -x_88 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_86, x_87, x_5, x_85, x_9, x_10, x_11, x_12, x_20); -return x_88; -} -} -else -{ -lean_object* x_89; double x_90; double x_91; lean_object* x_92; -x_89 = lean_box(0); -x_90 = lean_unbox_float(x_23); -lean_dec(x_23); -x_91 = lean_unbox_float(x_24); -lean_dec(x_24); -x_92 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_20); -return x_92; +x_90 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_20); +return x_90; } } } } else { -lean_object* x_207; lean_object* x_208; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_16); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_211; lean_object* x_212; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_16); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_207 = x_336; -x_208 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_211 = x_344; +x_212 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_207 = x_374; -x_208 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_282; uint8_t x_283; -x_209 = lean_ctor_get(x_207, 1); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 0); -lean_inc(x_210); -lean_dec(x_207); -x_211 = lean_ctor_get(x_209, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 1); -lean_inc(x_212); -lean_dec(x_209); -x_282 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_213 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_212); -x_286 = lean_unbox_float(x_211); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_213 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_211 = x_382; +x_212 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; uint8_t x_219; +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 0); +lean_inc(x_214); +lean_dec(x_211); +x_215 = lean_ctor_get(x_213, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 1); +lean_inc(x_216); +lean_dec(x_213); +x_217 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__2; +x_218 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_217); +if (x_218 == 0) { if (x_6 == 0) { -if (x_213 == 0) +uint8_t x_284; +x_284 = 0; +x_219 = x_284; +goto block_283; +} +else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; -lean_dec(x_212); -lean_dec(x_211); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_215); +lean_dec(x_215); +x_287 = lean_unbox_float(x_216); +lean_dec(x_216); +x_288 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_212); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_216); +x_290 = lean_unbox_float(x_215); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_219 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_215); +lean_dec(x_215); +x_300 = lean_unbox_float(x_216); +lean_dec(x_216); +x_301 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_212); +return x_301; +} +} +block_283: +{ +if (x_219 == 0) +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; +lean_dec(x_216); +lean_dec(x_215); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_214 = lean_st_ref_take(x_12, x_208); -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_215, 3); -lean_inc(x_216); -x_217 = lean_ctor_get(x_214, 1); -lean_inc(x_217); -lean_dec(x_214); -x_218 = !lean_is_exclusive(x_215); -if (x_218 == 0) +x_220 = lean_st_ref_take(x_12, x_212); +x_221 = lean_ctor_get(x_220, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_221, 3); +lean_inc(x_222); +x_223 = lean_ctor_get(x_220, 1); +lean_inc(x_223); +lean_dec(x_220); +x_224 = !lean_is_exclusive(x_221); +if (x_224 == 0) { -lean_object* x_219; uint8_t x_220; -x_219 = lean_ctor_get(x_215, 3); -lean_dec(x_219); -x_220 = !lean_is_exclusive(x_216); -if (x_220 == 0) -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_221 = lean_ctor_get(x_216, 0); -x_222 = l_Lean_PersistentArray_append___rarg(x_15, x_221); -lean_dec(x_221); -lean_ctor_set(x_216, 0, x_222); -x_223 = lean_st_ref_set(x_12, x_215, x_217); -x_224 = lean_ctor_get(x_223, 1); -lean_inc(x_224); -lean_dec(x_223); -x_225 = l_MonadExcept_ofExcept___at_Lean_Meta_check___spec__2(x_210, x_9, x_10, x_11, x_12, x_224); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_225) == 0) -{ -uint8_t x_226; -x_226 = !lean_is_exclusive(x_225); +lean_object* x_225; uint8_t x_226; +x_225 = lean_ctor_get(x_221, 3); +lean_dec(x_225); +x_226 = !lean_is_exclusive(x_222); if (x_226 == 0) { -return x_225; -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; -x_227 = lean_ctor_get(x_225, 0); -x_228 = lean_ctor_get(x_225, 1); -lean_inc(x_228); -lean_inc(x_227); -lean_dec(x_225); -x_229 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_229, 0, x_227); -lean_ctor_set(x_229, 1, x_228); -return x_229; -} -} -else -{ -uint8_t x_230; -x_230 = !lean_is_exclusive(x_225); -if (x_230 == 0) -{ -return x_225; -} -else -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_225, 0); -x_232 = lean_ctor_get(x_225, 1); -lean_inc(x_232); -lean_inc(x_231); -lean_dec(x_225); -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_231); -lean_ctor_set(x_233, 1, x_232); -return x_233; -} -} -} -else -{ -uint64_t x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_234 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_235 = lean_ctor_get(x_216, 0); -lean_inc(x_235); -lean_dec(x_216); -x_236 = l_Lean_PersistentArray_append___rarg(x_15, x_235); -lean_dec(x_235); -x_237 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_237, 0, x_236); -lean_ctor_set_uint64(x_237, sizeof(void*)*1, x_234); -lean_ctor_set(x_215, 3, x_237); -x_238 = lean_st_ref_set(x_12, x_215, x_217); -x_239 = lean_ctor_get(x_238, 1); -lean_inc(x_239); -lean_dec(x_238); -x_240 = l_MonadExcept_ofExcept___at_Lean_Meta_check___spec__2(x_210, x_9, x_10, x_11, x_12, x_239); +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_227 = lean_ctor_get(x_222, 0); +x_228 = l_Lean_PersistentArray_append___rarg(x_15, x_227); +lean_dec(x_227); +lean_ctor_set(x_222, 0, x_228); +x_229 = lean_st_ref_set(x_12, x_221, x_223); +x_230 = lean_ctor_get(x_229, 1); +lean_inc(x_230); +lean_dec(x_229); +x_231 = l_MonadExcept_ofExcept___at_Lean_Meta_check___spec__2(x_214, x_9, x_10, x_11, x_12, x_230); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_240) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_231) == 0) { -lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; -x_241 = lean_ctor_get(x_240, 0); +uint8_t x_232; +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +return x_231; +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_231, 0); +x_234 = lean_ctor_get(x_231, 1); +lean_inc(x_234); +lean_inc(x_233); +lean_dec(x_231); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +return x_235; +} +} +else +{ +uint8_t x_236; +x_236 = !lean_is_exclusive(x_231); +if (x_236 == 0) +{ +return x_231; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_231, 0); +x_238 = lean_ctor_get(x_231, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_231); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} +} +} +else +{ +uint64_t x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_240 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_241 = lean_ctor_get(x_222, 0); lean_inc(x_241); -x_242 = lean_ctor_get(x_240, 1); -lean_inc(x_242); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_243 = x_240; -} else { - lean_dec_ref(x_240); - x_243 = lean_box(0); -} -if (lean_is_scalar(x_243)) { - x_244 = lean_alloc_ctor(0, 2, 0); -} else { - x_244 = x_243; -} -lean_ctor_set(x_244, 0, x_241); -lean_ctor_set(x_244, 1, x_242); -return x_244; -} -else -{ -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_245 = lean_ctor_get(x_240, 0); +lean_dec(x_222); +x_242 = l_Lean_PersistentArray_append___rarg(x_15, x_241); +lean_dec(x_241); +x_243 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set_uint64(x_243, sizeof(void*)*1, x_240); +lean_ctor_set(x_221, 3, x_243); +x_244 = lean_st_ref_set(x_12, x_221, x_223); +x_245 = lean_ctor_get(x_244, 1); lean_inc(x_245); -x_246 = lean_ctor_get(x_240, 1); -lean_inc(x_246); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_247 = x_240; -} else { - lean_dec_ref(x_240); - x_247 = lean_box(0); -} -if (lean_is_scalar(x_247)) { - x_248 = lean_alloc_ctor(1, 2, 0); -} else { - x_248 = x_247; -} -lean_ctor_set(x_248, 0, x_245); -lean_ctor_set(x_248, 1, x_246); -return x_248; -} -} -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_249 = lean_ctor_get(x_215, 0); -x_250 = lean_ctor_get(x_215, 1); -x_251 = lean_ctor_get(x_215, 2); -x_252 = lean_ctor_get(x_215, 4); -x_253 = lean_ctor_get(x_215, 5); -x_254 = lean_ctor_get(x_215, 6); -x_255 = lean_ctor_get(x_215, 7); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_dec(x_215); -x_256 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_257 = lean_ctor_get(x_216, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_216)) { - lean_ctor_release(x_216, 0); - x_258 = x_216; -} else { - lean_dec_ref(x_216); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_15, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_261, 0, x_249); -lean_ctor_set(x_261, 1, x_250); -lean_ctor_set(x_261, 2, x_251); -lean_ctor_set(x_261, 3, x_260); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_255); -x_262 = lean_st_ref_set(x_12, x_261, x_217); -x_263 = lean_ctor_get(x_262, 1); -lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at_Lean_Meta_check___spec__2(x_210, x_9, x_10, x_11, x_12, x_263); +lean_dec(x_244); +x_246 = l_MonadExcept_ofExcept___at_Lean_Meta_check___spec__2(x_214, x_9, x_10, x_11, x_12, x_245); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_246) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_247 = lean_ctor_get(x_246, 0); +lean_inc(x_247); +x_248 = lean_ctor_get(x_246, 1); +lean_inc(x_248); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_249 = x_246; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_246); + x_249 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_249)) { + x_250 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_250 = x_249; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_250, 0, x_247); +lean_ctor_set(x_250, 1, x_248); +return x_250; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_251 = lean_ctor_get(x_246, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_246, 1); +lean_inc(x_252); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_253 = x_246; +} else { + lean_dec_ref(x_246); + x_253 = lean_box(0); +} +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(1, 2, 0); +} else { + x_254 = x_253; +} +lean_ctor_set(x_254, 0, x_251); +lean_ctor_set(x_254, 1, x_252); +return x_254; +} +} +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_255 = lean_ctor_get(x_221, 0); +x_256 = lean_ctor_get(x_221, 1); +x_257 = lean_ctor_get(x_221, 2); +x_258 = lean_ctor_get(x_221, 4); +x_259 = lean_ctor_get(x_221, 5); +x_260 = lean_ctor_get(x_221, 6); +x_261 = lean_ctor_get(x_221, 7); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_221); +x_262 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_263 = lean_ctor_get(x_222, 0); +lean_inc(x_263); +if (lean_is_exclusive(x_222)) { + lean_ctor_release(x_222, 0); + x_264 = x_222; +} else { + lean_dec_ref(x_222); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_15, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_267, 0, x_255); +lean_ctor_set(x_267, 1, x_256); +lean_ctor_set(x_267, 2, x_257); +lean_ctor_set(x_267, 3, x_266); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_261); +x_268 = lean_st_ref_set(x_12, x_267, x_223); +x_269 = lean_ctor_get(x_268, 1); lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at_Lean_Meta_check___spec__2(x_214, x_9, x_10, x_11, x_12, x_269); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_214); +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_272 = x_271; + x_274 = x_273; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; +} else { + lean_dec_ref(x_270); + x_277 = lean_box(0); +} +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); +} else { + x_278 = x_277; +} +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_211); -lean_dec(x_211); -x_275 = lean_unbox_float(x_212); -lean_dec(x_212); -x_276 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_274, x_275, x_5, x_273, x_9, x_10, x_11, x_12, x_208); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_211); -lean_dec(x_211); -x_279 = lean_unbox_float(x_212); -lean_dec(x_212); -x_280 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_278, x_279, x_5, x_277, x_9, x_10, x_11, x_12, x_208); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_215); +lean_dec(x_215); +x_281 = lean_unbox_float(x_216); +lean_dec(x_216); +x_282 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_212); +return x_282; } } } @@ -16153,43 +16146,41 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_8); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); lean_dec(x_8); x_19 = lean_unbox_float(x_9); lean_dec(x_9); -x_20 = lean_unbox_float(x_10); -lean_dec(x_10); -x_21 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_18, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_15); -lean_dec(x_13); +x_20 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2(x_1, x_16, x_3, x_4, x_5, x_6, x_17, x_18, x_19, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_14); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_21; +return x_20; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_7); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); lean_dec(x_7); x_19 = lean_unbox_float(x_8); lean_dec(x_8); -x_20 = lean_unbox_float(x_9); -lean_dec(x_9); -x_21 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_11); -lean_dec(x_6); -return x_21; +x_20 = l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3(x_1, x_16, x_3, x_4, x_5, x_17, x_18, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +return x_20; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -16585,8 +16576,6 @@ lean_mark_persistent(l___private_Lean_Meta_Check_0__Lean_Meta_checkAux___closed_ l___private_Lean_Meta_Check_0__Lean_Meta_checkAux___closed__3 = _init_l___private_Lean_Meta_Check_0__Lean_Meta_checkAux___closed__3(); lean_mark_persistent(l___private_Lean_Meta_Check_0__Lean_Meta_checkAux___closed__3); l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2___closed__1(); -l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2___closed__2(); -lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2___closed__2); l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3___closed__1); l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Meta/Closure.c b/stage0/stdlib/Lean/Meta/Closure.c index 2db50a8f60..e726a1e626 100644 --- a/stage0/stdlib/Lean/Meta/Closure.c +++ b/stage0/stdlib/Lean/Meta/Closure.c @@ -6462,7 +6462,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Meta_Closure_collectExprAux___closed__1; x_2 = l_Lean_Meta_Closure_collectExprAux___closed__2; -x_3 = lean_unsigned_to_nat(1724u); +x_3 = lean_unsigned_to_nat(1728u); x_4 = lean_unsigned_to_nat(17u); x_5 = l_Lean_Meta_Closure_collectExprAux___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -6491,7 +6491,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Meta_Closure_collectExprAux___closed__1; x_2 = l_Lean_Meta_Closure_collectExprAux___closed__5; -x_3 = lean_unsigned_to_nat(1735u); +x_3 = lean_unsigned_to_nat(1739u); x_4 = lean_unsigned_to_nat(18u); x_5 = l_Lean_Meta_Closure_collectExprAux___closed__6; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -6520,7 +6520,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Meta_Closure_collectExprAux___closed__1; x_2 = l_Lean_Meta_Closure_collectExprAux___closed__8; -x_3 = lean_unsigned_to_nat(1686u); +x_3 = lean_unsigned_to_nat(1690u); x_4 = lean_unsigned_to_nat(18u); x_5 = l_Lean_Meta_Closure_collectExprAux___closed__9; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -6549,7 +6549,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Meta_Closure_collectExprAux___closed__1; x_2 = l_Lean_Meta_Closure_collectExprAux___closed__11; -x_3 = lean_unsigned_to_nat(1781u); +x_3 = lean_unsigned_to_nat(1785u); x_4 = lean_unsigned_to_nat(20u); x_5 = l_Lean_Meta_Closure_collectExprAux___closed__12; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -6578,7 +6578,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Meta_Closure_collectExprAux___closed__1; x_2 = l_Lean_Meta_Closure_collectExprAux___closed__14; -x_3 = lean_unsigned_to_nat(1761u); +x_3 = lean_unsigned_to_nat(1765u); x_4 = lean_unsigned_to_nat(24u); x_5 = l_Lean_Meta_Closure_collectExprAux___closed__15; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -6607,7 +6607,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Meta_Closure_collectExprAux___closed__1; x_2 = l_Lean_Meta_Closure_collectExprAux___closed__17; -x_3 = lean_unsigned_to_nat(1790u); +x_3 = lean_unsigned_to_nat(1794u); x_4 = lean_unsigned_to_nat(22u); x_5 = l_Lean_Meta_Closure_collectExprAux___closed__18; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); diff --git a/stage0/stdlib/Lean/Meta/ExprDefEq.c b/stage0/stdlib/Lean/Meta/ExprDefEq.c index 85781863f3..f7725b0374 100644 --- a/stage0/stdlib/Lean/Meta/ExprDefEq.c +++ b/stage0/stdlib/Lean/Meta/ExprDefEq.c @@ -50,7 +50,6 @@ static lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_processConstApp static lean_object* l_Lean_Meta_isExprDefEqAuxImpl___lambda__3___closed__4; LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_tryHeuristic___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqEtaStruct_go___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_profiler; LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqEtaStruct_go___spec__1___boxed(lean_object**); lean_object* l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_DefEqCacheKind_noConfusion___rarg___boxed(lean_object*, lean_object*, lean_object*); @@ -319,7 +318,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_unfoldNonP LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_processAssignment_process___spec__1(lean_object*, lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_assignConst___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_CheckAssignment_checkMVar___spec__59___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqApp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqLeft___closed__1; LEAN_EXPORT lean_object* l_Lean_occursCheck_visit___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_typeOccursCheckImp_occursCheck___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); @@ -569,7 +568,7 @@ static lean_object* l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefE uint8_t l_Lean_Expr_hasLooseBVars(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_getCachedResult___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isHeadBetaTarget(lean_object*, uint8_t); -LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_getDefEqCacheKind(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_CheckAssignment_checkMVar___spec__60(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -794,7 +793,6 @@ LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_c LEAN_EXPORT lean_object* l_ReaderT_pure___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_processAssignment___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitMain___at_Lean_Meta_CheckAssignment_checkMVar___spec__37(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_PersistentArray_anyMAux___at_Lean_Meta_CheckAssignment_checkMVar___spec__40(lean_object*, lean_object*); -static lean_object* l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2___closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_isDefEqBindingDomain___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqBindingAux___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_getCachedResult___spec__2___boxed(lean_object*, lean_object*, lean_object*); @@ -13225,86 +13223,54 @@ x_3 = l_Float_ofScientific(x_1, x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2___closed__4() { +LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, uint8_t x_9, double x_10, double x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { -_start: -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; double x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; -x_18 = l_Lean_exceptBoolEmoji___rarg(x_1); -x_19 = l_Lean_stringToMessageData(x_18); -lean_dec(x_18); -x_20 = l_Std_Range_forIn_x27_loop___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqEtaStruct_go___spec__1___lambda__2___closed__9; -x_21 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_21, 0, x_20); -lean_ctor_set(x_21, 1, x_19); -x_22 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2___closed__2; +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_17 = l_Lean_exceptBoolEmoji___rarg(x_1); +x_18 = l_Lean_stringToMessageData(x_17); +lean_dec(x_17); +x_19 = l_Std_Range_forIn_x27_loop___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqEtaStruct_go___spec__1___lambda__2___closed__9; +x_20 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_18); +x_21 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2___closed__2; +x_22 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_22, 0, x_20); +lean_ctor_set(x_22, 1, x_21); x_23 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_23, 0, x_21); -lean_ctor_set(x_23, 1, x_22); +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_23, 1, x_2); x_24 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_24, 1, x_2); -x_25 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_25, 0, x_24); -lean_ctor_set(x_25, 1, x_20); -x_26 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2___closed__3; -lean_inc(x_5); -lean_inc(x_3); -x_27 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_27, 0, x_3); -lean_ctor_set(x_27, 1, x_5); -lean_ctor_set_float(x_27, sizeof(void*)*2, x_26); -lean_ctor_set_float(x_27, sizeof(void*)*2 + 8, x_26); -lean_ctor_set_uint8(x_27, sizeof(void*)*2 + 16, x_4); -x_28 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2___closed__4; -x_29 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_8, x_28); -if (x_29 == 0) +lean_ctor_set(x_24, 1, x_19); +if (x_8 == 0) { -if (x_9 == 0) +double x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_25 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2___closed__3; +x_26 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_26, 0, x_3); +lean_ctor_set(x_26, 1, x_5); +lean_ctor_set_float(x_26, sizeof(void*)*2, x_25); +lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_25); +lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_4); +x_27 = lean_box(0); +x_28 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__1(x_6, x_7, x_24, x_1, x_26, x_27, x_12, x_13, x_14, x_15, x_16); +return x_28; +} +else { -lean_object* x_30; lean_object* x_31; -lean_dec(x_5); -lean_dec(x_3); +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_29, 0, x_3); +lean_ctor_set(x_29, 1, x_5); +lean_ctor_set_float(x_29, sizeof(void*)*2, x_9); +lean_ctor_set_float(x_29, sizeof(void*)*2 + 8, x_10); +lean_ctor_set_uint8(x_29, sizeof(void*)*2 + 16, x_4); x_30 = lean_box(0); -x_31 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__1(x_6, x_7, x_25, x_1, x_27, x_30, x_13, x_14, x_15, x_16, x_17); +x_31 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__1(x_6, x_7, x_24, x_1, x_29, x_30, x_12, x_13, x_14, x_15, x_16); return x_31; } -else -{ -lean_object* x_32; lean_object* x_33; lean_object* x_34; -lean_dec(x_27); -x_32 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_32, 0, x_3); -lean_ctor_set(x_32, 1, x_5); -lean_ctor_set_float(x_32, sizeof(void*)*2, x_10); -lean_ctor_set_float(x_32, sizeof(void*)*2 + 8, x_11); -lean_ctor_set_uint8(x_32, sizeof(void*)*2 + 16, x_4); -x_33 = lean_box(0); -x_34 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__1(x_6, x_7, x_25, x_1, x_32, x_33, x_13, x_14, x_15, x_16, x_17); -return x_34; -} -} -else -{ -lean_object* x_35; lean_object* x_36; lean_object* x_37; -lean_dec(x_27); -x_35 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_35, 0, x_3); -lean_ctor_set(x_35, 1, x_5); -lean_ctor_set_float(x_35, sizeof(void*)*2, x_10); -lean_ctor_set_float(x_35, sizeof(void*)*2 + 8, x_11); -lean_ctor_set_uint8(x_35, sizeof(void*)*2 + 16, x_4); -x_36 = lean_box(0); -x_37 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__1(x_6, x_7, x_25, x_1, x_35, x_36, x_13, x_14, x_15, x_16, x_17); -return x_37; -} } } static lean_object* _init_l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__1() { @@ -13429,253 +13395,253 @@ x_39 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Met x_40 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_2, x_39); if (x_40 == 0) { -lean_object* x_41; lean_object* x_42; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; -x_131 = lean_io_mono_nanos_now(x_38); -x_132 = lean_ctor_get(x_131, 0); -lean_inc(x_132); -x_133 = lean_ctor_get(x_131, 1); -lean_inc(x_133); -lean_dec(x_131); +lean_object* x_41; lean_object* x_42; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; +x_135 = lean_io_mono_nanos_now(x_38); +x_136 = lean_ctor_get(x_135, 0); +lean_inc(x_136); +x_137 = lean_ctor_get(x_135, 1); +lean_inc(x_137); +lean_dec(x_135); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_134 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_133); -if (lean_obj_tag(x_134) == 0) +x_138 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_137); +if (lean_obj_tag(x_138) == 0) { -uint8_t x_135; -x_135 = !lean_is_exclusive(x_134); -if (x_135 == 0) +uint8_t x_139; +x_139 = !lean_is_exclusive(x_138); +if (x_139 == 0) { -lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; uint8_t x_140; -x_136 = lean_ctor_get(x_134, 0); -x_137 = lean_ctor_get(x_134, 1); -x_138 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_138, 0, x_136); -x_139 = lean_io_mono_nanos_now(x_137); -x_140 = !lean_is_exclusive(x_139); -if (x_140 == 0) +lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; uint8_t x_144; +x_140 = lean_ctor_get(x_138, 0); +x_141 = lean_ctor_get(x_138, 1); +x_142 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_142, 0, x_140); +x_143 = lean_io_mono_nanos_now(x_141); +x_144 = !lean_is_exclusive(x_143); +if (x_144 == 0) { -lean_object* x_141; lean_object* x_142; uint8_t x_143; lean_object* x_144; double x_145; double x_146; double x_147; double x_148; double x_149; lean_object* x_150; lean_object* x_151; -x_141 = lean_ctor_get(x_139, 0); -x_142 = lean_ctor_get(x_139, 1); -x_143 = 0; -x_144 = lean_unsigned_to_nat(0u); -x_145 = l_Float_ofScientific(x_132, x_143, x_144); -lean_dec(x_132); -x_146 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__5; -x_147 = lean_float_div(x_145, x_146); -x_148 = l_Float_ofScientific(x_141, x_143, x_144); -lean_dec(x_141); -x_149 = lean_float_div(x_148, x_146); -x_150 = lean_box_float(x_147); -x_151 = lean_box_float(x_149); -lean_ctor_set(x_139, 1, x_151); -lean_ctor_set(x_139, 0, x_150); -lean_ctor_set(x_134, 1, x_139); -lean_ctor_set(x_134, 0, x_138); -x_41 = x_134; -x_42 = x_142; -goto block_130; +lean_object* x_145; lean_object* x_146; uint8_t x_147; lean_object* x_148; double x_149; double x_150; double x_151; double x_152; double x_153; lean_object* x_154; lean_object* x_155; +x_145 = lean_ctor_get(x_143, 0); +x_146 = lean_ctor_get(x_143, 1); +x_147 = 0; +x_148 = lean_unsigned_to_nat(0u); +x_149 = l_Float_ofScientific(x_136, x_147, x_148); +lean_dec(x_136); +x_150 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__5; +x_151 = lean_float_div(x_149, x_150); +x_152 = l_Float_ofScientific(x_145, x_147, x_148); +lean_dec(x_145); +x_153 = lean_float_div(x_152, x_150); +x_154 = lean_box_float(x_151); +x_155 = lean_box_float(x_153); +lean_ctor_set(x_143, 1, x_155); +lean_ctor_set(x_143, 0, x_154); +lean_ctor_set(x_138, 1, x_143); +lean_ctor_set(x_138, 0, x_142); +x_41 = x_138; +x_42 = x_146; +goto block_134; } else { -lean_object* x_152; lean_object* x_153; uint8_t x_154; lean_object* x_155; double x_156; double x_157; double x_158; double x_159; double x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; -x_152 = lean_ctor_get(x_139, 0); -x_153 = lean_ctor_get(x_139, 1); -lean_inc(x_153); -lean_inc(x_152); -lean_dec(x_139); -x_154 = 0; -x_155 = lean_unsigned_to_nat(0u); -x_156 = l_Float_ofScientific(x_132, x_154, x_155); -lean_dec(x_132); -x_157 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__5; -x_158 = lean_float_div(x_156, x_157); -x_159 = l_Float_ofScientific(x_152, x_154, x_155); -lean_dec(x_152); -x_160 = lean_float_div(x_159, x_157); -x_161 = lean_box_float(x_158); -x_162 = lean_box_float(x_160); -x_163 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_163, 0, x_161); -lean_ctor_set(x_163, 1, x_162); -lean_ctor_set(x_134, 1, x_163); -lean_ctor_set(x_134, 0, x_138); -x_41 = x_134; -x_42 = x_153; -goto block_130; +lean_object* x_156; lean_object* x_157; uint8_t x_158; lean_object* x_159; double x_160; double x_161; double x_162; double x_163; double x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; +x_156 = lean_ctor_get(x_143, 0); +x_157 = lean_ctor_get(x_143, 1); +lean_inc(x_157); +lean_inc(x_156); +lean_dec(x_143); +x_158 = 0; +x_159 = lean_unsigned_to_nat(0u); +x_160 = l_Float_ofScientific(x_136, x_158, x_159); +lean_dec(x_136); +x_161 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__5; +x_162 = lean_float_div(x_160, x_161); +x_163 = l_Float_ofScientific(x_156, x_158, x_159); +lean_dec(x_156); +x_164 = lean_float_div(x_163, x_161); +x_165 = lean_box_float(x_162); +x_166 = lean_box_float(x_164); +x_167 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_167, 0, x_165); +lean_ctor_set(x_167, 1, x_166); +lean_ctor_set(x_138, 1, x_167); +lean_ctor_set(x_138, 0, x_142); +x_41 = x_138; +x_42 = x_157; +goto block_134; } } else { -lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; uint8_t x_171; lean_object* x_172; double x_173; double x_174; double x_175; double x_176; double x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; -x_164 = lean_ctor_get(x_134, 0); -x_165 = lean_ctor_get(x_134, 1); -lean_inc(x_165); -lean_inc(x_164); -lean_dec(x_134); -x_166 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_166, 0, x_164); -x_167 = lean_io_mono_nanos_now(x_165); -x_168 = lean_ctor_get(x_167, 0); -lean_inc(x_168); -x_169 = lean_ctor_get(x_167, 1); +lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; uint8_t x_175; lean_object* x_176; double x_177; double x_178; double x_179; double x_180; double x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; +x_168 = lean_ctor_get(x_138, 0); +x_169 = lean_ctor_get(x_138, 1); lean_inc(x_169); -if (lean_is_exclusive(x_167)) { - lean_ctor_release(x_167, 0); - lean_ctor_release(x_167, 1); - x_170 = x_167; +lean_inc(x_168); +lean_dec(x_138); +x_170 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_170, 0, x_168); +x_171 = lean_io_mono_nanos_now(x_169); +x_172 = lean_ctor_get(x_171, 0); +lean_inc(x_172); +x_173 = lean_ctor_get(x_171, 1); +lean_inc(x_173); +if (lean_is_exclusive(x_171)) { + lean_ctor_release(x_171, 0); + lean_ctor_release(x_171, 1); + x_174 = x_171; } else { - lean_dec_ref(x_167); - x_170 = lean_box(0); + lean_dec_ref(x_171); + x_174 = lean_box(0); } -x_171 = 0; -x_172 = lean_unsigned_to_nat(0u); -x_173 = l_Float_ofScientific(x_132, x_171, x_172); -lean_dec(x_132); -x_174 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__5; -x_175 = lean_float_div(x_173, x_174); -x_176 = l_Float_ofScientific(x_168, x_171, x_172); -lean_dec(x_168); -x_177 = lean_float_div(x_176, x_174); -x_178 = lean_box_float(x_175); -x_179 = lean_box_float(x_177); -if (lean_is_scalar(x_170)) { - x_180 = lean_alloc_ctor(0, 2, 0); +x_175 = 0; +x_176 = lean_unsigned_to_nat(0u); +x_177 = l_Float_ofScientific(x_136, x_175, x_176); +lean_dec(x_136); +x_178 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__5; +x_179 = lean_float_div(x_177, x_178); +x_180 = l_Float_ofScientific(x_172, x_175, x_176); +lean_dec(x_172); +x_181 = lean_float_div(x_180, x_178); +x_182 = lean_box_float(x_179); +x_183 = lean_box_float(x_181); +if (lean_is_scalar(x_174)) { + x_184 = lean_alloc_ctor(0, 2, 0); } else { - x_180 = x_170; + x_184 = x_174; } -lean_ctor_set(x_180, 0, x_178); -lean_ctor_set(x_180, 1, x_179); -x_181 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_181, 0, x_166); -lean_ctor_set(x_181, 1, x_180); -x_41 = x_181; -x_42 = x_169; -goto block_130; +lean_ctor_set(x_184, 0, x_182); +lean_ctor_set(x_184, 1, x_183); +x_185 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_185, 0, x_170); +lean_ctor_set(x_185, 1, x_184); +x_41 = x_185; +x_42 = x_173; +goto block_134; } } else { -uint8_t x_182; -x_182 = !lean_is_exclusive(x_134); -if (x_182 == 0) +uint8_t x_186; +x_186 = !lean_is_exclusive(x_138); +if (x_186 == 0) { -lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; uint8_t x_187; -x_183 = lean_ctor_get(x_134, 0); -x_184 = lean_ctor_get(x_134, 1); -x_185 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_185, 0, x_183); -x_186 = lean_io_mono_nanos_now(x_184); -x_187 = !lean_is_exclusive(x_186); -if (x_187 == 0) +lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; uint8_t x_191; +x_187 = lean_ctor_get(x_138, 0); +x_188 = lean_ctor_get(x_138, 1); +x_189 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_189, 0, x_187); +x_190 = lean_io_mono_nanos_now(x_188); +x_191 = !lean_is_exclusive(x_190); +if (x_191 == 0) { -lean_object* x_188; lean_object* x_189; uint8_t x_190; lean_object* x_191; double x_192; double x_193; double x_194; double x_195; double x_196; lean_object* x_197; lean_object* x_198; -x_188 = lean_ctor_get(x_186, 0); -x_189 = lean_ctor_get(x_186, 1); -x_190 = 0; -x_191 = lean_unsigned_to_nat(0u); -x_192 = l_Float_ofScientific(x_132, x_190, x_191); -lean_dec(x_132); -x_193 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__5; -x_194 = lean_float_div(x_192, x_193); -x_195 = l_Float_ofScientific(x_188, x_190, x_191); -lean_dec(x_188); -x_196 = lean_float_div(x_195, x_193); -x_197 = lean_box_float(x_194); -x_198 = lean_box_float(x_196); -lean_ctor_set(x_186, 1, x_198); -lean_ctor_set(x_186, 0, x_197); -lean_ctor_set_tag(x_134, 0); -lean_ctor_set(x_134, 1, x_186); -lean_ctor_set(x_134, 0, x_185); -x_41 = x_134; -x_42 = x_189; -goto block_130; +lean_object* x_192; lean_object* x_193; uint8_t x_194; lean_object* x_195; double x_196; double x_197; double x_198; double x_199; double x_200; lean_object* x_201; lean_object* x_202; +x_192 = lean_ctor_get(x_190, 0); +x_193 = lean_ctor_get(x_190, 1); +x_194 = 0; +x_195 = lean_unsigned_to_nat(0u); +x_196 = l_Float_ofScientific(x_136, x_194, x_195); +lean_dec(x_136); +x_197 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__5; +x_198 = lean_float_div(x_196, x_197); +x_199 = l_Float_ofScientific(x_192, x_194, x_195); +lean_dec(x_192); +x_200 = lean_float_div(x_199, x_197); +x_201 = lean_box_float(x_198); +x_202 = lean_box_float(x_200); +lean_ctor_set(x_190, 1, x_202); +lean_ctor_set(x_190, 0, x_201); +lean_ctor_set_tag(x_138, 0); +lean_ctor_set(x_138, 1, x_190); +lean_ctor_set(x_138, 0, x_189); +x_41 = x_138; +x_42 = x_193; +goto block_134; } else { -lean_object* x_199; lean_object* x_200; uint8_t x_201; lean_object* x_202; double x_203; double x_204; double x_205; double x_206; double x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; -x_199 = lean_ctor_get(x_186, 0); -x_200 = lean_ctor_get(x_186, 1); -lean_inc(x_200); -lean_inc(x_199); -lean_dec(x_186); -x_201 = 0; -x_202 = lean_unsigned_to_nat(0u); -x_203 = l_Float_ofScientific(x_132, x_201, x_202); -lean_dec(x_132); -x_204 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__5; -x_205 = lean_float_div(x_203, x_204); -x_206 = l_Float_ofScientific(x_199, x_201, x_202); -lean_dec(x_199); -x_207 = lean_float_div(x_206, x_204); -x_208 = lean_box_float(x_205); -x_209 = lean_box_float(x_207); -x_210 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_210, 0, x_208); -lean_ctor_set(x_210, 1, x_209); -lean_ctor_set_tag(x_134, 0); -lean_ctor_set(x_134, 1, x_210); -lean_ctor_set(x_134, 0, x_185); -x_41 = x_134; -x_42 = x_200; -goto block_130; +lean_object* x_203; lean_object* x_204; uint8_t x_205; lean_object* x_206; double x_207; double x_208; double x_209; double x_210; double x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; +x_203 = lean_ctor_get(x_190, 0); +x_204 = lean_ctor_get(x_190, 1); +lean_inc(x_204); +lean_inc(x_203); +lean_dec(x_190); +x_205 = 0; +x_206 = lean_unsigned_to_nat(0u); +x_207 = l_Float_ofScientific(x_136, x_205, x_206); +lean_dec(x_136); +x_208 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__5; +x_209 = lean_float_div(x_207, x_208); +x_210 = l_Float_ofScientific(x_203, x_205, x_206); +lean_dec(x_203); +x_211 = lean_float_div(x_210, x_208); +x_212 = lean_box_float(x_209); +x_213 = lean_box_float(x_211); +x_214 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_214, 0, x_212); +lean_ctor_set(x_214, 1, x_213); +lean_ctor_set_tag(x_138, 0); +lean_ctor_set(x_138, 1, x_214); +lean_ctor_set(x_138, 0, x_189); +x_41 = x_138; +x_42 = x_204; +goto block_134; } } else { -lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; lean_object* x_219; double x_220; double x_221; double x_222; double x_223; double x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; -x_211 = lean_ctor_get(x_134, 0); -x_212 = lean_ctor_get(x_134, 1); -lean_inc(x_212); -lean_inc(x_211); -lean_dec(x_134); -x_213 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_213, 0, x_211); -x_214 = lean_io_mono_nanos_now(x_212); -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_214, 1); +lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; uint8_t x_222; lean_object* x_223; double x_224; double x_225; double x_226; double x_227; double x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; +x_215 = lean_ctor_get(x_138, 0); +x_216 = lean_ctor_get(x_138, 1); lean_inc(x_216); -if (lean_is_exclusive(x_214)) { - lean_ctor_release(x_214, 0); - lean_ctor_release(x_214, 1); - x_217 = x_214; +lean_inc(x_215); +lean_dec(x_138); +x_217 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_217, 0, x_215); +x_218 = lean_io_mono_nanos_now(x_216); +x_219 = lean_ctor_get(x_218, 0); +lean_inc(x_219); +x_220 = lean_ctor_get(x_218, 1); +lean_inc(x_220); +if (lean_is_exclusive(x_218)) { + lean_ctor_release(x_218, 0); + lean_ctor_release(x_218, 1); + x_221 = x_218; } else { - lean_dec_ref(x_214); - x_217 = lean_box(0); + lean_dec_ref(x_218); + x_221 = lean_box(0); } -x_218 = 0; -x_219 = lean_unsigned_to_nat(0u); -x_220 = l_Float_ofScientific(x_132, x_218, x_219); -lean_dec(x_132); -x_221 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__5; -x_222 = lean_float_div(x_220, x_221); -x_223 = l_Float_ofScientific(x_215, x_218, x_219); -lean_dec(x_215); -x_224 = lean_float_div(x_223, x_221); -x_225 = lean_box_float(x_222); -x_226 = lean_box_float(x_224); -if (lean_is_scalar(x_217)) { - x_227 = lean_alloc_ctor(0, 2, 0); +x_222 = 0; +x_223 = lean_unsigned_to_nat(0u); +x_224 = l_Float_ofScientific(x_136, x_222, x_223); +lean_dec(x_136); +x_225 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__5; +x_226 = lean_float_div(x_224, x_225); +x_227 = l_Float_ofScientific(x_219, x_222, x_223); +lean_dec(x_219); +x_228 = lean_float_div(x_227, x_225); +x_229 = lean_box_float(x_226); +x_230 = lean_box_float(x_228); +if (lean_is_scalar(x_221)) { + x_231 = lean_alloc_ctor(0, 2, 0); } else { - x_227 = x_217; + x_231 = x_221; } -lean_ctor_set(x_227, 0, x_225); -lean_ctor_set(x_227, 1, x_226); -x_228 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_228, 0, x_213); -lean_ctor_set(x_228, 1, x_227); -x_41 = x_228; -x_42 = x_216; -goto block_130; +lean_ctor_set(x_231, 0, x_229); +lean_ctor_set(x_231, 1, x_230); +x_232 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_232, 0, x_217); +lean_ctor_set(x_232, 1, x_231); +x_41 = x_232; +x_42 = x_220; +goto block_134; } } -block_130: +block_134: { -lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t x_47; lean_object* x_116; uint8_t x_117; +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; uint8_t x_49; x_43 = lean_ctor_get(x_41, 1); lean_inc(x_43); x_44 = lean_ctor_get(x_41, 0); @@ -13686,17 +13652,37 @@ lean_inc(x_45); x_46 = lean_ctor_get(x_43, 1); lean_inc(x_46); lean_dec(x_43); -x_116 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__2; -x_117 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_2, x_116); -if (x_117 == 0) +x_47 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__2; +x_48 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_2, x_47); +if (x_48 == 0) { -uint8_t x_118; -x_118 = 0; -x_47 = x_118; -goto block_115; +if (x_6 == 0) +{ +uint8_t x_114; +x_114 = 0; +x_49 = x_114; +goto block_113; } else { +lean_object* x_115; double x_116; double x_117; lean_object* x_118; +x_115 = lean_box(0); +x_116 = lean_unbox_float(x_45); +lean_dec(x_45); +x_117 = lean_unbox_float(x_46); +lean_dec(x_46); +x_118 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2(x_44, x_37, x_3, x_4, x_5, x_15, x_22, x_48, x_116, x_117, x_115, x_9, x_10, x_11, x_12, x_42); +lean_dec(x_12); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_44); +return x_118; +} +} +else +{ +if (x_6 == 0) +{ double x_119; double x_120; double x_121; lean_object* x_122; lean_object* x_123; uint8_t x_124; lean_object* x_125; double x_126; double x_127; double x_128; uint8_t x_129; x_119 = lean_unbox_float(x_46); x_120 = lean_unbox_float(x_45); @@ -13710,877 +13696,893 @@ lean_dec(x_123); x_127 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__4; x_128 = lean_float_div(x_126, x_127); x_129 = lean_float_decLt(x_128, x_121); -x_47 = x_129; -goto block_115; +x_49 = x_129; +goto block_113; } -block_115: +else { -if (x_6 == 0) +lean_object* x_130; double x_131; double x_132; lean_object* x_133; +x_130 = lean_box(0); +x_131 = lean_unbox_float(x_45); +lean_dec(x_45); +x_132 = lean_unbox_float(x_46); +lean_dec(x_46); +x_133 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2(x_44, x_37, x_3, x_4, x_5, x_15, x_22, x_48, x_131, x_132, x_130, x_9, x_10, x_11, x_12, x_42); +lean_dec(x_12); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_44); +return x_133; +} +} +block_113: { -if (x_47 == 0) +if (x_49 == 0) { -lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint8_t x_52; +lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; uint8_t x_54; lean_dec(x_46); lean_dec(x_45); lean_dec(x_37); lean_dec(x_22); lean_dec(x_5); lean_dec(x_3); -x_48 = lean_st_ref_take(x_12, x_42); -x_49 = lean_ctor_get(x_48, 0); -lean_inc(x_49); -x_50 = lean_ctor_get(x_49, 3); -lean_inc(x_50); -x_51 = lean_ctor_get(x_48, 1); +x_50 = lean_st_ref_take(x_12, x_42); +x_51 = lean_ctor_get(x_50, 0); lean_inc(x_51); -lean_dec(x_48); -x_52 = !lean_is_exclusive(x_49); -if (x_52 == 0) -{ -lean_object* x_53; uint8_t x_54; -x_53 = lean_ctor_get(x_49, 3); -lean_dec(x_53); -x_54 = !lean_is_exclusive(x_50); +x_52 = lean_ctor_get(x_51, 3); +lean_inc(x_52); +x_53 = lean_ctor_get(x_50, 1); +lean_inc(x_53); +lean_dec(x_50); +x_54 = !lean_is_exclusive(x_51); if (x_54 == 0) { -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_55 = lean_ctor_get(x_50, 0); -x_56 = l_Lean_PersistentArray_append___rarg(x_15, x_55); +lean_object* x_55; uint8_t x_56; +x_55 = lean_ctor_get(x_51, 3); lean_dec(x_55); -lean_ctor_set(x_50, 0, x_56); -x_57 = lean_st_ref_set(x_12, x_49, x_51); -x_58 = lean_ctor_get(x_57, 1); -lean_inc(x_58); +x_56 = !lean_is_exclusive(x_52); +if (x_56 == 0) +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_57 = lean_ctor_get(x_52, 0); +x_58 = l_Lean_PersistentArray_append___rarg(x_15, x_57); lean_dec(x_57); -x_59 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_44, x_9, x_10, x_11, x_12, x_58); +lean_ctor_set(x_52, 0, x_58); +x_59 = lean_st_ref_set(x_12, x_51, x_53); +x_60 = lean_ctor_get(x_59, 1); +lean_inc(x_60); +lean_dec(x_59); +x_61 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_44, x_9, x_10, x_11, x_12, x_60); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_44); -if (lean_obj_tag(x_59) == 0) +if (lean_obj_tag(x_61) == 0) { -uint8_t x_60; -x_60 = !lean_is_exclusive(x_59); -if (x_60 == 0) +uint8_t x_62; +x_62 = !lean_is_exclusive(x_61); +if (x_62 == 0) { -return x_59; +return x_61; } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_61 = lean_ctor_get(x_59, 0); -x_62 = lean_ctor_get(x_59, 1); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_59); -x_63 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_63, 0, x_61); -lean_ctor_set(x_63, 1, x_62); -return x_63; +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_61, 0); +x_64 = lean_ctor_get(x_61, 1); +lean_inc(x_64); +lean_inc(x_63); +lean_dec(x_61); +x_65 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_65, 0, x_63); +lean_ctor_set(x_65, 1, x_64); +return x_65; } } else { -uint8_t x_64; -x_64 = !lean_is_exclusive(x_59); -if (x_64 == 0) +uint8_t x_66; +x_66 = !lean_is_exclusive(x_61); +if (x_66 == 0) { -return x_59; +return x_61; } else { -lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_65 = lean_ctor_get(x_59, 0); -x_66 = lean_ctor_get(x_59, 1); -lean_inc(x_66); -lean_inc(x_65); -lean_dec(x_59); -x_67 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_67, 0, x_65); -lean_ctor_set(x_67, 1, x_66); -return x_67; +lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_67 = lean_ctor_get(x_61, 0); +x_68 = lean_ctor_get(x_61, 1); +lean_inc(x_68); +lean_inc(x_67); +lean_dec(x_61); +x_69 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_69, 0, x_67); +lean_ctor_set(x_69, 1, x_68); +return x_69; } } } else { -uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_68 = lean_ctor_get_uint64(x_50, sizeof(void*)*1); -x_69 = lean_ctor_get(x_50, 0); -lean_inc(x_69); -lean_dec(x_50); -x_70 = l_Lean_PersistentArray_append___rarg(x_15, x_69); -lean_dec(x_69); -x_71 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_71, 0, x_70); -lean_ctor_set_uint64(x_71, sizeof(void*)*1, x_68); -lean_ctor_set(x_49, 3, x_71); -x_72 = lean_st_ref_set(x_12, x_49, x_51); -x_73 = lean_ctor_get(x_72, 1); -lean_inc(x_73); -lean_dec(x_72); -x_74 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_44, x_9, x_10, x_11, x_12, x_73); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_44); -if (lean_obj_tag(x_74) == 0) -{ -lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_75 = lean_ctor_get(x_74, 0); +uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_70 = lean_ctor_get_uint64(x_52, sizeof(void*)*1); +x_71 = lean_ctor_get(x_52, 0); +lean_inc(x_71); +lean_dec(x_52); +x_72 = l_Lean_PersistentArray_append___rarg(x_15, x_71); +lean_dec(x_71); +x_73 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_73, 0, x_72); +lean_ctor_set_uint64(x_73, sizeof(void*)*1, x_70); +lean_ctor_set(x_51, 3, x_73); +x_74 = lean_st_ref_set(x_12, x_51, x_53); +x_75 = lean_ctor_get(x_74, 1); lean_inc(x_75); -x_76 = lean_ctor_get(x_74, 1); -lean_inc(x_76); -if (lean_is_exclusive(x_74)) { - lean_ctor_release(x_74, 0); - lean_ctor_release(x_74, 1); - x_77 = x_74; +lean_dec(x_74); +x_76 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_44, x_9, x_10, x_11, x_12, x_75); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_44); +if (lean_obj_tag(x_76) == 0) +{ +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_77 = lean_ctor_get(x_76, 0); +lean_inc(x_77); +x_78 = lean_ctor_get(x_76, 1); +lean_inc(x_78); +if (lean_is_exclusive(x_76)) { + lean_ctor_release(x_76, 0); + lean_ctor_release(x_76, 1); + x_79 = x_76; } else { - lean_dec_ref(x_74); - x_77 = lean_box(0); + lean_dec_ref(x_76); + x_79 = lean_box(0); } -if (lean_is_scalar(x_77)) { - x_78 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_79)) { + x_80 = lean_alloc_ctor(0, 2, 0); } else { - x_78 = x_77; + x_80 = x_79; } -lean_ctor_set(x_78, 0, x_75); -lean_ctor_set(x_78, 1, x_76); -return x_78; +lean_ctor_set(x_80, 0, x_77); +lean_ctor_set(x_80, 1, x_78); +return x_80; } else { -lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_79 = lean_ctor_get(x_74, 0); -lean_inc(x_79); -x_80 = lean_ctor_get(x_74, 1); -lean_inc(x_80); -if (lean_is_exclusive(x_74)) { - lean_ctor_release(x_74, 0); - lean_ctor_release(x_74, 1); - x_81 = x_74; +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_81 = lean_ctor_get(x_76, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_76, 1); +lean_inc(x_82); +if (lean_is_exclusive(x_76)) { + lean_ctor_release(x_76, 0); + lean_ctor_release(x_76, 1); + x_83 = x_76; } else { - lean_dec_ref(x_74); - x_81 = lean_box(0); + lean_dec_ref(x_76); + x_83 = lean_box(0); } -if (lean_is_scalar(x_81)) { - x_82 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_83)) { + x_84 = lean_alloc_ctor(1, 2, 0); } else { - x_82 = x_81; + x_84 = x_83; } -lean_ctor_set(x_82, 0, x_79); -lean_ctor_set(x_82, 1, x_80); -return x_82; +lean_ctor_set(x_84, 0, x_81); +lean_ctor_set(x_84, 1, x_82); +return x_84; } } } else { -lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; uint64_t x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; -x_83 = lean_ctor_get(x_49, 0); -x_84 = lean_ctor_get(x_49, 1); -x_85 = lean_ctor_get(x_49, 2); -x_86 = lean_ctor_get(x_49, 4); -x_87 = lean_ctor_get(x_49, 5); -x_88 = lean_ctor_get(x_49, 6); -x_89 = lean_ctor_get(x_49, 7); +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; uint64_t x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; +x_85 = lean_ctor_get(x_51, 0); +x_86 = lean_ctor_get(x_51, 1); +x_87 = lean_ctor_get(x_51, 2); +x_88 = lean_ctor_get(x_51, 4); +x_89 = lean_ctor_get(x_51, 5); +x_90 = lean_ctor_get(x_51, 6); +x_91 = lean_ctor_get(x_51, 7); +lean_inc(x_91); +lean_inc(x_90); lean_inc(x_89); lean_inc(x_88); lean_inc(x_87); lean_inc(x_86); lean_inc(x_85); -lean_inc(x_84); -lean_inc(x_83); -lean_dec(x_49); -x_90 = lean_ctor_get_uint64(x_50, sizeof(void*)*1); -x_91 = lean_ctor_get(x_50, 0); -lean_inc(x_91); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - x_92 = x_50; +lean_dec(x_51); +x_92 = lean_ctor_get_uint64(x_52, sizeof(void*)*1); +x_93 = lean_ctor_get(x_52, 0); +lean_inc(x_93); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + x_94 = x_52; } else { - lean_dec_ref(x_50); - x_92 = lean_box(0); + lean_dec_ref(x_52); + x_94 = lean_box(0); } -x_93 = l_Lean_PersistentArray_append___rarg(x_15, x_91); -lean_dec(x_91); -if (lean_is_scalar(x_92)) { - x_94 = lean_alloc_ctor(0, 1, 8); +x_95 = l_Lean_PersistentArray_append___rarg(x_15, x_93); +lean_dec(x_93); +if (lean_is_scalar(x_94)) { + x_96 = lean_alloc_ctor(0, 1, 8); } else { - x_94 = x_92; + x_96 = x_94; } -lean_ctor_set(x_94, 0, x_93); -lean_ctor_set_uint64(x_94, sizeof(void*)*1, x_90); -x_95 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_95, 0, x_83); -lean_ctor_set(x_95, 1, x_84); -lean_ctor_set(x_95, 2, x_85); -lean_ctor_set(x_95, 3, x_94); -lean_ctor_set(x_95, 4, x_86); -lean_ctor_set(x_95, 5, x_87); -lean_ctor_set(x_95, 6, x_88); -lean_ctor_set(x_95, 7, x_89); -x_96 = lean_st_ref_set(x_12, x_95, x_51); -x_97 = lean_ctor_get(x_96, 1); -lean_inc(x_97); -lean_dec(x_96); -x_98 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_44, x_9, x_10, x_11, x_12, x_97); +lean_ctor_set(x_96, 0, x_95); +lean_ctor_set_uint64(x_96, sizeof(void*)*1, x_92); +x_97 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_97, 0, x_85); +lean_ctor_set(x_97, 1, x_86); +lean_ctor_set(x_97, 2, x_87); +lean_ctor_set(x_97, 3, x_96); +lean_ctor_set(x_97, 4, x_88); +lean_ctor_set(x_97, 5, x_89); +lean_ctor_set(x_97, 6, x_90); +lean_ctor_set(x_97, 7, x_91); +x_98 = lean_st_ref_set(x_12, x_97, x_53); +x_99 = lean_ctor_get(x_98, 1); +lean_inc(x_99); +lean_dec(x_98); +x_100 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_44, x_9, x_10, x_11, x_12, x_99); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_44); -if (lean_obj_tag(x_98) == 0) +if (lean_obj_tag(x_100) == 0) { -lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; -x_99 = lean_ctor_get(x_98, 0); -lean_inc(x_99); -x_100 = lean_ctor_get(x_98, 1); -lean_inc(x_100); -if (lean_is_exclusive(x_98)) { - lean_ctor_release(x_98, 0); - lean_ctor_release(x_98, 1); - x_101 = x_98; +lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; +x_101 = lean_ctor_get(x_100, 0); +lean_inc(x_101); +x_102 = lean_ctor_get(x_100, 1); +lean_inc(x_102); +if (lean_is_exclusive(x_100)) { + lean_ctor_release(x_100, 0); + lean_ctor_release(x_100, 1); + x_103 = x_100; } else { - lean_dec_ref(x_98); - x_101 = lean_box(0); + lean_dec_ref(x_100); + x_103 = lean_box(0); } -if (lean_is_scalar(x_101)) { - x_102 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_103)) { + x_104 = lean_alloc_ctor(0, 2, 0); } else { - x_102 = x_101; + x_104 = x_103; } -lean_ctor_set(x_102, 0, x_99); -lean_ctor_set(x_102, 1, x_100); -return x_102; +lean_ctor_set(x_104, 0, x_101); +lean_ctor_set(x_104, 1, x_102); +return x_104; } else { -lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; -x_103 = lean_ctor_get(x_98, 0); -lean_inc(x_103); -x_104 = lean_ctor_get(x_98, 1); -lean_inc(x_104); -if (lean_is_exclusive(x_98)) { - lean_ctor_release(x_98, 0); - lean_ctor_release(x_98, 1); - x_105 = x_98; +lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; +x_105 = lean_ctor_get(x_100, 0); +lean_inc(x_105); +x_106 = lean_ctor_get(x_100, 1); +lean_inc(x_106); +if (lean_is_exclusive(x_100)) { + lean_ctor_release(x_100, 0); + lean_ctor_release(x_100, 1); + x_107 = x_100; } else { - lean_dec_ref(x_98); - x_105 = lean_box(0); + lean_dec_ref(x_100); + x_107 = lean_box(0); } -if (lean_is_scalar(x_105)) { - x_106 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_107)) { + x_108 = lean_alloc_ctor(1, 2, 0); } else { - x_106 = x_105; + x_108 = x_107; } -lean_ctor_set(x_106, 0, x_103); -lean_ctor_set(x_106, 1, x_104); -return x_106; +lean_ctor_set(x_108, 0, x_105); +lean_ctor_set(x_108, 1, x_106); +return x_108; } } } else { -lean_object* x_107; double x_108; double x_109; lean_object* x_110; -x_107 = lean_box(0); -x_108 = lean_unbox_float(x_45); +lean_object* x_109; double x_110; double x_111; lean_object* x_112; +x_109 = lean_box(0); +x_110 = lean_unbox_float(x_45); lean_dec(x_45); -x_109 = lean_unbox_float(x_46); +x_111 = lean_unbox_float(x_46); lean_dec(x_46); -x_110 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2(x_44, x_37, x_3, x_4, x_5, x_15, x_22, x_2, x_47, x_108, x_109, x_107, x_9, x_10, x_11, x_12, x_42); +x_112 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2(x_44, x_37, x_3, x_4, x_5, x_15, x_22, x_48, x_110, x_111, x_109, x_9, x_10, x_11, x_12, x_42); lean_dec(x_12); lean_dec(x_10); lean_dec(x_9); lean_dec(x_44); -return x_110; -} -} -else -{ -lean_object* x_111; double x_112; double x_113; lean_object* x_114; -x_111 = lean_box(0); -x_112 = lean_unbox_float(x_45); -lean_dec(x_45); -x_113 = lean_unbox_float(x_46); -lean_dec(x_46); -x_114 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2(x_44, x_37, x_3, x_4, x_5, x_15, x_22, x_2, x_47, x_112, x_113, x_111, x_9, x_10, x_11, x_12, x_42); -lean_dec(x_12); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_44); -return x_114; +return x_112; } } } } else { -lean_object* x_229; lean_object* x_230; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; -x_317 = lean_io_get_num_heartbeats(x_38); -x_318 = lean_ctor_get(x_317, 0); -lean_inc(x_318); -x_319 = lean_ctor_get(x_317, 1); -lean_inc(x_319); -lean_dec(x_317); +lean_object* x_233; lean_object* x_234; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; +x_325 = lean_io_get_num_heartbeats(x_38); +x_326 = lean_ctor_get(x_325, 0); +lean_inc(x_326); +x_327 = lean_ctor_get(x_325, 1); +lean_inc(x_327); +lean_dec(x_325); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_320 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_319); -if (lean_obj_tag(x_320) == 0) +x_328 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_327); +if (lean_obj_tag(x_328) == 0) { -uint8_t x_321; -x_321 = !lean_is_exclusive(x_320); -if (x_321 == 0) +uint8_t x_329; +x_329 = !lean_is_exclusive(x_328); +if (x_329 == 0) { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; uint8_t x_326; -x_322 = lean_ctor_get(x_320, 0); -x_323 = lean_ctor_get(x_320, 1); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = !lean_is_exclusive(x_325); -if (x_326 == 0) +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; uint8_t x_334; +x_330 = lean_ctor_get(x_328, 0); +x_331 = lean_ctor_get(x_328, 1); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = !lean_is_exclusive(x_333); +if (x_334 == 0) { -lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; -x_327 = lean_ctor_get(x_325, 0); -x_328 = lean_ctor_get(x_325, 1); -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_318, x_329, x_330); -lean_dec(x_318); -x_332 = l_Float_ofScientific(x_327, x_329, x_330); -lean_dec(x_327); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -lean_ctor_set(x_325, 1, x_334); -lean_ctor_set(x_325, 0, x_333); -lean_ctor_set(x_320, 1, x_325); -lean_ctor_set(x_320, 0, x_324); -x_229 = x_320; -x_230 = x_328; -goto block_316; -} -else -{ -lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; -x_335 = lean_ctor_get(x_325, 0); -x_336 = lean_ctor_get(x_325, 1); -lean_inc(x_336); -lean_inc(x_335); -lean_dec(x_325); +lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; +x_335 = lean_ctor_get(x_333, 0); +x_336 = lean_ctor_get(x_333, 1); x_337 = 0; x_338 = lean_unsigned_to_nat(0u); -x_339 = l_Float_ofScientific(x_318, x_337, x_338); -lean_dec(x_318); +x_339 = l_Float_ofScientific(x_326, x_337, x_338); +lean_dec(x_326); x_340 = l_Float_ofScientific(x_335, x_337, x_338); lean_dec(x_335); x_341 = lean_box_float(x_339); x_342 = lean_box_float(x_340); -x_343 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_343, 0, x_341); -lean_ctor_set(x_343, 1, x_342); -lean_ctor_set(x_320, 1, x_343); -lean_ctor_set(x_320, 0, x_324); -x_229 = x_320; -x_230 = x_336; -goto block_316; -} +lean_ctor_set(x_333, 1, x_342); +lean_ctor_set(x_333, 0, x_341); +lean_ctor_set(x_328, 1, x_333); +lean_ctor_set(x_328, 0, x_332); +x_233 = x_328; +x_234 = x_336; +goto block_324; } else { -lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; uint8_t x_351; lean_object* x_352; double x_353; double x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; -x_344 = lean_ctor_get(x_320, 0); -x_345 = lean_ctor_get(x_320, 1); -lean_inc(x_345); +lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; +x_343 = lean_ctor_get(x_333, 0); +x_344 = lean_ctor_get(x_333, 1); lean_inc(x_344); -lean_dec(x_320); -x_346 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_346, 0, x_344); -x_347 = lean_io_get_num_heartbeats(x_345); -x_348 = lean_ctor_get(x_347, 0); -lean_inc(x_348); -x_349 = lean_ctor_get(x_347, 1); -lean_inc(x_349); -if (lean_is_exclusive(x_347)) { - lean_ctor_release(x_347, 0); - lean_ctor_release(x_347, 1); - x_350 = x_347; -} else { - lean_dec_ref(x_347); - x_350 = lean_box(0); -} -x_351 = 0; -x_352 = lean_unsigned_to_nat(0u); -x_353 = l_Float_ofScientific(x_318, x_351, x_352); -lean_dec(x_318); -x_354 = l_Float_ofScientific(x_348, x_351, x_352); -lean_dec(x_348); -x_355 = lean_box_float(x_353); -x_356 = lean_box_float(x_354); -if (lean_is_scalar(x_350)) { - x_357 = lean_alloc_ctor(0, 2, 0); -} else { - x_357 = x_350; -} -lean_ctor_set(x_357, 0, x_355); -lean_ctor_set(x_357, 1, x_356); -x_358 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_358, 0, x_346); -lean_ctor_set(x_358, 1, x_357); -x_229 = x_358; -x_230 = x_349; -goto block_316; +lean_inc(x_343); +lean_dec(x_333); +x_345 = 0; +x_346 = lean_unsigned_to_nat(0u); +x_347 = l_Float_ofScientific(x_326, x_345, x_346); +lean_dec(x_326); +x_348 = l_Float_ofScientific(x_343, x_345, x_346); +lean_dec(x_343); +x_349 = lean_box_float(x_347); +x_350 = lean_box_float(x_348); +x_351 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_351, 0, x_349); +lean_ctor_set(x_351, 1, x_350); +lean_ctor_set(x_328, 1, x_351); +lean_ctor_set(x_328, 0, x_332); +x_233 = x_328; +x_234 = x_344; +goto block_324; } } else { -uint8_t x_359; -x_359 = !lean_is_exclusive(x_320); -if (x_359 == 0) -{ -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; uint8_t x_364; -x_360 = lean_ctor_get(x_320, 0); -x_361 = lean_ctor_get(x_320, 1); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = !lean_is_exclusive(x_363); -if (x_364 == 0) -{ -lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; -x_365 = lean_ctor_get(x_363, 0); -x_366 = lean_ctor_get(x_363, 1); -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_318, x_367, x_368); -lean_dec(x_318); -x_370 = l_Float_ofScientific(x_365, x_367, x_368); -lean_dec(x_365); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -lean_ctor_set(x_363, 1, x_372); -lean_ctor_set(x_363, 0, x_371); -lean_ctor_set_tag(x_320, 0); -lean_ctor_set(x_320, 1, x_363); -lean_ctor_set(x_320, 0, x_362); -x_229 = x_320; -x_230 = x_366; -goto block_316; +lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; uint8_t x_359; lean_object* x_360; double x_361; double x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; +x_352 = lean_ctor_get(x_328, 0); +x_353 = lean_ctor_get(x_328, 1); +lean_inc(x_353); +lean_inc(x_352); +lean_dec(x_328); +x_354 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_354, 0, x_352); +x_355 = lean_io_get_num_heartbeats(x_353); +x_356 = lean_ctor_get(x_355, 0); +lean_inc(x_356); +x_357 = lean_ctor_get(x_355, 1); +lean_inc(x_357); +if (lean_is_exclusive(x_355)) { + lean_ctor_release(x_355, 0); + lean_ctor_release(x_355, 1); + x_358 = x_355; +} else { + lean_dec_ref(x_355); + x_358 = lean_box(0); +} +x_359 = 0; +x_360 = lean_unsigned_to_nat(0u); +x_361 = l_Float_ofScientific(x_326, x_359, x_360); +lean_dec(x_326); +x_362 = l_Float_ofScientific(x_356, x_359, x_360); +lean_dec(x_356); +x_363 = lean_box_float(x_361); +x_364 = lean_box_float(x_362); +if (lean_is_scalar(x_358)) { + x_365 = lean_alloc_ctor(0, 2, 0); +} else { + x_365 = x_358; +} +lean_ctor_set(x_365, 0, x_363); +lean_ctor_set(x_365, 1, x_364); +x_366 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_366, 0, x_354); +lean_ctor_set(x_366, 1, x_365); +x_233 = x_366; +x_234 = x_357; +goto block_324; +} } else { -lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; -x_373 = lean_ctor_get(x_363, 0); -x_374 = lean_ctor_get(x_363, 1); -lean_inc(x_374); -lean_inc(x_373); -lean_dec(x_363); +uint8_t x_367; +x_367 = !lean_is_exclusive(x_328); +if (x_367 == 0) +{ +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; uint8_t x_372; +x_368 = lean_ctor_get(x_328, 0); +x_369 = lean_ctor_get(x_328, 1); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = !lean_is_exclusive(x_371); +if (x_372 == 0) +{ +lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; +x_373 = lean_ctor_get(x_371, 0); +x_374 = lean_ctor_get(x_371, 1); x_375 = 0; x_376 = lean_unsigned_to_nat(0u); -x_377 = l_Float_ofScientific(x_318, x_375, x_376); -lean_dec(x_318); +x_377 = l_Float_ofScientific(x_326, x_375, x_376); +lean_dec(x_326); x_378 = l_Float_ofScientific(x_373, x_375, x_376); lean_dec(x_373); x_379 = lean_box_float(x_377); x_380 = lean_box_float(x_378); -x_381 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_381, 0, x_379); -lean_ctor_set(x_381, 1, x_380); -lean_ctor_set_tag(x_320, 0); -lean_ctor_set(x_320, 1, x_381); -lean_ctor_set(x_320, 0, x_362); -x_229 = x_320; -x_230 = x_374; -goto block_316; -} +lean_ctor_set(x_371, 1, x_380); +lean_ctor_set(x_371, 0, x_379); +lean_ctor_set_tag(x_328, 0); +lean_ctor_set(x_328, 1, x_371); +lean_ctor_set(x_328, 0, x_370); +x_233 = x_328; +x_234 = x_374; +goto block_324; } else { -lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; uint8_t x_389; lean_object* x_390; double x_391; double x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; -x_382 = lean_ctor_get(x_320, 0); -x_383 = lean_ctor_get(x_320, 1); -lean_inc(x_383); +lean_object* x_381; lean_object* x_382; uint8_t x_383; lean_object* x_384; double x_385; double x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; +x_381 = lean_ctor_get(x_371, 0); +x_382 = lean_ctor_get(x_371, 1); lean_inc(x_382); -lean_dec(x_320); -x_384 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_384, 0, x_382); -x_385 = lean_io_get_num_heartbeats(x_383); -x_386 = lean_ctor_get(x_385, 0); -lean_inc(x_386); -x_387 = lean_ctor_get(x_385, 1); -lean_inc(x_387); -if (lean_is_exclusive(x_385)) { - lean_ctor_release(x_385, 0); - lean_ctor_release(x_385, 1); - x_388 = x_385; -} else { - lean_dec_ref(x_385); - x_388 = lean_box(0); +lean_inc(x_381); +lean_dec(x_371); +x_383 = 0; +x_384 = lean_unsigned_to_nat(0u); +x_385 = l_Float_ofScientific(x_326, x_383, x_384); +lean_dec(x_326); +x_386 = l_Float_ofScientific(x_381, x_383, x_384); +lean_dec(x_381); +x_387 = lean_box_float(x_385); +x_388 = lean_box_float(x_386); +x_389 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_389, 0, x_387); +lean_ctor_set(x_389, 1, x_388); +lean_ctor_set_tag(x_328, 0); +lean_ctor_set(x_328, 1, x_389); +lean_ctor_set(x_328, 0, x_370); +x_233 = x_328; +x_234 = x_382; +goto block_324; } -x_389 = 0; -x_390 = lean_unsigned_to_nat(0u); -x_391 = l_Float_ofScientific(x_318, x_389, x_390); -lean_dec(x_318); -x_392 = l_Float_ofScientific(x_386, x_389, x_390); -lean_dec(x_386); -x_393 = lean_box_float(x_391); -x_394 = lean_box_float(x_392); -if (lean_is_scalar(x_388)) { - x_395 = lean_alloc_ctor(0, 2, 0); -} else { - x_395 = x_388; -} -lean_ctor_set(x_395, 0, x_393); -lean_ctor_set(x_395, 1, x_394); -x_396 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_396, 0, x_384); -lean_ctor_set(x_396, 1, x_395); -x_229 = x_396; -x_230 = x_387; -goto block_316; -} -} -block_316: -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; uint8_t x_235; lean_object* x_304; uint8_t x_305; -x_231 = lean_ctor_get(x_229, 1); -lean_inc(x_231); -x_232 = lean_ctor_get(x_229, 0); -lean_inc(x_232); -lean_dec(x_229); -x_233 = lean_ctor_get(x_231, 0); -lean_inc(x_233); -x_234 = lean_ctor_get(x_231, 1); -lean_inc(x_234); -lean_dec(x_231); -x_304 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__2; -x_305 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_2, x_304); -if (x_305 == 0) -{ -uint8_t x_306; -x_306 = 0; -x_235 = x_306; -goto block_303; } else { -double x_307; double x_308; double x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; lean_object* x_313; double x_314; uint8_t x_315; -x_307 = lean_unbox_float(x_234); -x_308 = lean_unbox_float(x_233); -x_309 = lean_float_sub(x_307, x_308); -x_310 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__3; -x_311 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_2, x_310); -x_312 = 0; -x_313 = lean_unsigned_to_nat(0u); -x_314 = l_Float_ofScientific(x_311, x_312, x_313); -lean_dec(x_311); -x_315 = lean_float_decLt(x_314, x_309); -x_235 = x_315; -goto block_303; +lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; uint8_t x_397; lean_object* x_398; double x_399; double x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; +x_390 = lean_ctor_get(x_328, 0); +x_391 = lean_ctor_get(x_328, 1); +lean_inc(x_391); +lean_inc(x_390); +lean_dec(x_328); +x_392 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_392, 0, x_390); +x_393 = lean_io_get_num_heartbeats(x_391); +x_394 = lean_ctor_get(x_393, 0); +lean_inc(x_394); +x_395 = lean_ctor_get(x_393, 1); +lean_inc(x_395); +if (lean_is_exclusive(x_393)) { + lean_ctor_release(x_393, 0); + lean_ctor_release(x_393, 1); + x_396 = x_393; +} else { + lean_dec_ref(x_393); + x_396 = lean_box(0); } -block_303: +x_397 = 0; +x_398 = lean_unsigned_to_nat(0u); +x_399 = l_Float_ofScientific(x_326, x_397, x_398); +lean_dec(x_326); +x_400 = l_Float_ofScientific(x_394, x_397, x_398); +lean_dec(x_394); +x_401 = lean_box_float(x_399); +x_402 = lean_box_float(x_400); +if (lean_is_scalar(x_396)) { + x_403 = lean_alloc_ctor(0, 2, 0); +} else { + x_403 = x_396; +} +lean_ctor_set(x_403, 0, x_401); +lean_ctor_set(x_403, 1, x_402); +x_404 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_404, 0, x_392); +lean_ctor_set(x_404, 1, x_403); +x_233 = x_404; +x_234 = x_395; +goto block_324; +} +} +block_324: +{ +lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; uint8_t x_240; uint8_t x_241; +x_235 = lean_ctor_get(x_233, 1); +lean_inc(x_235); +x_236 = lean_ctor_get(x_233, 0); +lean_inc(x_236); +lean_dec(x_233); +x_237 = lean_ctor_get(x_235, 0); +lean_inc(x_237); +x_238 = lean_ctor_get(x_235, 1); +lean_inc(x_238); +lean_dec(x_235); +x_239 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__2; +x_240 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_2, x_239); +if (x_240 == 0) { if (x_6 == 0) { -if (x_235 == 0) +uint8_t x_306; +x_306 = 0; +x_241 = x_306; +goto block_305; +} +else { -lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; uint8_t x_240; -lean_dec(x_234); -lean_dec(x_233); +lean_object* x_307; double x_308; double x_309; lean_object* x_310; +x_307 = lean_box(0); +x_308 = lean_unbox_float(x_237); +lean_dec(x_237); +x_309 = lean_unbox_float(x_238); +lean_dec(x_238); +x_310 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2(x_236, x_37, x_3, x_4, x_5, x_15, x_22, x_240, x_308, x_309, x_307, x_9, x_10, x_11, x_12, x_234); +lean_dec(x_12); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_236); +return x_310; +} +} +else +{ +if (x_6 == 0) +{ +double x_311; double x_312; double x_313; lean_object* x_314; lean_object* x_315; uint8_t x_316; lean_object* x_317; double x_318; uint8_t x_319; +x_311 = lean_unbox_float(x_238); +x_312 = lean_unbox_float(x_237); +x_313 = lean_float_sub(x_311, x_312); +x_314 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__3; +x_315 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_2, x_314); +x_316 = 0; +x_317 = lean_unsigned_to_nat(0u); +x_318 = l_Float_ofScientific(x_315, x_316, x_317); +lean_dec(x_315); +x_319 = lean_float_decLt(x_318, x_313); +x_241 = x_319; +goto block_305; +} +else +{ +lean_object* x_320; double x_321; double x_322; lean_object* x_323; +x_320 = lean_box(0); +x_321 = lean_unbox_float(x_237); +lean_dec(x_237); +x_322 = lean_unbox_float(x_238); +lean_dec(x_238); +x_323 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2(x_236, x_37, x_3, x_4, x_5, x_15, x_22, x_240, x_321, x_322, x_320, x_9, x_10, x_11, x_12, x_234); +lean_dec(x_12); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_236); +return x_323; +} +} +block_305: +{ +if (x_241 == 0) +{ +lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; uint8_t x_246; +lean_dec(x_238); +lean_dec(x_237); lean_dec(x_37); lean_dec(x_22); lean_dec(x_5); lean_dec(x_3); -x_236 = lean_st_ref_take(x_12, x_230); -x_237 = lean_ctor_get(x_236, 0); -lean_inc(x_237); -x_238 = lean_ctor_get(x_237, 3); -lean_inc(x_238); -x_239 = lean_ctor_get(x_236, 1); -lean_inc(x_239); -lean_dec(x_236); -x_240 = !lean_is_exclusive(x_237); -if (x_240 == 0) +x_242 = lean_st_ref_take(x_12, x_234); +x_243 = lean_ctor_get(x_242, 0); +lean_inc(x_243); +x_244 = lean_ctor_get(x_243, 3); +lean_inc(x_244); +x_245 = lean_ctor_get(x_242, 1); +lean_inc(x_245); +lean_dec(x_242); +x_246 = !lean_is_exclusive(x_243); +if (x_246 == 0) { -lean_object* x_241; uint8_t x_242; -x_241 = lean_ctor_get(x_237, 3); -lean_dec(x_241); -x_242 = !lean_is_exclusive(x_238); -if (x_242 == 0) -{ -lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; -x_243 = lean_ctor_get(x_238, 0); -x_244 = l_Lean_PersistentArray_append___rarg(x_15, x_243); -lean_dec(x_243); -lean_ctor_set(x_238, 0, x_244); -x_245 = lean_st_ref_set(x_12, x_237, x_239); -x_246 = lean_ctor_get(x_245, 1); -lean_inc(x_246); -lean_dec(x_245); -x_247 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_232, x_9, x_10, x_11, x_12, x_246); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_232); -if (lean_obj_tag(x_247) == 0) -{ -uint8_t x_248; -x_248 = !lean_is_exclusive(x_247); +lean_object* x_247; uint8_t x_248; +x_247 = lean_ctor_get(x_243, 3); +lean_dec(x_247); +x_248 = !lean_is_exclusive(x_244); if (x_248 == 0) { -return x_247; -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; -x_249 = lean_ctor_get(x_247, 0); -x_250 = lean_ctor_get(x_247, 1); -lean_inc(x_250); -lean_inc(x_249); -lean_dec(x_247); -x_251 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_251, 0, x_249); -lean_ctor_set(x_251, 1, x_250); -return x_251; -} -} -else -{ -uint8_t x_252; -x_252 = !lean_is_exclusive(x_247); -if (x_252 == 0) -{ -return x_247; -} -else -{ -lean_object* x_253; lean_object* x_254; lean_object* x_255; -x_253 = lean_ctor_get(x_247, 0); -x_254 = lean_ctor_get(x_247, 1); -lean_inc(x_254); -lean_inc(x_253); -lean_dec(x_247); -x_255 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_255, 0, x_253); -lean_ctor_set(x_255, 1, x_254); -return x_255; -} -} -} -else -{ -uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; -x_256 = lean_ctor_get_uint64(x_238, sizeof(void*)*1); -x_257 = lean_ctor_get(x_238, 0); -lean_inc(x_257); -lean_dec(x_238); -x_258 = l_Lean_PersistentArray_append___rarg(x_15, x_257); -lean_dec(x_257); -x_259 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_259, 0, x_258); -lean_ctor_set_uint64(x_259, sizeof(void*)*1, x_256); -lean_ctor_set(x_237, 3, x_259); -x_260 = lean_st_ref_set(x_12, x_237, x_239); -x_261 = lean_ctor_get(x_260, 1); -lean_inc(x_261); -lean_dec(x_260); -x_262 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_232, x_9, x_10, x_11, x_12, x_261); +lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; +x_249 = lean_ctor_get(x_244, 0); +x_250 = l_Lean_PersistentArray_append___rarg(x_15, x_249); +lean_dec(x_249); +lean_ctor_set(x_244, 0, x_250); +x_251 = lean_st_ref_set(x_12, x_243, x_245); +x_252 = lean_ctor_get(x_251, 1); +lean_inc(x_252); +lean_dec(x_251); +x_253 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_236, x_9, x_10, x_11, x_12, x_252); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_232); -if (lean_obj_tag(x_262) == 0) +lean_dec(x_236); +if (lean_obj_tag(x_253) == 0) { -lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; -x_263 = lean_ctor_get(x_262, 0); +uint8_t x_254; +x_254 = !lean_is_exclusive(x_253); +if (x_254 == 0) +{ +return x_253; +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; +x_255 = lean_ctor_get(x_253, 0); +x_256 = lean_ctor_get(x_253, 1); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_253); +x_257 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_257, 0, x_255); +lean_ctor_set(x_257, 1, x_256); +return x_257; +} +} +else +{ +uint8_t x_258; +x_258 = !lean_is_exclusive(x_253); +if (x_258 == 0) +{ +return x_253; +} +else +{ +lean_object* x_259; lean_object* x_260; lean_object* x_261; +x_259 = lean_ctor_get(x_253, 0); +x_260 = lean_ctor_get(x_253, 1); +lean_inc(x_260); +lean_inc(x_259); +lean_dec(x_253); +x_261 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_261, 0, x_259); +lean_ctor_set(x_261, 1, x_260); +return x_261; +} +} +} +else +{ +uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; +x_262 = lean_ctor_get_uint64(x_244, sizeof(void*)*1); +x_263 = lean_ctor_get(x_244, 0); lean_inc(x_263); -x_264 = lean_ctor_get(x_262, 1); -lean_inc(x_264); -if (lean_is_exclusive(x_262)) { - lean_ctor_release(x_262, 0); - lean_ctor_release(x_262, 1); - x_265 = x_262; -} else { - lean_dec_ref(x_262); - x_265 = lean_box(0); -} -if (lean_is_scalar(x_265)) { - x_266 = lean_alloc_ctor(0, 2, 0); -} else { - x_266 = x_265; -} -lean_ctor_set(x_266, 0, x_263); -lean_ctor_set(x_266, 1, x_264); -return x_266; -} -else -{ -lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; -x_267 = lean_ctor_get(x_262, 0); +lean_dec(x_244); +x_264 = l_Lean_PersistentArray_append___rarg(x_15, x_263); +lean_dec(x_263); +x_265 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_265, 0, x_264); +lean_ctor_set_uint64(x_265, sizeof(void*)*1, x_262); +lean_ctor_set(x_243, 3, x_265); +x_266 = lean_st_ref_set(x_12, x_243, x_245); +x_267 = lean_ctor_get(x_266, 1); lean_inc(x_267); -x_268 = lean_ctor_get(x_262, 1); -lean_inc(x_268); -if (lean_is_exclusive(x_262)) { - lean_ctor_release(x_262, 0); - lean_ctor_release(x_262, 1); - x_269 = x_262; -} else { - lean_dec_ref(x_262); - x_269 = lean_box(0); -} -if (lean_is_scalar(x_269)) { - x_270 = lean_alloc_ctor(1, 2, 0); -} else { - x_270 = x_269; -} -lean_ctor_set(x_270, 0, x_267); -lean_ctor_set(x_270, 1, x_268); -return x_270; -} -} -} -else -{ -lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; uint64_t x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; -x_271 = lean_ctor_get(x_237, 0); -x_272 = lean_ctor_get(x_237, 1); -x_273 = lean_ctor_get(x_237, 2); -x_274 = lean_ctor_get(x_237, 4); -x_275 = lean_ctor_get(x_237, 5); -x_276 = lean_ctor_get(x_237, 6); -x_277 = lean_ctor_get(x_237, 7); -lean_inc(x_277); -lean_inc(x_276); -lean_inc(x_275); -lean_inc(x_274); -lean_inc(x_273); -lean_inc(x_272); -lean_inc(x_271); -lean_dec(x_237); -x_278 = lean_ctor_get_uint64(x_238, sizeof(void*)*1); -x_279 = lean_ctor_get(x_238, 0); -lean_inc(x_279); -if (lean_is_exclusive(x_238)) { - lean_ctor_release(x_238, 0); - x_280 = x_238; -} else { - lean_dec_ref(x_238); - x_280 = lean_box(0); -} -x_281 = l_Lean_PersistentArray_append___rarg(x_15, x_279); -lean_dec(x_279); -if (lean_is_scalar(x_280)) { - x_282 = lean_alloc_ctor(0, 1, 8); -} else { - x_282 = x_280; -} -lean_ctor_set(x_282, 0, x_281); -lean_ctor_set_uint64(x_282, sizeof(void*)*1, x_278); -x_283 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_283, 0, x_271); -lean_ctor_set(x_283, 1, x_272); -lean_ctor_set(x_283, 2, x_273); -lean_ctor_set(x_283, 3, x_282); -lean_ctor_set(x_283, 4, x_274); -lean_ctor_set(x_283, 5, x_275); -lean_ctor_set(x_283, 6, x_276); -lean_ctor_set(x_283, 7, x_277); -x_284 = lean_st_ref_set(x_12, x_283, x_239); -x_285 = lean_ctor_get(x_284, 1); -lean_inc(x_285); -lean_dec(x_284); -x_286 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_232, x_9, x_10, x_11, x_12, x_285); +lean_dec(x_266); +x_268 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_236, x_9, x_10, x_11, x_12, x_267); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_232); -if (lean_obj_tag(x_286) == 0) +lean_dec(x_236); +if (lean_obj_tag(x_268) == 0) { -lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; -x_287 = lean_ctor_get(x_286, 0); -lean_inc(x_287); -x_288 = lean_ctor_get(x_286, 1); -lean_inc(x_288); -if (lean_is_exclusive(x_286)) { - lean_ctor_release(x_286, 0); - lean_ctor_release(x_286, 1); - x_289 = x_286; +lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; +x_269 = lean_ctor_get(x_268, 0); +lean_inc(x_269); +x_270 = lean_ctor_get(x_268, 1); +lean_inc(x_270); +if (lean_is_exclusive(x_268)) { + lean_ctor_release(x_268, 0); + lean_ctor_release(x_268, 1); + x_271 = x_268; } else { - lean_dec_ref(x_286); - x_289 = lean_box(0); + lean_dec_ref(x_268); + x_271 = lean_box(0); } -if (lean_is_scalar(x_289)) { - x_290 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_271)) { + x_272 = lean_alloc_ctor(0, 2, 0); } else { - x_290 = x_289; + x_272 = x_271; } -lean_ctor_set(x_290, 0, x_287); -lean_ctor_set(x_290, 1, x_288); -return x_290; +lean_ctor_set(x_272, 0, x_269); +lean_ctor_set(x_272, 1, x_270); +return x_272; } else { -lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; -x_291 = lean_ctor_get(x_286, 0); +lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; +x_273 = lean_ctor_get(x_268, 0); +lean_inc(x_273); +x_274 = lean_ctor_get(x_268, 1); +lean_inc(x_274); +if (lean_is_exclusive(x_268)) { + lean_ctor_release(x_268, 0); + lean_ctor_release(x_268, 1); + x_275 = x_268; +} else { + lean_dec_ref(x_268); + x_275 = lean_box(0); +} +if (lean_is_scalar(x_275)) { + x_276 = lean_alloc_ctor(1, 2, 0); +} else { + x_276 = x_275; +} +lean_ctor_set(x_276, 0, x_273); +lean_ctor_set(x_276, 1, x_274); +return x_276; +} +} +} +else +{ +lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; uint64_t x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; +x_277 = lean_ctor_get(x_243, 0); +x_278 = lean_ctor_get(x_243, 1); +x_279 = lean_ctor_get(x_243, 2); +x_280 = lean_ctor_get(x_243, 4); +x_281 = lean_ctor_get(x_243, 5); +x_282 = lean_ctor_get(x_243, 6); +x_283 = lean_ctor_get(x_243, 7); +lean_inc(x_283); +lean_inc(x_282); +lean_inc(x_281); +lean_inc(x_280); +lean_inc(x_279); +lean_inc(x_278); +lean_inc(x_277); +lean_dec(x_243); +x_284 = lean_ctor_get_uint64(x_244, sizeof(void*)*1); +x_285 = lean_ctor_get(x_244, 0); +lean_inc(x_285); +if (lean_is_exclusive(x_244)) { + lean_ctor_release(x_244, 0); + x_286 = x_244; +} else { + lean_dec_ref(x_244); + x_286 = lean_box(0); +} +x_287 = l_Lean_PersistentArray_append___rarg(x_15, x_285); +lean_dec(x_285); +if (lean_is_scalar(x_286)) { + x_288 = lean_alloc_ctor(0, 1, 8); +} else { + x_288 = x_286; +} +lean_ctor_set(x_288, 0, x_287); +lean_ctor_set_uint64(x_288, sizeof(void*)*1, x_284); +x_289 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_289, 0, x_277); +lean_ctor_set(x_289, 1, x_278); +lean_ctor_set(x_289, 2, x_279); +lean_ctor_set(x_289, 3, x_288); +lean_ctor_set(x_289, 4, x_280); +lean_ctor_set(x_289, 5, x_281); +lean_ctor_set(x_289, 6, x_282); +lean_ctor_set(x_289, 7, x_283); +x_290 = lean_st_ref_set(x_12, x_289, x_245); +x_291 = lean_ctor_get(x_290, 1); lean_inc(x_291); -x_292 = lean_ctor_get(x_286, 1); -lean_inc(x_292); -if (lean_is_exclusive(x_286)) { - lean_ctor_release(x_286, 0); - lean_ctor_release(x_286, 1); - x_293 = x_286; +lean_dec(x_290); +x_292 = l_MonadExcept_ofExcept___at_Lean_Meta_processPostponed___spec__4(x_236, x_9, x_10, x_11, x_12, x_291); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_236); +if (lean_obj_tag(x_292) == 0) +{ +lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; +x_293 = lean_ctor_get(x_292, 0); +lean_inc(x_293); +x_294 = lean_ctor_get(x_292, 1); +lean_inc(x_294); +if (lean_is_exclusive(x_292)) { + lean_ctor_release(x_292, 0); + lean_ctor_release(x_292, 1); + x_295 = x_292; } else { - lean_dec_ref(x_286); - x_293 = lean_box(0); + lean_dec_ref(x_292); + x_295 = lean_box(0); } -if (lean_is_scalar(x_293)) { - x_294 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_295)) { + x_296 = lean_alloc_ctor(0, 2, 0); } else { - x_294 = x_293; + x_296 = x_295; } -lean_ctor_set(x_294, 0, x_291); -lean_ctor_set(x_294, 1, x_292); -return x_294; +lean_ctor_set(x_296, 0, x_293); +lean_ctor_set(x_296, 1, x_294); +return x_296; +} +else +{ +lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; +x_297 = lean_ctor_get(x_292, 0); +lean_inc(x_297); +x_298 = lean_ctor_get(x_292, 1); +lean_inc(x_298); +if (lean_is_exclusive(x_292)) { + lean_ctor_release(x_292, 0); + lean_ctor_release(x_292, 1); + x_299 = x_292; +} else { + lean_dec_ref(x_292); + x_299 = lean_box(0); +} +if (lean_is_scalar(x_299)) { + x_300 = lean_alloc_ctor(1, 2, 0); +} else { + x_300 = x_299; +} +lean_ctor_set(x_300, 0, x_297); +lean_ctor_set(x_300, 1, x_298); +return x_300; } } } else { -lean_object* x_295; double x_296; double x_297; lean_object* x_298; -x_295 = lean_box(0); -x_296 = lean_unbox_float(x_233); -lean_dec(x_233); -x_297 = lean_unbox_float(x_234); -lean_dec(x_234); -x_298 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2(x_232, x_37, x_3, x_4, x_5, x_15, x_22, x_2, x_235, x_296, x_297, x_295, x_9, x_10, x_11, x_12, x_230); +lean_object* x_301; double x_302; double x_303; lean_object* x_304; +x_301 = lean_box(0); +x_302 = lean_unbox_float(x_237); +lean_dec(x_237); +x_303 = lean_unbox_float(x_238); +lean_dec(x_238); +x_304 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2(x_236, x_37, x_3, x_4, x_5, x_15, x_22, x_240, x_302, x_303, x_301, x_9, x_10, x_11, x_12, x_234); lean_dec(x_12); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_232); -return x_298; -} -} -else -{ -lean_object* x_299; double x_300; double x_301; lean_object* x_302; -x_299 = lean_box(0); -x_300 = lean_unbox_float(x_233); -lean_dec(x_233); -x_301 = lean_unbox_float(x_234); -lean_dec(x_234); -x_302 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2(x_232, x_37, x_3, x_4, x_5, x_15, x_22, x_2, x_235, x_300, x_301, x_299, x_9, x_10, x_11, x_12, x_230); -lean_dec(x_12); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_232); -return x_302; +lean_dec(x_236); +return x_304; } } } @@ -14588,7 +14590,7 @@ return x_302; } else { -uint8_t x_397; +uint8_t x_405; lean_dec(x_32); lean_dec(x_22); lean_dec(x_15); @@ -14599,23 +14601,23 @@ lean_dec(x_9); lean_dec(x_7); lean_dec(x_5); lean_dec(x_3); -x_397 = !lean_is_exclusive(x_33); -if (x_397 == 0) +x_405 = !lean_is_exclusive(x_33); +if (x_405 == 0) { return x_33; } else { -lean_object* x_398; lean_object* x_399; lean_object* x_400; -x_398 = lean_ctor_get(x_33, 0); -x_399 = lean_ctor_get(x_33, 1); -lean_inc(x_399); -lean_inc(x_398); +lean_object* x_406; lean_object* x_407; lean_object* x_408; +x_406 = lean_ctor_get(x_33, 0); +x_407 = lean_ctor_get(x_33, 1); +lean_inc(x_407); +lean_inc(x_406); lean_dec(x_33); -x_400 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_400, 0, x_398); -lean_ctor_set(x_400, 1, x_399); -return x_400; +x_408 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_408, 0, x_406); +lean_ctor_set(x_408, 1, x_407); +return x_408; } } } @@ -15528,43 +15530,25 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2___boxed(lean_object** _args) { -lean_object* x_1 = _args[0]; -lean_object* x_2 = _args[1]; -lean_object* x_3 = _args[2]; -lean_object* x_4 = _args[3]; -lean_object* x_5 = _args[4]; -lean_object* x_6 = _args[5]; -lean_object* x_7 = _args[6]; -lean_object* x_8 = _args[7]; -lean_object* x_9 = _args[8]; -lean_object* x_10 = _args[9]; -lean_object* x_11 = _args[10]; -lean_object* x_12 = _args[11]; -lean_object* x_13 = _args[12]; -lean_object* x_14 = _args[13]; -lean_object* x_15 = _args[14]; -lean_object* x_16 = _args[15]; -lean_object* x_17 = _args[16]; +LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; -x_18 = lean_unbox(x_4); +uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; +x_17 = lean_unbox(x_4); lean_dec(x_4); -x_19 = lean_unbox(x_9); +x_18 = lean_unbox(x_8); +lean_dec(x_8); +x_19 = lean_unbox_float(x_9); lean_dec(x_9); x_20 = lean_unbox_float(x_10); lean_dec(x_10); -x_21 = lean_unbox_float(x_11); -lean_dec(x_11); -x_22 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2(x_1, x_2, x_3, x_18, x_5, x_6, x_7, x_8, x_19, x_20, x_21, x_12, x_13, x_14, x_15, x_16, x_17); -lean_dec(x_16); -lean_dec(x_14); +x_21 = l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2(x_1, x_2, x_3, x_17, x_5, x_6, x_7, x_18, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16); +lean_dec(x_15); lean_dec(x_13); lean_dec(x_12); -lean_dec(x_8); +lean_dec(x_11); lean_dec(x_1); -return x_22; +return x_21; } } LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -93535,8 +93519,6 @@ lean_mark_persistent(l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDef l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2___closed__2 = _init_l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2___closed__2(); lean_mark_persistent(l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2___closed__2); l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2___closed__3 = _init_l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2___closed__3(); -l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2___closed__4 = _init_l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2___closed__4(); -lean_mark_persistent(l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__2___closed__4); l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__1 = _init_l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__1); l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__2 = _init_l_Lean_withTraceNodeBefore___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___spec__1___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Meta/ExprLens.c b/stage0/stdlib/Lean/Meta/ExprLens.c index 11730007c9..c428071833 100644 --- a/stage0/stdlib/Lean/Meta/ExprLens.c +++ b/stage0/stdlib/Lean/Meta/ExprLens.c @@ -417,7 +417,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Meta_ExprLens_0__Lean_Meta_lensCoord___rarg___lambda__3___closed__1; x_2 = l___private_Lean_Meta_ExprLens_0__Lean_Meta_lensCoord___rarg___lambda__3___closed__2; -x_3 = lean_unsigned_to_nat(1686u); +x_3 = lean_unsigned_to_nat(1690u); x_4 = lean_unsigned_to_nat(18u); x_5 = l___private_Lean_Meta_ExprLens_0__Lean_Meta_lensCoord___rarg___lambda__3___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -603,7 +603,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Meta_ExprLens_0__Lean_Meta_lensCoord___rarg___lambda__3___closed__1; x_2 = l___private_Lean_Meta_ExprLens_0__Lean_Meta_lensCoord___rarg___lambda__8___closed__1; -x_3 = lean_unsigned_to_nat(1790u); +x_3 = lean_unsigned_to_nat(1794u); x_4 = lean_unsigned_to_nat(22u); x_5 = l___private_Lean_Meta_ExprLens_0__Lean_Meta_lensCoord___rarg___lambda__8___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -804,7 +804,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Meta_ExprLens_0__Lean_Meta_lensCoord___rarg___lambda__3___closed__1; x_2 = l___private_Lean_Meta_ExprLens_0__Lean_Meta_lensCoord___rarg___lambda__10___closed__1; -x_3 = lean_unsigned_to_nat(1781u); +x_3 = lean_unsigned_to_nat(1785u); x_4 = lean_unsigned_to_nat(20u); x_5 = l___private_Lean_Meta_ExprLens_0__Lean_Meta_lensCoord___rarg___lambda__10___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -928,7 +928,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Meta_ExprLens_0__Lean_Meta_lensCoord___rarg___lambda__3___closed__1; x_2 = l___private_Lean_Meta_ExprLens_0__Lean_Meta_lensCoord___rarg___lambda__11___closed__1; -x_3 = lean_unsigned_to_nat(1761u); +x_3 = lean_unsigned_to_nat(1765u); x_4 = lean_unsigned_to_nat(24u); x_5 = l___private_Lean_Meta_ExprLens_0__Lean_Meta_lensCoord___rarg___lambda__11___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); diff --git a/stage0/stdlib/Lean/Meta/Injective.c b/stage0/stdlib/Lean/Meta/Injective.c index 9dd5aebc90..dfefe23799 100644 --- a/stage0/stdlib/Lean/Meta/Injective.c +++ b/stage0/stdlib/Lean/Meta/Injective.c @@ -18,11 +18,10 @@ static double l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7_ static lean_object* l___private_Lean_Meta_Injective_0__Lean_Meta_mkInjectiveEqTheoremValue___lambda__2___closed__6; lean_object* l_Lean_Meta_mkEqHEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_assumptionCore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Injective_0__Lean_Meta_mkInjectiveTheoremTypeCore_x3f___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Injective_0__Lean_Meta_mkAnd_x3f(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Injective_0__Lean_Meta_throwInjectiveTheoremFailure(lean_object*); -extern lean_object* l_Lean_profiler; LEAN_EXPORT lean_object* l_Lean_Meta_elimOptParam___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Injective_0__Lean_Meta_mkInjectiveTheoremTypeCore_x3f_mkArgs2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -105,7 +104,7 @@ static lean_object* l___private_Lean_Meta_Injective_0__Lean_Meta_solveEqOfCtorEq lean_object* lean_st_ref_take(lean_object*, lean_object*); lean_object* l_Lean_Expr_getRevArg_x21(lean_object*, lean_object*); lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_Injective_0__Lean_Meta_mkAnd_x3f___spec__1___closed__1; static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Injective___hyg_1973____closed__7; static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Injective___hyg_2313____closed__10; @@ -124,10 +123,9 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Injective_0__Lean_Meta_mkInjectiv lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Injective_0__Lean_Meta_mkInjectiveTheoremTypeCore_x3f___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Injective_0__Lean_Meta_mkInjectiveEqTheoremValue___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_Meta_mkInjectiveTheorems___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Injective_0__Lean_Meta_mkInjectiveEqTheoremValue___lambda__2___closed__7; -static lean_object* l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2___closed__2; static lean_object* l_Lean_Meta_elimOptParam___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Injective_0__Lean_Meta_mkInjectiveTheoremTypeCore_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_mkInjectiveTheorems___closed__3; @@ -270,7 +268,7 @@ lean_object* lean_find_expr(lean_object*, lean_object*); uint8_t lean_usize_dec_lt(size_t, size_t); lean_object* l_Lean_Meta_intro1Core(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Injective_0__Lean_Meta_mkInjectiveEqTheoremValue___lambda__2___closed__1; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLambdaFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); uint8_t l_Lean_Exception_isRuntime(lean_object*); @@ -6533,69 +6531,36 @@ x_3 = l_Float_ofScientific(x_1, x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2___closed__2() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2___closed__1; +x_17 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_3); +lean_ctor_set_float(x_17, sizeof(void*)*2, x_16); +lean_ctor_set_float(x_17, sizeof(void*)*2 + 8, x_16); +lean_ctor_set_uint8(x_17, sizeof(void*)*2 + 16, x_2); +x_18 = lean_box(0); +x_19 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__1(x_4, x_5, x_10, x_6, x_17, x_18, x_11, x_12, x_13, x_14, x_15); +return x_19; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { -_start: +else { -double x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_18 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_18, 0, x_1); -lean_ctor_set(x_18, 1, x_3); -lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); -lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); -lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); -x_19 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2___closed__2; -x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_19); -if (x_20 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_21; lean_object* x_22; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); x_21 = lean_box(0); -x_22 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__1(x_4, x_5, x_11, x_6, x_18, x_21, x_12, x_13, x_14, x_15, x_16); +x_22 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15); return x_22; } -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_18); -x_23 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_3); -lean_ctor_set_float(x_23, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); -x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__1(x_4, x_5, x_11, x_6, x_23, x_24, x_12, x_13, x_14, x_15, x_16); -return x_25; -} -} -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_18); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16); -return x_28; -} } } static lean_object* _init_l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3___closed__1() { @@ -6615,46 +6580,46 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 5); -lean_inc(x_17); -lean_inc(x_15); +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 5); +lean_inc(x_16); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_18 = lean_apply_6(x_10, x_5, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_18) == 0) +x_17 = lean_apply_6(x_9, x_5, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_14, x_15, x_20); -lean_dec(x_15); -lean_dec(x_13); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_13, x_14, x_19); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_21; +return x_20; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_14, x_15, x_22); -lean_dec(x_15); -lean_dec(x_13); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } } } @@ -6718,253 +6683,253 @@ x_17 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambd x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_17); if (x_18 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_109 = lean_io_mono_nanos_now(x_16); -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_109, 1); -lean_inc(x_111); -lean_dec(x_109); +lean_object* x_19; lean_object* x_20; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_113 = lean_io_mono_nanos_now(x_16); +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +lean_dec(x_113); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_112 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_111); -if (lean_obj_tag(x_112) == 0) +x_116 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_115); +if (lean_obj_tag(x_116) == 0) { -uint8_t x_113; -x_113 = !lean_is_exclusive(x_112); -if (x_113 == 0) +uint8_t x_117; +x_117 = !lean_is_exclusive(x_116); +if (x_117 == 0) { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_114 = lean_ctor_get(x_112, 0); -x_115 = lean_ctor_get(x_112, 1); -x_116 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_116, 0, x_114); -x_117 = lean_io_mono_nanos_now(x_115); -x_118 = !lean_is_exclusive(x_117); -if (x_118 == 0) +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_118 = lean_ctor_get(x_116, 0); +x_119 = lean_ctor_get(x_116, 1); +x_120 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_120, 0, x_118); +x_121 = lean_io_mono_nanos_now(x_119); +x_122 = !lean_is_exclusive(x_121); +if (x_122 == 0) { -lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_122; double x_123; double x_124; double x_125; double x_126; double x_127; lean_object* x_128; lean_object* x_129; -x_119 = lean_ctor_get(x_117, 0); -x_120 = lean_ctor_get(x_117, 1); -x_121 = 0; -x_122 = lean_unsigned_to_nat(0u); -x_123 = l_Float_ofScientific(x_110, x_121, x_122); -lean_dec(x_110); -x_124 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__4___closed__5; -x_125 = lean_float_div(x_123, x_124); -x_126 = l_Float_ofScientific(x_119, x_121, x_122); -lean_dec(x_119); -x_127 = lean_float_div(x_126, x_124); -x_128 = lean_box_float(x_125); -x_129 = lean_box_float(x_127); -lean_ctor_set(x_117, 1, x_129); -lean_ctor_set(x_117, 0, x_128); -lean_ctor_set(x_112, 1, x_117); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_120; -goto block_108; +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; double x_130; double x_131; lean_object* x_132; lean_object* x_133; +x_123 = lean_ctor_get(x_121, 0); +x_124 = lean_ctor_get(x_121, 1); +x_125 = 0; +x_126 = lean_unsigned_to_nat(0u); +x_127 = l_Float_ofScientific(x_114, x_125, x_126); +lean_dec(x_114); +x_128 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__4___closed__5; +x_129 = lean_float_div(x_127, x_128); +x_130 = l_Float_ofScientific(x_123, x_125, x_126); +lean_dec(x_123); +x_131 = lean_float_div(x_130, x_128); +x_132 = lean_box_float(x_129); +x_133 = lean_box_float(x_131); +lean_ctor_set(x_121, 1, x_133); +lean_ctor_set(x_121, 0, x_132); +lean_ctor_set(x_116, 1, x_121); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_124; +goto block_112; } else { -lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; double x_134; double x_135; double x_136; double x_137; double x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_130 = lean_ctor_get(x_117, 0); -x_131 = lean_ctor_get(x_117, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_117); -x_132 = 0; -x_133 = lean_unsigned_to_nat(0u); -x_134 = l_Float_ofScientific(x_110, x_132, x_133); -lean_dec(x_110); -x_135 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__4___closed__5; -x_136 = lean_float_div(x_134, x_135); -x_137 = l_Float_ofScientific(x_130, x_132, x_133); -lean_dec(x_130); -x_138 = lean_float_div(x_137, x_135); -x_139 = lean_box_float(x_136); -x_140 = lean_box_float(x_138); -x_141 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -lean_ctor_set(x_112, 1, x_141); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_131; -goto block_108; +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_134 = lean_ctor_get(x_121, 0); +x_135 = lean_ctor_get(x_121, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_121); +x_136 = 0; +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Float_ofScientific(x_114, x_136, x_137); +lean_dec(x_114); +x_139 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__4___closed__5; +x_140 = lean_float_div(x_138, x_139); +x_141 = l_Float_ofScientific(x_134, x_136, x_137); +lean_dec(x_134); +x_142 = lean_float_div(x_141, x_139); +x_143 = lean_box_float(x_140); +x_144 = lean_box_float(x_142); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_116, 1, x_145); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_135; +goto block_112; } } else { -lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_142 = lean_ctor_get(x_112, 0); -x_143 = lean_ctor_get(x_112, 1); -lean_inc(x_143); -lean_inc(x_142); -lean_dec(x_112); -x_144 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_144, 0, x_142); -x_145 = lean_io_mono_nanos_now(x_143); -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; lean_object* x_154; double x_155; double x_156; double x_157; double x_158; double x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_146 = lean_ctor_get(x_116, 0); +x_147 = lean_ctor_get(x_116, 1); lean_inc(x_147); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - lean_ctor_release(x_145, 1); - x_148 = x_145; +lean_inc(x_146); +lean_dec(x_116); +x_148 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_148, 0, x_146); +x_149 = lean_io_mono_nanos_now(x_147); +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + lean_ctor_release(x_149, 1); + x_152 = x_149; } else { - lean_dec_ref(x_145); - x_148 = lean_box(0); + lean_dec_ref(x_149); + x_152 = lean_box(0); } -x_149 = 0; -x_150 = lean_unsigned_to_nat(0u); -x_151 = l_Float_ofScientific(x_110, x_149, x_150); -lean_dec(x_110); -x_152 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__4___closed__5; -x_153 = lean_float_div(x_151, x_152); -x_154 = l_Float_ofScientific(x_146, x_149, x_150); -lean_dec(x_146); -x_155 = lean_float_div(x_154, x_152); -x_156 = lean_box_float(x_153); -x_157 = lean_box_float(x_155); -if (lean_is_scalar(x_148)) { - x_158 = lean_alloc_ctor(0, 2, 0); +x_153 = 0; +x_154 = lean_unsigned_to_nat(0u); +x_155 = l_Float_ofScientific(x_114, x_153, x_154); +lean_dec(x_114); +x_156 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__4___closed__5; +x_157 = lean_float_div(x_155, x_156); +x_158 = l_Float_ofScientific(x_150, x_153, x_154); +lean_dec(x_150); +x_159 = lean_float_div(x_158, x_156); +x_160 = lean_box_float(x_157); +x_161 = lean_box_float(x_159); +if (lean_is_scalar(x_152)) { + x_162 = lean_alloc_ctor(0, 2, 0); } else { - x_158 = x_148; + x_162 = x_152; } -lean_ctor_set(x_158, 0, x_156); -lean_ctor_set(x_158, 1, x_157); -x_159 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_159, 0, x_144); -lean_ctor_set(x_159, 1, x_158); -x_19 = x_159; -x_20 = x_147; -goto block_108; +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_161); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_148); +lean_ctor_set(x_163, 1, x_162); +x_19 = x_163; +x_20 = x_151; +goto block_112; } } else { -uint8_t x_160; -x_160 = !lean_is_exclusive(x_112); -if (x_160 == 0) +uint8_t x_164; +x_164 = !lean_is_exclusive(x_116); +if (x_164 == 0) { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_161 = lean_ctor_get(x_112, 0); -x_162 = lean_ctor_get(x_112, 1); -x_163 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_163, 0, x_161); -x_164 = lean_io_mono_nanos_now(x_162); -x_165 = !lean_is_exclusive(x_164); -if (x_165 == 0) +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; +x_165 = lean_ctor_get(x_116, 0); +x_166 = lean_ctor_get(x_116, 1); +x_167 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_167, 0, x_165); +x_168 = lean_io_mono_nanos_now(x_166); +x_169 = !lean_is_exclusive(x_168); +if (x_169 == 0) { -lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; double x_170; double x_171; double x_172; double x_173; double x_174; lean_object* x_175; lean_object* x_176; -x_166 = lean_ctor_get(x_164, 0); -x_167 = lean_ctor_get(x_164, 1); -x_168 = 0; -x_169 = lean_unsigned_to_nat(0u); -x_170 = l_Float_ofScientific(x_110, x_168, x_169); -lean_dec(x_110); -x_171 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__4___closed__5; -x_172 = lean_float_div(x_170, x_171); -x_173 = l_Float_ofScientific(x_166, x_168, x_169); -lean_dec(x_166); -x_174 = lean_float_div(x_173, x_171); -x_175 = lean_box_float(x_172); -x_176 = lean_box_float(x_174); -lean_ctor_set(x_164, 1, x_176); -lean_ctor_set(x_164, 0, x_175); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_164); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_167; -goto block_108; +lean_object* x_170; lean_object* x_171; uint8_t x_172; lean_object* x_173; double x_174; double x_175; double x_176; double x_177; double x_178; lean_object* x_179; lean_object* x_180; +x_170 = lean_ctor_get(x_168, 0); +x_171 = lean_ctor_get(x_168, 1); +x_172 = 0; +x_173 = lean_unsigned_to_nat(0u); +x_174 = l_Float_ofScientific(x_114, x_172, x_173); +lean_dec(x_114); +x_175 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__4___closed__5; +x_176 = lean_float_div(x_174, x_175); +x_177 = l_Float_ofScientific(x_170, x_172, x_173); +lean_dec(x_170); +x_178 = lean_float_div(x_177, x_175); +x_179 = lean_box_float(x_176); +x_180 = lean_box_float(x_178); +lean_ctor_set(x_168, 1, x_180); +lean_ctor_set(x_168, 0, x_179); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_168); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_171; +goto block_112; } else { -lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_object* x_180; double x_181; double x_182; double x_183; double x_184; double x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_177 = lean_ctor_get(x_164, 0); -x_178 = lean_ctor_get(x_164, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_164); -x_179 = 0; -x_180 = lean_unsigned_to_nat(0u); -x_181 = l_Float_ofScientific(x_110, x_179, x_180); -lean_dec(x_110); -x_182 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__4___closed__5; -x_183 = lean_float_div(x_181, x_182); -x_184 = l_Float_ofScientific(x_177, x_179, x_180); -lean_dec(x_177); -x_185 = lean_float_div(x_184, x_182); -x_186 = lean_box_float(x_183); -x_187 = lean_box_float(x_185); -x_188 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_188); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_178; -goto block_108; +lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_181 = lean_ctor_get(x_168, 0); +x_182 = lean_ctor_get(x_168, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_168); +x_183 = 0; +x_184 = lean_unsigned_to_nat(0u); +x_185 = l_Float_ofScientific(x_114, x_183, x_184); +lean_dec(x_114); +x_186 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__4___closed__5; +x_187 = lean_float_div(x_185, x_186); +x_188 = l_Float_ofScientific(x_181, x_183, x_184); +lean_dec(x_181); +x_189 = lean_float_div(x_188, x_186); +x_190 = lean_box_float(x_187); +x_191 = lean_box_float(x_189); +x_192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_192); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_182; +goto block_112; } } else { -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_189 = lean_ctor_get(x_112, 0); -x_190 = lean_ctor_get(x_112, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_112); -x_191 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_191, 0, x_189); -x_192 = lean_io_mono_nanos_now(x_190); -x_193 = lean_ctor_get(x_192, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; lean_object* x_201; double x_202; double x_203; double x_204; double x_205; double x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_193 = lean_ctor_get(x_116, 0); +x_194 = lean_ctor_get(x_116, 1); lean_inc(x_194); -if (lean_is_exclusive(x_192)) { - lean_ctor_release(x_192, 0); - lean_ctor_release(x_192, 1); - x_195 = x_192; +lean_inc(x_193); +lean_dec(x_116); +x_195 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_195, 0, x_193); +x_196 = lean_io_mono_nanos_now(x_194); +x_197 = lean_ctor_get(x_196, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_196, 1); +lean_inc(x_198); +if (lean_is_exclusive(x_196)) { + lean_ctor_release(x_196, 0); + lean_ctor_release(x_196, 1); + x_199 = x_196; } else { - lean_dec_ref(x_192); - x_195 = lean_box(0); + lean_dec_ref(x_196); + x_199 = lean_box(0); } -x_196 = 0; -x_197 = lean_unsigned_to_nat(0u); -x_198 = l_Float_ofScientific(x_110, x_196, x_197); -lean_dec(x_110); -x_199 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__4___closed__5; -x_200 = lean_float_div(x_198, x_199); -x_201 = l_Float_ofScientific(x_193, x_196, x_197); -lean_dec(x_193); -x_202 = lean_float_div(x_201, x_199); -x_203 = lean_box_float(x_200); -x_204 = lean_box_float(x_202); -if (lean_is_scalar(x_195)) { - x_205 = lean_alloc_ctor(0, 2, 0); +x_200 = 0; +x_201 = lean_unsigned_to_nat(0u); +x_202 = l_Float_ofScientific(x_114, x_200, x_201); +lean_dec(x_114); +x_203 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__4___closed__5; +x_204 = lean_float_div(x_202, x_203); +x_205 = l_Float_ofScientific(x_197, x_200, x_201); +lean_dec(x_197); +x_206 = lean_float_div(x_205, x_203); +x_207 = lean_box_float(x_204); +x_208 = lean_box_float(x_206); +if (lean_is_scalar(x_199)) { + x_209 = lean_alloc_ctor(0, 2, 0); } else { - x_205 = x_195; + x_209 = x_199; } -lean_ctor_set(x_205, 0, x_203); -lean_ctor_set(x_205, 1, x_204); -x_206 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_206, 0, x_191); -lean_ctor_set(x_206, 1, x_205); -x_19 = x_206; -x_20 = x_194; -goto block_108; +lean_ctor_set(x_209, 0, x_207); +lean_ctor_set(x_209, 1, x_208); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_195); +lean_ctor_set(x_210, 1, x_209); +x_19 = x_210; +x_20 = x_198; +goto block_112; } } -block_108: +block_112: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_94; uint8_t x_95; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); x_22 = lean_ctor_get(x_19, 0); @@ -6975,17 +6940,33 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_21, 1); lean_inc(x_24); lean_dec(x_21); -x_94 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__4___closed__2; -x_95 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_94); -if (x_95 == 0) +x_25 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__4___closed__2; +x_26 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_25); +if (x_26 == 0) { -uint8_t x_96; -x_96 = 0; -x_25 = x_96; -goto block_93; +if (x_6 == 0) +{ +uint8_t x_92; +x_92 = 0; +x_27 = x_92; +goto block_91; } else { +lean_object* x_93; double x_94; double x_95; lean_object* x_96; +x_93 = lean_box(0); +x_94 = lean_unbox_float(x_23); +lean_dec(x_23); +x_95 = lean_unbox_float(x_24); +lean_dec(x_24); +x_96 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_94, x_95, x_5, x_93, x_9, x_10, x_11, x_12, x_20); +return x_96; +} +} +else +{ +if (x_6 == 0) +{ double x_97; double x_98; double x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; double x_104; double x_105; double x_106; uint8_t x_107; x_97 = lean_unbox_float(x_24); x_98 = lean_unbox_float(x_23); @@ -6999,859 +6980,871 @@ lean_dec(x_101); x_105 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__4___closed__4; x_106 = lean_float_div(x_104, x_105); x_107 = lean_float_decLt(x_106, x_99); -x_25 = x_107; -goto block_93; +x_27 = x_107; +goto block_91; } -block_93: +else { -if (x_6 == 0) +lean_object* x_108; double x_109; double x_110; lean_object* x_111; +x_108 = lean_box(0); +x_109 = lean_unbox_float(x_23); +lean_dec(x_23); +x_110 = lean_unbox_float(x_24); +lean_dec(x_24); +x_111 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_109, x_110, x_5, x_108, x_9, x_10, x_11, x_12, x_20); +return x_111; +} +} +block_91: { -if (x_25 == 0) +if (x_27 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_24); lean_dec(x_23); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_26 = lean_st_ref_take(x_12, x_20); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -x_29 = lean_ctor_get(x_26, 1); +x_28 = lean_st_ref_take(x_12, x_20); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -lean_dec(x_26); -x_30 = !lean_is_exclusive(x_27); -if (x_30 == 0) -{ -lean_object* x_31; uint8_t x_32; -x_31 = lean_ctor_get(x_27, 3); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_28); +x_30 = lean_ctor_get(x_29, 3); +lean_inc(x_30); +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = !lean_is_exclusive(x_29); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_33 = lean_ctor_get(x_28, 0); -x_34 = l_Lean_PersistentArray_append___rarg(x_15, x_33); +lean_object* x_33; uint8_t x_34; +x_33 = lean_ctor_get(x_29, 3); lean_dec(x_33); -lean_ctor_set(x_28, 0, x_34); -x_35 = lean_st_ref_set(x_12, x_27, x_29); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); +x_34 = !lean_is_exclusive(x_30); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_ctor_get(x_30, 0); +x_36 = l_Lean_PersistentArray_append___rarg(x_15, x_35); lean_dec(x_35); -x_37 = l_MonadExcept_ofExcept___at_Lean_Meta_mkInjectiveTheorems___spec__11(x_22, x_9, x_10, x_11, x_12, x_36); +lean_ctor_set(x_30, 0, x_36); +x_37 = lean_st_ref_set(x_12, x_29, x_31); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +x_39 = l_MonadExcept_ofExcept___at_Lean_Meta_mkInjectiveTheorems___spec__11(x_22, x_9, x_10, x_11, x_12, x_38); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_37) == 0) +if (lean_obj_tag(x_39) == 0) { -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -return x_37; +return x_39; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_ctor_get(x_37, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_37); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_39); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } else { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_37); -if (x_42 == 0) +uint8_t x_44; +x_44 = !lean_is_exclusive(x_39); +if (x_44 == 0) { -return x_37; +return x_39; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_37, 0); -x_44 = lean_ctor_get(x_37, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_37); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_39, 0); +x_46 = lean_ctor_get(x_39, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_39); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } } else { -uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_47 = lean_ctor_get(x_28, 0); -lean_inc(x_47); -lean_dec(x_28); -x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_47); -lean_dec(x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); -lean_ctor_set(x_27, 3, x_49); -x_50 = lean_st_ref_set(x_12, x_27, x_29); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -lean_dec(x_50); -x_52 = l_MonadExcept_ofExcept___at_Lean_Meta_mkInjectiveTheorems___spec__11(x_22, x_9, x_10, x_11, x_12, x_51); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_22); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); +uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_49 = lean_ctor_get(x_30, 0); +lean_inc(x_49); +lean_dec(x_30); +x_50 = l_Lean_PersistentArray_append___rarg(x_15, x_49); +lean_dec(x_49); +x_51 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); +lean_ctor_set(x_29, 3, x_51); +x_52 = lean_st_ref_set(x_12, x_29, x_31); +x_53 = lean_ctor_get(x_52, 1); lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_55 = x_52; +lean_dec(x_52); +x_54 = l_MonadExcept_ofExcept___at_Lean_Meta_mkInjectiveTheorems___spec__11(x_22, x_9, x_10, x_11, x_12, x_53); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_22); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; } else { - lean_dec_ref(x_52); - x_55 = lean_box(0); + lean_dec_ref(x_54); + x_57 = lean_box(0); } -if (lean_is_scalar(x_55)) { - x_56 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_57)) { + x_58 = lean_alloc_ctor(0, 2, 0); } else { - x_56 = x_55; + x_58 = x_57; } -lean_ctor_set(x_56, 0, x_53); -lean_ctor_set(x_56, 1, x_54); -return x_56; +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_56); +return x_58; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_52, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_52, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_59 = x_52; +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_54, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_54, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_61 = x_54; } else { - lean_dec_ref(x_52); - x_59 = lean_box(0); + lean_dec_ref(x_54); + x_61 = lean_box(0); } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(1, 2, 0); } else { - x_60 = x_59; + x_62 = x_61; } -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_58); -return x_60; +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; } } } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_61 = lean_ctor_get(x_27, 0); -x_62 = lean_ctor_get(x_27, 1); -x_63 = lean_ctor_get(x_27, 2); -x_64 = lean_ctor_get(x_27, 4); -x_65 = lean_ctor_get(x_27, 5); -x_66 = lean_ctor_get(x_27, 6); -x_67 = lean_ctor_get(x_27, 7); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_63 = lean_ctor_get(x_29, 0); +x_64 = lean_ctor_get(x_29, 1); +x_65 = lean_ctor_get(x_29, 2); +x_66 = lean_ctor_get(x_29, 4); +x_67 = lean_ctor_get(x_29, 5); +x_68 = lean_ctor_get(x_29, 6); +x_69 = lean_ctor_get(x_29, 7); +lean_inc(x_69); +lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_27); -x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_69 = lean_ctor_get(x_28, 0); -lean_inc(x_69); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - x_70 = x_28; +lean_dec(x_29); +x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_71 = lean_ctor_get(x_30, 0); +lean_inc(x_71); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + x_72 = x_30; } else { - lean_dec_ref(x_28); - x_70 = lean_box(0); + lean_dec_ref(x_30); + x_72 = lean_box(0); } -x_71 = l_Lean_PersistentArray_append___rarg(x_15, x_69); -lean_dec(x_69); -if (lean_is_scalar(x_70)) { - x_72 = lean_alloc_ctor(0, 1, 8); +x_73 = l_Lean_PersistentArray_append___rarg(x_15, x_71); +lean_dec(x_71); +if (lean_is_scalar(x_72)) { + x_74 = lean_alloc_ctor(0, 1, 8); } else { - x_72 = x_70; + x_74 = x_72; } -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); -x_73 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_73, 0, x_61); -lean_ctor_set(x_73, 1, x_62); -lean_ctor_set(x_73, 2, x_63); -lean_ctor_set(x_73, 3, x_72); -lean_ctor_set(x_73, 4, x_64); -lean_ctor_set(x_73, 5, x_65); -lean_ctor_set(x_73, 6, x_66); -lean_ctor_set(x_73, 7, x_67); -x_74 = lean_st_ref_set(x_12, x_73, x_29); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_76 = l_MonadExcept_ofExcept___at_Lean_Meta_mkInjectiveTheorems___spec__11(x_22, x_9, x_10, x_11, x_12, x_75); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); +x_75 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_64); +lean_ctor_set(x_75, 2, x_65); +lean_ctor_set(x_75, 3, x_74); +lean_ctor_set(x_75, 4, x_66); +lean_ctor_set(x_75, 5, x_67); +lean_ctor_set(x_75, 6, x_68); +lean_ctor_set(x_75, 7, x_69); +x_76 = lean_st_ref_set(x_12, x_75, x_31); +x_77 = lean_ctor_get(x_76, 1); +lean_inc(x_77); +lean_dec(x_76); +x_78 = l_MonadExcept_ofExcept___at_Lean_Meta_mkInjectiveTheorems___spec__11(x_22, x_9, x_10, x_11, x_12, x_77); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_76) == 0) +if (lean_obj_tag(x_78) == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_76, 0); -lean_inc(x_77); -x_78 = lean_ctor_get(x_76, 1); -lean_inc(x_78); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_79 = x_76; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_81 = x_78; } else { - lean_dec_ref(x_76); - x_79 = lean_box(0); + lean_dec_ref(x_78); + x_81 = lean_box(0); } -if (lean_is_scalar(x_79)) { - x_80 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(0, 2, 0); } else { - x_80 = x_79; + x_82 = x_81; } -lean_ctor_set(x_80, 0, x_77); -lean_ctor_set(x_80, 1, x_78); -return x_80; +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_80); +return x_82; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_81 = lean_ctor_get(x_76, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_76, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_83 = x_76; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_83 = lean_ctor_get(x_78, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_78, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_85 = x_78; } else { - lean_dec_ref(x_76); - x_83 = lean_box(0); + lean_dec_ref(x_78); + x_85 = lean_box(0); } -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); } else { - x_84 = x_83; + x_86 = x_85; } -lean_ctor_set(x_84, 0, x_81); -lean_ctor_set(x_84, 1, x_82); -return x_84; +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; } } } else { -lean_object* x_85; double x_86; double x_87; lean_object* x_88; -x_85 = lean_box(0); -x_86 = lean_unbox_float(x_23); +lean_object* x_87; double x_88; double x_89; lean_object* x_90; +x_87 = lean_box(0); +x_88 = lean_unbox_float(x_23); lean_dec(x_23); -x_87 = lean_unbox_float(x_24); +x_89 = lean_unbox_float(x_24); lean_dec(x_24); -x_88 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_86, x_87, x_5, x_85, x_9, x_10, x_11, x_12, x_20); -return x_88; -} -} -else -{ -lean_object* x_89; double x_90; double x_91; lean_object* x_92; -x_89 = lean_box(0); -x_90 = lean_unbox_float(x_23); -lean_dec(x_23); -x_91 = lean_unbox_float(x_24); -lean_dec(x_24); -x_92 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_20); -return x_92; +x_90 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_20); +return x_90; } } } } else { -lean_object* x_207; lean_object* x_208; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_16); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_211; lean_object* x_212; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_16); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_207 = x_336; -x_208 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_211 = x_344; +x_212 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_207 = x_374; -x_208 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_282; uint8_t x_283; -x_209 = lean_ctor_get(x_207, 1); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 0); -lean_inc(x_210); -lean_dec(x_207); -x_211 = lean_ctor_get(x_209, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 1); -lean_inc(x_212); -lean_dec(x_209); -x_282 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_213 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_212); -x_286 = lean_unbox_float(x_211); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_213 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_211 = x_382; +x_212 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; uint8_t x_219; +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 0); +lean_inc(x_214); +lean_dec(x_211); +x_215 = lean_ctor_get(x_213, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 1); +lean_inc(x_216); +lean_dec(x_213); +x_217 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__4___closed__2; +x_218 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_217); +if (x_218 == 0) { if (x_6 == 0) { -if (x_213 == 0) +uint8_t x_284; +x_284 = 0; +x_219 = x_284; +goto block_283; +} +else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; -lean_dec(x_212); -lean_dec(x_211); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_215); +lean_dec(x_215); +x_287 = lean_unbox_float(x_216); +lean_dec(x_216); +x_288 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_212); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_216); +x_290 = lean_unbox_float(x_215); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_219 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_215); +lean_dec(x_215); +x_300 = lean_unbox_float(x_216); +lean_dec(x_216); +x_301 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_212); +return x_301; +} +} +block_283: +{ +if (x_219 == 0) +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; +lean_dec(x_216); +lean_dec(x_215); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_214 = lean_st_ref_take(x_12, x_208); -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_215, 3); -lean_inc(x_216); -x_217 = lean_ctor_get(x_214, 1); -lean_inc(x_217); -lean_dec(x_214); -x_218 = !lean_is_exclusive(x_215); -if (x_218 == 0) +x_220 = lean_st_ref_take(x_12, x_212); +x_221 = lean_ctor_get(x_220, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_221, 3); +lean_inc(x_222); +x_223 = lean_ctor_get(x_220, 1); +lean_inc(x_223); +lean_dec(x_220); +x_224 = !lean_is_exclusive(x_221); +if (x_224 == 0) { -lean_object* x_219; uint8_t x_220; -x_219 = lean_ctor_get(x_215, 3); -lean_dec(x_219); -x_220 = !lean_is_exclusive(x_216); -if (x_220 == 0) -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_221 = lean_ctor_get(x_216, 0); -x_222 = l_Lean_PersistentArray_append___rarg(x_15, x_221); -lean_dec(x_221); -lean_ctor_set(x_216, 0, x_222); -x_223 = lean_st_ref_set(x_12, x_215, x_217); -x_224 = lean_ctor_get(x_223, 1); -lean_inc(x_224); -lean_dec(x_223); -x_225 = l_MonadExcept_ofExcept___at_Lean_Meta_mkInjectiveTheorems___spec__11(x_210, x_9, x_10, x_11, x_12, x_224); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_225) == 0) -{ -uint8_t x_226; -x_226 = !lean_is_exclusive(x_225); +lean_object* x_225; uint8_t x_226; +x_225 = lean_ctor_get(x_221, 3); +lean_dec(x_225); +x_226 = !lean_is_exclusive(x_222); if (x_226 == 0) { -return x_225; -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; -x_227 = lean_ctor_get(x_225, 0); -x_228 = lean_ctor_get(x_225, 1); -lean_inc(x_228); -lean_inc(x_227); -lean_dec(x_225); -x_229 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_229, 0, x_227); -lean_ctor_set(x_229, 1, x_228); -return x_229; -} -} -else -{ -uint8_t x_230; -x_230 = !lean_is_exclusive(x_225); -if (x_230 == 0) -{ -return x_225; -} -else -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_225, 0); -x_232 = lean_ctor_get(x_225, 1); -lean_inc(x_232); -lean_inc(x_231); -lean_dec(x_225); -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_231); -lean_ctor_set(x_233, 1, x_232); -return x_233; -} -} -} -else -{ -uint64_t x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_234 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_235 = lean_ctor_get(x_216, 0); -lean_inc(x_235); -lean_dec(x_216); -x_236 = l_Lean_PersistentArray_append___rarg(x_15, x_235); -lean_dec(x_235); -x_237 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_237, 0, x_236); -lean_ctor_set_uint64(x_237, sizeof(void*)*1, x_234); -lean_ctor_set(x_215, 3, x_237); -x_238 = lean_st_ref_set(x_12, x_215, x_217); -x_239 = lean_ctor_get(x_238, 1); -lean_inc(x_239); -lean_dec(x_238); -x_240 = l_MonadExcept_ofExcept___at_Lean_Meta_mkInjectiveTheorems___spec__11(x_210, x_9, x_10, x_11, x_12, x_239); +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_227 = lean_ctor_get(x_222, 0); +x_228 = l_Lean_PersistentArray_append___rarg(x_15, x_227); +lean_dec(x_227); +lean_ctor_set(x_222, 0, x_228); +x_229 = lean_st_ref_set(x_12, x_221, x_223); +x_230 = lean_ctor_get(x_229, 1); +lean_inc(x_230); +lean_dec(x_229); +x_231 = l_MonadExcept_ofExcept___at_Lean_Meta_mkInjectiveTheorems___spec__11(x_214, x_9, x_10, x_11, x_12, x_230); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_240) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_231) == 0) { -lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; -x_241 = lean_ctor_get(x_240, 0); +uint8_t x_232; +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +return x_231; +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_231, 0); +x_234 = lean_ctor_get(x_231, 1); +lean_inc(x_234); +lean_inc(x_233); +lean_dec(x_231); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +return x_235; +} +} +else +{ +uint8_t x_236; +x_236 = !lean_is_exclusive(x_231); +if (x_236 == 0) +{ +return x_231; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_231, 0); +x_238 = lean_ctor_get(x_231, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_231); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} +} +} +else +{ +uint64_t x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_240 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_241 = lean_ctor_get(x_222, 0); lean_inc(x_241); -x_242 = lean_ctor_get(x_240, 1); -lean_inc(x_242); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_243 = x_240; -} else { - lean_dec_ref(x_240); - x_243 = lean_box(0); -} -if (lean_is_scalar(x_243)) { - x_244 = lean_alloc_ctor(0, 2, 0); -} else { - x_244 = x_243; -} -lean_ctor_set(x_244, 0, x_241); -lean_ctor_set(x_244, 1, x_242); -return x_244; -} -else -{ -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_245 = lean_ctor_get(x_240, 0); +lean_dec(x_222); +x_242 = l_Lean_PersistentArray_append___rarg(x_15, x_241); +lean_dec(x_241); +x_243 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set_uint64(x_243, sizeof(void*)*1, x_240); +lean_ctor_set(x_221, 3, x_243); +x_244 = lean_st_ref_set(x_12, x_221, x_223); +x_245 = lean_ctor_get(x_244, 1); lean_inc(x_245); -x_246 = lean_ctor_get(x_240, 1); -lean_inc(x_246); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_247 = x_240; -} else { - lean_dec_ref(x_240); - x_247 = lean_box(0); -} -if (lean_is_scalar(x_247)) { - x_248 = lean_alloc_ctor(1, 2, 0); -} else { - x_248 = x_247; -} -lean_ctor_set(x_248, 0, x_245); -lean_ctor_set(x_248, 1, x_246); -return x_248; -} -} -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_249 = lean_ctor_get(x_215, 0); -x_250 = lean_ctor_get(x_215, 1); -x_251 = lean_ctor_get(x_215, 2); -x_252 = lean_ctor_get(x_215, 4); -x_253 = lean_ctor_get(x_215, 5); -x_254 = lean_ctor_get(x_215, 6); -x_255 = lean_ctor_get(x_215, 7); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_dec(x_215); -x_256 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_257 = lean_ctor_get(x_216, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_216)) { - lean_ctor_release(x_216, 0); - x_258 = x_216; -} else { - lean_dec_ref(x_216); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_15, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_261, 0, x_249); -lean_ctor_set(x_261, 1, x_250); -lean_ctor_set(x_261, 2, x_251); -lean_ctor_set(x_261, 3, x_260); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_255); -x_262 = lean_st_ref_set(x_12, x_261, x_217); -x_263 = lean_ctor_get(x_262, 1); -lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at_Lean_Meta_mkInjectiveTheorems___spec__11(x_210, x_9, x_10, x_11, x_12, x_263); +lean_dec(x_244); +x_246 = l_MonadExcept_ofExcept___at_Lean_Meta_mkInjectiveTheorems___spec__11(x_214, x_9, x_10, x_11, x_12, x_245); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_246) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_247 = lean_ctor_get(x_246, 0); +lean_inc(x_247); +x_248 = lean_ctor_get(x_246, 1); +lean_inc(x_248); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_249 = x_246; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_246); + x_249 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_249)) { + x_250 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_250 = x_249; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_250, 0, x_247); +lean_ctor_set(x_250, 1, x_248); +return x_250; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_251 = lean_ctor_get(x_246, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_246, 1); +lean_inc(x_252); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_253 = x_246; +} else { + lean_dec_ref(x_246); + x_253 = lean_box(0); +} +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(1, 2, 0); +} else { + x_254 = x_253; +} +lean_ctor_set(x_254, 0, x_251); +lean_ctor_set(x_254, 1, x_252); +return x_254; +} +} +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_255 = lean_ctor_get(x_221, 0); +x_256 = lean_ctor_get(x_221, 1); +x_257 = lean_ctor_get(x_221, 2); +x_258 = lean_ctor_get(x_221, 4); +x_259 = lean_ctor_get(x_221, 5); +x_260 = lean_ctor_get(x_221, 6); +x_261 = lean_ctor_get(x_221, 7); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_221); +x_262 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_263 = lean_ctor_get(x_222, 0); +lean_inc(x_263); +if (lean_is_exclusive(x_222)) { + lean_ctor_release(x_222, 0); + x_264 = x_222; +} else { + lean_dec_ref(x_222); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_15, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_267, 0, x_255); +lean_ctor_set(x_267, 1, x_256); +lean_ctor_set(x_267, 2, x_257); +lean_ctor_set(x_267, 3, x_266); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_261); +x_268 = lean_st_ref_set(x_12, x_267, x_223); +x_269 = lean_ctor_get(x_268, 1); lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at_Lean_Meta_mkInjectiveTheorems___spec__11(x_214, x_9, x_10, x_11, x_12, x_269); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_214); +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_272 = x_271; + x_274 = x_273; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; +} else { + lean_dec_ref(x_270); + x_277 = lean_box(0); +} +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); +} else { + x_278 = x_277; +} +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_211); -lean_dec(x_211); -x_275 = lean_unbox_float(x_212); -lean_dec(x_212); -x_276 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_274, x_275, x_5, x_273, x_9, x_10, x_11, x_12, x_208); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_211); -lean_dec(x_211); -x_279 = lean_unbox_float(x_212); -lean_dec(x_212); -x_280 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_278, x_279, x_5, x_277, x_9, x_10, x_11, x_12, x_208); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_215); +lean_dec(x_215); +x_281 = lean_unbox_float(x_216); +lean_dec(x_216); +x_282 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_212); +return x_282; } } } @@ -8861,43 +8854,41 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_8); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); lean_dec(x_8); x_19 = lean_unbox_float(x_9); lean_dec(x_9); -x_20 = lean_unbox_float(x_10); -lean_dec(x_10); -x_21 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_18, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_15); -lean_dec(x_13); +x_20 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2(x_1, x_16, x_3, x_4, x_5, x_6, x_17, x_18, x_19, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_14); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_21; +return x_20; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_7); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); lean_dec(x_7); x_19 = lean_unbox_float(x_8); lean_dec(x_8); -x_20 = lean_unbox_float(x_9); -lean_dec(x_9); -x_21 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_11); -lean_dec(x_6); -return x_21; +x_20 = l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3(x_1, x_16, x_3, x_4, x_5, x_17, x_18, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +return x_20; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -9235,8 +9226,6 @@ lean_mark_persistent(l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lea l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Meta_mkInjectiveTheorems___spec__9___rarg___closed__3 = _init_l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Meta_mkInjectiveTheorems___spec__9___rarg___closed__3(); lean_mark_persistent(l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Meta_mkInjectiveTheorems___spec__9___rarg___closed__3); l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2___closed__1(); -l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2___closed__2(); -lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2___closed__2); l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3___closed__1); l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Meta/LitValues.c b/stage0/stdlib/Lean/Meta/LitValues.c index af844ecf9a..8a6fa8e58c 100644 --- a/stage0/stdlib/Lean/Meta/LitValues.c +++ b/stage0/stdlib/Lean/Meta/LitValues.c @@ -84,7 +84,6 @@ static lean_object* l_Lean_Meta_normLitValue___lambda__10___closed__3; lean_object* l_Lean_Level_ofNat(lean_object*); lean_object* l_Lean_Expr_appArg_x21(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getCharValue_x3f___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Fin_ofNat(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___lambda__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_normLitValue___lambda__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isLitValue___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -195,6 +194,7 @@ uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_mkApp3(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Loop_forIn_loop___at_Lean_Meta_getListLitOf_x3f___spec__1___rarg___closed__2; static lean_object* l_Lean_Meta_getUInt64Value_x3f___closed__1; +lean_object* lean_nat_mod(lean_object*, lean_object*); static lean_object* l_Lean_Meta_litToCtor___lambda__1___closed__15; lean_object* l_Lean_instantiateMVars___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassApp_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_normLitValue___lambda__3___closed__1; @@ -1740,9 +1740,9 @@ x_39 = lean_unsigned_to_nat(1u); x_40 = lean_nat_sub(x_36, x_39); lean_dec(x_36); x_41 = lean_nat_add(x_40, x_39); -x_42 = l_Fin_ofNat(x_40, x_19); -lean_dec(x_19); lean_dec(x_40); +x_42 = lean_nat_mod(x_19, x_41); +lean_dec(x_19); lean_ctor_set(x_16, 1, x_42); lean_ctor_set(x_16, 0, x_41); lean_ctor_set(x_26, 0, x_16); @@ -1775,9 +1775,9 @@ x_47 = lean_unsigned_to_nat(1u); x_48 = lean_nat_sub(x_44, x_47); lean_dec(x_44); x_49 = lean_nat_add(x_48, x_47); -x_50 = l_Fin_ofNat(x_48, x_19); -lean_dec(x_19); lean_dec(x_48); +x_50 = lean_nat_mod(x_19, x_49); +lean_dec(x_19); lean_ctor_set(x_16, 1, x_50); lean_ctor_set(x_16, 0, x_49); x_51 = lean_alloc_ctor(1, 1, 0); @@ -1821,9 +1821,9 @@ x_58 = lean_unsigned_to_nat(1u); x_59 = lean_nat_sub(x_54, x_58); lean_dec(x_54); x_60 = lean_nat_add(x_59, x_58); -x_61 = l_Fin_ofNat(x_59, x_19); -lean_dec(x_19); lean_dec(x_59); +x_61 = lean_nat_mod(x_19, x_60); +lean_dec(x_19); lean_ctor_set(x_16, 1, x_61); lean_ctor_set(x_16, 0, x_60); if (lean_is_scalar(x_55)) { @@ -1992,9 +1992,9 @@ x_92 = lean_unsigned_to_nat(1u); x_93 = lean_nat_sub(x_88, x_92); lean_dec(x_88); x_94 = lean_nat_add(x_93, x_92); -x_95 = l_Fin_ofNat(x_93, x_74); -lean_dec(x_74); lean_dec(x_93); +x_95 = lean_nat_mod(x_74, x_94); +lean_dec(x_74); x_96 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_96, 0, x_94); lean_ctor_set(x_96, 1, x_95); diff --git a/stage0/stdlib/Lean/Meta/Match/MatchEqs.c b/stage0/stdlib/Lean/Meta/Match/MatchEqs.c index 793fcc3f65..13a1cc710b 100644 --- a/stage0/stdlib/Lean/Meta/Match/MatchEqs.c +++ b/stage0/stdlib/Lean/Meta/Match/MatchEqs.c @@ -24,7 +24,7 @@ lean_object* l_Lean_Meta_mkEqHEq(lean_object*, lean_object*, lean_object*, lean_ static double l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__4___closed__5; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___lambda__1___closed__4; LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__18___boxed(lean_object**); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_proveCondEqThm___closed__2; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_injectionAny___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_proveSubgoal___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -46,7 +46,6 @@ lean_object* l_Array_mapMUnsafe_map___at_Lean_LocalContext_getFVars___spec__1(si static lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___lambda__6___closed__1; static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_injectionAny___spec__4___closed__5; LEAN_EXPORT lean_object* l_Lean_Meta_casesOnStuckLHS_findFVar_x3f___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_profiler; static lean_object* l_Lean_Meta_Match_forallAltTelescope_go___rarg___closed__13; lean_object* l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___closed__2; @@ -69,7 +68,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___spec__10___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___lambda__12___boxed(lean_object**); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_isCastEqRec___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_forallAltTelescope_go___rarg___closed__9; @@ -92,7 +91,6 @@ static lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Meta_Match_Ma LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ConstantInfo_type(lean_object*); lean_object* lean_whnf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__2___closed__1; static lean_object* l_Lean_Meta_Match_forallAltTelescope_go___rarg___closed__15; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradictionQuick___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -211,7 +209,7 @@ static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Meta_Match_ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go___spec__4___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3___closed__1; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_casesOnStuckLHS___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_get_num_heartbeats(lean_object*); lean_object* l_Nat_nextPowerOfTwo_go(lean_object*, lean_object*, lean_object*); @@ -292,7 +290,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_Matc static lean_object* l_panic___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_SimpH_substRHS___spec__2___closed__2; static lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec___spec__8___lambda__7___closed__2; static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go___closed__5; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_MatchEqs___hyg_13932____closed__10; LEAN_EXPORT lean_object* l_Lean_MVarId_withContext___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_SimpH_processNextEq___spec__2(lean_object*); @@ -46576,69 +46574,36 @@ lean_dec(x_9); return x_14; } } -static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__2___closed__1() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = l_Lean_addTrace___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go___spec__5___closed__1; +x_17 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_3); +lean_ctor_set_float(x_17, sizeof(void*)*2, x_16); +lean_ctor_set_float(x_17, sizeof(void*)*2 + 8, x_16); +lean_ctor_set_uint8(x_17, sizeof(void*)*2 + 16, x_2); +x_18 = lean_box(0); +x_19 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__1(x_4, x_5, x_10, x_6, x_17, x_18, x_11, x_12, x_13, x_14, x_15); +return x_19; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { -_start: +else { -double x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = l_Lean_addTrace___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertCastEqRec_go___spec__5___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_18 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_18, 0, x_1); -lean_ctor_set(x_18, 1, x_3); -lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); -lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); -lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); -x_19 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__2___closed__1; -x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_19); -if (x_20 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_21; lean_object* x_22; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); x_21 = lean_box(0); -x_22 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__1(x_4, x_5, x_11, x_6, x_18, x_21, x_12, x_13, x_14, x_15, x_16); +x_22 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15); return x_22; } -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_18); -x_23 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_3); -lean_ctor_set_float(x_23, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); -x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__1(x_4, x_5, x_11, x_6, x_23, x_24, x_12, x_13, x_14, x_15, x_16); -return x_25; -} -} -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_18); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16); -return x_28; -} } } static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3___closed__1() { @@ -46658,46 +46623,46 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 5); -lean_inc(x_17); -lean_inc(x_15); +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 5); +lean_inc(x_16); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_18 = lean_apply_6(x_10, x_5, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_18) == 0) +x_17 = lean_apply_6(x_9, x_5, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_14, x_15, x_20); -lean_dec(x_15); -lean_dec(x_13); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_13, x_14, x_19); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_21; +return x_20; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_14, x_15, x_22); -lean_dec(x_15); -lean_dec(x_13); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } } } @@ -46761,253 +46726,253 @@ x_17 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_17); if (x_18 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_109 = lean_io_mono_nanos_now(x_16); -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_109, 1); -lean_inc(x_111); -lean_dec(x_109); +lean_object* x_19; lean_object* x_20; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_113 = lean_io_mono_nanos_now(x_16); +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +lean_dec(x_113); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_112 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_111); -if (lean_obj_tag(x_112) == 0) +x_116 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_115); +if (lean_obj_tag(x_116) == 0) { -uint8_t x_113; -x_113 = !lean_is_exclusive(x_112); -if (x_113 == 0) +uint8_t x_117; +x_117 = !lean_is_exclusive(x_116); +if (x_117 == 0) { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_114 = lean_ctor_get(x_112, 0); -x_115 = lean_ctor_get(x_112, 1); -x_116 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_116, 0, x_114); -x_117 = lean_io_mono_nanos_now(x_115); -x_118 = !lean_is_exclusive(x_117); -if (x_118 == 0) +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_118 = lean_ctor_get(x_116, 0); +x_119 = lean_ctor_get(x_116, 1); +x_120 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_120, 0, x_118); +x_121 = lean_io_mono_nanos_now(x_119); +x_122 = !lean_is_exclusive(x_121); +if (x_122 == 0) { -lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_122; double x_123; double x_124; double x_125; double x_126; double x_127; lean_object* x_128; lean_object* x_129; -x_119 = lean_ctor_get(x_117, 0); -x_120 = lean_ctor_get(x_117, 1); -x_121 = 0; -x_122 = lean_unsigned_to_nat(0u); -x_123 = l_Float_ofScientific(x_110, x_121, x_122); -lean_dec(x_110); -x_124 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__4___closed__5; -x_125 = lean_float_div(x_123, x_124); -x_126 = l_Float_ofScientific(x_119, x_121, x_122); -lean_dec(x_119); -x_127 = lean_float_div(x_126, x_124); -x_128 = lean_box_float(x_125); -x_129 = lean_box_float(x_127); -lean_ctor_set(x_117, 1, x_129); -lean_ctor_set(x_117, 0, x_128); -lean_ctor_set(x_112, 1, x_117); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_120; -goto block_108; +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; double x_130; double x_131; lean_object* x_132; lean_object* x_133; +x_123 = lean_ctor_get(x_121, 0); +x_124 = lean_ctor_get(x_121, 1); +x_125 = 0; +x_126 = lean_unsigned_to_nat(0u); +x_127 = l_Float_ofScientific(x_114, x_125, x_126); +lean_dec(x_114); +x_128 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__4___closed__5; +x_129 = lean_float_div(x_127, x_128); +x_130 = l_Float_ofScientific(x_123, x_125, x_126); +lean_dec(x_123); +x_131 = lean_float_div(x_130, x_128); +x_132 = lean_box_float(x_129); +x_133 = lean_box_float(x_131); +lean_ctor_set(x_121, 1, x_133); +lean_ctor_set(x_121, 0, x_132); +lean_ctor_set(x_116, 1, x_121); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_124; +goto block_112; } else { -lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; double x_134; double x_135; double x_136; double x_137; double x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_130 = lean_ctor_get(x_117, 0); -x_131 = lean_ctor_get(x_117, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_117); -x_132 = 0; -x_133 = lean_unsigned_to_nat(0u); -x_134 = l_Float_ofScientific(x_110, x_132, x_133); -lean_dec(x_110); -x_135 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__4___closed__5; -x_136 = lean_float_div(x_134, x_135); -x_137 = l_Float_ofScientific(x_130, x_132, x_133); -lean_dec(x_130); -x_138 = lean_float_div(x_137, x_135); -x_139 = lean_box_float(x_136); -x_140 = lean_box_float(x_138); -x_141 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -lean_ctor_set(x_112, 1, x_141); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_131; -goto block_108; +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_134 = lean_ctor_get(x_121, 0); +x_135 = lean_ctor_get(x_121, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_121); +x_136 = 0; +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Float_ofScientific(x_114, x_136, x_137); +lean_dec(x_114); +x_139 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__4___closed__5; +x_140 = lean_float_div(x_138, x_139); +x_141 = l_Float_ofScientific(x_134, x_136, x_137); +lean_dec(x_134); +x_142 = lean_float_div(x_141, x_139); +x_143 = lean_box_float(x_140); +x_144 = lean_box_float(x_142); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_116, 1, x_145); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_135; +goto block_112; } } else { -lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_142 = lean_ctor_get(x_112, 0); -x_143 = lean_ctor_get(x_112, 1); -lean_inc(x_143); -lean_inc(x_142); -lean_dec(x_112); -x_144 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_144, 0, x_142); -x_145 = lean_io_mono_nanos_now(x_143); -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; lean_object* x_154; double x_155; double x_156; double x_157; double x_158; double x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_146 = lean_ctor_get(x_116, 0); +x_147 = lean_ctor_get(x_116, 1); lean_inc(x_147); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - lean_ctor_release(x_145, 1); - x_148 = x_145; +lean_inc(x_146); +lean_dec(x_116); +x_148 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_148, 0, x_146); +x_149 = lean_io_mono_nanos_now(x_147); +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + lean_ctor_release(x_149, 1); + x_152 = x_149; } else { - lean_dec_ref(x_145); - x_148 = lean_box(0); + lean_dec_ref(x_149); + x_152 = lean_box(0); } -x_149 = 0; -x_150 = lean_unsigned_to_nat(0u); -x_151 = l_Float_ofScientific(x_110, x_149, x_150); -lean_dec(x_110); -x_152 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__4___closed__5; -x_153 = lean_float_div(x_151, x_152); -x_154 = l_Float_ofScientific(x_146, x_149, x_150); -lean_dec(x_146); -x_155 = lean_float_div(x_154, x_152); -x_156 = lean_box_float(x_153); -x_157 = lean_box_float(x_155); -if (lean_is_scalar(x_148)) { - x_158 = lean_alloc_ctor(0, 2, 0); +x_153 = 0; +x_154 = lean_unsigned_to_nat(0u); +x_155 = l_Float_ofScientific(x_114, x_153, x_154); +lean_dec(x_114); +x_156 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__4___closed__5; +x_157 = lean_float_div(x_155, x_156); +x_158 = l_Float_ofScientific(x_150, x_153, x_154); +lean_dec(x_150); +x_159 = lean_float_div(x_158, x_156); +x_160 = lean_box_float(x_157); +x_161 = lean_box_float(x_159); +if (lean_is_scalar(x_152)) { + x_162 = lean_alloc_ctor(0, 2, 0); } else { - x_158 = x_148; + x_162 = x_152; } -lean_ctor_set(x_158, 0, x_156); -lean_ctor_set(x_158, 1, x_157); -x_159 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_159, 0, x_144); -lean_ctor_set(x_159, 1, x_158); -x_19 = x_159; -x_20 = x_147; -goto block_108; +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_161); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_148); +lean_ctor_set(x_163, 1, x_162); +x_19 = x_163; +x_20 = x_151; +goto block_112; } } else { -uint8_t x_160; -x_160 = !lean_is_exclusive(x_112); -if (x_160 == 0) +uint8_t x_164; +x_164 = !lean_is_exclusive(x_116); +if (x_164 == 0) { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_161 = lean_ctor_get(x_112, 0); -x_162 = lean_ctor_get(x_112, 1); -x_163 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_163, 0, x_161); -x_164 = lean_io_mono_nanos_now(x_162); -x_165 = !lean_is_exclusive(x_164); -if (x_165 == 0) +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; +x_165 = lean_ctor_get(x_116, 0); +x_166 = lean_ctor_get(x_116, 1); +x_167 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_167, 0, x_165); +x_168 = lean_io_mono_nanos_now(x_166); +x_169 = !lean_is_exclusive(x_168); +if (x_169 == 0) { -lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; double x_170; double x_171; double x_172; double x_173; double x_174; lean_object* x_175; lean_object* x_176; -x_166 = lean_ctor_get(x_164, 0); -x_167 = lean_ctor_get(x_164, 1); -x_168 = 0; -x_169 = lean_unsigned_to_nat(0u); -x_170 = l_Float_ofScientific(x_110, x_168, x_169); -lean_dec(x_110); -x_171 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__4___closed__5; -x_172 = lean_float_div(x_170, x_171); -x_173 = l_Float_ofScientific(x_166, x_168, x_169); -lean_dec(x_166); -x_174 = lean_float_div(x_173, x_171); -x_175 = lean_box_float(x_172); -x_176 = lean_box_float(x_174); -lean_ctor_set(x_164, 1, x_176); -lean_ctor_set(x_164, 0, x_175); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_164); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_167; -goto block_108; +lean_object* x_170; lean_object* x_171; uint8_t x_172; lean_object* x_173; double x_174; double x_175; double x_176; double x_177; double x_178; lean_object* x_179; lean_object* x_180; +x_170 = lean_ctor_get(x_168, 0); +x_171 = lean_ctor_get(x_168, 1); +x_172 = 0; +x_173 = lean_unsigned_to_nat(0u); +x_174 = l_Float_ofScientific(x_114, x_172, x_173); +lean_dec(x_114); +x_175 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__4___closed__5; +x_176 = lean_float_div(x_174, x_175); +x_177 = l_Float_ofScientific(x_170, x_172, x_173); +lean_dec(x_170); +x_178 = lean_float_div(x_177, x_175); +x_179 = lean_box_float(x_176); +x_180 = lean_box_float(x_178); +lean_ctor_set(x_168, 1, x_180); +lean_ctor_set(x_168, 0, x_179); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_168); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_171; +goto block_112; } else { -lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_object* x_180; double x_181; double x_182; double x_183; double x_184; double x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_177 = lean_ctor_get(x_164, 0); -x_178 = lean_ctor_get(x_164, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_164); -x_179 = 0; -x_180 = lean_unsigned_to_nat(0u); -x_181 = l_Float_ofScientific(x_110, x_179, x_180); -lean_dec(x_110); -x_182 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__4___closed__5; -x_183 = lean_float_div(x_181, x_182); -x_184 = l_Float_ofScientific(x_177, x_179, x_180); -lean_dec(x_177); -x_185 = lean_float_div(x_184, x_182); -x_186 = lean_box_float(x_183); -x_187 = lean_box_float(x_185); -x_188 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_188); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_178; -goto block_108; +lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_181 = lean_ctor_get(x_168, 0); +x_182 = lean_ctor_get(x_168, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_168); +x_183 = 0; +x_184 = lean_unsigned_to_nat(0u); +x_185 = l_Float_ofScientific(x_114, x_183, x_184); +lean_dec(x_114); +x_186 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__4___closed__5; +x_187 = lean_float_div(x_185, x_186); +x_188 = l_Float_ofScientific(x_181, x_183, x_184); +lean_dec(x_181); +x_189 = lean_float_div(x_188, x_186); +x_190 = lean_box_float(x_187); +x_191 = lean_box_float(x_189); +x_192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_192); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_182; +goto block_112; } } else { -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_189 = lean_ctor_get(x_112, 0); -x_190 = lean_ctor_get(x_112, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_112); -x_191 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_191, 0, x_189); -x_192 = lean_io_mono_nanos_now(x_190); -x_193 = lean_ctor_get(x_192, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; lean_object* x_201; double x_202; double x_203; double x_204; double x_205; double x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_193 = lean_ctor_get(x_116, 0); +x_194 = lean_ctor_get(x_116, 1); lean_inc(x_194); -if (lean_is_exclusive(x_192)) { - lean_ctor_release(x_192, 0); - lean_ctor_release(x_192, 1); - x_195 = x_192; +lean_inc(x_193); +lean_dec(x_116); +x_195 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_195, 0, x_193); +x_196 = lean_io_mono_nanos_now(x_194); +x_197 = lean_ctor_get(x_196, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_196, 1); +lean_inc(x_198); +if (lean_is_exclusive(x_196)) { + lean_ctor_release(x_196, 0); + lean_ctor_release(x_196, 1); + x_199 = x_196; } else { - lean_dec_ref(x_192); - x_195 = lean_box(0); + lean_dec_ref(x_196); + x_199 = lean_box(0); } -x_196 = 0; -x_197 = lean_unsigned_to_nat(0u); -x_198 = l_Float_ofScientific(x_110, x_196, x_197); -lean_dec(x_110); -x_199 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__4___closed__5; -x_200 = lean_float_div(x_198, x_199); -x_201 = l_Float_ofScientific(x_193, x_196, x_197); -lean_dec(x_193); -x_202 = lean_float_div(x_201, x_199); -x_203 = lean_box_float(x_200); -x_204 = lean_box_float(x_202); -if (lean_is_scalar(x_195)) { - x_205 = lean_alloc_ctor(0, 2, 0); +x_200 = 0; +x_201 = lean_unsigned_to_nat(0u); +x_202 = l_Float_ofScientific(x_114, x_200, x_201); +lean_dec(x_114); +x_203 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__4___closed__5; +x_204 = lean_float_div(x_202, x_203); +x_205 = l_Float_ofScientific(x_197, x_200, x_201); +lean_dec(x_197); +x_206 = lean_float_div(x_205, x_203); +x_207 = lean_box_float(x_204); +x_208 = lean_box_float(x_206); +if (lean_is_scalar(x_199)) { + x_209 = lean_alloc_ctor(0, 2, 0); } else { - x_205 = x_195; + x_209 = x_199; } -lean_ctor_set(x_205, 0, x_203); -lean_ctor_set(x_205, 1, x_204); -x_206 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_206, 0, x_191); -lean_ctor_set(x_206, 1, x_205); -x_19 = x_206; -x_20 = x_194; -goto block_108; +lean_ctor_set(x_209, 0, x_207); +lean_ctor_set(x_209, 1, x_208); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_195); +lean_ctor_set(x_210, 1, x_209); +x_19 = x_210; +x_20 = x_198; +goto block_112; } } -block_108: +block_112: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_94; uint8_t x_95; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); x_22 = lean_ctor_get(x_19, 0); @@ -47018,17 +46983,33 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_21, 1); lean_inc(x_24); lean_dec(x_21); -x_94 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__4___closed__2; -x_95 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_94); -if (x_95 == 0) +x_25 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__4___closed__2; +x_26 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_25); +if (x_26 == 0) { -uint8_t x_96; -x_96 = 0; -x_25 = x_96; -goto block_93; +if (x_6 == 0) +{ +uint8_t x_92; +x_92 = 0; +x_27 = x_92; +goto block_91; } else { +lean_object* x_93; double x_94; double x_95; lean_object* x_96; +x_93 = lean_box(0); +x_94 = lean_unbox_float(x_23); +lean_dec(x_23); +x_95 = lean_unbox_float(x_24); +lean_dec(x_24); +x_96 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_94, x_95, x_5, x_93, x_9, x_10, x_11, x_12, x_20); +return x_96; +} +} +else +{ +if (x_6 == 0) +{ double x_97; double x_98; double x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; double x_104; double x_105; double x_106; uint8_t x_107; x_97 = lean_unbox_float(x_24); x_98 = lean_unbox_float(x_23); @@ -47042,859 +47023,871 @@ lean_dec(x_101); x_105 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__4___closed__4; x_106 = lean_float_div(x_104, x_105); x_107 = lean_float_decLt(x_106, x_99); -x_25 = x_107; -goto block_93; +x_27 = x_107; +goto block_91; } -block_93: +else { -if (x_6 == 0) +lean_object* x_108; double x_109; double x_110; lean_object* x_111; +x_108 = lean_box(0); +x_109 = lean_unbox_float(x_23); +lean_dec(x_23); +x_110 = lean_unbox_float(x_24); +lean_dec(x_24); +x_111 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_109, x_110, x_5, x_108, x_9, x_10, x_11, x_12, x_20); +return x_111; +} +} +block_91: { -if (x_25 == 0) +if (x_27 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_24); lean_dec(x_23); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_26 = lean_st_ref_take(x_12, x_20); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -x_29 = lean_ctor_get(x_26, 1); +x_28 = lean_st_ref_take(x_12, x_20); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -lean_dec(x_26); -x_30 = !lean_is_exclusive(x_27); -if (x_30 == 0) -{ -lean_object* x_31; uint8_t x_32; -x_31 = lean_ctor_get(x_27, 3); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_28); +x_30 = lean_ctor_get(x_29, 3); +lean_inc(x_30); +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = !lean_is_exclusive(x_29); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_33 = lean_ctor_get(x_28, 0); -x_34 = l_Lean_PersistentArray_append___rarg(x_15, x_33); +lean_object* x_33; uint8_t x_34; +x_33 = lean_ctor_get(x_29, 3); lean_dec(x_33); -lean_ctor_set(x_28, 0, x_34); -x_35 = lean_st_ref_set(x_12, x_27, x_29); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); +x_34 = !lean_is_exclusive(x_30); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_ctor_get(x_30, 0); +x_36 = l_Lean_PersistentArray_append___rarg(x_15, x_35); lean_dec(x_35); -x_37 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__7(x_22, x_9, x_10, x_11, x_12, x_36); +lean_ctor_set(x_30, 0, x_36); +x_37 = lean_st_ref_set(x_12, x_29, x_31); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +x_39 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__7(x_22, x_9, x_10, x_11, x_12, x_38); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_37) == 0) +if (lean_obj_tag(x_39) == 0) { -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -return x_37; +return x_39; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_ctor_get(x_37, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_37); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_39); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } else { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_37); -if (x_42 == 0) +uint8_t x_44; +x_44 = !lean_is_exclusive(x_39); +if (x_44 == 0) { -return x_37; +return x_39; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_37, 0); -x_44 = lean_ctor_get(x_37, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_37); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_39, 0); +x_46 = lean_ctor_get(x_39, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_39); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } } else { -uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_47 = lean_ctor_get(x_28, 0); -lean_inc(x_47); -lean_dec(x_28); -x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_47); -lean_dec(x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); -lean_ctor_set(x_27, 3, x_49); -x_50 = lean_st_ref_set(x_12, x_27, x_29); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -lean_dec(x_50); -x_52 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__7(x_22, x_9, x_10, x_11, x_12, x_51); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_22); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); +uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_49 = lean_ctor_get(x_30, 0); +lean_inc(x_49); +lean_dec(x_30); +x_50 = l_Lean_PersistentArray_append___rarg(x_15, x_49); +lean_dec(x_49); +x_51 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); +lean_ctor_set(x_29, 3, x_51); +x_52 = lean_st_ref_set(x_12, x_29, x_31); +x_53 = lean_ctor_get(x_52, 1); lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_55 = x_52; +lean_dec(x_52); +x_54 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__7(x_22, x_9, x_10, x_11, x_12, x_53); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_22); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; } else { - lean_dec_ref(x_52); - x_55 = lean_box(0); + lean_dec_ref(x_54); + x_57 = lean_box(0); } -if (lean_is_scalar(x_55)) { - x_56 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_57)) { + x_58 = lean_alloc_ctor(0, 2, 0); } else { - x_56 = x_55; + x_58 = x_57; } -lean_ctor_set(x_56, 0, x_53); -lean_ctor_set(x_56, 1, x_54); -return x_56; +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_56); +return x_58; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_52, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_52, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_59 = x_52; +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_54, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_54, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_61 = x_54; } else { - lean_dec_ref(x_52); - x_59 = lean_box(0); + lean_dec_ref(x_54); + x_61 = lean_box(0); } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(1, 2, 0); } else { - x_60 = x_59; + x_62 = x_61; } -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_58); -return x_60; +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; } } } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_61 = lean_ctor_get(x_27, 0); -x_62 = lean_ctor_get(x_27, 1); -x_63 = lean_ctor_get(x_27, 2); -x_64 = lean_ctor_get(x_27, 4); -x_65 = lean_ctor_get(x_27, 5); -x_66 = lean_ctor_get(x_27, 6); -x_67 = lean_ctor_get(x_27, 7); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_63 = lean_ctor_get(x_29, 0); +x_64 = lean_ctor_get(x_29, 1); +x_65 = lean_ctor_get(x_29, 2); +x_66 = lean_ctor_get(x_29, 4); +x_67 = lean_ctor_get(x_29, 5); +x_68 = lean_ctor_get(x_29, 6); +x_69 = lean_ctor_get(x_29, 7); +lean_inc(x_69); +lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_27); -x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_69 = lean_ctor_get(x_28, 0); -lean_inc(x_69); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - x_70 = x_28; +lean_dec(x_29); +x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_71 = lean_ctor_get(x_30, 0); +lean_inc(x_71); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + x_72 = x_30; } else { - lean_dec_ref(x_28); - x_70 = lean_box(0); + lean_dec_ref(x_30); + x_72 = lean_box(0); } -x_71 = l_Lean_PersistentArray_append___rarg(x_15, x_69); -lean_dec(x_69); -if (lean_is_scalar(x_70)) { - x_72 = lean_alloc_ctor(0, 1, 8); +x_73 = l_Lean_PersistentArray_append___rarg(x_15, x_71); +lean_dec(x_71); +if (lean_is_scalar(x_72)) { + x_74 = lean_alloc_ctor(0, 1, 8); } else { - x_72 = x_70; + x_74 = x_72; } -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); -x_73 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_73, 0, x_61); -lean_ctor_set(x_73, 1, x_62); -lean_ctor_set(x_73, 2, x_63); -lean_ctor_set(x_73, 3, x_72); -lean_ctor_set(x_73, 4, x_64); -lean_ctor_set(x_73, 5, x_65); -lean_ctor_set(x_73, 6, x_66); -lean_ctor_set(x_73, 7, x_67); -x_74 = lean_st_ref_set(x_12, x_73, x_29); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_76 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__7(x_22, x_9, x_10, x_11, x_12, x_75); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); +x_75 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_64); +lean_ctor_set(x_75, 2, x_65); +lean_ctor_set(x_75, 3, x_74); +lean_ctor_set(x_75, 4, x_66); +lean_ctor_set(x_75, 5, x_67); +lean_ctor_set(x_75, 6, x_68); +lean_ctor_set(x_75, 7, x_69); +x_76 = lean_st_ref_set(x_12, x_75, x_31); +x_77 = lean_ctor_get(x_76, 1); +lean_inc(x_77); +lean_dec(x_76); +x_78 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__7(x_22, x_9, x_10, x_11, x_12, x_77); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_76) == 0) +if (lean_obj_tag(x_78) == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_76, 0); -lean_inc(x_77); -x_78 = lean_ctor_get(x_76, 1); -lean_inc(x_78); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_79 = x_76; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_81 = x_78; } else { - lean_dec_ref(x_76); - x_79 = lean_box(0); + lean_dec_ref(x_78); + x_81 = lean_box(0); } -if (lean_is_scalar(x_79)) { - x_80 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(0, 2, 0); } else { - x_80 = x_79; + x_82 = x_81; } -lean_ctor_set(x_80, 0, x_77); -lean_ctor_set(x_80, 1, x_78); -return x_80; +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_80); +return x_82; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_81 = lean_ctor_get(x_76, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_76, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_83 = x_76; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_83 = lean_ctor_get(x_78, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_78, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_85 = x_78; } else { - lean_dec_ref(x_76); - x_83 = lean_box(0); + lean_dec_ref(x_78); + x_85 = lean_box(0); } -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); } else { - x_84 = x_83; + x_86 = x_85; } -lean_ctor_set(x_84, 0, x_81); -lean_ctor_set(x_84, 1, x_82); -return x_84; +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; } } } else { -lean_object* x_85; double x_86; double x_87; lean_object* x_88; -x_85 = lean_box(0); -x_86 = lean_unbox_float(x_23); +lean_object* x_87; double x_88; double x_89; lean_object* x_90; +x_87 = lean_box(0); +x_88 = lean_unbox_float(x_23); lean_dec(x_23); -x_87 = lean_unbox_float(x_24); +x_89 = lean_unbox_float(x_24); lean_dec(x_24); -x_88 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_86, x_87, x_5, x_85, x_9, x_10, x_11, x_12, x_20); -return x_88; -} -} -else -{ -lean_object* x_89; double x_90; double x_91; lean_object* x_92; -x_89 = lean_box(0); -x_90 = lean_unbox_float(x_23); -lean_dec(x_23); -x_91 = lean_unbox_float(x_24); -lean_dec(x_24); -x_92 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_20); -return x_92; +x_90 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_20); +return x_90; } } } } else { -lean_object* x_207; lean_object* x_208; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_16); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_211; lean_object* x_212; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_16); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_207 = x_336; -x_208 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_211 = x_344; +x_212 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_207 = x_374; -x_208 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_282; uint8_t x_283; -x_209 = lean_ctor_get(x_207, 1); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 0); -lean_inc(x_210); -lean_dec(x_207); -x_211 = lean_ctor_get(x_209, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 1); -lean_inc(x_212); -lean_dec(x_209); -x_282 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_213 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_212); -x_286 = lean_unbox_float(x_211); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_213 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_211 = x_382; +x_212 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; uint8_t x_219; +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 0); +lean_inc(x_214); +lean_dec(x_211); +x_215 = lean_ctor_get(x_213, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 1); +lean_inc(x_216); +lean_dec(x_213); +x_217 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__4___closed__2; +x_218 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_217); +if (x_218 == 0) { if (x_6 == 0) { -if (x_213 == 0) +uint8_t x_284; +x_284 = 0; +x_219 = x_284; +goto block_283; +} +else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; -lean_dec(x_212); -lean_dec(x_211); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_215); +lean_dec(x_215); +x_287 = lean_unbox_float(x_216); +lean_dec(x_216); +x_288 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_212); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_216); +x_290 = lean_unbox_float(x_215); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_219 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_215); +lean_dec(x_215); +x_300 = lean_unbox_float(x_216); +lean_dec(x_216); +x_301 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_212); +return x_301; +} +} +block_283: +{ +if (x_219 == 0) +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; +lean_dec(x_216); +lean_dec(x_215); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_214 = lean_st_ref_take(x_12, x_208); -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_215, 3); -lean_inc(x_216); -x_217 = lean_ctor_get(x_214, 1); -lean_inc(x_217); -lean_dec(x_214); -x_218 = !lean_is_exclusive(x_215); -if (x_218 == 0) +x_220 = lean_st_ref_take(x_12, x_212); +x_221 = lean_ctor_get(x_220, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_221, 3); +lean_inc(x_222); +x_223 = lean_ctor_get(x_220, 1); +lean_inc(x_223); +lean_dec(x_220); +x_224 = !lean_is_exclusive(x_221); +if (x_224 == 0) { -lean_object* x_219; uint8_t x_220; -x_219 = lean_ctor_get(x_215, 3); -lean_dec(x_219); -x_220 = !lean_is_exclusive(x_216); -if (x_220 == 0) -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_221 = lean_ctor_get(x_216, 0); -x_222 = l_Lean_PersistentArray_append___rarg(x_15, x_221); -lean_dec(x_221); -lean_ctor_set(x_216, 0, x_222); -x_223 = lean_st_ref_set(x_12, x_215, x_217); -x_224 = lean_ctor_get(x_223, 1); -lean_inc(x_224); -lean_dec(x_223); -x_225 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__7(x_210, x_9, x_10, x_11, x_12, x_224); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_225) == 0) -{ -uint8_t x_226; -x_226 = !lean_is_exclusive(x_225); +lean_object* x_225; uint8_t x_226; +x_225 = lean_ctor_get(x_221, 3); +lean_dec(x_225); +x_226 = !lean_is_exclusive(x_222); if (x_226 == 0) { -return x_225; -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; -x_227 = lean_ctor_get(x_225, 0); -x_228 = lean_ctor_get(x_225, 1); -lean_inc(x_228); -lean_inc(x_227); -lean_dec(x_225); -x_229 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_229, 0, x_227); -lean_ctor_set(x_229, 1, x_228); -return x_229; -} -} -else -{ -uint8_t x_230; -x_230 = !lean_is_exclusive(x_225); -if (x_230 == 0) -{ -return x_225; -} -else -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_225, 0); -x_232 = lean_ctor_get(x_225, 1); -lean_inc(x_232); -lean_inc(x_231); -lean_dec(x_225); -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_231); -lean_ctor_set(x_233, 1, x_232); -return x_233; -} -} -} -else -{ -uint64_t x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_234 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_235 = lean_ctor_get(x_216, 0); -lean_inc(x_235); -lean_dec(x_216); -x_236 = l_Lean_PersistentArray_append___rarg(x_15, x_235); -lean_dec(x_235); -x_237 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_237, 0, x_236); -lean_ctor_set_uint64(x_237, sizeof(void*)*1, x_234); -lean_ctor_set(x_215, 3, x_237); -x_238 = lean_st_ref_set(x_12, x_215, x_217); -x_239 = lean_ctor_get(x_238, 1); -lean_inc(x_239); -lean_dec(x_238); -x_240 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__7(x_210, x_9, x_10, x_11, x_12, x_239); +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_227 = lean_ctor_get(x_222, 0); +x_228 = l_Lean_PersistentArray_append___rarg(x_15, x_227); +lean_dec(x_227); +lean_ctor_set(x_222, 0, x_228); +x_229 = lean_st_ref_set(x_12, x_221, x_223); +x_230 = lean_ctor_get(x_229, 1); +lean_inc(x_230); +lean_dec(x_229); +x_231 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__7(x_214, x_9, x_10, x_11, x_12, x_230); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_240) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_231) == 0) { -lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; -x_241 = lean_ctor_get(x_240, 0); +uint8_t x_232; +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +return x_231; +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_231, 0); +x_234 = lean_ctor_get(x_231, 1); +lean_inc(x_234); +lean_inc(x_233); +lean_dec(x_231); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +return x_235; +} +} +else +{ +uint8_t x_236; +x_236 = !lean_is_exclusive(x_231); +if (x_236 == 0) +{ +return x_231; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_231, 0); +x_238 = lean_ctor_get(x_231, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_231); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} +} +} +else +{ +uint64_t x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_240 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_241 = lean_ctor_get(x_222, 0); lean_inc(x_241); -x_242 = lean_ctor_get(x_240, 1); -lean_inc(x_242); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_243 = x_240; -} else { - lean_dec_ref(x_240); - x_243 = lean_box(0); -} -if (lean_is_scalar(x_243)) { - x_244 = lean_alloc_ctor(0, 2, 0); -} else { - x_244 = x_243; -} -lean_ctor_set(x_244, 0, x_241); -lean_ctor_set(x_244, 1, x_242); -return x_244; -} -else -{ -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_245 = lean_ctor_get(x_240, 0); +lean_dec(x_222); +x_242 = l_Lean_PersistentArray_append___rarg(x_15, x_241); +lean_dec(x_241); +x_243 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set_uint64(x_243, sizeof(void*)*1, x_240); +lean_ctor_set(x_221, 3, x_243); +x_244 = lean_st_ref_set(x_12, x_221, x_223); +x_245 = lean_ctor_get(x_244, 1); lean_inc(x_245); -x_246 = lean_ctor_get(x_240, 1); -lean_inc(x_246); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_247 = x_240; -} else { - lean_dec_ref(x_240); - x_247 = lean_box(0); -} -if (lean_is_scalar(x_247)) { - x_248 = lean_alloc_ctor(1, 2, 0); -} else { - x_248 = x_247; -} -lean_ctor_set(x_248, 0, x_245); -lean_ctor_set(x_248, 1, x_246); -return x_248; -} -} -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_249 = lean_ctor_get(x_215, 0); -x_250 = lean_ctor_get(x_215, 1); -x_251 = lean_ctor_get(x_215, 2); -x_252 = lean_ctor_get(x_215, 4); -x_253 = lean_ctor_get(x_215, 5); -x_254 = lean_ctor_get(x_215, 6); -x_255 = lean_ctor_get(x_215, 7); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_dec(x_215); -x_256 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_257 = lean_ctor_get(x_216, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_216)) { - lean_ctor_release(x_216, 0); - x_258 = x_216; -} else { - lean_dec_ref(x_216); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_15, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_261, 0, x_249); -lean_ctor_set(x_261, 1, x_250); -lean_ctor_set(x_261, 2, x_251); -lean_ctor_set(x_261, 3, x_260); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_255); -x_262 = lean_st_ref_set(x_12, x_261, x_217); -x_263 = lean_ctor_get(x_262, 1); -lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__7(x_210, x_9, x_10, x_11, x_12, x_263); +lean_dec(x_244); +x_246 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__7(x_214, x_9, x_10, x_11, x_12, x_245); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_246) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_247 = lean_ctor_get(x_246, 0); +lean_inc(x_247); +x_248 = lean_ctor_get(x_246, 1); +lean_inc(x_248); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_249 = x_246; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_246); + x_249 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_249)) { + x_250 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_250 = x_249; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_250, 0, x_247); +lean_ctor_set(x_250, 1, x_248); +return x_250; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_251 = lean_ctor_get(x_246, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_246, 1); +lean_inc(x_252); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_253 = x_246; +} else { + lean_dec_ref(x_246); + x_253 = lean_box(0); +} +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(1, 2, 0); +} else { + x_254 = x_253; +} +lean_ctor_set(x_254, 0, x_251); +lean_ctor_set(x_254, 1, x_252); +return x_254; +} +} +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_255 = lean_ctor_get(x_221, 0); +x_256 = lean_ctor_get(x_221, 1); +x_257 = lean_ctor_get(x_221, 2); +x_258 = lean_ctor_get(x_221, 4); +x_259 = lean_ctor_get(x_221, 5); +x_260 = lean_ctor_get(x_221, 6); +x_261 = lean_ctor_get(x_221, 7); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_221); +x_262 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_263 = lean_ctor_get(x_222, 0); +lean_inc(x_263); +if (lean_is_exclusive(x_222)) { + lean_ctor_release(x_222, 0); + x_264 = x_222; +} else { + lean_dec_ref(x_222); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_15, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_267, 0, x_255); +lean_ctor_set(x_267, 1, x_256); +lean_ctor_set(x_267, 2, x_257); +lean_ctor_set(x_267, 3, x_266); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_261); +x_268 = lean_st_ref_set(x_12, x_267, x_223); +x_269 = lean_ctor_get(x_268, 1); lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__7(x_214, x_9, x_10, x_11, x_12, x_269); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_214); +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_272 = x_271; + x_274 = x_273; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; +} else { + lean_dec_ref(x_270); + x_277 = lean_box(0); +} +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); +} else { + x_278 = x_277; +} +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_211); -lean_dec(x_211); -x_275 = lean_unbox_float(x_212); -lean_dec(x_212); -x_276 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_274, x_275, x_5, x_273, x_9, x_10, x_11, x_12, x_208); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_211); -lean_dec(x_211); -x_279 = lean_unbox_float(x_212); -lean_dec(x_212); -x_280 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_278, x_279, x_5, x_277, x_9, x_10, x_11, x_12, x_208); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_215); +lean_dec(x_215); +x_281 = lean_unbox_float(x_216); +lean_dec(x_216); +x_282 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_212); +return x_282; } } } @@ -50022,43 +50015,41 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_8); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); lean_dec(x_8); x_19 = lean_unbox_float(x_9); lean_dec(x_9); -x_20 = lean_unbox_float(x_10); -lean_dec(x_10); -x_21 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_18, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_15); -lean_dec(x_13); +x_20 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__2(x_1, x_16, x_3, x_4, x_5, x_6, x_17, x_18, x_19, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_14); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_21; +return x_20; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_7); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); lean_dec(x_7); x_19 = lean_unbox_float(x_8); lean_dec(x_8); -x_20 = lean_unbox_float(x_9); -lean_dec(x_9); -x_21 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_11); -lean_dec(x_6); -return x_21; +x_20 = l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3(x_1, x_16, x_3, x_4, x_5, x_17, x_18, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +return x_20; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -51131,8 +51122,6 @@ l_Std_Range_forIn_x27_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_ lean_mark_persistent(l_Std_Range_forIn_x27_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__5___closed__3); l_Std_Range_forIn_x27_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__5___closed__4 = _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__5___closed__4(); lean_mark_persistent(l_Std_Range_forIn_x27_loop___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__5___closed__4); -l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__2___closed__1(); -lean_mark_persistent(l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__2___closed__1); l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3___closed__1); l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__6___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Meta/SynthInstance.c b/stage0/stdlib/Lean/Meta/SynthInstance.c index c646c10a3f..42c4ac189a 100644 --- a/stage0/stdlib/Lean/Meta/SynthInstance.c +++ b/stage0/stdlib/Lean/Meta/SynthInstance.c @@ -26,7 +26,7 @@ static lean_object* l_Lean_Meta_SynthInstance_MkTableKey_instMonadMCtxM___closed static lean_object* l_Lean_Meta_SynthInstance_resume___lambda__1___closed__1; lean_object* l_Lean_Meta_recordSynthPendingFailure(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_anyM___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_cacheResult(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -43,7 +43,6 @@ static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_44__ uint8_t l_Lean_PersistentHashMap_contains___at_Lean_NameSSet_contains___spec__2(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___lambda__3___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_mkGeneratorNode_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_profiler; static lean_object* l_Lean_throwMaxRecDepthAt___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__3___closed__4; lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_Lean_mkAppN(lean_object*, lean_object*); @@ -198,7 +197,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_prepro LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_tryResolve___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_addAnswer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_synthInstance_x3f___lambda__4___closed__7; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_mkTableKeyFor___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Exception_toMessageData(lean_object*); uint64_t l___private_Lean_Meta_Basic_0__Lean_Meta_hashSynthInstanceCacheKey____x40_Lean_Meta_Basic___hyg_1118_(lean_object*); @@ -220,7 +219,6 @@ static lean_object* l_Lean_Meta_SynthInstance_wakeUp___closed__2; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_mkTableKey(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_generate___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2___closed__2; static lean_object* l_Lean_Meta_SynthInstance_addAnswer___lambda__4___closed__3; static lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___lambda__3___closed__5; LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_tryResolve___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -240,11 +238,11 @@ static lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstan LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_getResult___boxed(lean_object*); size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_getNextToResume___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_10003____closed__2; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__2___boxed(lean_object**); static lean_object* l_Lean_Meta_SynthInstance_generate___lambda__1___closed__1; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_DHashMap_Internal_AssocList_replace___at_Lean_Meta_AbstractMVars_abstractExprMVars___spec__7(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_synthInstance_x3f___lambda__4___closed__3; lean_object* l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -292,7 +290,7 @@ uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___private_Lean_Meta_Abst LEAN_EXPORT lean_object* l_ReaderT_bind___at_Lean_Meta_SynthInstance_newSubgoal___spec__6___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_assignOutParams___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_mkTableKey___at_Lean_Meta_SynthInstance_mkTableKeyFor___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewMCtxDepth___at_Lean_Meta_matchesInstance___spec__1___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofFormat(lean_object*); @@ -333,10 +331,10 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthP lean_object* lean_st_mk_ref(lean_object*, lean_object*); LEAN_EXPORT lean_object* lean_synth_pending(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_addAnswer___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_SynthInstance_getInstances___spec__7(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_to_list(lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_abstractMVars(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withMVarContextImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_consume(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -493,7 +491,7 @@ extern lean_object* l_Lean_crossEmoji; static lean_object* l_Lean_Meta_synthInstance_x3f___lambda__4___closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_instInhabitedGeneratorNode; static lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_mkAnswer___lambda__2___closed__3; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_synthInstance_x3f___lambda__4___closed__9; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Meta_SynthInstance_generate___spec__3___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_filterMapM___at_Lean_Meta_SynthInstance_getInstances___spec__6___closed__1; @@ -521,7 +519,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_mkTableKey___rarg___lambda__2 lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); static lean_object* l_Lean_Meta_SynthInstance_instInhabitedSynthM___rarg___closed__2; static lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___lambda__3___closed__7; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_tryResolve___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_MVarId_getDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -555,7 +553,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_generate___lambda__3___boxed( static lean_object* l_Lean_Meta_SynthInstance_addAnswer___closed__1; lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___private_Lean_Meta_AbstractMVars_0__Lean_Meta_AbstractMVars_abstractLevelMVars___spec__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___lambda__2___closed__3; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_SynthInstance_addAnswer___lambda__4___closed__11; static lean_object* l_Lean_throwMaxRecDepthAt___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__3___closed__3; lean_object* l_Lean_indentExpr(lean_object*); @@ -579,11 +577,11 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_applyA lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_ptrEqList___rarg(lean_object*, lean_object*); uint64_t lean_uint64_xor(uint64_t, uint64_t); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_cacheResult___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_5____closed__1; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_SynthInstance_addAnswer___lambda__1___closed__2; static lean_object* l_Lean_Meta_SynthInstance_generate___closed__1; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -610,7 +608,7 @@ static double l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spe lean_object* l_Lean_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_addAnswer___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_back_x21___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_mkAnswer___lambda__2___closed__1; static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_83____closed__3; lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); @@ -688,7 +686,7 @@ LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at_Lean_Met static lean_object* l_Lean_Meta_SynthInstance_generate___lambda__4___closed__2; static lean_object* l_Lean_Meta_SynthInstance_MkTableKey_normLevel___closed__1; lean_object* l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_SynthInstance_addAnswer___lambda__4___closed__4; static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_5____closed__9; static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_83____closed__1; @@ -6695,69 +6693,36 @@ x_3 = l_Float_ofScientific(x_1, x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2___closed__2() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_18 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2___closed__1; +x_19 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_19, 0, x_1); +lean_ctor_set(x_19, 1, x_3); +lean_ctor_set_float(x_19, sizeof(void*)*2, x_18); +lean_ctor_set_float(x_19, sizeof(void*)*2 + 8, x_18); +lean_ctor_set_uint8(x_19, sizeof(void*)*2 + 16, x_2); +x_20 = lean_box(0); +x_21 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__1(x_4, x_5, x_10, x_6, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +return x_21; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { -_start: +else { -double x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; -x_19 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_20 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_20, 0, x_1); -lean_ctor_set(x_20, 1, x_3); -lean_ctor_set_float(x_20, sizeof(void*)*2, x_19); -lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_19); -lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); -x_21 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2___closed__2; -x_22 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_21); -if (x_22 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_23; lean_object* x_24; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_22, 0, x_1); +lean_ctor_set(x_22, 1, x_3); +lean_ctor_set_float(x_22, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_22, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_22, sizeof(void*)*2 + 16, x_2); x_23 = lean_box(0); -x_24 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__1(x_4, x_5, x_11, x_6, x_20, x_23, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +x_24 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__1(x_4, x_5, x_10, x_6, x_22, x_23, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_24; } -else -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; -lean_dec(x_20); -x_25 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_25, 0, x_1); -lean_ctor_set(x_25, 1, x_3); -lean_ctor_set_float(x_25, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_25, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_25, sizeof(void*)*2 + 16, x_2); -x_26 = lean_box(0); -x_27 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__1(x_4, x_5, x_11, x_6, x_25, x_26, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -return x_27; -} -} -else -{ -lean_object* x_28; lean_object* x_29; lean_object* x_30; -lean_dec(x_20); -x_28 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_28, 0, x_1); -lean_ctor_set(x_28, 1, x_3); -lean_ctor_set_float(x_28, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_28, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_28, sizeof(void*)*2 + 16, x_2); -x_29 = lean_box(0); -x_30 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__1(x_4, x_5, x_11, x_6, x_28, x_29, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -return x_30; -} } } static lean_object* _init_l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3___closed__1() { @@ -6777,52 +6742,52 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_19; lean_object* x_20; -x_19 = lean_ctor_get(x_16, 5); -lean_inc(x_19); -lean_inc(x_17); +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_15, 5); +lean_inc(x_18); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_20 = lean_apply_8(x_10, x_5, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -if (lean_obj_tag(x_20) == 0) +x_19 = lean_apply_8(x_9, x_5, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +if (lean_obj_tag(x_19) == 0) { -lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_21 = lean_ctor_get(x_20, 0); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); -x_22 = lean_ctor_get(x_20, 1); -lean_inc(x_22); -lean_dec(x_20); -x_23 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2(x_1, x_2, x_3, x_4, x_19, x_5, x_6, x_7, x_8, x_9, x_21, x_12, x_13, x_14, x_15, x_16, x_17, x_22); -lean_dec(x_17); -lean_dec(x_15); +lean_dec(x_19); +x_22 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2(x_1, x_2, x_3, x_4, x_18, x_5, x_6, x_7, x_8, x_20, x_11, x_12, x_13, x_14, x_15, x_16, x_21); +lean_dec(x_16); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_23; +return x_22; } else { -lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_24 = lean_ctor_get(x_20, 1); -lean_inc(x_24); -lean_dec(x_20); -x_25 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3___closed__2; -x_26 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2(x_1, x_2, x_3, x_4, x_19, x_5, x_6, x_7, x_8, x_9, x_25, x_12, x_13, x_14, x_15, x_16, x_17, x_24); -lean_dec(x_17); -lean_dec(x_15); +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_19, 1); +lean_inc(x_23); +lean_dec(x_19); +x_24 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3___closed__2; +x_25 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2(x_1, x_2, x_3, x_4, x_18, x_5, x_6, x_7, x_8, x_24, x_11, x_12, x_13, x_14, x_15, x_16, x_23); +lean_dec(x_16); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_26; +return x_25; } } } @@ -6886,255 +6851,255 @@ x_19 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___ x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_19); if (x_20 == 0) { -lean_object* x_21; lean_object* x_22; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; -x_117 = lean_io_mono_nanos_now(x_18); -x_118 = lean_ctor_get(x_117, 0); -lean_inc(x_118); -x_119 = lean_ctor_get(x_117, 1); -lean_inc(x_119); -lean_dec(x_117); +lean_object* x_21; lean_object* x_22; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; +x_125 = lean_io_mono_nanos_now(x_18); +x_126 = lean_ctor_get(x_125, 0); +lean_inc(x_126); +x_127 = lean_ctor_get(x_125, 1); +lean_inc(x_127); +lean_dec(x_125); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_120 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_119); -if (lean_obj_tag(x_120) == 0) +x_128 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_127); +if (lean_obj_tag(x_128) == 0) { -uint8_t x_121; -x_121 = !lean_is_exclusive(x_120); -if (x_121 == 0) +uint8_t x_129; +x_129 = !lean_is_exclusive(x_128); +if (x_129 == 0) { -lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; uint8_t x_126; -x_122 = lean_ctor_get(x_120, 0); -x_123 = lean_ctor_get(x_120, 1); -x_124 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_124, 0, x_122); -x_125 = lean_io_mono_nanos_now(x_123); -x_126 = !lean_is_exclusive(x_125); -if (x_126 == 0) +lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; uint8_t x_134; +x_130 = lean_ctor_get(x_128, 0); +x_131 = lean_ctor_get(x_128, 1); +x_132 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_132, 0, x_130); +x_133 = lean_io_mono_nanos_now(x_131); +x_134 = !lean_is_exclusive(x_133); +if (x_134 == 0) { -lean_object* x_127; lean_object* x_128; uint8_t x_129; lean_object* x_130; double x_131; double x_132; double x_133; double x_134; double x_135; lean_object* x_136; lean_object* x_137; -x_127 = lean_ctor_get(x_125, 0); -x_128 = lean_ctor_get(x_125, 1); -x_129 = 0; -x_130 = lean_unsigned_to_nat(0u); -x_131 = l_Float_ofScientific(x_118, x_129, x_130); -lean_dec(x_118); -x_132 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_133 = lean_float_div(x_131, x_132); -x_134 = l_Float_ofScientific(x_127, x_129, x_130); -lean_dec(x_127); -x_135 = lean_float_div(x_134, x_132); -x_136 = lean_box_float(x_133); -x_137 = lean_box_float(x_135); -lean_ctor_set(x_125, 1, x_137); -lean_ctor_set(x_125, 0, x_136); -lean_ctor_set(x_120, 1, x_125); -lean_ctor_set(x_120, 0, x_124); -x_21 = x_120; -x_22 = x_128; -goto block_116; +lean_object* x_135; lean_object* x_136; uint8_t x_137; lean_object* x_138; double x_139; double x_140; double x_141; double x_142; double x_143; lean_object* x_144; lean_object* x_145; +x_135 = lean_ctor_get(x_133, 0); +x_136 = lean_ctor_get(x_133, 1); +x_137 = 0; +x_138 = lean_unsigned_to_nat(0u); +x_139 = l_Float_ofScientific(x_126, x_137, x_138); +lean_dec(x_126); +x_140 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_141 = lean_float_div(x_139, x_140); +x_142 = l_Float_ofScientific(x_135, x_137, x_138); +lean_dec(x_135); +x_143 = lean_float_div(x_142, x_140); +x_144 = lean_box_float(x_141); +x_145 = lean_box_float(x_143); +lean_ctor_set(x_133, 1, x_145); +lean_ctor_set(x_133, 0, x_144); +lean_ctor_set(x_128, 1, x_133); +lean_ctor_set(x_128, 0, x_132); +x_21 = x_128; +x_22 = x_136; +goto block_124; } else { -lean_object* x_138; lean_object* x_139; uint8_t x_140; lean_object* x_141; double x_142; double x_143; double x_144; double x_145; double x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; -x_138 = lean_ctor_get(x_125, 0); -x_139 = lean_ctor_get(x_125, 1); -lean_inc(x_139); -lean_inc(x_138); -lean_dec(x_125); -x_140 = 0; -x_141 = lean_unsigned_to_nat(0u); -x_142 = l_Float_ofScientific(x_118, x_140, x_141); -lean_dec(x_118); -x_143 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_144 = lean_float_div(x_142, x_143); -x_145 = l_Float_ofScientific(x_138, x_140, x_141); -lean_dec(x_138); -x_146 = lean_float_div(x_145, x_143); -x_147 = lean_box_float(x_144); -x_148 = lean_box_float(x_146); -x_149 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_149, 0, x_147); -lean_ctor_set(x_149, 1, x_148); -lean_ctor_set(x_120, 1, x_149); -lean_ctor_set(x_120, 0, x_124); -x_21 = x_120; -x_22 = x_139; -goto block_116; +lean_object* x_146; lean_object* x_147; uint8_t x_148; lean_object* x_149; double x_150; double x_151; double x_152; double x_153; double x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; +x_146 = lean_ctor_get(x_133, 0); +x_147 = lean_ctor_get(x_133, 1); +lean_inc(x_147); +lean_inc(x_146); +lean_dec(x_133); +x_148 = 0; +x_149 = lean_unsigned_to_nat(0u); +x_150 = l_Float_ofScientific(x_126, x_148, x_149); +lean_dec(x_126); +x_151 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_152 = lean_float_div(x_150, x_151); +x_153 = l_Float_ofScientific(x_146, x_148, x_149); +lean_dec(x_146); +x_154 = lean_float_div(x_153, x_151); +x_155 = lean_box_float(x_152); +x_156 = lean_box_float(x_154); +x_157 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_157, 0, x_155); +lean_ctor_set(x_157, 1, x_156); +lean_ctor_set(x_128, 1, x_157); +lean_ctor_set(x_128, 0, x_132); +x_21 = x_128; +x_22 = x_147; +goto block_124; } } else { -lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; uint8_t x_157; lean_object* x_158; double x_159; double x_160; double x_161; double x_162; double x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; -x_150 = lean_ctor_get(x_120, 0); -x_151 = lean_ctor_get(x_120, 1); -lean_inc(x_151); -lean_inc(x_150); -lean_dec(x_120); -x_152 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_152, 0, x_150); -x_153 = lean_io_mono_nanos_now(x_151); -x_154 = lean_ctor_get(x_153, 0); -lean_inc(x_154); -x_155 = lean_ctor_get(x_153, 1); -lean_inc(x_155); -if (lean_is_exclusive(x_153)) { - lean_ctor_release(x_153, 0); - lean_ctor_release(x_153, 1); - x_156 = x_153; +lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; lean_object* x_166; double x_167; double x_168; double x_169; double x_170; double x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; +x_158 = lean_ctor_get(x_128, 0); +x_159 = lean_ctor_get(x_128, 1); +lean_inc(x_159); +lean_inc(x_158); +lean_dec(x_128); +x_160 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_160, 0, x_158); +x_161 = lean_io_mono_nanos_now(x_159); +x_162 = lean_ctor_get(x_161, 0); +lean_inc(x_162); +x_163 = lean_ctor_get(x_161, 1); +lean_inc(x_163); +if (lean_is_exclusive(x_161)) { + lean_ctor_release(x_161, 0); + lean_ctor_release(x_161, 1); + x_164 = x_161; } else { - lean_dec_ref(x_153); - x_156 = lean_box(0); + lean_dec_ref(x_161); + x_164 = lean_box(0); } -x_157 = 0; -x_158 = lean_unsigned_to_nat(0u); -x_159 = l_Float_ofScientific(x_118, x_157, x_158); -lean_dec(x_118); -x_160 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_161 = lean_float_div(x_159, x_160); -x_162 = l_Float_ofScientific(x_154, x_157, x_158); -lean_dec(x_154); -x_163 = lean_float_div(x_162, x_160); -x_164 = lean_box_float(x_161); -x_165 = lean_box_float(x_163); -if (lean_is_scalar(x_156)) { - x_166 = lean_alloc_ctor(0, 2, 0); +x_165 = 0; +x_166 = lean_unsigned_to_nat(0u); +x_167 = l_Float_ofScientific(x_126, x_165, x_166); +lean_dec(x_126); +x_168 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_169 = lean_float_div(x_167, x_168); +x_170 = l_Float_ofScientific(x_162, x_165, x_166); +lean_dec(x_162); +x_171 = lean_float_div(x_170, x_168); +x_172 = lean_box_float(x_169); +x_173 = lean_box_float(x_171); +if (lean_is_scalar(x_164)) { + x_174 = lean_alloc_ctor(0, 2, 0); } else { - x_166 = x_156; + x_174 = x_164; } -lean_ctor_set(x_166, 0, x_164); -lean_ctor_set(x_166, 1, x_165); -x_167 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_167, 0, x_152); -lean_ctor_set(x_167, 1, x_166); -x_21 = x_167; -x_22 = x_155; -goto block_116; +lean_ctor_set(x_174, 0, x_172); +lean_ctor_set(x_174, 1, x_173); +x_175 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_175, 0, x_160); +lean_ctor_set(x_175, 1, x_174); +x_21 = x_175; +x_22 = x_163; +goto block_124; } } else { -uint8_t x_168; -x_168 = !lean_is_exclusive(x_120); -if (x_168 == 0) +uint8_t x_176; +x_176 = !lean_is_exclusive(x_128); +if (x_176 == 0) { -lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; uint8_t x_173; -x_169 = lean_ctor_get(x_120, 0); -x_170 = lean_ctor_get(x_120, 1); -x_171 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_171, 0, x_169); -x_172 = lean_io_mono_nanos_now(x_170); -x_173 = !lean_is_exclusive(x_172); -if (x_173 == 0) +lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; uint8_t x_181; +x_177 = lean_ctor_get(x_128, 0); +x_178 = lean_ctor_get(x_128, 1); +x_179 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_179, 0, x_177); +x_180 = lean_io_mono_nanos_now(x_178); +x_181 = !lean_is_exclusive(x_180); +if (x_181 == 0) { -lean_object* x_174; lean_object* x_175; uint8_t x_176; lean_object* x_177; double x_178; double x_179; double x_180; double x_181; double x_182; lean_object* x_183; lean_object* x_184; -x_174 = lean_ctor_get(x_172, 0); -x_175 = lean_ctor_get(x_172, 1); -x_176 = 0; -x_177 = lean_unsigned_to_nat(0u); -x_178 = l_Float_ofScientific(x_118, x_176, x_177); -lean_dec(x_118); -x_179 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_180 = lean_float_div(x_178, x_179); -x_181 = l_Float_ofScientific(x_174, x_176, x_177); -lean_dec(x_174); -x_182 = lean_float_div(x_181, x_179); -x_183 = lean_box_float(x_180); -x_184 = lean_box_float(x_182); -lean_ctor_set(x_172, 1, x_184); -lean_ctor_set(x_172, 0, x_183); -lean_ctor_set_tag(x_120, 0); -lean_ctor_set(x_120, 1, x_172); -lean_ctor_set(x_120, 0, x_171); -x_21 = x_120; -x_22 = x_175; -goto block_116; +lean_object* x_182; lean_object* x_183; uint8_t x_184; lean_object* x_185; double x_186; double x_187; double x_188; double x_189; double x_190; lean_object* x_191; lean_object* x_192; +x_182 = lean_ctor_get(x_180, 0); +x_183 = lean_ctor_get(x_180, 1); +x_184 = 0; +x_185 = lean_unsigned_to_nat(0u); +x_186 = l_Float_ofScientific(x_126, x_184, x_185); +lean_dec(x_126); +x_187 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_188 = lean_float_div(x_186, x_187); +x_189 = l_Float_ofScientific(x_182, x_184, x_185); +lean_dec(x_182); +x_190 = lean_float_div(x_189, x_187); +x_191 = lean_box_float(x_188); +x_192 = lean_box_float(x_190); +lean_ctor_set(x_180, 1, x_192); +lean_ctor_set(x_180, 0, x_191); +lean_ctor_set_tag(x_128, 0); +lean_ctor_set(x_128, 1, x_180); +lean_ctor_set(x_128, 0, x_179); +x_21 = x_128; +x_22 = x_183; +goto block_124; } else { -lean_object* x_185; lean_object* x_186; uint8_t x_187; lean_object* x_188; double x_189; double x_190; double x_191; double x_192; double x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; -x_185 = lean_ctor_get(x_172, 0); -x_186 = lean_ctor_get(x_172, 1); -lean_inc(x_186); -lean_inc(x_185); -lean_dec(x_172); -x_187 = 0; -x_188 = lean_unsigned_to_nat(0u); -x_189 = l_Float_ofScientific(x_118, x_187, x_188); -lean_dec(x_118); -x_190 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_191 = lean_float_div(x_189, x_190); -x_192 = l_Float_ofScientific(x_185, x_187, x_188); -lean_dec(x_185); -x_193 = lean_float_div(x_192, x_190); -x_194 = lean_box_float(x_191); -x_195 = lean_box_float(x_193); -x_196 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_196, 0, x_194); -lean_ctor_set(x_196, 1, x_195); -lean_ctor_set_tag(x_120, 0); -lean_ctor_set(x_120, 1, x_196); -lean_ctor_set(x_120, 0, x_171); -x_21 = x_120; -x_22 = x_186; -goto block_116; +lean_object* x_193; lean_object* x_194; uint8_t x_195; lean_object* x_196; double x_197; double x_198; double x_199; double x_200; double x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; +x_193 = lean_ctor_get(x_180, 0); +x_194 = lean_ctor_get(x_180, 1); +lean_inc(x_194); +lean_inc(x_193); +lean_dec(x_180); +x_195 = 0; +x_196 = lean_unsigned_to_nat(0u); +x_197 = l_Float_ofScientific(x_126, x_195, x_196); +lean_dec(x_126); +x_198 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_199 = lean_float_div(x_197, x_198); +x_200 = l_Float_ofScientific(x_193, x_195, x_196); +lean_dec(x_193); +x_201 = lean_float_div(x_200, x_198); +x_202 = lean_box_float(x_199); +x_203 = lean_box_float(x_201); +x_204 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_204, 0, x_202); +lean_ctor_set(x_204, 1, x_203); +lean_ctor_set_tag(x_128, 0); +lean_ctor_set(x_128, 1, x_204); +lean_ctor_set(x_128, 0, x_179); +x_21 = x_128; +x_22 = x_194; +goto block_124; } } else { -lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; uint8_t x_204; lean_object* x_205; double x_206; double x_207; double x_208; double x_209; double x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; -x_197 = lean_ctor_get(x_120, 0); -x_198 = lean_ctor_get(x_120, 1); -lean_inc(x_198); -lean_inc(x_197); -lean_dec(x_120); -x_199 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_199, 0, x_197); -x_200 = lean_io_mono_nanos_now(x_198); -x_201 = lean_ctor_get(x_200, 0); -lean_inc(x_201); -x_202 = lean_ctor_get(x_200, 1); -lean_inc(x_202); -if (lean_is_exclusive(x_200)) { - lean_ctor_release(x_200, 0); - lean_ctor_release(x_200, 1); - x_203 = x_200; +lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; uint8_t x_212; lean_object* x_213; double x_214; double x_215; double x_216; double x_217; double x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; +x_205 = lean_ctor_get(x_128, 0); +x_206 = lean_ctor_get(x_128, 1); +lean_inc(x_206); +lean_inc(x_205); +lean_dec(x_128); +x_207 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_207, 0, x_205); +x_208 = lean_io_mono_nanos_now(x_206); +x_209 = lean_ctor_get(x_208, 0); +lean_inc(x_209); +x_210 = lean_ctor_get(x_208, 1); +lean_inc(x_210); +if (lean_is_exclusive(x_208)) { + lean_ctor_release(x_208, 0); + lean_ctor_release(x_208, 1); + x_211 = x_208; } else { - lean_dec_ref(x_200); - x_203 = lean_box(0); + lean_dec_ref(x_208); + x_211 = lean_box(0); } -x_204 = 0; -x_205 = lean_unsigned_to_nat(0u); -x_206 = l_Float_ofScientific(x_118, x_204, x_205); -lean_dec(x_118); -x_207 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_208 = lean_float_div(x_206, x_207); -x_209 = l_Float_ofScientific(x_201, x_204, x_205); -lean_dec(x_201); -x_210 = lean_float_div(x_209, x_207); -x_211 = lean_box_float(x_208); -x_212 = lean_box_float(x_210); -if (lean_is_scalar(x_203)) { - x_213 = lean_alloc_ctor(0, 2, 0); +x_212 = 0; +x_213 = lean_unsigned_to_nat(0u); +x_214 = l_Float_ofScientific(x_126, x_212, x_213); +lean_dec(x_126); +x_215 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_216 = lean_float_div(x_214, x_215); +x_217 = l_Float_ofScientific(x_209, x_212, x_213); +lean_dec(x_209); +x_218 = lean_float_div(x_217, x_215); +x_219 = lean_box_float(x_216); +x_220 = lean_box_float(x_218); +if (lean_is_scalar(x_211)) { + x_221 = lean_alloc_ctor(0, 2, 0); } else { - x_213 = x_203; + x_221 = x_211; } -lean_ctor_set(x_213, 0, x_211); -lean_ctor_set(x_213, 1, x_212); -x_214 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_214, 0, x_199); -lean_ctor_set(x_214, 1, x_213); -x_21 = x_214; -x_22 = x_202; -goto block_116; +lean_ctor_set(x_221, 0, x_219); +lean_ctor_set(x_221, 1, x_220); +x_222 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_222, 0, x_207); +lean_ctor_set(x_222, 1, x_221); +x_21 = x_222; +x_22 = x_210; +goto block_124; } } -block_116: +block_124: { -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_96; uint8_t x_97; +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; uint8_t x_29; x_23 = lean_ctor_get(x_21, 1); lean_inc(x_23); x_24 = lean_ctor_get(x_21, 0); @@ -7145,14 +7110,28 @@ lean_inc(x_25); x_26 = lean_ctor_get(x_23, 1); lean_inc(x_26); lean_dec(x_23); -x_96 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__2; -x_97 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_96); -if (x_97 == 0) +x_27 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__2; +x_28 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_27); +if (x_28 == 0) { -uint8_t x_98; -x_98 = 0; -x_27 = x_98; -goto block_95; +if (x_6 == 0) +{ +uint8_t x_94; +x_94 = 0; +x_29 = x_94; +goto block_93; +} +else +{ +lean_object* x_95; double x_96; double x_97; lean_object* x_98; +x_95 = lean_box(0); +x_96 = lean_unbox_float(x_25); +lean_dec(x_25); +x_97 = lean_unbox_float(x_26); +lean_dec(x_26); +x_98 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3(x_2, x_3, x_4, x_17, x_24, x_28, x_96, x_97, x_5, x_95, x_9, x_10, x_11, x_12, x_13, x_14, x_22); +return x_98; +} } else { @@ -7162,6 +7141,8 @@ x_100 = lean_unbox_float(x_25); x_101 = lean_float_sub(x_99, x_100); if (x_20 == 0) { +if (x_6 == 0) +{ lean_object* x_102; lean_object* x_103; uint8_t x_104; lean_object* x_105; double x_106; double x_107; double x_108; uint8_t x_109; x_102 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__3; x_103 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_102); @@ -7172,62 +7153,86 @@ lean_dec(x_103); x_107 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__4; x_108 = lean_float_div(x_106, x_107); x_109 = lean_float_decLt(x_108, x_101); -x_27 = x_109; -goto block_95; +x_29 = x_109; +goto block_93; } else { -lean_object* x_110; lean_object* x_111; uint8_t x_112; lean_object* x_113; double x_114; uint8_t x_115; -x_110 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__3; -x_111 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_110); -x_112 = 0; -x_113 = lean_unsigned_to_nat(0u); -x_114 = l_Float_ofScientific(x_111, x_112, x_113); -lean_dec(x_111); -x_115 = lean_float_decLt(x_114, x_101); -x_27 = x_115; -goto block_95; +lean_object* x_110; double x_111; double x_112; lean_object* x_113; +x_110 = lean_box(0); +x_111 = lean_unbox_float(x_25); +lean_dec(x_25); +x_112 = lean_unbox_float(x_26); +lean_dec(x_26); +x_113 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3(x_2, x_3, x_4, x_17, x_24, x_28, x_111, x_112, x_5, x_110, x_9, x_10, x_11, x_12, x_13, x_14, x_22); +return x_113; } } -block_95: +else { if (x_6 == 0) { -if (x_27 == 0) +lean_object* x_114; lean_object* x_115; uint8_t x_116; lean_object* x_117; double x_118; uint8_t x_119; +x_114 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__3; +x_115 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_114); +x_116 = 0; +x_117 = lean_unsigned_to_nat(0u); +x_118 = l_Float_ofScientific(x_115, x_116, x_117); +lean_dec(x_115); +x_119 = lean_float_decLt(x_118, x_101); +x_29 = x_119; +goto block_93; +} +else { -lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; +lean_object* x_120; double x_121; double x_122; lean_object* x_123; +x_120 = lean_box(0); +x_121 = lean_unbox_float(x_25); +lean_dec(x_25); +x_122 = lean_unbox_float(x_26); +lean_dec(x_26); +x_123 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3(x_2, x_3, x_4, x_17, x_24, x_28, x_121, x_122, x_5, x_120, x_9, x_10, x_11, x_12, x_13, x_14, x_22); +return x_123; +} +} +} +block_93: +{ +if (x_29 == 0) +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; lean_dec(x_26); lean_dec(x_25); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_28 = lean_st_ref_take(x_14, x_22); -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -x_30 = lean_ctor_get(x_29, 3); -lean_inc(x_30); -x_31 = lean_ctor_get(x_28, 1); +x_30 = lean_st_ref_take(x_14, x_22); +x_31 = lean_ctor_get(x_30, 0); lean_inc(x_31); -lean_dec(x_28); -x_32 = !lean_is_exclusive(x_29); -if (x_32 == 0) -{ -lean_object* x_33; uint8_t x_34; -x_33 = lean_ctor_get(x_29, 3); -lean_dec(x_33); -x_34 = !lean_is_exclusive(x_30); +x_32 = lean_ctor_get(x_31, 3); +lean_inc(x_32); +x_33 = lean_ctor_get(x_30, 1); +lean_inc(x_33); +lean_dec(x_30); +x_34 = !lean_is_exclusive(x_31); if (x_34 == 0) { -lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_35 = lean_ctor_get(x_30, 0); -x_36 = l_Lean_PersistentArray_append___rarg(x_17, x_35); +lean_object* x_35; uint8_t x_36; +x_35 = lean_ctor_get(x_31, 3); lean_dec(x_35); -lean_ctor_set(x_30, 0, x_36); -x_37 = lean_st_ref_set(x_14, x_29, x_31); -x_38 = lean_ctor_get(x_37, 1); -lean_inc(x_38); +x_36 = !lean_is_exclusive(x_32); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_37 = lean_ctor_get(x_32, 0); +x_38 = l_Lean_PersistentArray_append___rarg(x_17, x_37); lean_dec(x_37); -x_39 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_newSubgoal___spec__12(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_38); +lean_ctor_set(x_32, 0, x_38); +x_39 = lean_st_ref_set(x_14, x_31, x_33); +x_40 = lean_ctor_get(x_39, 1); +lean_inc(x_40); +lean_dec(x_39); +x_41 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_newSubgoal___spec__12(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_40); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); @@ -7235,177 +7240,177 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_24); -if (lean_obj_tag(x_39) == 0) +if (lean_obj_tag(x_41) == 0) { -uint8_t x_40; -x_40 = !lean_is_exclusive(x_39); -if (x_40 == 0) +uint8_t x_42; +x_42 = !lean_is_exclusive(x_41); +if (x_42 == 0) { -return x_39; +return x_41; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_39, 0); -x_42 = lean_ctor_get(x_39, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_39); -x_43 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_42); -return x_43; +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_41, 0); +x_44 = lean_ctor_get(x_41, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_41); +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; } } else { -uint8_t x_44; -x_44 = !lean_is_exclusive(x_39); -if (x_44 == 0) +uint8_t x_46; +x_46 = !lean_is_exclusive(x_41); +if (x_46 == 0) { -return x_39; +return x_41; } else { -lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_45 = lean_ctor_get(x_39, 0); -x_46 = lean_ctor_get(x_39, 1); -lean_inc(x_46); -lean_inc(x_45); -lean_dec(x_39); -x_47 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_47, 0, x_45); -lean_ctor_set(x_47, 1, x_46); -return x_47; +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_41, 0); +x_48 = lean_ctor_get(x_41, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_41); +x_49 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set(x_49, 1, x_48); +return x_49; } } } else { -uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); -x_49 = lean_ctor_get(x_30, 0); -lean_inc(x_49); -lean_dec(x_30); -x_50 = l_Lean_PersistentArray_append___rarg(x_17, x_49); -lean_dec(x_49); -x_51 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_51, 0, x_50); -lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); -lean_ctor_set(x_29, 3, x_51); -x_52 = lean_st_ref_set(x_14, x_29, x_31); -x_53 = lean_ctor_get(x_52, 1); -lean_inc(x_53); -lean_dec(x_52); -x_54 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_newSubgoal___spec__12(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_53); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_24); -if (lean_obj_tag(x_54) == 0) -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_55 = lean_ctor_get(x_54, 0); +uint64_t x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_50 = lean_ctor_get_uint64(x_32, sizeof(void*)*1); +x_51 = lean_ctor_get(x_32, 0); +lean_inc(x_51); +lean_dec(x_32); +x_52 = l_Lean_PersistentArray_append___rarg(x_17, x_51); +lean_dec(x_51); +x_53 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_53, 0, x_52); +lean_ctor_set_uint64(x_53, sizeof(void*)*1, x_50); +lean_ctor_set(x_31, 3, x_53); +x_54 = lean_st_ref_set(x_14, x_31, x_33); +x_55 = lean_ctor_get(x_54, 1); lean_inc(x_55); -x_56 = lean_ctor_get(x_54, 1); -lean_inc(x_56); -if (lean_is_exclusive(x_54)) { - lean_ctor_release(x_54, 0); - lean_ctor_release(x_54, 1); - x_57 = x_54; +lean_dec(x_54); +x_56 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_newSubgoal___spec__12(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_55); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_24); +if (lean_obj_tag(x_56) == 0) +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_57 = lean_ctor_get(x_56, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_56, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_56)) { + lean_ctor_release(x_56, 0); + lean_ctor_release(x_56, 1); + x_59 = x_56; } else { - lean_dec_ref(x_54); - x_57 = lean_box(0); + lean_dec_ref(x_56); + x_59 = lean_box(0); } -if (lean_is_scalar(x_57)) { - x_58 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(0, 2, 0); } else { - x_58 = x_57; + x_60 = x_59; } -lean_ctor_set(x_58, 0, x_55); -lean_ctor_set(x_58, 1, x_56); -return x_58; +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_58); +return x_60; } else { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; -x_59 = lean_ctor_get(x_54, 0); -lean_inc(x_59); -x_60 = lean_ctor_get(x_54, 1); -lean_inc(x_60); -if (lean_is_exclusive(x_54)) { - lean_ctor_release(x_54, 0); - lean_ctor_release(x_54, 1); - x_61 = x_54; +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_61 = lean_ctor_get(x_56, 0); +lean_inc(x_61); +x_62 = lean_ctor_get(x_56, 1); +lean_inc(x_62); +if (lean_is_exclusive(x_56)) { + lean_ctor_release(x_56, 0); + lean_ctor_release(x_56, 1); + x_63 = x_56; } else { - lean_dec_ref(x_54); - x_61 = lean_box(0); + lean_dec_ref(x_56); + x_63 = lean_box(0); } -if (lean_is_scalar(x_61)) { - x_62 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_63)) { + x_64 = lean_alloc_ctor(1, 2, 0); } else { - x_62 = x_61; + x_64 = x_63; } -lean_ctor_set(x_62, 0, x_59); -lean_ctor_set(x_62, 1, x_60); -return x_62; +lean_ctor_set(x_64, 0, x_61); +lean_ctor_set(x_64, 1, x_62); +return x_64; } } } else { -lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_63 = lean_ctor_get(x_29, 0); -x_64 = lean_ctor_get(x_29, 1); -x_65 = lean_ctor_get(x_29, 2); -x_66 = lean_ctor_get(x_29, 4); -x_67 = lean_ctor_get(x_29, 5); -x_68 = lean_ctor_get(x_29, 6); -x_69 = lean_ctor_get(x_29, 7); +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; uint64_t x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_65 = lean_ctor_get(x_31, 0); +x_66 = lean_ctor_get(x_31, 1); +x_67 = lean_ctor_get(x_31, 2); +x_68 = lean_ctor_get(x_31, 4); +x_69 = lean_ctor_get(x_31, 5); +x_70 = lean_ctor_get(x_31, 6); +x_71 = lean_ctor_get(x_31, 7); +lean_inc(x_71); +lean_inc(x_70); lean_inc(x_69); lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); -lean_inc(x_64); -lean_inc(x_63); -lean_dec(x_29); -x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); -x_71 = lean_ctor_get(x_30, 0); -lean_inc(x_71); -if (lean_is_exclusive(x_30)) { - lean_ctor_release(x_30, 0); - x_72 = x_30; +lean_dec(x_31); +x_72 = lean_ctor_get_uint64(x_32, sizeof(void*)*1); +x_73 = lean_ctor_get(x_32, 0); +lean_inc(x_73); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + x_74 = x_32; } else { - lean_dec_ref(x_30); - x_72 = lean_box(0); + lean_dec_ref(x_32); + x_74 = lean_box(0); } -x_73 = l_Lean_PersistentArray_append___rarg(x_17, x_71); -lean_dec(x_71); -if (lean_is_scalar(x_72)) { - x_74 = lean_alloc_ctor(0, 1, 8); +x_75 = l_Lean_PersistentArray_append___rarg(x_17, x_73); +lean_dec(x_73); +if (lean_is_scalar(x_74)) { + x_76 = lean_alloc_ctor(0, 1, 8); } else { - x_74 = x_72; + x_76 = x_74; } -lean_ctor_set(x_74, 0, x_73); -lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); -x_75 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_75, 0, x_63); -lean_ctor_set(x_75, 1, x_64); -lean_ctor_set(x_75, 2, x_65); -lean_ctor_set(x_75, 3, x_74); -lean_ctor_set(x_75, 4, x_66); -lean_ctor_set(x_75, 5, x_67); -lean_ctor_set(x_75, 6, x_68); -lean_ctor_set(x_75, 7, x_69); -x_76 = lean_st_ref_set(x_14, x_75, x_31); -x_77 = lean_ctor_get(x_76, 1); -lean_inc(x_77); -lean_dec(x_76); -x_78 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_newSubgoal___spec__12(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_77); +lean_ctor_set(x_76, 0, x_75); +lean_ctor_set_uint64(x_76, sizeof(void*)*1, x_72); +x_77 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_77, 0, x_65); +lean_ctor_set(x_77, 1, x_66); +lean_ctor_set(x_77, 2, x_67); +lean_ctor_set(x_77, 3, x_76); +lean_ctor_set(x_77, 4, x_68); +lean_ctor_set(x_77, 5, x_69); +lean_ctor_set(x_77, 6, x_70); +lean_ctor_set(x_77, 7, x_71); +x_78 = lean_st_ref_set(x_14, x_77, x_33); +x_79 = lean_ctor_get(x_78, 1); +lean_inc(x_79); +lean_dec(x_78); +x_80 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_newSubgoal___spec__12(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_79); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); @@ -7413,665 +7418,681 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_24); -if (lean_obj_tag(x_78) == 0) +if (lean_obj_tag(x_80) == 0) { -lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_79 = lean_ctor_get(x_78, 0); -lean_inc(x_79); -x_80 = lean_ctor_get(x_78, 1); -lean_inc(x_80); -if (lean_is_exclusive(x_78)) { - lean_ctor_release(x_78, 0); - lean_ctor_release(x_78, 1); - x_81 = x_78; +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_81 = lean_ctor_get(x_80, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_80, 1); +lean_inc(x_82); +if (lean_is_exclusive(x_80)) { + lean_ctor_release(x_80, 0); + lean_ctor_release(x_80, 1); + x_83 = x_80; } else { - lean_dec_ref(x_78); - x_81 = lean_box(0); + lean_dec_ref(x_80); + x_83 = lean_box(0); } -if (lean_is_scalar(x_81)) { - x_82 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_83)) { + x_84 = lean_alloc_ctor(0, 2, 0); } else { - x_82 = x_81; + x_84 = x_83; } -lean_ctor_set(x_82, 0, x_79); -lean_ctor_set(x_82, 1, x_80); -return x_82; +lean_ctor_set(x_84, 0, x_81); +lean_ctor_set(x_84, 1, x_82); +return x_84; } else { -lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; -x_83 = lean_ctor_get(x_78, 0); -lean_inc(x_83); -x_84 = lean_ctor_get(x_78, 1); -lean_inc(x_84); -if (lean_is_exclusive(x_78)) { - lean_ctor_release(x_78, 0); - lean_ctor_release(x_78, 1); - x_85 = x_78; +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_85 = lean_ctor_get(x_80, 0); +lean_inc(x_85); +x_86 = lean_ctor_get(x_80, 1); +lean_inc(x_86); +if (lean_is_exclusive(x_80)) { + lean_ctor_release(x_80, 0); + lean_ctor_release(x_80, 1); + x_87 = x_80; } else { - lean_dec_ref(x_78); - x_85 = lean_box(0); + lean_dec_ref(x_80); + x_87 = lean_box(0); } -if (lean_is_scalar(x_85)) { - x_86 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_87)) { + x_88 = lean_alloc_ctor(1, 2, 0); } else { - x_86 = x_85; + x_88 = x_87; } -lean_ctor_set(x_86, 0, x_83); -lean_ctor_set(x_86, 1, x_84); -return x_86; +lean_ctor_set(x_88, 0, x_85); +lean_ctor_set(x_88, 1, x_86); +return x_88; } } } else { -lean_object* x_87; double x_88; double x_89; lean_object* x_90; -x_87 = lean_box(0); -x_88 = lean_unbox_float(x_25); +lean_object* x_89; double x_90; double x_91; lean_object* x_92; +x_89 = lean_box(0); +x_90 = lean_unbox_float(x_25); lean_dec(x_25); -x_89 = lean_unbox_float(x_26); +x_91 = lean_unbox_float(x_26); lean_dec(x_26); -x_90 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3(x_2, x_3, x_4, x_17, x_24, x_1, x_27, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_13, x_14, x_22); -return x_90; -} -} -else -{ -lean_object* x_91; double x_92; double x_93; lean_object* x_94; -x_91 = lean_box(0); -x_92 = lean_unbox_float(x_25); -lean_dec(x_25); -x_93 = lean_unbox_float(x_26); -lean_dec(x_26); -x_94 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3(x_2, x_3, x_4, x_17, x_24, x_1, x_27, x_92, x_93, x_5, x_91, x_9, x_10, x_11, x_12, x_13, x_14, x_22); -return x_94; +x_92 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3(x_2, x_3, x_4, x_17, x_24, x_28, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_13, x_14, x_22); +return x_92; } } } } else { -lean_object* x_215; lean_object* x_216; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; -x_311 = lean_io_get_num_heartbeats(x_18); -x_312 = lean_ctor_get(x_311, 0); -lean_inc(x_312); -x_313 = lean_ctor_get(x_311, 1); -lean_inc(x_313); -lean_dec(x_311); +lean_object* x_223; lean_object* x_224; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; +x_327 = lean_io_get_num_heartbeats(x_18); +x_328 = lean_ctor_get(x_327, 0); +lean_inc(x_328); +x_329 = lean_ctor_get(x_327, 1); +lean_inc(x_329); +lean_dec(x_327); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_314 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_313); -if (lean_obj_tag(x_314) == 0) +x_330 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_329); +if (lean_obj_tag(x_330) == 0) { -uint8_t x_315; -x_315 = !lean_is_exclusive(x_314); -if (x_315 == 0) +uint8_t x_331; +x_331 = !lean_is_exclusive(x_330); +if (x_331 == 0) { -lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; uint8_t x_320; -x_316 = lean_ctor_get(x_314, 0); -x_317 = lean_ctor_get(x_314, 1); -x_318 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_318, 0, x_316); -x_319 = lean_io_get_num_heartbeats(x_317); -x_320 = !lean_is_exclusive(x_319); -if (x_320 == 0) +lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; uint8_t x_336; +x_332 = lean_ctor_get(x_330, 0); +x_333 = lean_ctor_get(x_330, 1); +x_334 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_334, 0, x_332); +x_335 = lean_io_get_num_heartbeats(x_333); +x_336 = !lean_is_exclusive(x_335); +if (x_336 == 0) { -lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; -x_321 = lean_ctor_get(x_319, 0); -x_322 = lean_ctor_get(x_319, 1); -x_323 = 0; -x_324 = lean_unsigned_to_nat(0u); -x_325 = l_Float_ofScientific(x_312, x_323, x_324); -lean_dec(x_312); -x_326 = l_Float_ofScientific(x_321, x_323, x_324); -lean_dec(x_321); -x_327 = lean_box_float(x_325); -x_328 = lean_box_float(x_326); -lean_ctor_set(x_319, 1, x_328); -lean_ctor_set(x_319, 0, x_327); -lean_ctor_set(x_314, 1, x_319); -lean_ctor_set(x_314, 0, x_318); -x_215 = x_314; -x_216 = x_322; -goto block_310; +lean_object* x_337; lean_object* x_338; uint8_t x_339; lean_object* x_340; double x_341; double x_342; lean_object* x_343; lean_object* x_344; +x_337 = lean_ctor_get(x_335, 0); +x_338 = lean_ctor_get(x_335, 1); +x_339 = 0; +x_340 = lean_unsigned_to_nat(0u); +x_341 = l_Float_ofScientific(x_328, x_339, x_340); +lean_dec(x_328); +x_342 = l_Float_ofScientific(x_337, x_339, x_340); +lean_dec(x_337); +x_343 = lean_box_float(x_341); +x_344 = lean_box_float(x_342); +lean_ctor_set(x_335, 1, x_344); +lean_ctor_set(x_335, 0, x_343); +lean_ctor_set(x_330, 1, x_335); +lean_ctor_set(x_330, 0, x_334); +x_223 = x_330; +x_224 = x_338; +goto block_326; } else { -lean_object* x_329; lean_object* x_330; uint8_t x_331; lean_object* x_332; double x_333; double x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; -x_329 = lean_ctor_get(x_319, 0); -x_330 = lean_ctor_get(x_319, 1); -lean_inc(x_330); -lean_inc(x_329); -lean_dec(x_319); -x_331 = 0; -x_332 = lean_unsigned_to_nat(0u); -x_333 = l_Float_ofScientific(x_312, x_331, x_332); -lean_dec(x_312); -x_334 = l_Float_ofScientific(x_329, x_331, x_332); -lean_dec(x_329); -x_335 = lean_box_float(x_333); -x_336 = lean_box_float(x_334); -x_337 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_337, 0, x_335); -lean_ctor_set(x_337, 1, x_336); -lean_ctor_set(x_314, 1, x_337); -lean_ctor_set(x_314, 0, x_318); -x_215 = x_314; -x_216 = x_330; -goto block_310; +lean_object* x_345; lean_object* x_346; uint8_t x_347; lean_object* x_348; double x_349; double x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; +x_345 = lean_ctor_get(x_335, 0); +x_346 = lean_ctor_get(x_335, 1); +lean_inc(x_346); +lean_inc(x_345); +lean_dec(x_335); +x_347 = 0; +x_348 = lean_unsigned_to_nat(0u); +x_349 = l_Float_ofScientific(x_328, x_347, x_348); +lean_dec(x_328); +x_350 = l_Float_ofScientific(x_345, x_347, x_348); +lean_dec(x_345); +x_351 = lean_box_float(x_349); +x_352 = lean_box_float(x_350); +x_353 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_353, 0, x_351); +lean_ctor_set(x_353, 1, x_352); +lean_ctor_set(x_330, 1, x_353); +lean_ctor_set(x_330, 0, x_334); +x_223 = x_330; +x_224 = x_346; +goto block_326; } } else { -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; -x_338 = lean_ctor_get(x_314, 0); -x_339 = lean_ctor_get(x_314, 1); -lean_inc(x_339); -lean_inc(x_338); -lean_dec(x_314); -x_340 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = lean_ctor_get(x_341, 0); -lean_inc(x_342); -x_343 = lean_ctor_get(x_341, 1); -lean_inc(x_343); -if (lean_is_exclusive(x_341)) { - lean_ctor_release(x_341, 0); - lean_ctor_release(x_341, 1); - x_344 = x_341; -} else { - lean_dec_ref(x_341); - x_344 = lean_box(0); -} -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_312, x_345, x_346); -lean_dec(x_312); -x_348 = l_Float_ofScientific(x_342, x_345, x_346); -lean_dec(x_342); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -if (lean_is_scalar(x_344)) { - x_351 = lean_alloc_ctor(0, 2, 0); -} else { - x_351 = x_344; -} -lean_ctor_set(x_351, 0, x_349); -lean_ctor_set(x_351, 1, x_350); -x_352 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_352, 0, x_340); -lean_ctor_set(x_352, 1, x_351); -x_215 = x_352; -x_216 = x_343; -goto block_310; -} -} -else -{ -uint8_t x_353; -x_353 = !lean_is_exclusive(x_314); -if (x_353 == 0) -{ -lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; uint8_t x_358; -x_354 = lean_ctor_get(x_314, 0); -x_355 = lean_ctor_get(x_314, 1); -x_356 = lean_alloc_ctor(0, 1, 0); +lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; +x_354 = lean_ctor_get(x_330, 0); +x_355 = lean_ctor_get(x_330, 1); +lean_inc(x_355); +lean_inc(x_354); +lean_dec(x_330); +x_356 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_356, 0, x_354); x_357 = lean_io_get_num_heartbeats(x_355); -x_358 = !lean_is_exclusive(x_357); -if (x_358 == 0) -{ -lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; -x_359 = lean_ctor_get(x_357, 0); -x_360 = lean_ctor_get(x_357, 1); +x_358 = lean_ctor_get(x_357, 0); +lean_inc(x_358); +x_359 = lean_ctor_get(x_357, 1); +lean_inc(x_359); +if (lean_is_exclusive(x_357)) { + lean_ctor_release(x_357, 0); + lean_ctor_release(x_357, 1); + x_360 = x_357; +} else { + lean_dec_ref(x_357); + x_360 = lean_box(0); +} x_361 = 0; x_362 = lean_unsigned_to_nat(0u); -x_363 = l_Float_ofScientific(x_312, x_361, x_362); -lean_dec(x_312); -x_364 = l_Float_ofScientific(x_359, x_361, x_362); -lean_dec(x_359); +x_363 = l_Float_ofScientific(x_328, x_361, x_362); +lean_dec(x_328); +x_364 = l_Float_ofScientific(x_358, x_361, x_362); +lean_dec(x_358); x_365 = lean_box_float(x_363); x_366 = lean_box_float(x_364); -lean_ctor_set(x_357, 1, x_366); -lean_ctor_set(x_357, 0, x_365); -lean_ctor_set_tag(x_314, 0); -lean_ctor_set(x_314, 1, x_357); -lean_ctor_set(x_314, 0, x_356); -x_215 = x_314; -x_216 = x_360; -goto block_310; -} -else -{ -lean_object* x_367; lean_object* x_368; uint8_t x_369; lean_object* x_370; double x_371; double x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; -x_367 = lean_ctor_get(x_357, 0); -x_368 = lean_ctor_get(x_357, 1); -lean_inc(x_368); -lean_inc(x_367); -lean_dec(x_357); -x_369 = 0; -x_370 = lean_unsigned_to_nat(0u); -x_371 = l_Float_ofScientific(x_312, x_369, x_370); -lean_dec(x_312); -x_372 = l_Float_ofScientific(x_367, x_369, x_370); -lean_dec(x_367); -x_373 = lean_box_float(x_371); -x_374 = lean_box_float(x_372); -x_375 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_375, 0, x_373); -lean_ctor_set(x_375, 1, x_374); -lean_ctor_set_tag(x_314, 0); -lean_ctor_set(x_314, 1, x_375); -lean_ctor_set(x_314, 0, x_356); -x_215 = x_314; -x_216 = x_368; -goto block_310; -} -} -else -{ -lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; uint8_t x_383; lean_object* x_384; double x_385; double x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; -x_376 = lean_ctor_get(x_314, 0); -x_377 = lean_ctor_get(x_314, 1); -lean_inc(x_377); -lean_inc(x_376); -lean_dec(x_314); -x_378 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_378, 0, x_376); -x_379 = lean_io_get_num_heartbeats(x_377); -x_380 = lean_ctor_get(x_379, 0); -lean_inc(x_380); -x_381 = lean_ctor_get(x_379, 1); -lean_inc(x_381); -if (lean_is_exclusive(x_379)) { - lean_ctor_release(x_379, 0); - lean_ctor_release(x_379, 1); - x_382 = x_379; +if (lean_is_scalar(x_360)) { + x_367 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_379); - x_382 = lean_box(0); + x_367 = x_360; } -x_383 = 0; -x_384 = lean_unsigned_to_nat(0u); -x_385 = l_Float_ofScientific(x_312, x_383, x_384); -lean_dec(x_312); -x_386 = l_Float_ofScientific(x_380, x_383, x_384); -lean_dec(x_380); -x_387 = lean_box_float(x_385); -x_388 = lean_box_float(x_386); -if (lean_is_scalar(x_382)) { - x_389 = lean_alloc_ctor(0, 2, 0); -} else { - x_389 = x_382; +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +x_368 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_368, 0, x_356); +lean_ctor_set(x_368, 1, x_367); +x_223 = x_368; +x_224 = x_359; +goto block_326; } -lean_ctor_set(x_389, 0, x_387); -lean_ctor_set(x_389, 1, x_388); -x_390 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_390, 0, x_378); -lean_ctor_set(x_390, 1, x_389); -x_215 = x_390; -x_216 = x_381; -goto block_310; -} -} -block_310: -{ -lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; uint8_t x_221; lean_object* x_290; uint8_t x_291; -x_217 = lean_ctor_get(x_215, 1); -lean_inc(x_217); -x_218 = lean_ctor_get(x_215, 0); -lean_inc(x_218); -lean_dec(x_215); -x_219 = lean_ctor_get(x_217, 0); -lean_inc(x_219); -x_220 = lean_ctor_get(x_217, 1); -lean_inc(x_220); -lean_dec(x_217); -x_290 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__2; -x_291 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_290); -if (x_291 == 0) -{ -uint8_t x_292; -x_292 = 0; -x_221 = x_292; -goto block_289; } else { -double x_293; double x_294; double x_295; -x_293 = lean_unbox_float(x_220); -x_294 = lean_unbox_float(x_219); -x_295 = lean_float_sub(x_293, x_294); +uint8_t x_369; +x_369 = !lean_is_exclusive(x_330); +if (x_369 == 0) +{ +lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; uint8_t x_374; +x_370 = lean_ctor_get(x_330, 0); +x_371 = lean_ctor_get(x_330, 1); +x_372 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_372, 0, x_370); +x_373 = lean_io_get_num_heartbeats(x_371); +x_374 = !lean_is_exclusive(x_373); +if (x_374 == 0) +{ +lean_object* x_375; lean_object* x_376; uint8_t x_377; lean_object* x_378; double x_379; double x_380; lean_object* x_381; lean_object* x_382; +x_375 = lean_ctor_get(x_373, 0); +x_376 = lean_ctor_get(x_373, 1); +x_377 = 0; +x_378 = lean_unsigned_to_nat(0u); +x_379 = l_Float_ofScientific(x_328, x_377, x_378); +lean_dec(x_328); +x_380 = l_Float_ofScientific(x_375, x_377, x_378); +lean_dec(x_375); +x_381 = lean_box_float(x_379); +x_382 = lean_box_float(x_380); +lean_ctor_set(x_373, 1, x_382); +lean_ctor_set(x_373, 0, x_381); +lean_ctor_set_tag(x_330, 0); +lean_ctor_set(x_330, 1, x_373); +lean_ctor_set(x_330, 0, x_372); +x_223 = x_330; +x_224 = x_376; +goto block_326; +} +else +{ +lean_object* x_383; lean_object* x_384; uint8_t x_385; lean_object* x_386; double x_387; double x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; +x_383 = lean_ctor_get(x_373, 0); +x_384 = lean_ctor_get(x_373, 1); +lean_inc(x_384); +lean_inc(x_383); +lean_dec(x_373); +x_385 = 0; +x_386 = lean_unsigned_to_nat(0u); +x_387 = l_Float_ofScientific(x_328, x_385, x_386); +lean_dec(x_328); +x_388 = l_Float_ofScientific(x_383, x_385, x_386); +lean_dec(x_383); +x_389 = lean_box_float(x_387); +x_390 = lean_box_float(x_388); +x_391 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_391, 0, x_389); +lean_ctor_set(x_391, 1, x_390); +lean_ctor_set_tag(x_330, 0); +lean_ctor_set(x_330, 1, x_391); +lean_ctor_set(x_330, 0, x_372); +x_223 = x_330; +x_224 = x_384; +goto block_326; +} +} +else +{ +lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; uint8_t x_399; lean_object* x_400; double x_401; double x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; +x_392 = lean_ctor_get(x_330, 0); +x_393 = lean_ctor_get(x_330, 1); +lean_inc(x_393); +lean_inc(x_392); +lean_dec(x_330); +x_394 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_394, 0, x_392); +x_395 = lean_io_get_num_heartbeats(x_393); +x_396 = lean_ctor_get(x_395, 0); +lean_inc(x_396); +x_397 = lean_ctor_get(x_395, 1); +lean_inc(x_397); +if (lean_is_exclusive(x_395)) { + lean_ctor_release(x_395, 0); + lean_ctor_release(x_395, 1); + x_398 = x_395; +} else { + lean_dec_ref(x_395); + x_398 = lean_box(0); +} +x_399 = 0; +x_400 = lean_unsigned_to_nat(0u); +x_401 = l_Float_ofScientific(x_328, x_399, x_400); +lean_dec(x_328); +x_402 = l_Float_ofScientific(x_396, x_399, x_400); +lean_dec(x_396); +x_403 = lean_box_float(x_401); +x_404 = lean_box_float(x_402); +if (lean_is_scalar(x_398)) { + x_405 = lean_alloc_ctor(0, 2, 0); +} else { + x_405 = x_398; +} +lean_ctor_set(x_405, 0, x_403); +lean_ctor_set(x_405, 1, x_404); +x_406 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_406, 0, x_394); +lean_ctor_set(x_406, 1, x_405); +x_223 = x_406; +x_224 = x_397; +goto block_326; +} +} +block_326: +{ +lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; uint8_t x_230; uint8_t x_231; +x_225 = lean_ctor_get(x_223, 1); +lean_inc(x_225); +x_226 = lean_ctor_get(x_223, 0); +lean_inc(x_226); +lean_dec(x_223); +x_227 = lean_ctor_get(x_225, 0); +lean_inc(x_227); +x_228 = lean_ctor_get(x_225, 1); +lean_inc(x_228); +lean_dec(x_225); +x_229 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__2; +x_230 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_229); +if (x_230 == 0) +{ +if (x_6 == 0) +{ +uint8_t x_296; +x_296 = 0; +x_231 = x_296; +goto block_295; +} +else +{ +lean_object* x_297; double x_298; double x_299; lean_object* x_300; +x_297 = lean_box(0); +x_298 = lean_unbox_float(x_227); +lean_dec(x_227); +x_299 = lean_unbox_float(x_228); +lean_dec(x_228); +x_300 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3(x_2, x_3, x_4, x_17, x_226, x_230, x_298, x_299, x_5, x_297, x_9, x_10, x_11, x_12, x_13, x_14, x_224); +return x_300; +} +} +else +{ +double x_301; double x_302; double x_303; +x_301 = lean_unbox_float(x_228); +x_302 = lean_unbox_float(x_227); +x_303 = lean_float_sub(x_301, x_302); if (x_20 == 0) { -lean_object* x_296; lean_object* x_297; uint8_t x_298; lean_object* x_299; double x_300; double x_301; double x_302; uint8_t x_303; -x_296 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__3; -x_297 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_296); -x_298 = 0; -x_299 = lean_unsigned_to_nat(0u); -x_300 = l_Float_ofScientific(x_297, x_298, x_299); -lean_dec(x_297); -x_301 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__4; -x_302 = lean_float_div(x_300, x_301); -x_303 = lean_float_decLt(x_302, x_295); -x_221 = x_303; -goto block_289; -} -else +if (x_6 == 0) { -lean_object* x_304; lean_object* x_305; uint8_t x_306; lean_object* x_307; double x_308; uint8_t x_309; +lean_object* x_304; lean_object* x_305; uint8_t x_306; lean_object* x_307; double x_308; double x_309; double x_310; uint8_t x_311; x_304 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__3; x_305 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_304); x_306 = 0; x_307 = lean_unsigned_to_nat(0u); x_308 = l_Float_ofScientific(x_305, x_306, x_307); lean_dec(x_305); -x_309 = lean_float_decLt(x_308, x_295); -x_221 = x_309; -goto block_289; +x_309 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__4; +x_310 = lean_float_div(x_308, x_309); +x_311 = lean_float_decLt(x_310, x_303); +x_231 = x_311; +goto block_295; +} +else +{ +lean_object* x_312; double x_313; double x_314; lean_object* x_315; +x_312 = lean_box(0); +x_313 = lean_unbox_float(x_227); +lean_dec(x_227); +x_314 = lean_unbox_float(x_228); +lean_dec(x_228); +x_315 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3(x_2, x_3, x_4, x_17, x_226, x_230, x_313, x_314, x_5, x_312, x_9, x_10, x_11, x_12, x_13, x_14, x_224); +return x_315; } } -block_289: +else { if (x_6 == 0) { -if (x_221 == 0) +lean_object* x_316; lean_object* x_317; uint8_t x_318; lean_object* x_319; double x_320; uint8_t x_321; +x_316 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__3; +x_317 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_316); +x_318 = 0; +x_319 = lean_unsigned_to_nat(0u); +x_320 = l_Float_ofScientific(x_317, x_318, x_319); +lean_dec(x_317); +x_321 = lean_float_decLt(x_320, x_303); +x_231 = x_321; +goto block_295; +} +else { -lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; uint8_t x_226; -lean_dec(x_220); -lean_dec(x_219); +lean_object* x_322; double x_323; double x_324; lean_object* x_325; +x_322 = lean_box(0); +x_323 = lean_unbox_float(x_227); +lean_dec(x_227); +x_324 = lean_unbox_float(x_228); +lean_dec(x_228); +x_325 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3(x_2, x_3, x_4, x_17, x_226, x_230, x_323, x_324, x_5, x_322, x_9, x_10, x_11, x_12, x_13, x_14, x_224); +return x_325; +} +} +} +block_295: +{ +if (x_231 == 0) +{ +lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; uint8_t x_236; +lean_dec(x_228); +lean_dec(x_227); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_222 = lean_st_ref_take(x_14, x_216); -x_223 = lean_ctor_get(x_222, 0); -lean_inc(x_223); -x_224 = lean_ctor_get(x_223, 3); -lean_inc(x_224); -x_225 = lean_ctor_get(x_222, 1); -lean_inc(x_225); -lean_dec(x_222); -x_226 = !lean_is_exclusive(x_223); -if (x_226 == 0) -{ -lean_object* x_227; uint8_t x_228; -x_227 = lean_ctor_get(x_223, 3); -lean_dec(x_227); -x_228 = !lean_is_exclusive(x_224); -if (x_228 == 0) -{ -lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_229 = lean_ctor_get(x_224, 0); -x_230 = l_Lean_PersistentArray_append___rarg(x_17, x_229); -lean_dec(x_229); -lean_ctor_set(x_224, 0, x_230); -x_231 = lean_st_ref_set(x_14, x_223, x_225); -x_232 = lean_ctor_get(x_231, 1); -lean_inc(x_232); -lean_dec(x_231); -x_233 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_newSubgoal___spec__12(x_218, x_9, x_10, x_11, x_12, x_13, x_14, x_232); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_218); -if (lean_obj_tag(x_233) == 0) -{ -uint8_t x_234; -x_234 = !lean_is_exclusive(x_233); -if (x_234 == 0) -{ -return x_233; -} -else -{ -lean_object* x_235; lean_object* x_236; lean_object* x_237; -x_235 = lean_ctor_get(x_233, 0); -x_236 = lean_ctor_get(x_233, 1); -lean_inc(x_236); +x_232 = lean_st_ref_take(x_14, x_224); +x_233 = lean_ctor_get(x_232, 0); +lean_inc(x_233); +x_234 = lean_ctor_get(x_233, 3); +lean_inc(x_234); +x_235 = lean_ctor_get(x_232, 1); lean_inc(x_235); -lean_dec(x_233); -x_237 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_237, 0, x_235); -lean_ctor_set(x_237, 1, x_236); -return x_237; -} -} -else +lean_dec(x_232); +x_236 = !lean_is_exclusive(x_233); +if (x_236 == 0) { -uint8_t x_238; -x_238 = !lean_is_exclusive(x_233); +lean_object* x_237; uint8_t x_238; +x_237 = lean_ctor_get(x_233, 3); +lean_dec(x_237); +x_238 = !lean_is_exclusive(x_234); if (x_238 == 0) { -return x_233; +lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; +x_239 = lean_ctor_get(x_234, 0); +x_240 = l_Lean_PersistentArray_append___rarg(x_17, x_239); +lean_dec(x_239); +lean_ctor_set(x_234, 0, x_240); +x_241 = lean_st_ref_set(x_14, x_233, x_235); +x_242 = lean_ctor_get(x_241, 1); +lean_inc(x_242); +lean_dec(x_241); +x_243 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_newSubgoal___spec__12(x_226, x_9, x_10, x_11, x_12, x_13, x_14, x_242); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_226); +if (lean_obj_tag(x_243) == 0) +{ +uint8_t x_244; +x_244 = !lean_is_exclusive(x_243); +if (x_244 == 0) +{ +return x_243; } else { -lean_object* x_239; lean_object* x_240; lean_object* x_241; -x_239 = lean_ctor_get(x_233, 0); -x_240 = lean_ctor_get(x_233, 1); -lean_inc(x_240); -lean_inc(x_239); -lean_dec(x_233); -x_241 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_241, 0, x_239); -lean_ctor_set(x_241, 1, x_240); -return x_241; -} -} -} -else -{ -uint64_t x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_242 = lean_ctor_get_uint64(x_224, sizeof(void*)*1); -x_243 = lean_ctor_get(x_224, 0); -lean_inc(x_243); -lean_dec(x_224); -x_244 = l_Lean_PersistentArray_append___rarg(x_17, x_243); +lean_object* x_245; lean_object* x_246; lean_object* x_247; +x_245 = lean_ctor_get(x_243, 0); +x_246 = lean_ctor_get(x_243, 1); +lean_inc(x_246); +lean_inc(x_245); lean_dec(x_243); -x_245 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_245, 0, x_244); -lean_ctor_set_uint64(x_245, sizeof(void*)*1, x_242); -lean_ctor_set(x_223, 3, x_245); -x_246 = lean_st_ref_set(x_14, x_223, x_225); -x_247 = lean_ctor_get(x_246, 1); -lean_inc(x_247); -lean_dec(x_246); -x_248 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_newSubgoal___spec__12(x_218, x_9, x_10, x_11, x_12, x_13, x_14, x_247); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_218); -if (lean_obj_tag(x_248) == 0) +x_247 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_247, 0, x_245); +lean_ctor_set(x_247, 1, x_246); +return x_247; +} +} +else { -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; -x_249 = lean_ctor_get(x_248, 0); -lean_inc(x_249); -x_250 = lean_ctor_get(x_248, 1); +uint8_t x_248; +x_248 = !lean_is_exclusive(x_243); +if (x_248 == 0) +{ +return x_243; +} +else +{ +lean_object* x_249; lean_object* x_250; lean_object* x_251; +x_249 = lean_ctor_get(x_243, 0); +x_250 = lean_ctor_get(x_243, 1); lean_inc(x_250); -if (lean_is_exclusive(x_248)) { - lean_ctor_release(x_248, 0); - lean_ctor_release(x_248, 1); - x_251 = x_248; -} else { - lean_dec_ref(x_248); - x_251 = lean_box(0); +lean_inc(x_249); +lean_dec(x_243); +x_251 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_251, 0, x_249); +lean_ctor_set(x_251, 1, x_250); +return x_251; } -if (lean_is_scalar(x_251)) { - x_252 = lean_alloc_ctor(0, 2, 0); -} else { - x_252 = x_251; } -lean_ctor_set(x_252, 0, x_249); -lean_ctor_set(x_252, 1, x_250); -return x_252; } else { -lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; -x_253 = lean_ctor_get(x_248, 0); +uint64_t x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; +x_252 = lean_ctor_get_uint64(x_234, sizeof(void*)*1); +x_253 = lean_ctor_get(x_234, 0); lean_inc(x_253); -x_254 = lean_ctor_get(x_248, 1); -lean_inc(x_254); -if (lean_is_exclusive(x_248)) { - lean_ctor_release(x_248, 0); - lean_ctor_release(x_248, 1); - x_255 = x_248; -} else { - lean_dec_ref(x_248); - x_255 = lean_box(0); -} -if (lean_is_scalar(x_255)) { - x_256 = lean_alloc_ctor(1, 2, 0); -} else { - x_256 = x_255; -} -lean_ctor_set(x_256, 0, x_253); -lean_ctor_set(x_256, 1, x_254); -return x_256; -} -} -} -else -{ -lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; uint64_t x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_257 = lean_ctor_get(x_223, 0); -x_258 = lean_ctor_get(x_223, 1); -x_259 = lean_ctor_get(x_223, 2); -x_260 = lean_ctor_get(x_223, 4); -x_261 = lean_ctor_get(x_223, 5); -x_262 = lean_ctor_get(x_223, 6); -x_263 = lean_ctor_get(x_223, 7); -lean_inc(x_263); -lean_inc(x_262); -lean_inc(x_261); -lean_inc(x_260); -lean_inc(x_259); -lean_inc(x_258); +lean_dec(x_234); +x_254 = l_Lean_PersistentArray_append___rarg(x_17, x_253); +lean_dec(x_253); +x_255 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_255, 0, x_254); +lean_ctor_set_uint64(x_255, sizeof(void*)*1, x_252); +lean_ctor_set(x_233, 3, x_255); +x_256 = lean_st_ref_set(x_14, x_233, x_235); +x_257 = lean_ctor_get(x_256, 1); lean_inc(x_257); -lean_dec(x_223); -x_264 = lean_ctor_get_uint64(x_224, sizeof(void*)*1); -x_265 = lean_ctor_get(x_224, 0); -lean_inc(x_265); -if (lean_is_exclusive(x_224)) { - lean_ctor_release(x_224, 0); - x_266 = x_224; -} else { - lean_dec_ref(x_224); - x_266 = lean_box(0); -} -x_267 = l_Lean_PersistentArray_append___rarg(x_17, x_265); -lean_dec(x_265); -if (lean_is_scalar(x_266)) { - x_268 = lean_alloc_ctor(0, 1, 8); -} else { - x_268 = x_266; -} -lean_ctor_set(x_268, 0, x_267); -lean_ctor_set_uint64(x_268, sizeof(void*)*1, x_264); -x_269 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_269, 0, x_257); -lean_ctor_set(x_269, 1, x_258); -lean_ctor_set(x_269, 2, x_259); -lean_ctor_set(x_269, 3, x_268); -lean_ctor_set(x_269, 4, x_260); -lean_ctor_set(x_269, 5, x_261); -lean_ctor_set(x_269, 6, x_262); -lean_ctor_set(x_269, 7, x_263); -x_270 = lean_st_ref_set(x_14, x_269, x_225); -x_271 = lean_ctor_get(x_270, 1); -lean_inc(x_271); -lean_dec(x_270); -x_272 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_newSubgoal___spec__12(x_218, x_9, x_10, x_11, x_12, x_13, x_14, x_271); +lean_dec(x_256); +x_258 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_newSubgoal___spec__12(x_226, x_9, x_10, x_11, x_12, x_13, x_14, x_257); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_218); -if (lean_obj_tag(x_272) == 0) +lean_dec(x_226); +if (lean_obj_tag(x_258) == 0) { -lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; -x_273 = lean_ctor_get(x_272, 0); +lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; +x_259 = lean_ctor_get(x_258, 0); +lean_inc(x_259); +x_260 = lean_ctor_get(x_258, 1); +lean_inc(x_260); +if (lean_is_exclusive(x_258)) { + lean_ctor_release(x_258, 0); + lean_ctor_release(x_258, 1); + x_261 = x_258; +} else { + lean_dec_ref(x_258); + x_261 = lean_box(0); +} +if (lean_is_scalar(x_261)) { + x_262 = lean_alloc_ctor(0, 2, 0); +} else { + x_262 = x_261; +} +lean_ctor_set(x_262, 0, x_259); +lean_ctor_set(x_262, 1, x_260); +return x_262; +} +else +{ +lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; +x_263 = lean_ctor_get(x_258, 0); +lean_inc(x_263); +x_264 = lean_ctor_get(x_258, 1); +lean_inc(x_264); +if (lean_is_exclusive(x_258)) { + lean_ctor_release(x_258, 0); + lean_ctor_release(x_258, 1); + x_265 = x_258; +} else { + lean_dec_ref(x_258); + x_265 = lean_box(0); +} +if (lean_is_scalar(x_265)) { + x_266 = lean_alloc_ctor(1, 2, 0); +} else { + x_266 = x_265; +} +lean_ctor_set(x_266, 0, x_263); +lean_ctor_set(x_266, 1, x_264); +return x_266; +} +} +} +else +{ +lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; uint64_t x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; +x_267 = lean_ctor_get(x_233, 0); +x_268 = lean_ctor_get(x_233, 1); +x_269 = lean_ctor_get(x_233, 2); +x_270 = lean_ctor_get(x_233, 4); +x_271 = lean_ctor_get(x_233, 5); +x_272 = lean_ctor_get(x_233, 6); +x_273 = lean_ctor_get(x_233, 7); lean_inc(x_273); -x_274 = lean_ctor_get(x_272, 1); -lean_inc(x_274); -if (lean_is_exclusive(x_272)) { - lean_ctor_release(x_272, 0); - lean_ctor_release(x_272, 1); - x_275 = x_272; +lean_inc(x_272); +lean_inc(x_271); +lean_inc(x_270); +lean_inc(x_269); +lean_inc(x_268); +lean_inc(x_267); +lean_dec(x_233); +x_274 = lean_ctor_get_uint64(x_234, sizeof(void*)*1); +x_275 = lean_ctor_get(x_234, 0); +lean_inc(x_275); +if (lean_is_exclusive(x_234)) { + lean_ctor_release(x_234, 0); + x_276 = x_234; } else { - lean_dec_ref(x_272); - x_275 = lean_box(0); + lean_dec_ref(x_234); + x_276 = lean_box(0); } -if (lean_is_scalar(x_275)) { - x_276 = lean_alloc_ctor(0, 2, 0); +x_277 = l_Lean_PersistentArray_append___rarg(x_17, x_275); +lean_dec(x_275); +if (lean_is_scalar(x_276)) { + x_278 = lean_alloc_ctor(0, 1, 8); } else { - x_276 = x_275; + x_278 = x_276; } -lean_ctor_set(x_276, 0, x_273); -lean_ctor_set(x_276, 1, x_274); -return x_276; +lean_ctor_set(x_278, 0, x_277); +lean_ctor_set_uint64(x_278, sizeof(void*)*1, x_274); +x_279 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_279, 0, x_267); +lean_ctor_set(x_279, 1, x_268); +lean_ctor_set(x_279, 2, x_269); +lean_ctor_set(x_279, 3, x_278); +lean_ctor_set(x_279, 4, x_270); +lean_ctor_set(x_279, 5, x_271); +lean_ctor_set(x_279, 6, x_272); +lean_ctor_set(x_279, 7, x_273); +x_280 = lean_st_ref_set(x_14, x_279, x_235); +x_281 = lean_ctor_get(x_280, 1); +lean_inc(x_281); +lean_dec(x_280); +x_282 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_newSubgoal___spec__12(x_226, x_9, x_10, x_11, x_12, x_13, x_14, x_281); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_226); +if (lean_obj_tag(x_282) == 0) +{ +lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; +x_283 = lean_ctor_get(x_282, 0); +lean_inc(x_283); +x_284 = lean_ctor_get(x_282, 1); +lean_inc(x_284); +if (lean_is_exclusive(x_282)) { + lean_ctor_release(x_282, 0); + lean_ctor_release(x_282, 1); + x_285 = x_282; +} else { + lean_dec_ref(x_282); + x_285 = lean_box(0); +} +if (lean_is_scalar(x_285)) { + x_286 = lean_alloc_ctor(0, 2, 0); +} else { + x_286 = x_285; +} +lean_ctor_set(x_286, 0, x_283); +lean_ctor_set(x_286, 1, x_284); +return x_286; } else { -lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; -x_277 = lean_ctor_get(x_272, 0); -lean_inc(x_277); -x_278 = lean_ctor_get(x_272, 1); -lean_inc(x_278); -if (lean_is_exclusive(x_272)) { - lean_ctor_release(x_272, 0); - lean_ctor_release(x_272, 1); - x_279 = x_272; +lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; +x_287 = lean_ctor_get(x_282, 0); +lean_inc(x_287); +x_288 = lean_ctor_get(x_282, 1); +lean_inc(x_288); +if (lean_is_exclusive(x_282)) { + lean_ctor_release(x_282, 0); + lean_ctor_release(x_282, 1); + x_289 = x_282; } else { - lean_dec_ref(x_272); - x_279 = lean_box(0); + lean_dec_ref(x_282); + x_289 = lean_box(0); } -if (lean_is_scalar(x_279)) { - x_280 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_289)) { + x_290 = lean_alloc_ctor(1, 2, 0); } else { - x_280 = x_279; + x_290 = x_289; } -lean_ctor_set(x_280, 0, x_277); -lean_ctor_set(x_280, 1, x_278); -return x_280; +lean_ctor_set(x_290, 0, x_287); +lean_ctor_set(x_290, 1, x_288); +return x_290; } } } else { -lean_object* x_281; double x_282; double x_283; lean_object* x_284; -x_281 = lean_box(0); -x_282 = lean_unbox_float(x_219); -lean_dec(x_219); -x_283 = lean_unbox_float(x_220); -lean_dec(x_220); -x_284 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3(x_2, x_3, x_4, x_17, x_218, x_1, x_221, x_282, x_283, x_5, x_281, x_9, x_10, x_11, x_12, x_13, x_14, x_216); -return x_284; -} -} -else -{ -lean_object* x_285; double x_286; double x_287; lean_object* x_288; -x_285 = lean_box(0); -x_286 = lean_unbox_float(x_219); -lean_dec(x_219); -x_287 = lean_unbox_float(x_220); -lean_dec(x_220); -x_288 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3(x_2, x_3, x_4, x_17, x_218, x_1, x_221, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_13, x_14, x_216); -return x_288; +lean_object* x_291; double x_292; double x_293; lean_object* x_294; +x_291 = lean_box(0); +x_292 = lean_unbox_float(x_227); +lean_dec(x_227); +x_293 = lean_unbox_float(x_228); +lean_dec(x_228); +x_294 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3(x_2, x_3, x_4, x_17, x_226, x_230, x_292, x_293, x_5, x_291, x_9, x_10, x_11, x_12, x_13, x_14, x_224); +return x_294; } } } @@ -8941,27 +8962,25 @@ lean_object* x_14 = _args[13]; lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; _start: { -uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; -x_19 = lean_unbox(x_2); +uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; +x_18 = lean_unbox(x_2); lean_dec(x_2); -x_20 = lean_unbox(x_8); +x_19 = lean_unbox(x_7); +lean_dec(x_7); +x_20 = lean_unbox_float(x_8); lean_dec(x_8); x_21 = lean_unbox_float(x_9); lean_dec(x_9); -x_22 = lean_unbox_float(x_10); -lean_dec(x_10); -x_23 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2(x_1, x_19, x_3, x_4, x_5, x_6, x_7, x_20, x_21, x_22, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -lean_dec(x_17); -lean_dec(x_15); +x_22 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2(x_1, x_18, x_3, x_4, x_5, x_6, x_19, x_20, x_21, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +lean_dec(x_16); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_23; +return x_22; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3___boxed(lean_object** _args) { @@ -8982,22 +9001,20 @@ lean_object* x_14 = _args[13]; lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; _start: { -uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; -x_19 = lean_unbox(x_2); +uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; +x_18 = lean_unbox(x_2); lean_dec(x_2); -x_20 = lean_unbox(x_7); +x_19 = lean_unbox(x_6); +lean_dec(x_6); +x_20 = lean_unbox_float(x_7); lean_dec(x_7); x_21 = lean_unbox_float(x_8); lean_dec(x_8); -x_22 = lean_unbox_float(x_9); -lean_dec(x_9); -x_23 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3(x_1, x_19, x_3, x_4, x_5, x_6, x_20, x_21, x_22, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -lean_dec(x_11); -lean_dec(x_6); -return x_23; +x_22 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3(x_1, x_18, x_3, x_4, x_5, x_19, x_20, x_21, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +lean_dec(x_10); +return x_22; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { @@ -10395,103 +10412,78 @@ lean_dec(x_9); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -double x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_18 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_18, 0, x_1); -lean_ctor_set(x_18, 1, x_3); -lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); -lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); -lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); -x_19 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2___closed__2; -x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_19); -if (x_20 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2___closed__1; +x_17 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_3); +lean_ctor_set_float(x_17, sizeof(void*)*2, x_16); +lean_ctor_set_float(x_17, sizeof(void*)*2 + 8, x_16); +lean_ctor_set_uint8(x_17, sizeof(void*)*2 + 16, x_2); +x_18 = lean_box(0); +x_19 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__1(x_4, x_5, x_10, x_6, x_17, x_18, x_11, x_12, x_13, x_14, x_15); +return x_19; +} +else { -lean_object* x_21; lean_object* x_22; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); x_21 = lean_box(0); -x_22 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_18, x_21, x_12, x_13, x_14, x_15, x_16); +x_22 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15); return x_22; } -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_18); -x_23 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_3); -lean_ctor_set_float(x_23, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); -x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_23, x_24, x_12, x_13, x_14, x_15, x_16); -return x_25; } } -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_18); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16); -return x_28; -} -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 5); -lean_inc(x_17); -lean_inc(x_15); +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 5); +lean_inc(x_16); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_18 = lean_apply_6(x_10, x_5, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_18) == 0) +x_17 = lean_apply_6(x_9, x_5, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_14, x_15, x_20); -lean_dec(x_15); -lean_dec(x_13); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_13, x_14, x_19); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_21; +return x_20; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_14, x_15, x_22); -lean_dec(x_15); -lean_dec(x_13); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } } } @@ -10509,253 +10501,253 @@ x_17 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___ x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_17); if (x_18 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_109 = lean_io_mono_nanos_now(x_16); -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_109, 1); -lean_inc(x_111); -lean_dec(x_109); +lean_object* x_19; lean_object* x_20; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_113 = lean_io_mono_nanos_now(x_16); +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +lean_dec(x_113); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_112 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_111); -if (lean_obj_tag(x_112) == 0) +x_116 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_115); +if (lean_obj_tag(x_116) == 0) { -uint8_t x_113; -x_113 = !lean_is_exclusive(x_112); -if (x_113 == 0) +uint8_t x_117; +x_117 = !lean_is_exclusive(x_116); +if (x_117 == 0) { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_114 = lean_ctor_get(x_112, 0); -x_115 = lean_ctor_get(x_112, 1); -x_116 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_116, 0, x_114); -x_117 = lean_io_mono_nanos_now(x_115); -x_118 = !lean_is_exclusive(x_117); -if (x_118 == 0) +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_118 = lean_ctor_get(x_116, 0); +x_119 = lean_ctor_get(x_116, 1); +x_120 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_120, 0, x_118); +x_121 = lean_io_mono_nanos_now(x_119); +x_122 = !lean_is_exclusive(x_121); +if (x_122 == 0) { -lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_122; double x_123; double x_124; double x_125; double x_126; double x_127; lean_object* x_128; lean_object* x_129; -x_119 = lean_ctor_get(x_117, 0); -x_120 = lean_ctor_get(x_117, 1); -x_121 = 0; -x_122 = lean_unsigned_to_nat(0u); -x_123 = l_Float_ofScientific(x_110, x_121, x_122); -lean_dec(x_110); -x_124 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_125 = lean_float_div(x_123, x_124); -x_126 = l_Float_ofScientific(x_119, x_121, x_122); -lean_dec(x_119); -x_127 = lean_float_div(x_126, x_124); -x_128 = lean_box_float(x_125); -x_129 = lean_box_float(x_127); -lean_ctor_set(x_117, 1, x_129); -lean_ctor_set(x_117, 0, x_128); -lean_ctor_set(x_112, 1, x_117); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_120; -goto block_108; +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; double x_130; double x_131; lean_object* x_132; lean_object* x_133; +x_123 = lean_ctor_get(x_121, 0); +x_124 = lean_ctor_get(x_121, 1); +x_125 = 0; +x_126 = lean_unsigned_to_nat(0u); +x_127 = l_Float_ofScientific(x_114, x_125, x_126); +lean_dec(x_114); +x_128 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_129 = lean_float_div(x_127, x_128); +x_130 = l_Float_ofScientific(x_123, x_125, x_126); +lean_dec(x_123); +x_131 = lean_float_div(x_130, x_128); +x_132 = lean_box_float(x_129); +x_133 = lean_box_float(x_131); +lean_ctor_set(x_121, 1, x_133); +lean_ctor_set(x_121, 0, x_132); +lean_ctor_set(x_116, 1, x_121); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_124; +goto block_112; } else { -lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; double x_134; double x_135; double x_136; double x_137; double x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_130 = lean_ctor_get(x_117, 0); -x_131 = lean_ctor_get(x_117, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_117); -x_132 = 0; -x_133 = lean_unsigned_to_nat(0u); -x_134 = l_Float_ofScientific(x_110, x_132, x_133); -lean_dec(x_110); -x_135 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_136 = lean_float_div(x_134, x_135); -x_137 = l_Float_ofScientific(x_130, x_132, x_133); -lean_dec(x_130); -x_138 = lean_float_div(x_137, x_135); -x_139 = lean_box_float(x_136); -x_140 = lean_box_float(x_138); -x_141 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -lean_ctor_set(x_112, 1, x_141); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_131; -goto block_108; +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_134 = lean_ctor_get(x_121, 0); +x_135 = lean_ctor_get(x_121, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_121); +x_136 = 0; +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Float_ofScientific(x_114, x_136, x_137); +lean_dec(x_114); +x_139 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_140 = lean_float_div(x_138, x_139); +x_141 = l_Float_ofScientific(x_134, x_136, x_137); +lean_dec(x_134); +x_142 = lean_float_div(x_141, x_139); +x_143 = lean_box_float(x_140); +x_144 = lean_box_float(x_142); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_116, 1, x_145); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_135; +goto block_112; } } else { -lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_142 = lean_ctor_get(x_112, 0); -x_143 = lean_ctor_get(x_112, 1); -lean_inc(x_143); -lean_inc(x_142); -lean_dec(x_112); -x_144 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_144, 0, x_142); -x_145 = lean_io_mono_nanos_now(x_143); -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; lean_object* x_154; double x_155; double x_156; double x_157; double x_158; double x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_146 = lean_ctor_get(x_116, 0); +x_147 = lean_ctor_get(x_116, 1); lean_inc(x_147); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - lean_ctor_release(x_145, 1); - x_148 = x_145; +lean_inc(x_146); +lean_dec(x_116); +x_148 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_148, 0, x_146); +x_149 = lean_io_mono_nanos_now(x_147); +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + lean_ctor_release(x_149, 1); + x_152 = x_149; } else { - lean_dec_ref(x_145); - x_148 = lean_box(0); + lean_dec_ref(x_149); + x_152 = lean_box(0); } -x_149 = 0; -x_150 = lean_unsigned_to_nat(0u); -x_151 = l_Float_ofScientific(x_110, x_149, x_150); -lean_dec(x_110); -x_152 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_153 = lean_float_div(x_151, x_152); -x_154 = l_Float_ofScientific(x_146, x_149, x_150); -lean_dec(x_146); -x_155 = lean_float_div(x_154, x_152); -x_156 = lean_box_float(x_153); -x_157 = lean_box_float(x_155); -if (lean_is_scalar(x_148)) { - x_158 = lean_alloc_ctor(0, 2, 0); +x_153 = 0; +x_154 = lean_unsigned_to_nat(0u); +x_155 = l_Float_ofScientific(x_114, x_153, x_154); +lean_dec(x_114); +x_156 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_157 = lean_float_div(x_155, x_156); +x_158 = l_Float_ofScientific(x_150, x_153, x_154); +lean_dec(x_150); +x_159 = lean_float_div(x_158, x_156); +x_160 = lean_box_float(x_157); +x_161 = lean_box_float(x_159); +if (lean_is_scalar(x_152)) { + x_162 = lean_alloc_ctor(0, 2, 0); } else { - x_158 = x_148; + x_162 = x_152; } -lean_ctor_set(x_158, 0, x_156); -lean_ctor_set(x_158, 1, x_157); -x_159 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_159, 0, x_144); -lean_ctor_set(x_159, 1, x_158); -x_19 = x_159; -x_20 = x_147; -goto block_108; +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_161); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_148); +lean_ctor_set(x_163, 1, x_162); +x_19 = x_163; +x_20 = x_151; +goto block_112; } } else { -uint8_t x_160; -x_160 = !lean_is_exclusive(x_112); -if (x_160 == 0) +uint8_t x_164; +x_164 = !lean_is_exclusive(x_116); +if (x_164 == 0) { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_161 = lean_ctor_get(x_112, 0); -x_162 = lean_ctor_get(x_112, 1); -x_163 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_163, 0, x_161); -x_164 = lean_io_mono_nanos_now(x_162); -x_165 = !lean_is_exclusive(x_164); -if (x_165 == 0) +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; +x_165 = lean_ctor_get(x_116, 0); +x_166 = lean_ctor_get(x_116, 1); +x_167 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_167, 0, x_165); +x_168 = lean_io_mono_nanos_now(x_166); +x_169 = !lean_is_exclusive(x_168); +if (x_169 == 0) { -lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; double x_170; double x_171; double x_172; double x_173; double x_174; lean_object* x_175; lean_object* x_176; -x_166 = lean_ctor_get(x_164, 0); -x_167 = lean_ctor_get(x_164, 1); -x_168 = 0; -x_169 = lean_unsigned_to_nat(0u); -x_170 = l_Float_ofScientific(x_110, x_168, x_169); -lean_dec(x_110); -x_171 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_172 = lean_float_div(x_170, x_171); -x_173 = l_Float_ofScientific(x_166, x_168, x_169); -lean_dec(x_166); -x_174 = lean_float_div(x_173, x_171); -x_175 = lean_box_float(x_172); -x_176 = lean_box_float(x_174); -lean_ctor_set(x_164, 1, x_176); -lean_ctor_set(x_164, 0, x_175); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_164); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_167; -goto block_108; +lean_object* x_170; lean_object* x_171; uint8_t x_172; lean_object* x_173; double x_174; double x_175; double x_176; double x_177; double x_178; lean_object* x_179; lean_object* x_180; +x_170 = lean_ctor_get(x_168, 0); +x_171 = lean_ctor_get(x_168, 1); +x_172 = 0; +x_173 = lean_unsigned_to_nat(0u); +x_174 = l_Float_ofScientific(x_114, x_172, x_173); +lean_dec(x_114); +x_175 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_176 = lean_float_div(x_174, x_175); +x_177 = l_Float_ofScientific(x_170, x_172, x_173); +lean_dec(x_170); +x_178 = lean_float_div(x_177, x_175); +x_179 = lean_box_float(x_176); +x_180 = lean_box_float(x_178); +lean_ctor_set(x_168, 1, x_180); +lean_ctor_set(x_168, 0, x_179); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_168); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_171; +goto block_112; } else { -lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_object* x_180; double x_181; double x_182; double x_183; double x_184; double x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_177 = lean_ctor_get(x_164, 0); -x_178 = lean_ctor_get(x_164, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_164); -x_179 = 0; -x_180 = lean_unsigned_to_nat(0u); -x_181 = l_Float_ofScientific(x_110, x_179, x_180); -lean_dec(x_110); -x_182 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_183 = lean_float_div(x_181, x_182); -x_184 = l_Float_ofScientific(x_177, x_179, x_180); -lean_dec(x_177); -x_185 = lean_float_div(x_184, x_182); -x_186 = lean_box_float(x_183); -x_187 = lean_box_float(x_185); -x_188 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_188); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_178; -goto block_108; +lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_181 = lean_ctor_get(x_168, 0); +x_182 = lean_ctor_get(x_168, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_168); +x_183 = 0; +x_184 = lean_unsigned_to_nat(0u); +x_185 = l_Float_ofScientific(x_114, x_183, x_184); +lean_dec(x_114); +x_186 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_187 = lean_float_div(x_185, x_186); +x_188 = l_Float_ofScientific(x_181, x_183, x_184); +lean_dec(x_181); +x_189 = lean_float_div(x_188, x_186); +x_190 = lean_box_float(x_187); +x_191 = lean_box_float(x_189); +x_192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_192); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_182; +goto block_112; } } else { -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_189 = lean_ctor_get(x_112, 0); -x_190 = lean_ctor_get(x_112, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_112); -x_191 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_191, 0, x_189); -x_192 = lean_io_mono_nanos_now(x_190); -x_193 = lean_ctor_get(x_192, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; lean_object* x_201; double x_202; double x_203; double x_204; double x_205; double x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_193 = lean_ctor_get(x_116, 0); +x_194 = lean_ctor_get(x_116, 1); lean_inc(x_194); -if (lean_is_exclusive(x_192)) { - lean_ctor_release(x_192, 0); - lean_ctor_release(x_192, 1); - x_195 = x_192; +lean_inc(x_193); +lean_dec(x_116); +x_195 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_195, 0, x_193); +x_196 = lean_io_mono_nanos_now(x_194); +x_197 = lean_ctor_get(x_196, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_196, 1); +lean_inc(x_198); +if (lean_is_exclusive(x_196)) { + lean_ctor_release(x_196, 0); + lean_ctor_release(x_196, 1); + x_199 = x_196; } else { - lean_dec_ref(x_192); - x_195 = lean_box(0); + lean_dec_ref(x_196); + x_199 = lean_box(0); } -x_196 = 0; -x_197 = lean_unsigned_to_nat(0u); -x_198 = l_Float_ofScientific(x_110, x_196, x_197); -lean_dec(x_110); -x_199 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_200 = lean_float_div(x_198, x_199); -x_201 = l_Float_ofScientific(x_193, x_196, x_197); -lean_dec(x_193); -x_202 = lean_float_div(x_201, x_199); -x_203 = lean_box_float(x_200); -x_204 = lean_box_float(x_202); -if (lean_is_scalar(x_195)) { - x_205 = lean_alloc_ctor(0, 2, 0); +x_200 = 0; +x_201 = lean_unsigned_to_nat(0u); +x_202 = l_Float_ofScientific(x_114, x_200, x_201); +lean_dec(x_114); +x_203 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_204 = lean_float_div(x_202, x_203); +x_205 = l_Float_ofScientific(x_197, x_200, x_201); +lean_dec(x_197); +x_206 = lean_float_div(x_205, x_203); +x_207 = lean_box_float(x_204); +x_208 = lean_box_float(x_206); +if (lean_is_scalar(x_199)) { + x_209 = lean_alloc_ctor(0, 2, 0); } else { - x_205 = x_195; + x_209 = x_199; } -lean_ctor_set(x_205, 0, x_203); -lean_ctor_set(x_205, 1, x_204); -x_206 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_206, 0, x_191); -lean_ctor_set(x_206, 1, x_205); -x_19 = x_206; -x_20 = x_194; -goto block_108; +lean_ctor_set(x_209, 0, x_207); +lean_ctor_set(x_209, 1, x_208); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_195); +lean_ctor_set(x_210, 1, x_209); +x_19 = x_210; +x_20 = x_198; +goto block_112; } } -block_108: +block_112: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_94; uint8_t x_95; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); x_22 = lean_ctor_get(x_19, 0); @@ -10766,17 +10758,33 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_21, 1); lean_inc(x_24); lean_dec(x_21); -x_94 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__2; -x_95 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_94); -if (x_95 == 0) +x_25 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__2; +x_26 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_25); +if (x_26 == 0) { -uint8_t x_96; -x_96 = 0; -x_25 = x_96; -goto block_93; +if (x_6 == 0) +{ +uint8_t x_92; +x_92 = 0; +x_27 = x_92; +goto block_91; } else { +lean_object* x_93; double x_94; double x_95; lean_object* x_96; +x_93 = lean_box(0); +x_94 = lean_unbox_float(x_23); +lean_dec(x_23); +x_95 = lean_unbox_float(x_24); +lean_dec(x_24); +x_96 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_94, x_95, x_5, x_93, x_9, x_10, x_11, x_12, x_20); +return x_96; +} +} +else +{ +if (x_6 == 0) +{ double x_97; double x_98; double x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; double x_104; double x_105; double x_106; uint8_t x_107; x_97 = lean_unbox_float(x_24); x_98 = lean_unbox_float(x_23); @@ -10790,859 +10798,871 @@ lean_dec(x_101); x_105 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__4; x_106 = lean_float_div(x_104, x_105); x_107 = lean_float_decLt(x_106, x_99); -x_25 = x_107; -goto block_93; +x_27 = x_107; +goto block_91; } -block_93: +else { -if (x_6 == 0) +lean_object* x_108; double x_109; double x_110; lean_object* x_111; +x_108 = lean_box(0); +x_109 = lean_unbox_float(x_23); +lean_dec(x_23); +x_110 = lean_unbox_float(x_24); +lean_dec(x_24); +x_111 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_109, x_110, x_5, x_108, x_9, x_10, x_11, x_12, x_20); +return x_111; +} +} +block_91: { -if (x_25 == 0) +if (x_27 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_24); lean_dec(x_23); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_26 = lean_st_ref_take(x_12, x_20); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -x_29 = lean_ctor_get(x_26, 1); +x_28 = lean_st_ref_take(x_12, x_20); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -lean_dec(x_26); -x_30 = !lean_is_exclusive(x_27); -if (x_30 == 0) -{ -lean_object* x_31; uint8_t x_32; -x_31 = lean_ctor_get(x_27, 3); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_28); +x_30 = lean_ctor_get(x_29, 3); +lean_inc(x_30); +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = !lean_is_exclusive(x_29); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_33 = lean_ctor_get(x_28, 0); -x_34 = l_Lean_PersistentArray_append___rarg(x_15, x_33); +lean_object* x_33; uint8_t x_34; +x_33 = lean_ctor_get(x_29, 3); lean_dec(x_33); -lean_ctor_set(x_28, 0, x_34); -x_35 = lean_st_ref_set(x_12, x_27, x_29); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); +x_34 = !lean_is_exclusive(x_30); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_ctor_get(x_30, 0); +x_36 = l_Lean_PersistentArray_append___rarg(x_15, x_35); lean_dec(x_35); -x_37 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_tryResolve___spec__3(x_22, x_9, x_10, x_11, x_12, x_36); +lean_ctor_set(x_30, 0, x_36); +x_37 = lean_st_ref_set(x_12, x_29, x_31); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +x_39 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_tryResolve___spec__3(x_22, x_9, x_10, x_11, x_12, x_38); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_37) == 0) +if (lean_obj_tag(x_39) == 0) { -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -return x_37; +return x_39; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_ctor_get(x_37, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_37); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_39); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } else { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_37); -if (x_42 == 0) +uint8_t x_44; +x_44 = !lean_is_exclusive(x_39); +if (x_44 == 0) { -return x_37; +return x_39; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_37, 0); -x_44 = lean_ctor_get(x_37, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_37); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_39, 0); +x_46 = lean_ctor_get(x_39, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_39); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } } else { -uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_47 = lean_ctor_get(x_28, 0); -lean_inc(x_47); -lean_dec(x_28); -x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_47); -lean_dec(x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); -lean_ctor_set(x_27, 3, x_49); -x_50 = lean_st_ref_set(x_12, x_27, x_29); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -lean_dec(x_50); -x_52 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_tryResolve___spec__3(x_22, x_9, x_10, x_11, x_12, x_51); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_22); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); +uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_49 = lean_ctor_get(x_30, 0); +lean_inc(x_49); +lean_dec(x_30); +x_50 = l_Lean_PersistentArray_append___rarg(x_15, x_49); +lean_dec(x_49); +x_51 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); +lean_ctor_set(x_29, 3, x_51); +x_52 = lean_st_ref_set(x_12, x_29, x_31); +x_53 = lean_ctor_get(x_52, 1); lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_55 = x_52; +lean_dec(x_52); +x_54 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_tryResolve___spec__3(x_22, x_9, x_10, x_11, x_12, x_53); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_22); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; } else { - lean_dec_ref(x_52); - x_55 = lean_box(0); + lean_dec_ref(x_54); + x_57 = lean_box(0); } -if (lean_is_scalar(x_55)) { - x_56 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_57)) { + x_58 = lean_alloc_ctor(0, 2, 0); } else { - x_56 = x_55; + x_58 = x_57; } -lean_ctor_set(x_56, 0, x_53); -lean_ctor_set(x_56, 1, x_54); -return x_56; +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_56); +return x_58; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_52, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_52, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_59 = x_52; +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_54, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_54, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_61 = x_54; } else { - lean_dec_ref(x_52); - x_59 = lean_box(0); + lean_dec_ref(x_54); + x_61 = lean_box(0); } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(1, 2, 0); } else { - x_60 = x_59; + x_62 = x_61; } -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_58); -return x_60; +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; } } } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_61 = lean_ctor_get(x_27, 0); -x_62 = lean_ctor_get(x_27, 1); -x_63 = lean_ctor_get(x_27, 2); -x_64 = lean_ctor_get(x_27, 4); -x_65 = lean_ctor_get(x_27, 5); -x_66 = lean_ctor_get(x_27, 6); -x_67 = lean_ctor_get(x_27, 7); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_63 = lean_ctor_get(x_29, 0); +x_64 = lean_ctor_get(x_29, 1); +x_65 = lean_ctor_get(x_29, 2); +x_66 = lean_ctor_get(x_29, 4); +x_67 = lean_ctor_get(x_29, 5); +x_68 = lean_ctor_get(x_29, 6); +x_69 = lean_ctor_get(x_29, 7); +lean_inc(x_69); +lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_27); -x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_69 = lean_ctor_get(x_28, 0); -lean_inc(x_69); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - x_70 = x_28; +lean_dec(x_29); +x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_71 = lean_ctor_get(x_30, 0); +lean_inc(x_71); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + x_72 = x_30; } else { - lean_dec_ref(x_28); - x_70 = lean_box(0); + lean_dec_ref(x_30); + x_72 = lean_box(0); } -x_71 = l_Lean_PersistentArray_append___rarg(x_15, x_69); -lean_dec(x_69); -if (lean_is_scalar(x_70)) { - x_72 = lean_alloc_ctor(0, 1, 8); +x_73 = l_Lean_PersistentArray_append___rarg(x_15, x_71); +lean_dec(x_71); +if (lean_is_scalar(x_72)) { + x_74 = lean_alloc_ctor(0, 1, 8); } else { - x_72 = x_70; + x_74 = x_72; } -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); -x_73 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_73, 0, x_61); -lean_ctor_set(x_73, 1, x_62); -lean_ctor_set(x_73, 2, x_63); -lean_ctor_set(x_73, 3, x_72); -lean_ctor_set(x_73, 4, x_64); -lean_ctor_set(x_73, 5, x_65); -lean_ctor_set(x_73, 6, x_66); -lean_ctor_set(x_73, 7, x_67); -x_74 = lean_st_ref_set(x_12, x_73, x_29); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_76 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_tryResolve___spec__3(x_22, x_9, x_10, x_11, x_12, x_75); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); +x_75 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_64); +lean_ctor_set(x_75, 2, x_65); +lean_ctor_set(x_75, 3, x_74); +lean_ctor_set(x_75, 4, x_66); +lean_ctor_set(x_75, 5, x_67); +lean_ctor_set(x_75, 6, x_68); +lean_ctor_set(x_75, 7, x_69); +x_76 = lean_st_ref_set(x_12, x_75, x_31); +x_77 = lean_ctor_get(x_76, 1); +lean_inc(x_77); +lean_dec(x_76); +x_78 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_tryResolve___spec__3(x_22, x_9, x_10, x_11, x_12, x_77); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_76) == 0) +if (lean_obj_tag(x_78) == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_76, 0); -lean_inc(x_77); -x_78 = lean_ctor_get(x_76, 1); -lean_inc(x_78); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_79 = x_76; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_81 = x_78; } else { - lean_dec_ref(x_76); - x_79 = lean_box(0); + lean_dec_ref(x_78); + x_81 = lean_box(0); } -if (lean_is_scalar(x_79)) { - x_80 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(0, 2, 0); } else { - x_80 = x_79; + x_82 = x_81; } -lean_ctor_set(x_80, 0, x_77); -lean_ctor_set(x_80, 1, x_78); -return x_80; +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_80); +return x_82; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_81 = lean_ctor_get(x_76, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_76, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_83 = x_76; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_83 = lean_ctor_get(x_78, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_78, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_85 = x_78; } else { - lean_dec_ref(x_76); - x_83 = lean_box(0); + lean_dec_ref(x_78); + x_85 = lean_box(0); } -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); } else { - x_84 = x_83; + x_86 = x_85; } -lean_ctor_set(x_84, 0, x_81); -lean_ctor_set(x_84, 1, x_82); -return x_84; +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; } } } else { -lean_object* x_85; double x_86; double x_87; lean_object* x_88; -x_85 = lean_box(0); -x_86 = lean_unbox_float(x_23); +lean_object* x_87; double x_88; double x_89; lean_object* x_90; +x_87 = lean_box(0); +x_88 = lean_unbox_float(x_23); lean_dec(x_23); -x_87 = lean_unbox_float(x_24); +x_89 = lean_unbox_float(x_24); lean_dec(x_24); -x_88 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_86, x_87, x_5, x_85, x_9, x_10, x_11, x_12, x_20); -return x_88; -} -} -else -{ -lean_object* x_89; double x_90; double x_91; lean_object* x_92; -x_89 = lean_box(0); -x_90 = lean_unbox_float(x_23); -lean_dec(x_23); -x_91 = lean_unbox_float(x_24); -lean_dec(x_24); -x_92 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_20); -return x_92; +x_90 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_20); +return x_90; } } } } else { -lean_object* x_207; lean_object* x_208; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_16); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_211; lean_object* x_212; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_16); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_207 = x_336; -x_208 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_211 = x_344; +x_212 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_207 = x_374; -x_208 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_282; uint8_t x_283; -x_209 = lean_ctor_get(x_207, 1); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 0); -lean_inc(x_210); -lean_dec(x_207); -x_211 = lean_ctor_get(x_209, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 1); -lean_inc(x_212); -lean_dec(x_209); -x_282 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_213 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_212); -x_286 = lean_unbox_float(x_211); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_213 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_211 = x_382; +x_212 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; uint8_t x_219; +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 0); +lean_inc(x_214); +lean_dec(x_211); +x_215 = lean_ctor_get(x_213, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 1); +lean_inc(x_216); +lean_dec(x_213); +x_217 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__2; +x_218 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_217); +if (x_218 == 0) { if (x_6 == 0) { -if (x_213 == 0) +uint8_t x_284; +x_284 = 0; +x_219 = x_284; +goto block_283; +} +else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; -lean_dec(x_212); -lean_dec(x_211); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_215); +lean_dec(x_215); +x_287 = lean_unbox_float(x_216); +lean_dec(x_216); +x_288 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_212); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_216); +x_290 = lean_unbox_float(x_215); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_219 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_215); +lean_dec(x_215); +x_300 = lean_unbox_float(x_216); +lean_dec(x_216); +x_301 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_212); +return x_301; +} +} +block_283: +{ +if (x_219 == 0) +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; +lean_dec(x_216); +lean_dec(x_215); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_214 = lean_st_ref_take(x_12, x_208); -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_215, 3); -lean_inc(x_216); -x_217 = lean_ctor_get(x_214, 1); -lean_inc(x_217); -lean_dec(x_214); -x_218 = !lean_is_exclusive(x_215); -if (x_218 == 0) +x_220 = lean_st_ref_take(x_12, x_212); +x_221 = lean_ctor_get(x_220, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_221, 3); +lean_inc(x_222); +x_223 = lean_ctor_get(x_220, 1); +lean_inc(x_223); +lean_dec(x_220); +x_224 = !lean_is_exclusive(x_221); +if (x_224 == 0) { -lean_object* x_219; uint8_t x_220; -x_219 = lean_ctor_get(x_215, 3); -lean_dec(x_219); -x_220 = !lean_is_exclusive(x_216); -if (x_220 == 0) -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_221 = lean_ctor_get(x_216, 0); -x_222 = l_Lean_PersistentArray_append___rarg(x_15, x_221); -lean_dec(x_221); -lean_ctor_set(x_216, 0, x_222); -x_223 = lean_st_ref_set(x_12, x_215, x_217); -x_224 = lean_ctor_get(x_223, 1); -lean_inc(x_224); -lean_dec(x_223); -x_225 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_tryResolve___spec__3(x_210, x_9, x_10, x_11, x_12, x_224); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_225) == 0) -{ -uint8_t x_226; -x_226 = !lean_is_exclusive(x_225); +lean_object* x_225; uint8_t x_226; +x_225 = lean_ctor_get(x_221, 3); +lean_dec(x_225); +x_226 = !lean_is_exclusive(x_222); if (x_226 == 0) { -return x_225; -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; -x_227 = lean_ctor_get(x_225, 0); -x_228 = lean_ctor_get(x_225, 1); -lean_inc(x_228); -lean_inc(x_227); -lean_dec(x_225); -x_229 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_229, 0, x_227); -lean_ctor_set(x_229, 1, x_228); -return x_229; -} -} -else -{ -uint8_t x_230; -x_230 = !lean_is_exclusive(x_225); -if (x_230 == 0) -{ -return x_225; -} -else -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_225, 0); -x_232 = lean_ctor_get(x_225, 1); -lean_inc(x_232); -lean_inc(x_231); -lean_dec(x_225); -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_231); -lean_ctor_set(x_233, 1, x_232); -return x_233; -} -} -} -else -{ -uint64_t x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_234 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_235 = lean_ctor_get(x_216, 0); -lean_inc(x_235); -lean_dec(x_216); -x_236 = l_Lean_PersistentArray_append___rarg(x_15, x_235); -lean_dec(x_235); -x_237 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_237, 0, x_236); -lean_ctor_set_uint64(x_237, sizeof(void*)*1, x_234); -lean_ctor_set(x_215, 3, x_237); -x_238 = lean_st_ref_set(x_12, x_215, x_217); -x_239 = lean_ctor_get(x_238, 1); -lean_inc(x_239); -lean_dec(x_238); -x_240 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_tryResolve___spec__3(x_210, x_9, x_10, x_11, x_12, x_239); +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_227 = lean_ctor_get(x_222, 0); +x_228 = l_Lean_PersistentArray_append___rarg(x_15, x_227); +lean_dec(x_227); +lean_ctor_set(x_222, 0, x_228); +x_229 = lean_st_ref_set(x_12, x_221, x_223); +x_230 = lean_ctor_get(x_229, 1); +lean_inc(x_230); +lean_dec(x_229); +x_231 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_tryResolve___spec__3(x_214, x_9, x_10, x_11, x_12, x_230); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_240) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_231) == 0) { -lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; -x_241 = lean_ctor_get(x_240, 0); +uint8_t x_232; +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +return x_231; +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_231, 0); +x_234 = lean_ctor_get(x_231, 1); +lean_inc(x_234); +lean_inc(x_233); +lean_dec(x_231); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +return x_235; +} +} +else +{ +uint8_t x_236; +x_236 = !lean_is_exclusive(x_231); +if (x_236 == 0) +{ +return x_231; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_231, 0); +x_238 = lean_ctor_get(x_231, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_231); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} +} +} +else +{ +uint64_t x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_240 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_241 = lean_ctor_get(x_222, 0); lean_inc(x_241); -x_242 = lean_ctor_get(x_240, 1); -lean_inc(x_242); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_243 = x_240; -} else { - lean_dec_ref(x_240); - x_243 = lean_box(0); -} -if (lean_is_scalar(x_243)) { - x_244 = lean_alloc_ctor(0, 2, 0); -} else { - x_244 = x_243; -} -lean_ctor_set(x_244, 0, x_241); -lean_ctor_set(x_244, 1, x_242); -return x_244; -} -else -{ -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_245 = lean_ctor_get(x_240, 0); +lean_dec(x_222); +x_242 = l_Lean_PersistentArray_append___rarg(x_15, x_241); +lean_dec(x_241); +x_243 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set_uint64(x_243, sizeof(void*)*1, x_240); +lean_ctor_set(x_221, 3, x_243); +x_244 = lean_st_ref_set(x_12, x_221, x_223); +x_245 = lean_ctor_get(x_244, 1); lean_inc(x_245); -x_246 = lean_ctor_get(x_240, 1); -lean_inc(x_246); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_247 = x_240; -} else { - lean_dec_ref(x_240); - x_247 = lean_box(0); -} -if (lean_is_scalar(x_247)) { - x_248 = lean_alloc_ctor(1, 2, 0); -} else { - x_248 = x_247; -} -lean_ctor_set(x_248, 0, x_245); -lean_ctor_set(x_248, 1, x_246); -return x_248; -} -} -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_249 = lean_ctor_get(x_215, 0); -x_250 = lean_ctor_get(x_215, 1); -x_251 = lean_ctor_get(x_215, 2); -x_252 = lean_ctor_get(x_215, 4); -x_253 = lean_ctor_get(x_215, 5); -x_254 = lean_ctor_get(x_215, 6); -x_255 = lean_ctor_get(x_215, 7); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_dec(x_215); -x_256 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_257 = lean_ctor_get(x_216, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_216)) { - lean_ctor_release(x_216, 0); - x_258 = x_216; -} else { - lean_dec_ref(x_216); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_15, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_261, 0, x_249); -lean_ctor_set(x_261, 1, x_250); -lean_ctor_set(x_261, 2, x_251); -lean_ctor_set(x_261, 3, x_260); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_255); -x_262 = lean_st_ref_set(x_12, x_261, x_217); -x_263 = lean_ctor_get(x_262, 1); -lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_tryResolve___spec__3(x_210, x_9, x_10, x_11, x_12, x_263); +lean_dec(x_244); +x_246 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_tryResolve___spec__3(x_214, x_9, x_10, x_11, x_12, x_245); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_246) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_247 = lean_ctor_get(x_246, 0); +lean_inc(x_247); +x_248 = lean_ctor_get(x_246, 1); +lean_inc(x_248); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_249 = x_246; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_246); + x_249 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_249)) { + x_250 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_250 = x_249; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_250, 0, x_247); +lean_ctor_set(x_250, 1, x_248); +return x_250; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_251 = lean_ctor_get(x_246, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_246, 1); +lean_inc(x_252); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_253 = x_246; +} else { + lean_dec_ref(x_246); + x_253 = lean_box(0); +} +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(1, 2, 0); +} else { + x_254 = x_253; +} +lean_ctor_set(x_254, 0, x_251); +lean_ctor_set(x_254, 1, x_252); +return x_254; +} +} +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_255 = lean_ctor_get(x_221, 0); +x_256 = lean_ctor_get(x_221, 1); +x_257 = lean_ctor_get(x_221, 2); +x_258 = lean_ctor_get(x_221, 4); +x_259 = lean_ctor_get(x_221, 5); +x_260 = lean_ctor_get(x_221, 6); +x_261 = lean_ctor_get(x_221, 7); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_221); +x_262 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_263 = lean_ctor_get(x_222, 0); +lean_inc(x_263); +if (lean_is_exclusive(x_222)) { + lean_ctor_release(x_222, 0); + x_264 = x_222; +} else { + lean_dec_ref(x_222); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_15, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_267, 0, x_255); +lean_ctor_set(x_267, 1, x_256); +lean_ctor_set(x_267, 2, x_257); +lean_ctor_set(x_267, 3, x_266); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_261); +x_268 = lean_st_ref_set(x_12, x_267, x_223); +x_269 = lean_ctor_get(x_268, 1); lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_tryResolve___spec__3(x_214, x_9, x_10, x_11, x_12, x_269); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_214); +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_272 = x_271; + x_274 = x_273; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; +} else { + lean_dec_ref(x_270); + x_277 = lean_box(0); +} +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); +} else { + x_278 = x_277; +} +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_211); -lean_dec(x_211); -x_275 = lean_unbox_float(x_212); -lean_dec(x_212); -x_276 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_274, x_275, x_5, x_273, x_9, x_10, x_11, x_12, x_208); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_211); -lean_dec(x_211); -x_279 = lean_unbox_float(x_212); -lean_dec(x_212); -x_280 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_278, x_279, x_5, x_277, x_9, x_10, x_11, x_12, x_208); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_215); +lean_dec(x_215); +x_281 = lean_unbox_float(x_216); +lean_dec(x_216); +x_282 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_212); +return x_282; } } } @@ -12413,43 +12433,41 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_8); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); lean_dec(x_8); x_19 = lean_unbox_float(x_9); lean_dec(x_9); -x_20 = lean_unbox_float(x_10); -lean_dec(x_10); -x_21 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_18, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_15); -lean_dec(x_13); +x_20 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__2(x_1, x_16, x_3, x_4, x_5, x_6, x_17, x_18, x_19, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_14); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_21; +return x_20; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_7); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); lean_dec(x_7); x_19 = lean_unbox_float(x_8); lean_dec(x_8); -x_20 = lean_unbox_float(x_9); -lean_dec(x_9); -x_21 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__3(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_11); -lean_dec(x_6); -return x_21; +x_20 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__3(x_1, x_16, x_3, x_4, x_5, x_17, x_18, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +return x_20; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -14047,109 +14065,84 @@ lean_dec(x_11); return x_16; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -double x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; -x_19 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_20 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_20, 0, x_1); -lean_ctor_set(x_20, 1, x_3); -lean_ctor_set_float(x_20, sizeof(void*)*2, x_19); -lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_19); -lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); -x_21 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2___closed__2; -x_22 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_21); -if (x_22 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_18 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2___closed__1; +x_19 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_19, 0, x_1); +lean_ctor_set(x_19, 1, x_3); +lean_ctor_set_float(x_19, sizeof(void*)*2, x_18); +lean_ctor_set_float(x_19, sizeof(void*)*2 + 8, x_18); +lean_ctor_set_uint8(x_19, sizeof(void*)*2 + 16, x_2); +x_20 = lean_box(0); +x_21 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__1(x_4, x_5, x_10, x_6, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +return x_21; +} +else { -lean_object* x_23; lean_object* x_24; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_22, 0, x_1); +lean_ctor_set(x_22, 1, x_3); +lean_ctor_set_float(x_22, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_22, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_22, sizeof(void*)*2 + 16, x_2); x_23 = lean_box(0); -x_24 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__1(x_4, x_5, x_11, x_6, x_20, x_23, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +x_24 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__1(x_4, x_5, x_10, x_6, x_22, x_23, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_24; } -else -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; -lean_dec(x_20); -x_25 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_25, 0, x_1); -lean_ctor_set(x_25, 1, x_3); -lean_ctor_set_float(x_25, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_25, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_25, sizeof(void*)*2 + 16, x_2); -x_26 = lean_box(0); -x_27 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__1(x_4, x_5, x_11, x_6, x_25, x_26, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -return x_27; } } -else -{ -lean_object* x_28; lean_object* x_29; lean_object* x_30; -lean_dec(x_20); -x_28 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_28, 0, x_1); -lean_ctor_set(x_28, 1, x_3); -lean_ctor_set_float(x_28, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_28, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_28, sizeof(void*)*2 + 16, x_2); -x_29 = lean_box(0); -x_30 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__1(x_4, x_5, x_11, x_6, x_28, x_29, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -return x_30; -} -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_19; lean_object* x_20; -x_19 = lean_ctor_get(x_16, 5); -lean_inc(x_19); -lean_inc(x_17); +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_15, 5); +lean_inc(x_18); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_20 = lean_apply_8(x_10, x_5, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -if (lean_obj_tag(x_20) == 0) +x_19 = lean_apply_8(x_9, x_5, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +if (lean_obj_tag(x_19) == 0) { -lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_21 = lean_ctor_get(x_20, 0); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); -x_22 = lean_ctor_get(x_20, 1); -lean_inc(x_22); -lean_dec(x_20); -x_23 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_19, x_5, x_6, x_7, x_8, x_9, x_21, x_12, x_13, x_14, x_15, x_16, x_17, x_22); -lean_dec(x_17); -lean_dec(x_15); +lean_dec(x_19); +x_22 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_18, x_5, x_6, x_7, x_8, x_20, x_11, x_12, x_13, x_14, x_15, x_16, x_21); +lean_dec(x_16); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_23; +return x_22; } else { -lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_24 = lean_ctor_get(x_20, 1); -lean_inc(x_24); -lean_dec(x_20); -x_25 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3___closed__2; -x_26 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_19, x_5, x_6, x_7, x_8, x_9, x_25, x_12, x_13, x_14, x_15, x_16, x_17, x_24); -lean_dec(x_17); -lean_dec(x_15); +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_19, 1); +lean_inc(x_23); +lean_dec(x_19); +x_24 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3___closed__2; +x_25 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_18, x_5, x_6, x_7, x_8, x_24, x_11, x_12, x_13, x_14, x_15, x_16, x_23); +lean_dec(x_16); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_26; +return x_25; } } } @@ -14167,255 +14160,255 @@ x_19 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___ x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_19); if (x_20 == 0) { -lean_object* x_21; lean_object* x_22; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; -x_117 = lean_io_mono_nanos_now(x_18); -x_118 = lean_ctor_get(x_117, 0); -lean_inc(x_118); -x_119 = lean_ctor_get(x_117, 1); -lean_inc(x_119); -lean_dec(x_117); +lean_object* x_21; lean_object* x_22; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; +x_125 = lean_io_mono_nanos_now(x_18); +x_126 = lean_ctor_get(x_125, 0); +lean_inc(x_126); +x_127 = lean_ctor_get(x_125, 1); +lean_inc(x_127); +lean_dec(x_125); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_120 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_119); -if (lean_obj_tag(x_120) == 0) +x_128 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_127); +if (lean_obj_tag(x_128) == 0) { -uint8_t x_121; -x_121 = !lean_is_exclusive(x_120); -if (x_121 == 0) +uint8_t x_129; +x_129 = !lean_is_exclusive(x_128); +if (x_129 == 0) { -lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; uint8_t x_126; -x_122 = lean_ctor_get(x_120, 0); -x_123 = lean_ctor_get(x_120, 1); -x_124 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_124, 0, x_122); -x_125 = lean_io_mono_nanos_now(x_123); -x_126 = !lean_is_exclusive(x_125); -if (x_126 == 0) +lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; uint8_t x_134; +x_130 = lean_ctor_get(x_128, 0); +x_131 = lean_ctor_get(x_128, 1); +x_132 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_132, 0, x_130); +x_133 = lean_io_mono_nanos_now(x_131); +x_134 = !lean_is_exclusive(x_133); +if (x_134 == 0) { -lean_object* x_127; lean_object* x_128; uint8_t x_129; lean_object* x_130; double x_131; double x_132; double x_133; double x_134; double x_135; lean_object* x_136; lean_object* x_137; -x_127 = lean_ctor_get(x_125, 0); -x_128 = lean_ctor_get(x_125, 1); -x_129 = 0; -x_130 = lean_unsigned_to_nat(0u); -x_131 = l_Float_ofScientific(x_118, x_129, x_130); -lean_dec(x_118); -x_132 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_133 = lean_float_div(x_131, x_132); -x_134 = l_Float_ofScientific(x_127, x_129, x_130); -lean_dec(x_127); -x_135 = lean_float_div(x_134, x_132); -x_136 = lean_box_float(x_133); -x_137 = lean_box_float(x_135); -lean_ctor_set(x_125, 1, x_137); -lean_ctor_set(x_125, 0, x_136); -lean_ctor_set(x_120, 1, x_125); -lean_ctor_set(x_120, 0, x_124); -x_21 = x_120; -x_22 = x_128; -goto block_116; +lean_object* x_135; lean_object* x_136; uint8_t x_137; lean_object* x_138; double x_139; double x_140; double x_141; double x_142; double x_143; lean_object* x_144; lean_object* x_145; +x_135 = lean_ctor_get(x_133, 0); +x_136 = lean_ctor_get(x_133, 1); +x_137 = 0; +x_138 = lean_unsigned_to_nat(0u); +x_139 = l_Float_ofScientific(x_126, x_137, x_138); +lean_dec(x_126); +x_140 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_141 = lean_float_div(x_139, x_140); +x_142 = l_Float_ofScientific(x_135, x_137, x_138); +lean_dec(x_135); +x_143 = lean_float_div(x_142, x_140); +x_144 = lean_box_float(x_141); +x_145 = lean_box_float(x_143); +lean_ctor_set(x_133, 1, x_145); +lean_ctor_set(x_133, 0, x_144); +lean_ctor_set(x_128, 1, x_133); +lean_ctor_set(x_128, 0, x_132); +x_21 = x_128; +x_22 = x_136; +goto block_124; } else { -lean_object* x_138; lean_object* x_139; uint8_t x_140; lean_object* x_141; double x_142; double x_143; double x_144; double x_145; double x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; -x_138 = lean_ctor_get(x_125, 0); -x_139 = lean_ctor_get(x_125, 1); -lean_inc(x_139); -lean_inc(x_138); -lean_dec(x_125); -x_140 = 0; -x_141 = lean_unsigned_to_nat(0u); -x_142 = l_Float_ofScientific(x_118, x_140, x_141); -lean_dec(x_118); -x_143 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_144 = lean_float_div(x_142, x_143); -x_145 = l_Float_ofScientific(x_138, x_140, x_141); -lean_dec(x_138); -x_146 = lean_float_div(x_145, x_143); -x_147 = lean_box_float(x_144); -x_148 = lean_box_float(x_146); -x_149 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_149, 0, x_147); -lean_ctor_set(x_149, 1, x_148); -lean_ctor_set(x_120, 1, x_149); -lean_ctor_set(x_120, 0, x_124); -x_21 = x_120; -x_22 = x_139; -goto block_116; +lean_object* x_146; lean_object* x_147; uint8_t x_148; lean_object* x_149; double x_150; double x_151; double x_152; double x_153; double x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; +x_146 = lean_ctor_get(x_133, 0); +x_147 = lean_ctor_get(x_133, 1); +lean_inc(x_147); +lean_inc(x_146); +lean_dec(x_133); +x_148 = 0; +x_149 = lean_unsigned_to_nat(0u); +x_150 = l_Float_ofScientific(x_126, x_148, x_149); +lean_dec(x_126); +x_151 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_152 = lean_float_div(x_150, x_151); +x_153 = l_Float_ofScientific(x_146, x_148, x_149); +lean_dec(x_146); +x_154 = lean_float_div(x_153, x_151); +x_155 = lean_box_float(x_152); +x_156 = lean_box_float(x_154); +x_157 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_157, 0, x_155); +lean_ctor_set(x_157, 1, x_156); +lean_ctor_set(x_128, 1, x_157); +lean_ctor_set(x_128, 0, x_132); +x_21 = x_128; +x_22 = x_147; +goto block_124; } } else { -lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; uint8_t x_157; lean_object* x_158; double x_159; double x_160; double x_161; double x_162; double x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; -x_150 = lean_ctor_get(x_120, 0); -x_151 = lean_ctor_get(x_120, 1); -lean_inc(x_151); -lean_inc(x_150); -lean_dec(x_120); -x_152 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_152, 0, x_150); -x_153 = lean_io_mono_nanos_now(x_151); -x_154 = lean_ctor_get(x_153, 0); -lean_inc(x_154); -x_155 = lean_ctor_get(x_153, 1); -lean_inc(x_155); -if (lean_is_exclusive(x_153)) { - lean_ctor_release(x_153, 0); - lean_ctor_release(x_153, 1); - x_156 = x_153; +lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; lean_object* x_166; double x_167; double x_168; double x_169; double x_170; double x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; +x_158 = lean_ctor_get(x_128, 0); +x_159 = lean_ctor_get(x_128, 1); +lean_inc(x_159); +lean_inc(x_158); +lean_dec(x_128); +x_160 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_160, 0, x_158); +x_161 = lean_io_mono_nanos_now(x_159); +x_162 = lean_ctor_get(x_161, 0); +lean_inc(x_162); +x_163 = lean_ctor_get(x_161, 1); +lean_inc(x_163); +if (lean_is_exclusive(x_161)) { + lean_ctor_release(x_161, 0); + lean_ctor_release(x_161, 1); + x_164 = x_161; } else { - lean_dec_ref(x_153); - x_156 = lean_box(0); + lean_dec_ref(x_161); + x_164 = lean_box(0); } -x_157 = 0; -x_158 = lean_unsigned_to_nat(0u); -x_159 = l_Float_ofScientific(x_118, x_157, x_158); -lean_dec(x_118); -x_160 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_161 = lean_float_div(x_159, x_160); -x_162 = l_Float_ofScientific(x_154, x_157, x_158); -lean_dec(x_154); -x_163 = lean_float_div(x_162, x_160); -x_164 = lean_box_float(x_161); -x_165 = lean_box_float(x_163); -if (lean_is_scalar(x_156)) { - x_166 = lean_alloc_ctor(0, 2, 0); +x_165 = 0; +x_166 = lean_unsigned_to_nat(0u); +x_167 = l_Float_ofScientific(x_126, x_165, x_166); +lean_dec(x_126); +x_168 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_169 = lean_float_div(x_167, x_168); +x_170 = l_Float_ofScientific(x_162, x_165, x_166); +lean_dec(x_162); +x_171 = lean_float_div(x_170, x_168); +x_172 = lean_box_float(x_169); +x_173 = lean_box_float(x_171); +if (lean_is_scalar(x_164)) { + x_174 = lean_alloc_ctor(0, 2, 0); } else { - x_166 = x_156; + x_174 = x_164; } -lean_ctor_set(x_166, 0, x_164); -lean_ctor_set(x_166, 1, x_165); -x_167 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_167, 0, x_152); -lean_ctor_set(x_167, 1, x_166); -x_21 = x_167; -x_22 = x_155; -goto block_116; +lean_ctor_set(x_174, 0, x_172); +lean_ctor_set(x_174, 1, x_173); +x_175 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_175, 0, x_160); +lean_ctor_set(x_175, 1, x_174); +x_21 = x_175; +x_22 = x_163; +goto block_124; } } else { -uint8_t x_168; -x_168 = !lean_is_exclusive(x_120); -if (x_168 == 0) +uint8_t x_176; +x_176 = !lean_is_exclusive(x_128); +if (x_176 == 0) { -lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; uint8_t x_173; -x_169 = lean_ctor_get(x_120, 0); -x_170 = lean_ctor_get(x_120, 1); -x_171 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_171, 0, x_169); -x_172 = lean_io_mono_nanos_now(x_170); -x_173 = !lean_is_exclusive(x_172); -if (x_173 == 0) +lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; uint8_t x_181; +x_177 = lean_ctor_get(x_128, 0); +x_178 = lean_ctor_get(x_128, 1); +x_179 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_179, 0, x_177); +x_180 = lean_io_mono_nanos_now(x_178); +x_181 = !lean_is_exclusive(x_180); +if (x_181 == 0) { -lean_object* x_174; lean_object* x_175; uint8_t x_176; lean_object* x_177; double x_178; double x_179; double x_180; double x_181; double x_182; lean_object* x_183; lean_object* x_184; -x_174 = lean_ctor_get(x_172, 0); -x_175 = lean_ctor_get(x_172, 1); -x_176 = 0; -x_177 = lean_unsigned_to_nat(0u); -x_178 = l_Float_ofScientific(x_118, x_176, x_177); -lean_dec(x_118); -x_179 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_180 = lean_float_div(x_178, x_179); -x_181 = l_Float_ofScientific(x_174, x_176, x_177); -lean_dec(x_174); -x_182 = lean_float_div(x_181, x_179); -x_183 = lean_box_float(x_180); -x_184 = lean_box_float(x_182); -lean_ctor_set(x_172, 1, x_184); -lean_ctor_set(x_172, 0, x_183); -lean_ctor_set_tag(x_120, 0); -lean_ctor_set(x_120, 1, x_172); -lean_ctor_set(x_120, 0, x_171); -x_21 = x_120; -x_22 = x_175; -goto block_116; +lean_object* x_182; lean_object* x_183; uint8_t x_184; lean_object* x_185; double x_186; double x_187; double x_188; double x_189; double x_190; lean_object* x_191; lean_object* x_192; +x_182 = lean_ctor_get(x_180, 0); +x_183 = lean_ctor_get(x_180, 1); +x_184 = 0; +x_185 = lean_unsigned_to_nat(0u); +x_186 = l_Float_ofScientific(x_126, x_184, x_185); +lean_dec(x_126); +x_187 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_188 = lean_float_div(x_186, x_187); +x_189 = l_Float_ofScientific(x_182, x_184, x_185); +lean_dec(x_182); +x_190 = lean_float_div(x_189, x_187); +x_191 = lean_box_float(x_188); +x_192 = lean_box_float(x_190); +lean_ctor_set(x_180, 1, x_192); +lean_ctor_set(x_180, 0, x_191); +lean_ctor_set_tag(x_128, 0); +lean_ctor_set(x_128, 1, x_180); +lean_ctor_set(x_128, 0, x_179); +x_21 = x_128; +x_22 = x_183; +goto block_124; } else { -lean_object* x_185; lean_object* x_186; uint8_t x_187; lean_object* x_188; double x_189; double x_190; double x_191; double x_192; double x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; -x_185 = lean_ctor_get(x_172, 0); -x_186 = lean_ctor_get(x_172, 1); -lean_inc(x_186); -lean_inc(x_185); -lean_dec(x_172); -x_187 = 0; -x_188 = lean_unsigned_to_nat(0u); -x_189 = l_Float_ofScientific(x_118, x_187, x_188); -lean_dec(x_118); -x_190 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_191 = lean_float_div(x_189, x_190); -x_192 = l_Float_ofScientific(x_185, x_187, x_188); -lean_dec(x_185); -x_193 = lean_float_div(x_192, x_190); -x_194 = lean_box_float(x_191); -x_195 = lean_box_float(x_193); -x_196 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_196, 0, x_194); -lean_ctor_set(x_196, 1, x_195); -lean_ctor_set_tag(x_120, 0); -lean_ctor_set(x_120, 1, x_196); -lean_ctor_set(x_120, 0, x_171); -x_21 = x_120; -x_22 = x_186; -goto block_116; +lean_object* x_193; lean_object* x_194; uint8_t x_195; lean_object* x_196; double x_197; double x_198; double x_199; double x_200; double x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; +x_193 = lean_ctor_get(x_180, 0); +x_194 = lean_ctor_get(x_180, 1); +lean_inc(x_194); +lean_inc(x_193); +lean_dec(x_180); +x_195 = 0; +x_196 = lean_unsigned_to_nat(0u); +x_197 = l_Float_ofScientific(x_126, x_195, x_196); +lean_dec(x_126); +x_198 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_199 = lean_float_div(x_197, x_198); +x_200 = l_Float_ofScientific(x_193, x_195, x_196); +lean_dec(x_193); +x_201 = lean_float_div(x_200, x_198); +x_202 = lean_box_float(x_199); +x_203 = lean_box_float(x_201); +x_204 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_204, 0, x_202); +lean_ctor_set(x_204, 1, x_203); +lean_ctor_set_tag(x_128, 0); +lean_ctor_set(x_128, 1, x_204); +lean_ctor_set(x_128, 0, x_179); +x_21 = x_128; +x_22 = x_194; +goto block_124; } } else { -lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; uint8_t x_204; lean_object* x_205; double x_206; double x_207; double x_208; double x_209; double x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; -x_197 = lean_ctor_get(x_120, 0); -x_198 = lean_ctor_get(x_120, 1); -lean_inc(x_198); -lean_inc(x_197); -lean_dec(x_120); -x_199 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_199, 0, x_197); -x_200 = lean_io_mono_nanos_now(x_198); -x_201 = lean_ctor_get(x_200, 0); -lean_inc(x_201); -x_202 = lean_ctor_get(x_200, 1); -lean_inc(x_202); -if (lean_is_exclusive(x_200)) { - lean_ctor_release(x_200, 0); - lean_ctor_release(x_200, 1); - x_203 = x_200; +lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; uint8_t x_212; lean_object* x_213; double x_214; double x_215; double x_216; double x_217; double x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; +x_205 = lean_ctor_get(x_128, 0); +x_206 = lean_ctor_get(x_128, 1); +lean_inc(x_206); +lean_inc(x_205); +lean_dec(x_128); +x_207 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_207, 0, x_205); +x_208 = lean_io_mono_nanos_now(x_206); +x_209 = lean_ctor_get(x_208, 0); +lean_inc(x_209); +x_210 = lean_ctor_get(x_208, 1); +lean_inc(x_210); +if (lean_is_exclusive(x_208)) { + lean_ctor_release(x_208, 0); + lean_ctor_release(x_208, 1); + x_211 = x_208; } else { - lean_dec_ref(x_200); - x_203 = lean_box(0); + lean_dec_ref(x_208); + x_211 = lean_box(0); } -x_204 = 0; -x_205 = lean_unsigned_to_nat(0u); -x_206 = l_Float_ofScientific(x_118, x_204, x_205); -lean_dec(x_118); -x_207 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_208 = lean_float_div(x_206, x_207); -x_209 = l_Float_ofScientific(x_201, x_204, x_205); -lean_dec(x_201); -x_210 = lean_float_div(x_209, x_207); -x_211 = lean_box_float(x_208); -x_212 = lean_box_float(x_210); -if (lean_is_scalar(x_203)) { - x_213 = lean_alloc_ctor(0, 2, 0); +x_212 = 0; +x_213 = lean_unsigned_to_nat(0u); +x_214 = l_Float_ofScientific(x_126, x_212, x_213); +lean_dec(x_126); +x_215 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_216 = lean_float_div(x_214, x_215); +x_217 = l_Float_ofScientific(x_209, x_212, x_213); +lean_dec(x_209); +x_218 = lean_float_div(x_217, x_215); +x_219 = lean_box_float(x_216); +x_220 = lean_box_float(x_218); +if (lean_is_scalar(x_211)) { + x_221 = lean_alloc_ctor(0, 2, 0); } else { - x_213 = x_203; + x_221 = x_211; } -lean_ctor_set(x_213, 0, x_211); -lean_ctor_set(x_213, 1, x_212); -x_214 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_214, 0, x_199); -lean_ctor_set(x_214, 1, x_213); -x_21 = x_214; -x_22 = x_202; -goto block_116; +lean_ctor_set(x_221, 0, x_219); +lean_ctor_set(x_221, 1, x_220); +x_222 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_222, 0, x_207); +lean_ctor_set(x_222, 1, x_221); +x_21 = x_222; +x_22 = x_210; +goto block_124; } } -block_116: +block_124: { -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_96; uint8_t x_97; +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; uint8_t x_29; x_23 = lean_ctor_get(x_21, 1); lean_inc(x_23); x_24 = lean_ctor_get(x_21, 0); @@ -14426,14 +14419,28 @@ lean_inc(x_25); x_26 = lean_ctor_get(x_23, 1); lean_inc(x_26); lean_dec(x_23); -x_96 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__2; -x_97 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_96); -if (x_97 == 0) +x_27 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__2; +x_28 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_27); +if (x_28 == 0) { -uint8_t x_98; -x_98 = 0; -x_27 = x_98; -goto block_95; +if (x_6 == 0) +{ +uint8_t x_94; +x_94 = 0; +x_29 = x_94; +goto block_93; +} +else +{ +lean_object* x_95; double x_96; double x_97; lean_object* x_98; +x_95 = lean_box(0); +x_96 = lean_unbox_float(x_25); +lean_dec(x_25); +x_97 = lean_unbox_float(x_26); +lean_dec(x_26); +x_98 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__3(x_2, x_3, x_4, x_17, x_24, x_28, x_96, x_97, x_5, x_95, x_9, x_10, x_11, x_12, x_13, x_14, x_22); +return x_98; +} } else { @@ -14443,6 +14450,8 @@ x_100 = lean_unbox_float(x_25); x_101 = lean_float_sub(x_99, x_100); if (x_20 == 0) { +if (x_6 == 0) +{ lean_object* x_102; lean_object* x_103; uint8_t x_104; lean_object* x_105; double x_106; double x_107; double x_108; uint8_t x_109; x_102 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__3; x_103 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_102); @@ -14453,62 +14462,86 @@ lean_dec(x_103); x_107 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__4; x_108 = lean_float_div(x_106, x_107); x_109 = lean_float_decLt(x_108, x_101); -x_27 = x_109; -goto block_95; +x_29 = x_109; +goto block_93; } else { -lean_object* x_110; lean_object* x_111; uint8_t x_112; lean_object* x_113; double x_114; uint8_t x_115; -x_110 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__3; -x_111 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_110); -x_112 = 0; -x_113 = lean_unsigned_to_nat(0u); -x_114 = l_Float_ofScientific(x_111, x_112, x_113); -lean_dec(x_111); -x_115 = lean_float_decLt(x_114, x_101); -x_27 = x_115; -goto block_95; +lean_object* x_110; double x_111; double x_112; lean_object* x_113; +x_110 = lean_box(0); +x_111 = lean_unbox_float(x_25); +lean_dec(x_25); +x_112 = lean_unbox_float(x_26); +lean_dec(x_26); +x_113 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__3(x_2, x_3, x_4, x_17, x_24, x_28, x_111, x_112, x_5, x_110, x_9, x_10, x_11, x_12, x_13, x_14, x_22); +return x_113; } } -block_95: +else { if (x_6 == 0) { -if (x_27 == 0) +lean_object* x_114; lean_object* x_115; uint8_t x_116; lean_object* x_117; double x_118; uint8_t x_119; +x_114 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__3; +x_115 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_114); +x_116 = 0; +x_117 = lean_unsigned_to_nat(0u); +x_118 = l_Float_ofScientific(x_115, x_116, x_117); +lean_dec(x_115); +x_119 = lean_float_decLt(x_118, x_101); +x_29 = x_119; +goto block_93; +} +else { -lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; +lean_object* x_120; double x_121; double x_122; lean_object* x_123; +x_120 = lean_box(0); +x_121 = lean_unbox_float(x_25); +lean_dec(x_25); +x_122 = lean_unbox_float(x_26); +lean_dec(x_26); +x_123 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__3(x_2, x_3, x_4, x_17, x_24, x_28, x_121, x_122, x_5, x_120, x_9, x_10, x_11, x_12, x_13, x_14, x_22); +return x_123; +} +} +} +block_93: +{ +if (x_29 == 0) +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; lean_dec(x_26); lean_dec(x_25); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_28 = lean_st_ref_take(x_14, x_22); -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -x_30 = lean_ctor_get(x_29, 3); -lean_inc(x_30); -x_31 = lean_ctor_get(x_28, 1); +x_30 = lean_st_ref_take(x_14, x_22); +x_31 = lean_ctor_get(x_30, 0); lean_inc(x_31); -lean_dec(x_28); -x_32 = !lean_is_exclusive(x_29); -if (x_32 == 0) -{ -lean_object* x_33; uint8_t x_34; -x_33 = lean_ctor_get(x_29, 3); -lean_dec(x_33); -x_34 = !lean_is_exclusive(x_30); +x_32 = lean_ctor_get(x_31, 3); +lean_inc(x_32); +x_33 = lean_ctor_get(x_30, 1); +lean_inc(x_33); +lean_dec(x_30); +x_34 = !lean_is_exclusive(x_31); if (x_34 == 0) { -lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_35 = lean_ctor_get(x_30, 0); -x_36 = l_Lean_PersistentArray_append___rarg(x_17, x_35); +lean_object* x_35; uint8_t x_36; +x_35 = lean_ctor_get(x_31, 3); lean_dec(x_35); -lean_ctor_set(x_30, 0, x_36); -x_37 = lean_st_ref_set(x_14, x_29, x_31); -x_38 = lean_ctor_get(x_37, 1); -lean_inc(x_38); +x_36 = !lean_is_exclusive(x_32); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_37 = lean_ctor_get(x_32, 0); +x_38 = l_Lean_PersistentArray_append___rarg(x_17, x_37); lean_dec(x_37); -x_39 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_addAnswer___spec__4(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_38); +lean_ctor_set(x_32, 0, x_38); +x_39 = lean_st_ref_set(x_14, x_31, x_33); +x_40 = lean_ctor_get(x_39, 1); +lean_inc(x_40); +lean_dec(x_39); +x_41 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_addAnswer___spec__4(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_40); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); @@ -14516,177 +14549,177 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_24); -if (lean_obj_tag(x_39) == 0) +if (lean_obj_tag(x_41) == 0) { -uint8_t x_40; -x_40 = !lean_is_exclusive(x_39); -if (x_40 == 0) +uint8_t x_42; +x_42 = !lean_is_exclusive(x_41); +if (x_42 == 0) { -return x_39; +return x_41; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_39, 0); -x_42 = lean_ctor_get(x_39, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_39); -x_43 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_42); -return x_43; +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_41, 0); +x_44 = lean_ctor_get(x_41, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_41); +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; } } else { -uint8_t x_44; -x_44 = !lean_is_exclusive(x_39); -if (x_44 == 0) +uint8_t x_46; +x_46 = !lean_is_exclusive(x_41); +if (x_46 == 0) { -return x_39; +return x_41; } else { -lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_45 = lean_ctor_get(x_39, 0); -x_46 = lean_ctor_get(x_39, 1); -lean_inc(x_46); -lean_inc(x_45); -lean_dec(x_39); -x_47 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_47, 0, x_45); -lean_ctor_set(x_47, 1, x_46); -return x_47; +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_41, 0); +x_48 = lean_ctor_get(x_41, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_41); +x_49 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set(x_49, 1, x_48); +return x_49; } } } else { -uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); -x_49 = lean_ctor_get(x_30, 0); -lean_inc(x_49); -lean_dec(x_30); -x_50 = l_Lean_PersistentArray_append___rarg(x_17, x_49); -lean_dec(x_49); -x_51 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_51, 0, x_50); -lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); -lean_ctor_set(x_29, 3, x_51); -x_52 = lean_st_ref_set(x_14, x_29, x_31); -x_53 = lean_ctor_get(x_52, 1); -lean_inc(x_53); -lean_dec(x_52); -x_54 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_addAnswer___spec__4(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_53); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_24); -if (lean_obj_tag(x_54) == 0) -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_55 = lean_ctor_get(x_54, 0); +uint64_t x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_50 = lean_ctor_get_uint64(x_32, sizeof(void*)*1); +x_51 = lean_ctor_get(x_32, 0); +lean_inc(x_51); +lean_dec(x_32); +x_52 = l_Lean_PersistentArray_append___rarg(x_17, x_51); +lean_dec(x_51); +x_53 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_53, 0, x_52); +lean_ctor_set_uint64(x_53, sizeof(void*)*1, x_50); +lean_ctor_set(x_31, 3, x_53); +x_54 = lean_st_ref_set(x_14, x_31, x_33); +x_55 = lean_ctor_get(x_54, 1); lean_inc(x_55); -x_56 = lean_ctor_get(x_54, 1); -lean_inc(x_56); -if (lean_is_exclusive(x_54)) { - lean_ctor_release(x_54, 0); - lean_ctor_release(x_54, 1); - x_57 = x_54; +lean_dec(x_54); +x_56 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_addAnswer___spec__4(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_55); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_24); +if (lean_obj_tag(x_56) == 0) +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_57 = lean_ctor_get(x_56, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_56, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_56)) { + lean_ctor_release(x_56, 0); + lean_ctor_release(x_56, 1); + x_59 = x_56; } else { - lean_dec_ref(x_54); - x_57 = lean_box(0); + lean_dec_ref(x_56); + x_59 = lean_box(0); } -if (lean_is_scalar(x_57)) { - x_58 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(0, 2, 0); } else { - x_58 = x_57; + x_60 = x_59; } -lean_ctor_set(x_58, 0, x_55); -lean_ctor_set(x_58, 1, x_56); -return x_58; +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_58); +return x_60; } else { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; -x_59 = lean_ctor_get(x_54, 0); -lean_inc(x_59); -x_60 = lean_ctor_get(x_54, 1); -lean_inc(x_60); -if (lean_is_exclusive(x_54)) { - lean_ctor_release(x_54, 0); - lean_ctor_release(x_54, 1); - x_61 = x_54; +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_61 = lean_ctor_get(x_56, 0); +lean_inc(x_61); +x_62 = lean_ctor_get(x_56, 1); +lean_inc(x_62); +if (lean_is_exclusive(x_56)) { + lean_ctor_release(x_56, 0); + lean_ctor_release(x_56, 1); + x_63 = x_56; } else { - lean_dec_ref(x_54); - x_61 = lean_box(0); + lean_dec_ref(x_56); + x_63 = lean_box(0); } -if (lean_is_scalar(x_61)) { - x_62 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_63)) { + x_64 = lean_alloc_ctor(1, 2, 0); } else { - x_62 = x_61; + x_64 = x_63; } -lean_ctor_set(x_62, 0, x_59); -lean_ctor_set(x_62, 1, x_60); -return x_62; +lean_ctor_set(x_64, 0, x_61); +lean_ctor_set(x_64, 1, x_62); +return x_64; } } } else { -lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_63 = lean_ctor_get(x_29, 0); -x_64 = lean_ctor_get(x_29, 1); -x_65 = lean_ctor_get(x_29, 2); -x_66 = lean_ctor_get(x_29, 4); -x_67 = lean_ctor_get(x_29, 5); -x_68 = lean_ctor_get(x_29, 6); -x_69 = lean_ctor_get(x_29, 7); +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; uint64_t x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_65 = lean_ctor_get(x_31, 0); +x_66 = lean_ctor_get(x_31, 1); +x_67 = lean_ctor_get(x_31, 2); +x_68 = lean_ctor_get(x_31, 4); +x_69 = lean_ctor_get(x_31, 5); +x_70 = lean_ctor_get(x_31, 6); +x_71 = lean_ctor_get(x_31, 7); +lean_inc(x_71); +lean_inc(x_70); lean_inc(x_69); lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); -lean_inc(x_64); -lean_inc(x_63); -lean_dec(x_29); -x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); -x_71 = lean_ctor_get(x_30, 0); -lean_inc(x_71); -if (lean_is_exclusive(x_30)) { - lean_ctor_release(x_30, 0); - x_72 = x_30; +lean_dec(x_31); +x_72 = lean_ctor_get_uint64(x_32, sizeof(void*)*1); +x_73 = lean_ctor_get(x_32, 0); +lean_inc(x_73); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + x_74 = x_32; } else { - lean_dec_ref(x_30); - x_72 = lean_box(0); + lean_dec_ref(x_32); + x_74 = lean_box(0); } -x_73 = l_Lean_PersistentArray_append___rarg(x_17, x_71); -lean_dec(x_71); -if (lean_is_scalar(x_72)) { - x_74 = lean_alloc_ctor(0, 1, 8); +x_75 = l_Lean_PersistentArray_append___rarg(x_17, x_73); +lean_dec(x_73); +if (lean_is_scalar(x_74)) { + x_76 = lean_alloc_ctor(0, 1, 8); } else { - x_74 = x_72; + x_76 = x_74; } -lean_ctor_set(x_74, 0, x_73); -lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); -x_75 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_75, 0, x_63); -lean_ctor_set(x_75, 1, x_64); -lean_ctor_set(x_75, 2, x_65); -lean_ctor_set(x_75, 3, x_74); -lean_ctor_set(x_75, 4, x_66); -lean_ctor_set(x_75, 5, x_67); -lean_ctor_set(x_75, 6, x_68); -lean_ctor_set(x_75, 7, x_69); -x_76 = lean_st_ref_set(x_14, x_75, x_31); -x_77 = lean_ctor_get(x_76, 1); -lean_inc(x_77); -lean_dec(x_76); -x_78 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_addAnswer___spec__4(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_77); +lean_ctor_set(x_76, 0, x_75); +lean_ctor_set_uint64(x_76, sizeof(void*)*1, x_72); +x_77 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_77, 0, x_65); +lean_ctor_set(x_77, 1, x_66); +lean_ctor_set(x_77, 2, x_67); +lean_ctor_set(x_77, 3, x_76); +lean_ctor_set(x_77, 4, x_68); +lean_ctor_set(x_77, 5, x_69); +lean_ctor_set(x_77, 6, x_70); +lean_ctor_set(x_77, 7, x_71); +x_78 = lean_st_ref_set(x_14, x_77, x_33); +x_79 = lean_ctor_get(x_78, 1); +lean_inc(x_79); +lean_dec(x_78); +x_80 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_addAnswer___spec__4(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_79); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); @@ -14694,665 +14727,681 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_24); -if (lean_obj_tag(x_78) == 0) +if (lean_obj_tag(x_80) == 0) { -lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_79 = lean_ctor_get(x_78, 0); -lean_inc(x_79); -x_80 = lean_ctor_get(x_78, 1); -lean_inc(x_80); -if (lean_is_exclusive(x_78)) { - lean_ctor_release(x_78, 0); - lean_ctor_release(x_78, 1); - x_81 = x_78; +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_81 = lean_ctor_get(x_80, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_80, 1); +lean_inc(x_82); +if (lean_is_exclusive(x_80)) { + lean_ctor_release(x_80, 0); + lean_ctor_release(x_80, 1); + x_83 = x_80; } else { - lean_dec_ref(x_78); - x_81 = lean_box(0); + lean_dec_ref(x_80); + x_83 = lean_box(0); } -if (lean_is_scalar(x_81)) { - x_82 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_83)) { + x_84 = lean_alloc_ctor(0, 2, 0); } else { - x_82 = x_81; + x_84 = x_83; } -lean_ctor_set(x_82, 0, x_79); -lean_ctor_set(x_82, 1, x_80); -return x_82; +lean_ctor_set(x_84, 0, x_81); +lean_ctor_set(x_84, 1, x_82); +return x_84; } else { -lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; -x_83 = lean_ctor_get(x_78, 0); -lean_inc(x_83); -x_84 = lean_ctor_get(x_78, 1); -lean_inc(x_84); -if (lean_is_exclusive(x_78)) { - lean_ctor_release(x_78, 0); - lean_ctor_release(x_78, 1); - x_85 = x_78; +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_85 = lean_ctor_get(x_80, 0); +lean_inc(x_85); +x_86 = lean_ctor_get(x_80, 1); +lean_inc(x_86); +if (lean_is_exclusive(x_80)) { + lean_ctor_release(x_80, 0); + lean_ctor_release(x_80, 1); + x_87 = x_80; } else { - lean_dec_ref(x_78); - x_85 = lean_box(0); + lean_dec_ref(x_80); + x_87 = lean_box(0); } -if (lean_is_scalar(x_85)) { - x_86 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_87)) { + x_88 = lean_alloc_ctor(1, 2, 0); } else { - x_86 = x_85; + x_88 = x_87; } -lean_ctor_set(x_86, 0, x_83); -lean_ctor_set(x_86, 1, x_84); -return x_86; +lean_ctor_set(x_88, 0, x_85); +lean_ctor_set(x_88, 1, x_86); +return x_88; } } } else { -lean_object* x_87; double x_88; double x_89; lean_object* x_90; -x_87 = lean_box(0); -x_88 = lean_unbox_float(x_25); +lean_object* x_89; double x_90; double x_91; lean_object* x_92; +x_89 = lean_box(0); +x_90 = lean_unbox_float(x_25); lean_dec(x_25); -x_89 = lean_unbox_float(x_26); +x_91 = lean_unbox_float(x_26); lean_dec(x_26); -x_90 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__3(x_2, x_3, x_4, x_17, x_24, x_1, x_27, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_13, x_14, x_22); -return x_90; -} -} -else -{ -lean_object* x_91; double x_92; double x_93; lean_object* x_94; -x_91 = lean_box(0); -x_92 = lean_unbox_float(x_25); -lean_dec(x_25); -x_93 = lean_unbox_float(x_26); -lean_dec(x_26); -x_94 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__3(x_2, x_3, x_4, x_17, x_24, x_1, x_27, x_92, x_93, x_5, x_91, x_9, x_10, x_11, x_12, x_13, x_14, x_22); -return x_94; +x_92 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__3(x_2, x_3, x_4, x_17, x_24, x_28, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_13, x_14, x_22); +return x_92; } } } } else { -lean_object* x_215; lean_object* x_216; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; -x_311 = lean_io_get_num_heartbeats(x_18); -x_312 = lean_ctor_get(x_311, 0); -lean_inc(x_312); -x_313 = lean_ctor_get(x_311, 1); -lean_inc(x_313); -lean_dec(x_311); +lean_object* x_223; lean_object* x_224; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; +x_327 = lean_io_get_num_heartbeats(x_18); +x_328 = lean_ctor_get(x_327, 0); +lean_inc(x_328); +x_329 = lean_ctor_get(x_327, 1); +lean_inc(x_329); +lean_dec(x_327); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_314 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_313); -if (lean_obj_tag(x_314) == 0) +x_330 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_329); +if (lean_obj_tag(x_330) == 0) { -uint8_t x_315; -x_315 = !lean_is_exclusive(x_314); -if (x_315 == 0) +uint8_t x_331; +x_331 = !lean_is_exclusive(x_330); +if (x_331 == 0) { -lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; uint8_t x_320; -x_316 = lean_ctor_get(x_314, 0); -x_317 = lean_ctor_get(x_314, 1); -x_318 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_318, 0, x_316); -x_319 = lean_io_get_num_heartbeats(x_317); -x_320 = !lean_is_exclusive(x_319); -if (x_320 == 0) +lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; uint8_t x_336; +x_332 = lean_ctor_get(x_330, 0); +x_333 = lean_ctor_get(x_330, 1); +x_334 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_334, 0, x_332); +x_335 = lean_io_get_num_heartbeats(x_333); +x_336 = !lean_is_exclusive(x_335); +if (x_336 == 0) { -lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; -x_321 = lean_ctor_get(x_319, 0); -x_322 = lean_ctor_get(x_319, 1); -x_323 = 0; -x_324 = lean_unsigned_to_nat(0u); -x_325 = l_Float_ofScientific(x_312, x_323, x_324); -lean_dec(x_312); -x_326 = l_Float_ofScientific(x_321, x_323, x_324); -lean_dec(x_321); -x_327 = lean_box_float(x_325); -x_328 = lean_box_float(x_326); -lean_ctor_set(x_319, 1, x_328); -lean_ctor_set(x_319, 0, x_327); -lean_ctor_set(x_314, 1, x_319); -lean_ctor_set(x_314, 0, x_318); -x_215 = x_314; -x_216 = x_322; -goto block_310; +lean_object* x_337; lean_object* x_338; uint8_t x_339; lean_object* x_340; double x_341; double x_342; lean_object* x_343; lean_object* x_344; +x_337 = lean_ctor_get(x_335, 0); +x_338 = lean_ctor_get(x_335, 1); +x_339 = 0; +x_340 = lean_unsigned_to_nat(0u); +x_341 = l_Float_ofScientific(x_328, x_339, x_340); +lean_dec(x_328); +x_342 = l_Float_ofScientific(x_337, x_339, x_340); +lean_dec(x_337); +x_343 = lean_box_float(x_341); +x_344 = lean_box_float(x_342); +lean_ctor_set(x_335, 1, x_344); +lean_ctor_set(x_335, 0, x_343); +lean_ctor_set(x_330, 1, x_335); +lean_ctor_set(x_330, 0, x_334); +x_223 = x_330; +x_224 = x_338; +goto block_326; } else { -lean_object* x_329; lean_object* x_330; uint8_t x_331; lean_object* x_332; double x_333; double x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; -x_329 = lean_ctor_get(x_319, 0); -x_330 = lean_ctor_get(x_319, 1); -lean_inc(x_330); -lean_inc(x_329); -lean_dec(x_319); -x_331 = 0; -x_332 = lean_unsigned_to_nat(0u); -x_333 = l_Float_ofScientific(x_312, x_331, x_332); -lean_dec(x_312); -x_334 = l_Float_ofScientific(x_329, x_331, x_332); -lean_dec(x_329); -x_335 = lean_box_float(x_333); -x_336 = lean_box_float(x_334); -x_337 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_337, 0, x_335); -lean_ctor_set(x_337, 1, x_336); -lean_ctor_set(x_314, 1, x_337); -lean_ctor_set(x_314, 0, x_318); -x_215 = x_314; -x_216 = x_330; -goto block_310; +lean_object* x_345; lean_object* x_346; uint8_t x_347; lean_object* x_348; double x_349; double x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; +x_345 = lean_ctor_get(x_335, 0); +x_346 = lean_ctor_get(x_335, 1); +lean_inc(x_346); +lean_inc(x_345); +lean_dec(x_335); +x_347 = 0; +x_348 = lean_unsigned_to_nat(0u); +x_349 = l_Float_ofScientific(x_328, x_347, x_348); +lean_dec(x_328); +x_350 = l_Float_ofScientific(x_345, x_347, x_348); +lean_dec(x_345); +x_351 = lean_box_float(x_349); +x_352 = lean_box_float(x_350); +x_353 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_353, 0, x_351); +lean_ctor_set(x_353, 1, x_352); +lean_ctor_set(x_330, 1, x_353); +lean_ctor_set(x_330, 0, x_334); +x_223 = x_330; +x_224 = x_346; +goto block_326; } } else { -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; -x_338 = lean_ctor_get(x_314, 0); -x_339 = lean_ctor_get(x_314, 1); -lean_inc(x_339); -lean_inc(x_338); -lean_dec(x_314); -x_340 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = lean_ctor_get(x_341, 0); -lean_inc(x_342); -x_343 = lean_ctor_get(x_341, 1); -lean_inc(x_343); -if (lean_is_exclusive(x_341)) { - lean_ctor_release(x_341, 0); - lean_ctor_release(x_341, 1); - x_344 = x_341; -} else { - lean_dec_ref(x_341); - x_344 = lean_box(0); -} -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_312, x_345, x_346); -lean_dec(x_312); -x_348 = l_Float_ofScientific(x_342, x_345, x_346); -lean_dec(x_342); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -if (lean_is_scalar(x_344)) { - x_351 = lean_alloc_ctor(0, 2, 0); -} else { - x_351 = x_344; -} -lean_ctor_set(x_351, 0, x_349); -lean_ctor_set(x_351, 1, x_350); -x_352 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_352, 0, x_340); -lean_ctor_set(x_352, 1, x_351); -x_215 = x_352; -x_216 = x_343; -goto block_310; -} -} -else -{ -uint8_t x_353; -x_353 = !lean_is_exclusive(x_314); -if (x_353 == 0) -{ -lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; uint8_t x_358; -x_354 = lean_ctor_get(x_314, 0); -x_355 = lean_ctor_get(x_314, 1); -x_356 = lean_alloc_ctor(0, 1, 0); +lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; +x_354 = lean_ctor_get(x_330, 0); +x_355 = lean_ctor_get(x_330, 1); +lean_inc(x_355); +lean_inc(x_354); +lean_dec(x_330); +x_356 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_356, 0, x_354); x_357 = lean_io_get_num_heartbeats(x_355); -x_358 = !lean_is_exclusive(x_357); -if (x_358 == 0) -{ -lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; -x_359 = lean_ctor_get(x_357, 0); -x_360 = lean_ctor_get(x_357, 1); +x_358 = lean_ctor_get(x_357, 0); +lean_inc(x_358); +x_359 = lean_ctor_get(x_357, 1); +lean_inc(x_359); +if (lean_is_exclusive(x_357)) { + lean_ctor_release(x_357, 0); + lean_ctor_release(x_357, 1); + x_360 = x_357; +} else { + lean_dec_ref(x_357); + x_360 = lean_box(0); +} x_361 = 0; x_362 = lean_unsigned_to_nat(0u); -x_363 = l_Float_ofScientific(x_312, x_361, x_362); -lean_dec(x_312); -x_364 = l_Float_ofScientific(x_359, x_361, x_362); -lean_dec(x_359); +x_363 = l_Float_ofScientific(x_328, x_361, x_362); +lean_dec(x_328); +x_364 = l_Float_ofScientific(x_358, x_361, x_362); +lean_dec(x_358); x_365 = lean_box_float(x_363); x_366 = lean_box_float(x_364); -lean_ctor_set(x_357, 1, x_366); -lean_ctor_set(x_357, 0, x_365); -lean_ctor_set_tag(x_314, 0); -lean_ctor_set(x_314, 1, x_357); -lean_ctor_set(x_314, 0, x_356); -x_215 = x_314; -x_216 = x_360; -goto block_310; -} -else -{ -lean_object* x_367; lean_object* x_368; uint8_t x_369; lean_object* x_370; double x_371; double x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; -x_367 = lean_ctor_get(x_357, 0); -x_368 = lean_ctor_get(x_357, 1); -lean_inc(x_368); -lean_inc(x_367); -lean_dec(x_357); -x_369 = 0; -x_370 = lean_unsigned_to_nat(0u); -x_371 = l_Float_ofScientific(x_312, x_369, x_370); -lean_dec(x_312); -x_372 = l_Float_ofScientific(x_367, x_369, x_370); -lean_dec(x_367); -x_373 = lean_box_float(x_371); -x_374 = lean_box_float(x_372); -x_375 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_375, 0, x_373); -lean_ctor_set(x_375, 1, x_374); -lean_ctor_set_tag(x_314, 0); -lean_ctor_set(x_314, 1, x_375); -lean_ctor_set(x_314, 0, x_356); -x_215 = x_314; -x_216 = x_368; -goto block_310; -} -} -else -{ -lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; uint8_t x_383; lean_object* x_384; double x_385; double x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; -x_376 = lean_ctor_get(x_314, 0); -x_377 = lean_ctor_get(x_314, 1); -lean_inc(x_377); -lean_inc(x_376); -lean_dec(x_314); -x_378 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_378, 0, x_376); -x_379 = lean_io_get_num_heartbeats(x_377); -x_380 = lean_ctor_get(x_379, 0); -lean_inc(x_380); -x_381 = lean_ctor_get(x_379, 1); -lean_inc(x_381); -if (lean_is_exclusive(x_379)) { - lean_ctor_release(x_379, 0); - lean_ctor_release(x_379, 1); - x_382 = x_379; +if (lean_is_scalar(x_360)) { + x_367 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_379); - x_382 = lean_box(0); + x_367 = x_360; } -x_383 = 0; -x_384 = lean_unsigned_to_nat(0u); -x_385 = l_Float_ofScientific(x_312, x_383, x_384); -lean_dec(x_312); -x_386 = l_Float_ofScientific(x_380, x_383, x_384); -lean_dec(x_380); -x_387 = lean_box_float(x_385); -x_388 = lean_box_float(x_386); -if (lean_is_scalar(x_382)) { - x_389 = lean_alloc_ctor(0, 2, 0); -} else { - x_389 = x_382; +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +x_368 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_368, 0, x_356); +lean_ctor_set(x_368, 1, x_367); +x_223 = x_368; +x_224 = x_359; +goto block_326; } -lean_ctor_set(x_389, 0, x_387); -lean_ctor_set(x_389, 1, x_388); -x_390 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_390, 0, x_378); -lean_ctor_set(x_390, 1, x_389); -x_215 = x_390; -x_216 = x_381; -goto block_310; -} -} -block_310: -{ -lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; uint8_t x_221; lean_object* x_290; uint8_t x_291; -x_217 = lean_ctor_get(x_215, 1); -lean_inc(x_217); -x_218 = lean_ctor_get(x_215, 0); -lean_inc(x_218); -lean_dec(x_215); -x_219 = lean_ctor_get(x_217, 0); -lean_inc(x_219); -x_220 = lean_ctor_get(x_217, 1); -lean_inc(x_220); -lean_dec(x_217); -x_290 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__2; -x_291 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_290); -if (x_291 == 0) -{ -uint8_t x_292; -x_292 = 0; -x_221 = x_292; -goto block_289; } else { -double x_293; double x_294; double x_295; -x_293 = lean_unbox_float(x_220); -x_294 = lean_unbox_float(x_219); -x_295 = lean_float_sub(x_293, x_294); +uint8_t x_369; +x_369 = !lean_is_exclusive(x_330); +if (x_369 == 0) +{ +lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; uint8_t x_374; +x_370 = lean_ctor_get(x_330, 0); +x_371 = lean_ctor_get(x_330, 1); +x_372 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_372, 0, x_370); +x_373 = lean_io_get_num_heartbeats(x_371); +x_374 = !lean_is_exclusive(x_373); +if (x_374 == 0) +{ +lean_object* x_375; lean_object* x_376; uint8_t x_377; lean_object* x_378; double x_379; double x_380; lean_object* x_381; lean_object* x_382; +x_375 = lean_ctor_get(x_373, 0); +x_376 = lean_ctor_get(x_373, 1); +x_377 = 0; +x_378 = lean_unsigned_to_nat(0u); +x_379 = l_Float_ofScientific(x_328, x_377, x_378); +lean_dec(x_328); +x_380 = l_Float_ofScientific(x_375, x_377, x_378); +lean_dec(x_375); +x_381 = lean_box_float(x_379); +x_382 = lean_box_float(x_380); +lean_ctor_set(x_373, 1, x_382); +lean_ctor_set(x_373, 0, x_381); +lean_ctor_set_tag(x_330, 0); +lean_ctor_set(x_330, 1, x_373); +lean_ctor_set(x_330, 0, x_372); +x_223 = x_330; +x_224 = x_376; +goto block_326; +} +else +{ +lean_object* x_383; lean_object* x_384; uint8_t x_385; lean_object* x_386; double x_387; double x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; +x_383 = lean_ctor_get(x_373, 0); +x_384 = lean_ctor_get(x_373, 1); +lean_inc(x_384); +lean_inc(x_383); +lean_dec(x_373); +x_385 = 0; +x_386 = lean_unsigned_to_nat(0u); +x_387 = l_Float_ofScientific(x_328, x_385, x_386); +lean_dec(x_328); +x_388 = l_Float_ofScientific(x_383, x_385, x_386); +lean_dec(x_383); +x_389 = lean_box_float(x_387); +x_390 = lean_box_float(x_388); +x_391 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_391, 0, x_389); +lean_ctor_set(x_391, 1, x_390); +lean_ctor_set_tag(x_330, 0); +lean_ctor_set(x_330, 1, x_391); +lean_ctor_set(x_330, 0, x_372); +x_223 = x_330; +x_224 = x_384; +goto block_326; +} +} +else +{ +lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; uint8_t x_399; lean_object* x_400; double x_401; double x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; +x_392 = lean_ctor_get(x_330, 0); +x_393 = lean_ctor_get(x_330, 1); +lean_inc(x_393); +lean_inc(x_392); +lean_dec(x_330); +x_394 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_394, 0, x_392); +x_395 = lean_io_get_num_heartbeats(x_393); +x_396 = lean_ctor_get(x_395, 0); +lean_inc(x_396); +x_397 = lean_ctor_get(x_395, 1); +lean_inc(x_397); +if (lean_is_exclusive(x_395)) { + lean_ctor_release(x_395, 0); + lean_ctor_release(x_395, 1); + x_398 = x_395; +} else { + lean_dec_ref(x_395); + x_398 = lean_box(0); +} +x_399 = 0; +x_400 = lean_unsigned_to_nat(0u); +x_401 = l_Float_ofScientific(x_328, x_399, x_400); +lean_dec(x_328); +x_402 = l_Float_ofScientific(x_396, x_399, x_400); +lean_dec(x_396); +x_403 = lean_box_float(x_401); +x_404 = lean_box_float(x_402); +if (lean_is_scalar(x_398)) { + x_405 = lean_alloc_ctor(0, 2, 0); +} else { + x_405 = x_398; +} +lean_ctor_set(x_405, 0, x_403); +lean_ctor_set(x_405, 1, x_404); +x_406 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_406, 0, x_394); +lean_ctor_set(x_406, 1, x_405); +x_223 = x_406; +x_224 = x_397; +goto block_326; +} +} +block_326: +{ +lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; uint8_t x_230; uint8_t x_231; +x_225 = lean_ctor_get(x_223, 1); +lean_inc(x_225); +x_226 = lean_ctor_get(x_223, 0); +lean_inc(x_226); +lean_dec(x_223); +x_227 = lean_ctor_get(x_225, 0); +lean_inc(x_227); +x_228 = lean_ctor_get(x_225, 1); +lean_inc(x_228); +lean_dec(x_225); +x_229 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__2; +x_230 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_229); +if (x_230 == 0) +{ +if (x_6 == 0) +{ +uint8_t x_296; +x_296 = 0; +x_231 = x_296; +goto block_295; +} +else +{ +lean_object* x_297; double x_298; double x_299; lean_object* x_300; +x_297 = lean_box(0); +x_298 = lean_unbox_float(x_227); +lean_dec(x_227); +x_299 = lean_unbox_float(x_228); +lean_dec(x_228); +x_300 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__3(x_2, x_3, x_4, x_17, x_226, x_230, x_298, x_299, x_5, x_297, x_9, x_10, x_11, x_12, x_13, x_14, x_224); +return x_300; +} +} +else +{ +double x_301; double x_302; double x_303; +x_301 = lean_unbox_float(x_228); +x_302 = lean_unbox_float(x_227); +x_303 = lean_float_sub(x_301, x_302); if (x_20 == 0) { -lean_object* x_296; lean_object* x_297; uint8_t x_298; lean_object* x_299; double x_300; double x_301; double x_302; uint8_t x_303; -x_296 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__3; -x_297 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_296); -x_298 = 0; -x_299 = lean_unsigned_to_nat(0u); -x_300 = l_Float_ofScientific(x_297, x_298, x_299); -lean_dec(x_297); -x_301 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__4; -x_302 = lean_float_div(x_300, x_301); -x_303 = lean_float_decLt(x_302, x_295); -x_221 = x_303; -goto block_289; -} -else +if (x_6 == 0) { -lean_object* x_304; lean_object* x_305; uint8_t x_306; lean_object* x_307; double x_308; uint8_t x_309; +lean_object* x_304; lean_object* x_305; uint8_t x_306; lean_object* x_307; double x_308; double x_309; double x_310; uint8_t x_311; x_304 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__3; x_305 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_304); x_306 = 0; x_307 = lean_unsigned_to_nat(0u); x_308 = l_Float_ofScientific(x_305, x_306, x_307); lean_dec(x_305); -x_309 = lean_float_decLt(x_308, x_295); -x_221 = x_309; -goto block_289; +x_309 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__4; +x_310 = lean_float_div(x_308, x_309); +x_311 = lean_float_decLt(x_310, x_303); +x_231 = x_311; +goto block_295; +} +else +{ +lean_object* x_312; double x_313; double x_314; lean_object* x_315; +x_312 = lean_box(0); +x_313 = lean_unbox_float(x_227); +lean_dec(x_227); +x_314 = lean_unbox_float(x_228); +lean_dec(x_228); +x_315 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__3(x_2, x_3, x_4, x_17, x_226, x_230, x_313, x_314, x_5, x_312, x_9, x_10, x_11, x_12, x_13, x_14, x_224); +return x_315; } } -block_289: +else { if (x_6 == 0) { -if (x_221 == 0) +lean_object* x_316; lean_object* x_317; uint8_t x_318; lean_object* x_319; double x_320; uint8_t x_321; +x_316 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__3; +x_317 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_316); +x_318 = 0; +x_319 = lean_unsigned_to_nat(0u); +x_320 = l_Float_ofScientific(x_317, x_318, x_319); +lean_dec(x_317); +x_321 = lean_float_decLt(x_320, x_303); +x_231 = x_321; +goto block_295; +} +else { -lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; uint8_t x_226; -lean_dec(x_220); -lean_dec(x_219); +lean_object* x_322; double x_323; double x_324; lean_object* x_325; +x_322 = lean_box(0); +x_323 = lean_unbox_float(x_227); +lean_dec(x_227); +x_324 = lean_unbox_float(x_228); +lean_dec(x_228); +x_325 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__3(x_2, x_3, x_4, x_17, x_226, x_230, x_323, x_324, x_5, x_322, x_9, x_10, x_11, x_12, x_13, x_14, x_224); +return x_325; +} +} +} +block_295: +{ +if (x_231 == 0) +{ +lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; uint8_t x_236; +lean_dec(x_228); +lean_dec(x_227); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_222 = lean_st_ref_take(x_14, x_216); -x_223 = lean_ctor_get(x_222, 0); -lean_inc(x_223); -x_224 = lean_ctor_get(x_223, 3); -lean_inc(x_224); -x_225 = lean_ctor_get(x_222, 1); -lean_inc(x_225); -lean_dec(x_222); -x_226 = !lean_is_exclusive(x_223); -if (x_226 == 0) -{ -lean_object* x_227; uint8_t x_228; -x_227 = lean_ctor_get(x_223, 3); -lean_dec(x_227); -x_228 = !lean_is_exclusive(x_224); -if (x_228 == 0) -{ -lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_229 = lean_ctor_get(x_224, 0); -x_230 = l_Lean_PersistentArray_append___rarg(x_17, x_229); -lean_dec(x_229); -lean_ctor_set(x_224, 0, x_230); -x_231 = lean_st_ref_set(x_14, x_223, x_225); -x_232 = lean_ctor_get(x_231, 1); -lean_inc(x_232); -lean_dec(x_231); -x_233 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_addAnswer___spec__4(x_218, x_9, x_10, x_11, x_12, x_13, x_14, x_232); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_218); -if (lean_obj_tag(x_233) == 0) -{ -uint8_t x_234; -x_234 = !lean_is_exclusive(x_233); -if (x_234 == 0) -{ -return x_233; -} -else -{ -lean_object* x_235; lean_object* x_236; lean_object* x_237; -x_235 = lean_ctor_get(x_233, 0); -x_236 = lean_ctor_get(x_233, 1); -lean_inc(x_236); +x_232 = lean_st_ref_take(x_14, x_224); +x_233 = lean_ctor_get(x_232, 0); +lean_inc(x_233); +x_234 = lean_ctor_get(x_233, 3); +lean_inc(x_234); +x_235 = lean_ctor_get(x_232, 1); lean_inc(x_235); -lean_dec(x_233); -x_237 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_237, 0, x_235); -lean_ctor_set(x_237, 1, x_236); -return x_237; -} -} -else +lean_dec(x_232); +x_236 = !lean_is_exclusive(x_233); +if (x_236 == 0) { -uint8_t x_238; -x_238 = !lean_is_exclusive(x_233); +lean_object* x_237; uint8_t x_238; +x_237 = lean_ctor_get(x_233, 3); +lean_dec(x_237); +x_238 = !lean_is_exclusive(x_234); if (x_238 == 0) { -return x_233; +lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; +x_239 = lean_ctor_get(x_234, 0); +x_240 = l_Lean_PersistentArray_append___rarg(x_17, x_239); +lean_dec(x_239); +lean_ctor_set(x_234, 0, x_240); +x_241 = lean_st_ref_set(x_14, x_233, x_235); +x_242 = lean_ctor_get(x_241, 1); +lean_inc(x_242); +lean_dec(x_241); +x_243 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_addAnswer___spec__4(x_226, x_9, x_10, x_11, x_12, x_13, x_14, x_242); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_226); +if (lean_obj_tag(x_243) == 0) +{ +uint8_t x_244; +x_244 = !lean_is_exclusive(x_243); +if (x_244 == 0) +{ +return x_243; } else { -lean_object* x_239; lean_object* x_240; lean_object* x_241; -x_239 = lean_ctor_get(x_233, 0); -x_240 = lean_ctor_get(x_233, 1); -lean_inc(x_240); -lean_inc(x_239); -lean_dec(x_233); -x_241 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_241, 0, x_239); -lean_ctor_set(x_241, 1, x_240); -return x_241; -} -} -} -else -{ -uint64_t x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_242 = lean_ctor_get_uint64(x_224, sizeof(void*)*1); -x_243 = lean_ctor_get(x_224, 0); -lean_inc(x_243); -lean_dec(x_224); -x_244 = l_Lean_PersistentArray_append___rarg(x_17, x_243); +lean_object* x_245; lean_object* x_246; lean_object* x_247; +x_245 = lean_ctor_get(x_243, 0); +x_246 = lean_ctor_get(x_243, 1); +lean_inc(x_246); +lean_inc(x_245); lean_dec(x_243); -x_245 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_245, 0, x_244); -lean_ctor_set_uint64(x_245, sizeof(void*)*1, x_242); -lean_ctor_set(x_223, 3, x_245); -x_246 = lean_st_ref_set(x_14, x_223, x_225); -x_247 = lean_ctor_get(x_246, 1); -lean_inc(x_247); -lean_dec(x_246); -x_248 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_addAnswer___spec__4(x_218, x_9, x_10, x_11, x_12, x_13, x_14, x_247); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_218); -if (lean_obj_tag(x_248) == 0) +x_247 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_247, 0, x_245); +lean_ctor_set(x_247, 1, x_246); +return x_247; +} +} +else { -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; -x_249 = lean_ctor_get(x_248, 0); -lean_inc(x_249); -x_250 = lean_ctor_get(x_248, 1); +uint8_t x_248; +x_248 = !lean_is_exclusive(x_243); +if (x_248 == 0) +{ +return x_243; +} +else +{ +lean_object* x_249; lean_object* x_250; lean_object* x_251; +x_249 = lean_ctor_get(x_243, 0); +x_250 = lean_ctor_get(x_243, 1); lean_inc(x_250); -if (lean_is_exclusive(x_248)) { - lean_ctor_release(x_248, 0); - lean_ctor_release(x_248, 1); - x_251 = x_248; -} else { - lean_dec_ref(x_248); - x_251 = lean_box(0); +lean_inc(x_249); +lean_dec(x_243); +x_251 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_251, 0, x_249); +lean_ctor_set(x_251, 1, x_250); +return x_251; } -if (lean_is_scalar(x_251)) { - x_252 = lean_alloc_ctor(0, 2, 0); -} else { - x_252 = x_251; } -lean_ctor_set(x_252, 0, x_249); -lean_ctor_set(x_252, 1, x_250); -return x_252; } else { -lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; -x_253 = lean_ctor_get(x_248, 0); +uint64_t x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; +x_252 = lean_ctor_get_uint64(x_234, sizeof(void*)*1); +x_253 = lean_ctor_get(x_234, 0); lean_inc(x_253); -x_254 = lean_ctor_get(x_248, 1); -lean_inc(x_254); -if (lean_is_exclusive(x_248)) { - lean_ctor_release(x_248, 0); - lean_ctor_release(x_248, 1); - x_255 = x_248; -} else { - lean_dec_ref(x_248); - x_255 = lean_box(0); -} -if (lean_is_scalar(x_255)) { - x_256 = lean_alloc_ctor(1, 2, 0); -} else { - x_256 = x_255; -} -lean_ctor_set(x_256, 0, x_253); -lean_ctor_set(x_256, 1, x_254); -return x_256; -} -} -} -else -{ -lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; uint64_t x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_257 = lean_ctor_get(x_223, 0); -x_258 = lean_ctor_get(x_223, 1); -x_259 = lean_ctor_get(x_223, 2); -x_260 = lean_ctor_get(x_223, 4); -x_261 = lean_ctor_get(x_223, 5); -x_262 = lean_ctor_get(x_223, 6); -x_263 = lean_ctor_get(x_223, 7); -lean_inc(x_263); -lean_inc(x_262); -lean_inc(x_261); -lean_inc(x_260); -lean_inc(x_259); -lean_inc(x_258); +lean_dec(x_234); +x_254 = l_Lean_PersistentArray_append___rarg(x_17, x_253); +lean_dec(x_253); +x_255 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_255, 0, x_254); +lean_ctor_set_uint64(x_255, sizeof(void*)*1, x_252); +lean_ctor_set(x_233, 3, x_255); +x_256 = lean_st_ref_set(x_14, x_233, x_235); +x_257 = lean_ctor_get(x_256, 1); lean_inc(x_257); -lean_dec(x_223); -x_264 = lean_ctor_get_uint64(x_224, sizeof(void*)*1); -x_265 = lean_ctor_get(x_224, 0); -lean_inc(x_265); -if (lean_is_exclusive(x_224)) { - lean_ctor_release(x_224, 0); - x_266 = x_224; -} else { - lean_dec_ref(x_224); - x_266 = lean_box(0); -} -x_267 = l_Lean_PersistentArray_append___rarg(x_17, x_265); -lean_dec(x_265); -if (lean_is_scalar(x_266)) { - x_268 = lean_alloc_ctor(0, 1, 8); -} else { - x_268 = x_266; -} -lean_ctor_set(x_268, 0, x_267); -lean_ctor_set_uint64(x_268, sizeof(void*)*1, x_264); -x_269 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_269, 0, x_257); -lean_ctor_set(x_269, 1, x_258); -lean_ctor_set(x_269, 2, x_259); -lean_ctor_set(x_269, 3, x_268); -lean_ctor_set(x_269, 4, x_260); -lean_ctor_set(x_269, 5, x_261); -lean_ctor_set(x_269, 6, x_262); -lean_ctor_set(x_269, 7, x_263); -x_270 = lean_st_ref_set(x_14, x_269, x_225); -x_271 = lean_ctor_get(x_270, 1); -lean_inc(x_271); -lean_dec(x_270); -x_272 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_addAnswer___spec__4(x_218, x_9, x_10, x_11, x_12, x_13, x_14, x_271); +lean_dec(x_256); +x_258 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_addAnswer___spec__4(x_226, x_9, x_10, x_11, x_12, x_13, x_14, x_257); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_218); -if (lean_obj_tag(x_272) == 0) +lean_dec(x_226); +if (lean_obj_tag(x_258) == 0) { -lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; -x_273 = lean_ctor_get(x_272, 0); +lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; +x_259 = lean_ctor_get(x_258, 0); +lean_inc(x_259); +x_260 = lean_ctor_get(x_258, 1); +lean_inc(x_260); +if (lean_is_exclusive(x_258)) { + lean_ctor_release(x_258, 0); + lean_ctor_release(x_258, 1); + x_261 = x_258; +} else { + lean_dec_ref(x_258); + x_261 = lean_box(0); +} +if (lean_is_scalar(x_261)) { + x_262 = lean_alloc_ctor(0, 2, 0); +} else { + x_262 = x_261; +} +lean_ctor_set(x_262, 0, x_259); +lean_ctor_set(x_262, 1, x_260); +return x_262; +} +else +{ +lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; +x_263 = lean_ctor_get(x_258, 0); +lean_inc(x_263); +x_264 = lean_ctor_get(x_258, 1); +lean_inc(x_264); +if (lean_is_exclusive(x_258)) { + lean_ctor_release(x_258, 0); + lean_ctor_release(x_258, 1); + x_265 = x_258; +} else { + lean_dec_ref(x_258); + x_265 = lean_box(0); +} +if (lean_is_scalar(x_265)) { + x_266 = lean_alloc_ctor(1, 2, 0); +} else { + x_266 = x_265; +} +lean_ctor_set(x_266, 0, x_263); +lean_ctor_set(x_266, 1, x_264); +return x_266; +} +} +} +else +{ +lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; uint64_t x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; +x_267 = lean_ctor_get(x_233, 0); +x_268 = lean_ctor_get(x_233, 1); +x_269 = lean_ctor_get(x_233, 2); +x_270 = lean_ctor_get(x_233, 4); +x_271 = lean_ctor_get(x_233, 5); +x_272 = lean_ctor_get(x_233, 6); +x_273 = lean_ctor_get(x_233, 7); lean_inc(x_273); -x_274 = lean_ctor_get(x_272, 1); -lean_inc(x_274); -if (lean_is_exclusive(x_272)) { - lean_ctor_release(x_272, 0); - lean_ctor_release(x_272, 1); - x_275 = x_272; +lean_inc(x_272); +lean_inc(x_271); +lean_inc(x_270); +lean_inc(x_269); +lean_inc(x_268); +lean_inc(x_267); +lean_dec(x_233); +x_274 = lean_ctor_get_uint64(x_234, sizeof(void*)*1); +x_275 = lean_ctor_get(x_234, 0); +lean_inc(x_275); +if (lean_is_exclusive(x_234)) { + lean_ctor_release(x_234, 0); + x_276 = x_234; } else { - lean_dec_ref(x_272); - x_275 = lean_box(0); + lean_dec_ref(x_234); + x_276 = lean_box(0); } -if (lean_is_scalar(x_275)) { - x_276 = lean_alloc_ctor(0, 2, 0); +x_277 = l_Lean_PersistentArray_append___rarg(x_17, x_275); +lean_dec(x_275); +if (lean_is_scalar(x_276)) { + x_278 = lean_alloc_ctor(0, 1, 8); } else { - x_276 = x_275; + x_278 = x_276; } -lean_ctor_set(x_276, 0, x_273); -lean_ctor_set(x_276, 1, x_274); -return x_276; +lean_ctor_set(x_278, 0, x_277); +lean_ctor_set_uint64(x_278, sizeof(void*)*1, x_274); +x_279 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_279, 0, x_267); +lean_ctor_set(x_279, 1, x_268); +lean_ctor_set(x_279, 2, x_269); +lean_ctor_set(x_279, 3, x_278); +lean_ctor_set(x_279, 4, x_270); +lean_ctor_set(x_279, 5, x_271); +lean_ctor_set(x_279, 6, x_272); +lean_ctor_set(x_279, 7, x_273); +x_280 = lean_st_ref_set(x_14, x_279, x_235); +x_281 = lean_ctor_get(x_280, 1); +lean_inc(x_281); +lean_dec(x_280); +x_282 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_addAnswer___spec__4(x_226, x_9, x_10, x_11, x_12, x_13, x_14, x_281); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_226); +if (lean_obj_tag(x_282) == 0) +{ +lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; +x_283 = lean_ctor_get(x_282, 0); +lean_inc(x_283); +x_284 = lean_ctor_get(x_282, 1); +lean_inc(x_284); +if (lean_is_exclusive(x_282)) { + lean_ctor_release(x_282, 0); + lean_ctor_release(x_282, 1); + x_285 = x_282; +} else { + lean_dec_ref(x_282); + x_285 = lean_box(0); +} +if (lean_is_scalar(x_285)) { + x_286 = lean_alloc_ctor(0, 2, 0); +} else { + x_286 = x_285; +} +lean_ctor_set(x_286, 0, x_283); +lean_ctor_set(x_286, 1, x_284); +return x_286; } else { -lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; -x_277 = lean_ctor_get(x_272, 0); -lean_inc(x_277); -x_278 = lean_ctor_get(x_272, 1); -lean_inc(x_278); -if (lean_is_exclusive(x_272)) { - lean_ctor_release(x_272, 0); - lean_ctor_release(x_272, 1); - x_279 = x_272; +lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; +x_287 = lean_ctor_get(x_282, 0); +lean_inc(x_287); +x_288 = lean_ctor_get(x_282, 1); +lean_inc(x_288); +if (lean_is_exclusive(x_282)) { + lean_ctor_release(x_282, 0); + lean_ctor_release(x_282, 1); + x_289 = x_282; } else { - lean_dec_ref(x_272); - x_279 = lean_box(0); + lean_dec_ref(x_282); + x_289 = lean_box(0); } -if (lean_is_scalar(x_279)) { - x_280 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_289)) { + x_290 = lean_alloc_ctor(1, 2, 0); } else { - x_280 = x_279; + x_290 = x_289; } -lean_ctor_set(x_280, 0, x_277); -lean_ctor_set(x_280, 1, x_278); -return x_280; +lean_ctor_set(x_290, 0, x_287); +lean_ctor_set(x_290, 1, x_288); +return x_290; } } } else { -lean_object* x_281; double x_282; double x_283; lean_object* x_284; -x_281 = lean_box(0); -x_282 = lean_unbox_float(x_219); -lean_dec(x_219); -x_283 = lean_unbox_float(x_220); -lean_dec(x_220); -x_284 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__3(x_2, x_3, x_4, x_17, x_218, x_1, x_221, x_282, x_283, x_5, x_281, x_9, x_10, x_11, x_12, x_13, x_14, x_216); -return x_284; -} -} -else -{ -lean_object* x_285; double x_286; double x_287; lean_object* x_288; -x_285 = lean_box(0); -x_286 = lean_unbox_float(x_219); -lean_dec(x_219); -x_287 = lean_unbox_float(x_220); -lean_dec(x_220); -x_288 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__3(x_2, x_3, x_4, x_17, x_218, x_1, x_221, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_13, x_14, x_216); -return x_288; +lean_object* x_291; double x_292; double x_293; lean_object* x_294; +x_291 = lean_box(0); +x_292 = lean_unbox_float(x_227); +lean_dec(x_227); +x_293 = lean_unbox_float(x_228); +lean_dec(x_228); +x_294 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__3(x_2, x_3, x_4, x_17, x_226, x_230, x_292, x_293, x_5, x_291, x_9, x_10, x_11, x_12, x_13, x_14, x_224); +return x_294; } } } @@ -16820,27 +16869,25 @@ lean_object* x_14 = _args[13]; lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; _start: { -uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; -x_19 = lean_unbox(x_2); +uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; +x_18 = lean_unbox(x_2); lean_dec(x_2); -x_20 = lean_unbox(x_8); +x_19 = lean_unbox(x_7); +lean_dec(x_7); +x_20 = lean_unbox_float(x_8); lean_dec(x_8); x_21 = lean_unbox_float(x_9); lean_dec(x_9); -x_22 = lean_unbox_float(x_10); -lean_dec(x_10); -x_23 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__2(x_1, x_19, x_3, x_4, x_5, x_6, x_7, x_20, x_21, x_22, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -lean_dec(x_17); -lean_dec(x_15); +x_22 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__2(x_1, x_18, x_3, x_4, x_5, x_6, x_19, x_20, x_21, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +lean_dec(x_16); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_23; +return x_22; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__3___boxed(lean_object** _args) { @@ -16861,22 +16908,20 @@ lean_object* x_14 = _args[13]; lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; _start: { -uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; -x_19 = lean_unbox(x_2); +uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; +x_18 = lean_unbox(x_2); lean_dec(x_2); -x_20 = lean_unbox(x_7); +x_19 = lean_unbox(x_6); +lean_dec(x_6); +x_20 = lean_unbox_float(x_7); lean_dec(x_7); x_21 = lean_unbox_float(x_8); lean_dec(x_8); -x_22 = lean_unbox_float(x_9); -lean_dec(x_9); -x_23 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__3(x_1, x_19, x_3, x_4, x_5, x_6, x_20, x_21, x_22, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -lean_dec(x_11); -lean_dec(x_6); -return x_23; +x_22 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__3(x_1, x_18, x_3, x_4, x_5, x_19, x_20, x_21, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +lean_dec(x_10); +return x_22; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_addAnswer___spec__3___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { @@ -22085,109 +22130,84 @@ lean_dec(x_11); return x_16; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -double x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; -x_19 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_20 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_20, 0, x_1); -lean_ctor_set(x_20, 1, x_3); -lean_ctor_set_float(x_20, sizeof(void*)*2, x_19); -lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_19); -lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); -x_21 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2___closed__2; -x_22 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_21); -if (x_22 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_18 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2___closed__1; +x_19 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_19, 0, x_1); +lean_ctor_set(x_19, 1, x_3); +lean_ctor_set_float(x_19, sizeof(void*)*2, x_18); +lean_ctor_set_float(x_19, sizeof(void*)*2 + 8, x_18); +lean_ctor_set_uint8(x_19, sizeof(void*)*2 + 16, x_2); +x_20 = lean_box(0); +x_21 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +return x_21; +} +else { -lean_object* x_23; lean_object* x_24; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_22, 0, x_1); +lean_ctor_set(x_22, 1, x_3); +lean_ctor_set_float(x_22, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_22, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_22, sizeof(void*)*2 + 16, x_2); x_23 = lean_box(0); -x_24 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_20, x_23, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +x_24 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_22, x_23, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_24; } -else -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; -lean_dec(x_20); -x_25 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_25, 0, x_1); -lean_ctor_set(x_25, 1, x_3); -lean_ctor_set_float(x_25, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_25, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_25, sizeof(void*)*2 + 16, x_2); -x_26 = lean_box(0); -x_27 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_25, x_26, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -return x_27; } } -else -{ -lean_object* x_28; lean_object* x_29; lean_object* x_30; -lean_dec(x_20); -x_28 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_28, 0, x_1); -lean_ctor_set(x_28, 1, x_3); -lean_ctor_set_float(x_28, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_28, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_28, sizeof(void*)*2 + 16, x_2); -x_29 = lean_box(0); -x_30 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_28, x_29, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -return x_30; -} -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_19; lean_object* x_20; -x_19 = lean_ctor_get(x_16, 5); -lean_inc(x_19); -lean_inc(x_17); +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_15, 5); +lean_inc(x_18); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_20 = lean_apply_8(x_10, x_5, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -if (lean_obj_tag(x_20) == 0) +x_19 = lean_apply_8(x_9, x_5, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +if (lean_obj_tag(x_19) == 0) { -lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_21 = lean_ctor_get(x_20, 0); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); -x_22 = lean_ctor_get(x_20, 1); -lean_inc(x_22); -lean_dec(x_20); -x_23 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_19, x_5, x_6, x_7, x_8, x_9, x_21, x_12, x_13, x_14, x_15, x_16, x_17, x_22); -lean_dec(x_17); -lean_dec(x_15); +lean_dec(x_19); +x_22 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_18, x_5, x_6, x_7, x_8, x_20, x_11, x_12, x_13, x_14, x_15, x_16, x_21); +lean_dec(x_16); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_23; +return x_22; } else { -lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_24 = lean_ctor_get(x_20, 1); -lean_inc(x_24); -lean_dec(x_20); -x_25 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3___closed__2; -x_26 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_19, x_5, x_6, x_7, x_8, x_9, x_25, x_12, x_13, x_14, x_15, x_16, x_17, x_24); -lean_dec(x_17); -lean_dec(x_15); +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_19, 1); +lean_inc(x_23); +lean_dec(x_19); +x_24 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3___closed__2; +x_25 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_18, x_5, x_6, x_7, x_8, x_24, x_11, x_12, x_13, x_14, x_15, x_16, x_23); +lean_dec(x_16); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_26; +return x_25; } } } @@ -22205,255 +22225,255 @@ x_19 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___ x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_19); if (x_20 == 0) { -lean_object* x_21; lean_object* x_22; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; -x_117 = lean_io_mono_nanos_now(x_18); -x_118 = lean_ctor_get(x_117, 0); -lean_inc(x_118); -x_119 = lean_ctor_get(x_117, 1); -lean_inc(x_119); -lean_dec(x_117); +lean_object* x_21; lean_object* x_22; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; +x_125 = lean_io_mono_nanos_now(x_18); +x_126 = lean_ctor_get(x_125, 0); +lean_inc(x_126); +x_127 = lean_ctor_get(x_125, 1); +lean_inc(x_127); +lean_dec(x_125); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_120 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_119); -if (lean_obj_tag(x_120) == 0) +x_128 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_127); +if (lean_obj_tag(x_128) == 0) { -uint8_t x_121; -x_121 = !lean_is_exclusive(x_120); -if (x_121 == 0) +uint8_t x_129; +x_129 = !lean_is_exclusive(x_128); +if (x_129 == 0) { -lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; uint8_t x_126; -x_122 = lean_ctor_get(x_120, 0); -x_123 = lean_ctor_get(x_120, 1); -x_124 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_124, 0, x_122); -x_125 = lean_io_mono_nanos_now(x_123); -x_126 = !lean_is_exclusive(x_125); -if (x_126 == 0) +lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; uint8_t x_134; +x_130 = lean_ctor_get(x_128, 0); +x_131 = lean_ctor_get(x_128, 1); +x_132 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_132, 0, x_130); +x_133 = lean_io_mono_nanos_now(x_131); +x_134 = !lean_is_exclusive(x_133); +if (x_134 == 0) { -lean_object* x_127; lean_object* x_128; uint8_t x_129; lean_object* x_130; double x_131; double x_132; double x_133; double x_134; double x_135; lean_object* x_136; lean_object* x_137; -x_127 = lean_ctor_get(x_125, 0); -x_128 = lean_ctor_get(x_125, 1); -x_129 = 0; -x_130 = lean_unsigned_to_nat(0u); -x_131 = l_Float_ofScientific(x_118, x_129, x_130); -lean_dec(x_118); -x_132 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_133 = lean_float_div(x_131, x_132); -x_134 = l_Float_ofScientific(x_127, x_129, x_130); -lean_dec(x_127); -x_135 = lean_float_div(x_134, x_132); -x_136 = lean_box_float(x_133); -x_137 = lean_box_float(x_135); -lean_ctor_set(x_125, 1, x_137); -lean_ctor_set(x_125, 0, x_136); -lean_ctor_set(x_120, 1, x_125); -lean_ctor_set(x_120, 0, x_124); -x_21 = x_120; -x_22 = x_128; -goto block_116; +lean_object* x_135; lean_object* x_136; uint8_t x_137; lean_object* x_138; double x_139; double x_140; double x_141; double x_142; double x_143; lean_object* x_144; lean_object* x_145; +x_135 = lean_ctor_get(x_133, 0); +x_136 = lean_ctor_get(x_133, 1); +x_137 = 0; +x_138 = lean_unsigned_to_nat(0u); +x_139 = l_Float_ofScientific(x_126, x_137, x_138); +lean_dec(x_126); +x_140 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_141 = lean_float_div(x_139, x_140); +x_142 = l_Float_ofScientific(x_135, x_137, x_138); +lean_dec(x_135); +x_143 = lean_float_div(x_142, x_140); +x_144 = lean_box_float(x_141); +x_145 = lean_box_float(x_143); +lean_ctor_set(x_133, 1, x_145); +lean_ctor_set(x_133, 0, x_144); +lean_ctor_set(x_128, 1, x_133); +lean_ctor_set(x_128, 0, x_132); +x_21 = x_128; +x_22 = x_136; +goto block_124; } else { -lean_object* x_138; lean_object* x_139; uint8_t x_140; lean_object* x_141; double x_142; double x_143; double x_144; double x_145; double x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; -x_138 = lean_ctor_get(x_125, 0); -x_139 = lean_ctor_get(x_125, 1); -lean_inc(x_139); -lean_inc(x_138); -lean_dec(x_125); -x_140 = 0; -x_141 = lean_unsigned_to_nat(0u); -x_142 = l_Float_ofScientific(x_118, x_140, x_141); -lean_dec(x_118); -x_143 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_144 = lean_float_div(x_142, x_143); -x_145 = l_Float_ofScientific(x_138, x_140, x_141); -lean_dec(x_138); -x_146 = lean_float_div(x_145, x_143); -x_147 = lean_box_float(x_144); -x_148 = lean_box_float(x_146); -x_149 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_149, 0, x_147); -lean_ctor_set(x_149, 1, x_148); -lean_ctor_set(x_120, 1, x_149); -lean_ctor_set(x_120, 0, x_124); -x_21 = x_120; -x_22 = x_139; -goto block_116; +lean_object* x_146; lean_object* x_147; uint8_t x_148; lean_object* x_149; double x_150; double x_151; double x_152; double x_153; double x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; +x_146 = lean_ctor_get(x_133, 0); +x_147 = lean_ctor_get(x_133, 1); +lean_inc(x_147); +lean_inc(x_146); +lean_dec(x_133); +x_148 = 0; +x_149 = lean_unsigned_to_nat(0u); +x_150 = l_Float_ofScientific(x_126, x_148, x_149); +lean_dec(x_126); +x_151 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_152 = lean_float_div(x_150, x_151); +x_153 = l_Float_ofScientific(x_146, x_148, x_149); +lean_dec(x_146); +x_154 = lean_float_div(x_153, x_151); +x_155 = lean_box_float(x_152); +x_156 = lean_box_float(x_154); +x_157 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_157, 0, x_155); +lean_ctor_set(x_157, 1, x_156); +lean_ctor_set(x_128, 1, x_157); +lean_ctor_set(x_128, 0, x_132); +x_21 = x_128; +x_22 = x_147; +goto block_124; } } else { -lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; uint8_t x_157; lean_object* x_158; double x_159; double x_160; double x_161; double x_162; double x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; -x_150 = lean_ctor_get(x_120, 0); -x_151 = lean_ctor_get(x_120, 1); -lean_inc(x_151); -lean_inc(x_150); -lean_dec(x_120); -x_152 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_152, 0, x_150); -x_153 = lean_io_mono_nanos_now(x_151); -x_154 = lean_ctor_get(x_153, 0); -lean_inc(x_154); -x_155 = lean_ctor_get(x_153, 1); -lean_inc(x_155); -if (lean_is_exclusive(x_153)) { - lean_ctor_release(x_153, 0); - lean_ctor_release(x_153, 1); - x_156 = x_153; +lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; lean_object* x_166; double x_167; double x_168; double x_169; double x_170; double x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; +x_158 = lean_ctor_get(x_128, 0); +x_159 = lean_ctor_get(x_128, 1); +lean_inc(x_159); +lean_inc(x_158); +lean_dec(x_128); +x_160 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_160, 0, x_158); +x_161 = lean_io_mono_nanos_now(x_159); +x_162 = lean_ctor_get(x_161, 0); +lean_inc(x_162); +x_163 = lean_ctor_get(x_161, 1); +lean_inc(x_163); +if (lean_is_exclusive(x_161)) { + lean_ctor_release(x_161, 0); + lean_ctor_release(x_161, 1); + x_164 = x_161; } else { - lean_dec_ref(x_153); - x_156 = lean_box(0); + lean_dec_ref(x_161); + x_164 = lean_box(0); } -x_157 = 0; -x_158 = lean_unsigned_to_nat(0u); -x_159 = l_Float_ofScientific(x_118, x_157, x_158); -lean_dec(x_118); -x_160 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_161 = lean_float_div(x_159, x_160); -x_162 = l_Float_ofScientific(x_154, x_157, x_158); -lean_dec(x_154); -x_163 = lean_float_div(x_162, x_160); -x_164 = lean_box_float(x_161); -x_165 = lean_box_float(x_163); -if (lean_is_scalar(x_156)) { - x_166 = lean_alloc_ctor(0, 2, 0); +x_165 = 0; +x_166 = lean_unsigned_to_nat(0u); +x_167 = l_Float_ofScientific(x_126, x_165, x_166); +lean_dec(x_126); +x_168 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_169 = lean_float_div(x_167, x_168); +x_170 = l_Float_ofScientific(x_162, x_165, x_166); +lean_dec(x_162); +x_171 = lean_float_div(x_170, x_168); +x_172 = lean_box_float(x_169); +x_173 = lean_box_float(x_171); +if (lean_is_scalar(x_164)) { + x_174 = lean_alloc_ctor(0, 2, 0); } else { - x_166 = x_156; + x_174 = x_164; } -lean_ctor_set(x_166, 0, x_164); -lean_ctor_set(x_166, 1, x_165); -x_167 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_167, 0, x_152); -lean_ctor_set(x_167, 1, x_166); -x_21 = x_167; -x_22 = x_155; -goto block_116; +lean_ctor_set(x_174, 0, x_172); +lean_ctor_set(x_174, 1, x_173); +x_175 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_175, 0, x_160); +lean_ctor_set(x_175, 1, x_174); +x_21 = x_175; +x_22 = x_163; +goto block_124; } } else { -uint8_t x_168; -x_168 = !lean_is_exclusive(x_120); -if (x_168 == 0) +uint8_t x_176; +x_176 = !lean_is_exclusive(x_128); +if (x_176 == 0) { -lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; uint8_t x_173; -x_169 = lean_ctor_get(x_120, 0); -x_170 = lean_ctor_get(x_120, 1); -x_171 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_171, 0, x_169); -x_172 = lean_io_mono_nanos_now(x_170); -x_173 = !lean_is_exclusive(x_172); -if (x_173 == 0) +lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; uint8_t x_181; +x_177 = lean_ctor_get(x_128, 0); +x_178 = lean_ctor_get(x_128, 1); +x_179 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_179, 0, x_177); +x_180 = lean_io_mono_nanos_now(x_178); +x_181 = !lean_is_exclusive(x_180); +if (x_181 == 0) { -lean_object* x_174; lean_object* x_175; uint8_t x_176; lean_object* x_177; double x_178; double x_179; double x_180; double x_181; double x_182; lean_object* x_183; lean_object* x_184; -x_174 = lean_ctor_get(x_172, 0); -x_175 = lean_ctor_get(x_172, 1); -x_176 = 0; -x_177 = lean_unsigned_to_nat(0u); -x_178 = l_Float_ofScientific(x_118, x_176, x_177); -lean_dec(x_118); -x_179 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_180 = lean_float_div(x_178, x_179); -x_181 = l_Float_ofScientific(x_174, x_176, x_177); -lean_dec(x_174); -x_182 = lean_float_div(x_181, x_179); -x_183 = lean_box_float(x_180); -x_184 = lean_box_float(x_182); -lean_ctor_set(x_172, 1, x_184); -lean_ctor_set(x_172, 0, x_183); -lean_ctor_set_tag(x_120, 0); -lean_ctor_set(x_120, 1, x_172); -lean_ctor_set(x_120, 0, x_171); -x_21 = x_120; -x_22 = x_175; -goto block_116; +lean_object* x_182; lean_object* x_183; uint8_t x_184; lean_object* x_185; double x_186; double x_187; double x_188; double x_189; double x_190; lean_object* x_191; lean_object* x_192; +x_182 = lean_ctor_get(x_180, 0); +x_183 = lean_ctor_get(x_180, 1); +x_184 = 0; +x_185 = lean_unsigned_to_nat(0u); +x_186 = l_Float_ofScientific(x_126, x_184, x_185); +lean_dec(x_126); +x_187 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_188 = lean_float_div(x_186, x_187); +x_189 = l_Float_ofScientific(x_182, x_184, x_185); +lean_dec(x_182); +x_190 = lean_float_div(x_189, x_187); +x_191 = lean_box_float(x_188); +x_192 = lean_box_float(x_190); +lean_ctor_set(x_180, 1, x_192); +lean_ctor_set(x_180, 0, x_191); +lean_ctor_set_tag(x_128, 0); +lean_ctor_set(x_128, 1, x_180); +lean_ctor_set(x_128, 0, x_179); +x_21 = x_128; +x_22 = x_183; +goto block_124; } else { -lean_object* x_185; lean_object* x_186; uint8_t x_187; lean_object* x_188; double x_189; double x_190; double x_191; double x_192; double x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; -x_185 = lean_ctor_get(x_172, 0); -x_186 = lean_ctor_get(x_172, 1); -lean_inc(x_186); -lean_inc(x_185); -lean_dec(x_172); -x_187 = 0; -x_188 = lean_unsigned_to_nat(0u); -x_189 = l_Float_ofScientific(x_118, x_187, x_188); -lean_dec(x_118); -x_190 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_191 = lean_float_div(x_189, x_190); -x_192 = l_Float_ofScientific(x_185, x_187, x_188); -lean_dec(x_185); -x_193 = lean_float_div(x_192, x_190); -x_194 = lean_box_float(x_191); -x_195 = lean_box_float(x_193); -x_196 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_196, 0, x_194); -lean_ctor_set(x_196, 1, x_195); -lean_ctor_set_tag(x_120, 0); -lean_ctor_set(x_120, 1, x_196); -lean_ctor_set(x_120, 0, x_171); -x_21 = x_120; -x_22 = x_186; -goto block_116; +lean_object* x_193; lean_object* x_194; uint8_t x_195; lean_object* x_196; double x_197; double x_198; double x_199; double x_200; double x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; +x_193 = lean_ctor_get(x_180, 0); +x_194 = lean_ctor_get(x_180, 1); +lean_inc(x_194); +lean_inc(x_193); +lean_dec(x_180); +x_195 = 0; +x_196 = lean_unsigned_to_nat(0u); +x_197 = l_Float_ofScientific(x_126, x_195, x_196); +lean_dec(x_126); +x_198 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_199 = lean_float_div(x_197, x_198); +x_200 = l_Float_ofScientific(x_193, x_195, x_196); +lean_dec(x_193); +x_201 = lean_float_div(x_200, x_198); +x_202 = lean_box_float(x_199); +x_203 = lean_box_float(x_201); +x_204 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_204, 0, x_202); +lean_ctor_set(x_204, 1, x_203); +lean_ctor_set_tag(x_128, 0); +lean_ctor_set(x_128, 1, x_204); +lean_ctor_set(x_128, 0, x_179); +x_21 = x_128; +x_22 = x_194; +goto block_124; } } else { -lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; uint8_t x_204; lean_object* x_205; double x_206; double x_207; double x_208; double x_209; double x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; -x_197 = lean_ctor_get(x_120, 0); -x_198 = lean_ctor_get(x_120, 1); -lean_inc(x_198); -lean_inc(x_197); -lean_dec(x_120); -x_199 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_199, 0, x_197); -x_200 = lean_io_mono_nanos_now(x_198); -x_201 = lean_ctor_get(x_200, 0); -lean_inc(x_201); -x_202 = lean_ctor_get(x_200, 1); -lean_inc(x_202); -if (lean_is_exclusive(x_200)) { - lean_ctor_release(x_200, 0); - lean_ctor_release(x_200, 1); - x_203 = x_200; +lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; uint8_t x_212; lean_object* x_213; double x_214; double x_215; double x_216; double x_217; double x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; +x_205 = lean_ctor_get(x_128, 0); +x_206 = lean_ctor_get(x_128, 1); +lean_inc(x_206); +lean_inc(x_205); +lean_dec(x_128); +x_207 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_207, 0, x_205); +x_208 = lean_io_mono_nanos_now(x_206); +x_209 = lean_ctor_get(x_208, 0); +lean_inc(x_209); +x_210 = lean_ctor_get(x_208, 1); +lean_inc(x_210); +if (lean_is_exclusive(x_208)) { + lean_ctor_release(x_208, 0); + lean_ctor_release(x_208, 1); + x_211 = x_208; } else { - lean_dec_ref(x_200); - x_203 = lean_box(0); + lean_dec_ref(x_208); + x_211 = lean_box(0); } -x_204 = 0; -x_205 = lean_unsigned_to_nat(0u); -x_206 = l_Float_ofScientific(x_118, x_204, x_205); -lean_dec(x_118); -x_207 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_208 = lean_float_div(x_206, x_207); -x_209 = l_Float_ofScientific(x_201, x_204, x_205); -lean_dec(x_201); -x_210 = lean_float_div(x_209, x_207); -x_211 = lean_box_float(x_208); -x_212 = lean_box_float(x_210); -if (lean_is_scalar(x_203)) { - x_213 = lean_alloc_ctor(0, 2, 0); +x_212 = 0; +x_213 = lean_unsigned_to_nat(0u); +x_214 = l_Float_ofScientific(x_126, x_212, x_213); +lean_dec(x_126); +x_215 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_216 = lean_float_div(x_214, x_215); +x_217 = l_Float_ofScientific(x_209, x_212, x_213); +lean_dec(x_209); +x_218 = lean_float_div(x_217, x_215); +x_219 = lean_box_float(x_216); +x_220 = lean_box_float(x_218); +if (lean_is_scalar(x_211)) { + x_221 = lean_alloc_ctor(0, 2, 0); } else { - x_213 = x_203; + x_221 = x_211; } -lean_ctor_set(x_213, 0, x_211); -lean_ctor_set(x_213, 1, x_212); -x_214 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_214, 0, x_199); -lean_ctor_set(x_214, 1, x_213); -x_21 = x_214; -x_22 = x_202; -goto block_116; +lean_ctor_set(x_221, 0, x_219); +lean_ctor_set(x_221, 1, x_220); +x_222 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_222, 0, x_207); +lean_ctor_set(x_222, 1, x_221); +x_21 = x_222; +x_22 = x_210; +goto block_124; } } -block_116: +block_124: { -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_96; uint8_t x_97; +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; uint8_t x_29; x_23 = lean_ctor_get(x_21, 1); lean_inc(x_23); x_24 = lean_ctor_get(x_21, 0); @@ -22464,14 +22484,28 @@ lean_inc(x_25); x_26 = lean_ctor_get(x_23, 1); lean_inc(x_26); lean_dec(x_23); -x_96 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__2; -x_97 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_96); -if (x_97 == 0) +x_27 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__2; +x_28 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_27); +if (x_28 == 0) { -uint8_t x_98; -x_98 = 0; -x_27 = x_98; -goto block_95; +if (x_6 == 0) +{ +uint8_t x_94; +x_94 = 0; +x_29 = x_94; +goto block_93; +} +else +{ +lean_object* x_95; double x_96; double x_97; lean_object* x_98; +x_95 = lean_box(0); +x_96 = lean_unbox_float(x_25); +lean_dec(x_25); +x_97 = lean_unbox_float(x_26); +lean_dec(x_26); +x_98 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__3(x_2, x_3, x_4, x_17, x_24, x_28, x_96, x_97, x_5, x_95, x_9, x_10, x_11, x_12, x_13, x_14, x_22); +return x_98; +} } else { @@ -22481,6 +22515,8 @@ x_100 = lean_unbox_float(x_25); x_101 = lean_float_sub(x_99, x_100); if (x_20 == 0) { +if (x_6 == 0) +{ lean_object* x_102; lean_object* x_103; uint8_t x_104; lean_object* x_105; double x_106; double x_107; double x_108; uint8_t x_109; x_102 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__3; x_103 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_102); @@ -22491,62 +22527,86 @@ lean_dec(x_103); x_107 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__4; x_108 = lean_float_div(x_106, x_107); x_109 = lean_float_decLt(x_108, x_101); -x_27 = x_109; -goto block_95; +x_29 = x_109; +goto block_93; } else { -lean_object* x_110; lean_object* x_111; uint8_t x_112; lean_object* x_113; double x_114; uint8_t x_115; -x_110 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__3; -x_111 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_110); -x_112 = 0; -x_113 = lean_unsigned_to_nat(0u); -x_114 = l_Float_ofScientific(x_111, x_112, x_113); -lean_dec(x_111); -x_115 = lean_float_decLt(x_114, x_101); -x_27 = x_115; -goto block_95; +lean_object* x_110; double x_111; double x_112; lean_object* x_113; +x_110 = lean_box(0); +x_111 = lean_unbox_float(x_25); +lean_dec(x_25); +x_112 = lean_unbox_float(x_26); +lean_dec(x_26); +x_113 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__3(x_2, x_3, x_4, x_17, x_24, x_28, x_111, x_112, x_5, x_110, x_9, x_10, x_11, x_12, x_13, x_14, x_22); +return x_113; } } -block_95: +else { if (x_6 == 0) { -if (x_27 == 0) +lean_object* x_114; lean_object* x_115; uint8_t x_116; lean_object* x_117; double x_118; uint8_t x_119; +x_114 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__3; +x_115 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_114); +x_116 = 0; +x_117 = lean_unsigned_to_nat(0u); +x_118 = l_Float_ofScientific(x_115, x_116, x_117); +lean_dec(x_115); +x_119 = lean_float_decLt(x_118, x_101); +x_29 = x_119; +goto block_93; +} +else { -lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; +lean_object* x_120; double x_121; double x_122; lean_object* x_123; +x_120 = lean_box(0); +x_121 = lean_unbox_float(x_25); +lean_dec(x_25); +x_122 = lean_unbox_float(x_26); +lean_dec(x_26); +x_123 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__3(x_2, x_3, x_4, x_17, x_24, x_28, x_121, x_122, x_5, x_120, x_9, x_10, x_11, x_12, x_13, x_14, x_22); +return x_123; +} +} +} +block_93: +{ +if (x_29 == 0) +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; lean_dec(x_26); lean_dec(x_25); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_28 = lean_st_ref_take(x_14, x_22); -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -x_30 = lean_ctor_get(x_29, 3); -lean_inc(x_30); -x_31 = lean_ctor_get(x_28, 1); +x_30 = lean_st_ref_take(x_14, x_22); +x_31 = lean_ctor_get(x_30, 0); lean_inc(x_31); -lean_dec(x_28); -x_32 = !lean_is_exclusive(x_29); -if (x_32 == 0) -{ -lean_object* x_33; uint8_t x_34; -x_33 = lean_ctor_get(x_29, 3); -lean_dec(x_33); -x_34 = !lean_is_exclusive(x_30); +x_32 = lean_ctor_get(x_31, 3); +lean_inc(x_32); +x_33 = lean_ctor_get(x_30, 1); +lean_inc(x_33); +lean_dec(x_30); +x_34 = !lean_is_exclusive(x_31); if (x_34 == 0) { -lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_35 = lean_ctor_get(x_30, 0); -x_36 = l_Lean_PersistentArray_append___rarg(x_17, x_35); +lean_object* x_35; uint8_t x_36; +x_35 = lean_ctor_get(x_31, 3); lean_dec(x_35); -lean_ctor_set(x_30, 0, x_36); -x_37 = lean_st_ref_set(x_14, x_29, x_31); -x_38 = lean_ctor_get(x_37, 1); -lean_inc(x_38); +x_36 = !lean_is_exclusive(x_32); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_37 = lean_ctor_get(x_32, 0); +x_38 = l_Lean_PersistentArray_append___rarg(x_17, x_37); lean_dec(x_37); -x_39 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_generate___spec__2(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_38); +lean_ctor_set(x_32, 0, x_38); +x_39 = lean_st_ref_set(x_14, x_31, x_33); +x_40 = lean_ctor_get(x_39, 1); +lean_inc(x_40); +lean_dec(x_39); +x_41 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_generate___spec__2(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_40); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); @@ -22554,177 +22614,177 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_24); -if (lean_obj_tag(x_39) == 0) +if (lean_obj_tag(x_41) == 0) { -uint8_t x_40; -x_40 = !lean_is_exclusive(x_39); -if (x_40 == 0) +uint8_t x_42; +x_42 = !lean_is_exclusive(x_41); +if (x_42 == 0) { -return x_39; +return x_41; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_39, 0); -x_42 = lean_ctor_get(x_39, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_39); -x_43 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_42); -return x_43; +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_41, 0); +x_44 = lean_ctor_get(x_41, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_41); +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; } } else { -uint8_t x_44; -x_44 = !lean_is_exclusive(x_39); -if (x_44 == 0) +uint8_t x_46; +x_46 = !lean_is_exclusive(x_41); +if (x_46 == 0) { -return x_39; +return x_41; } else { -lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_45 = lean_ctor_get(x_39, 0); -x_46 = lean_ctor_get(x_39, 1); -lean_inc(x_46); -lean_inc(x_45); -lean_dec(x_39); -x_47 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_47, 0, x_45); -lean_ctor_set(x_47, 1, x_46); -return x_47; +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_41, 0); +x_48 = lean_ctor_get(x_41, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_41); +x_49 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set(x_49, 1, x_48); +return x_49; } } } else { -uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); -x_49 = lean_ctor_get(x_30, 0); -lean_inc(x_49); -lean_dec(x_30); -x_50 = l_Lean_PersistentArray_append___rarg(x_17, x_49); -lean_dec(x_49); -x_51 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_51, 0, x_50); -lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); -lean_ctor_set(x_29, 3, x_51); -x_52 = lean_st_ref_set(x_14, x_29, x_31); -x_53 = lean_ctor_get(x_52, 1); -lean_inc(x_53); -lean_dec(x_52); -x_54 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_generate___spec__2(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_53); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_24); -if (lean_obj_tag(x_54) == 0) -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_55 = lean_ctor_get(x_54, 0); +uint64_t x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_50 = lean_ctor_get_uint64(x_32, sizeof(void*)*1); +x_51 = lean_ctor_get(x_32, 0); +lean_inc(x_51); +lean_dec(x_32); +x_52 = l_Lean_PersistentArray_append___rarg(x_17, x_51); +lean_dec(x_51); +x_53 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_53, 0, x_52); +lean_ctor_set_uint64(x_53, sizeof(void*)*1, x_50); +lean_ctor_set(x_31, 3, x_53); +x_54 = lean_st_ref_set(x_14, x_31, x_33); +x_55 = lean_ctor_get(x_54, 1); lean_inc(x_55); -x_56 = lean_ctor_get(x_54, 1); -lean_inc(x_56); -if (lean_is_exclusive(x_54)) { - lean_ctor_release(x_54, 0); - lean_ctor_release(x_54, 1); - x_57 = x_54; +lean_dec(x_54); +x_56 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_generate___spec__2(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_55); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_24); +if (lean_obj_tag(x_56) == 0) +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_57 = lean_ctor_get(x_56, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_56, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_56)) { + lean_ctor_release(x_56, 0); + lean_ctor_release(x_56, 1); + x_59 = x_56; } else { - lean_dec_ref(x_54); - x_57 = lean_box(0); + lean_dec_ref(x_56); + x_59 = lean_box(0); } -if (lean_is_scalar(x_57)) { - x_58 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(0, 2, 0); } else { - x_58 = x_57; + x_60 = x_59; } -lean_ctor_set(x_58, 0, x_55); -lean_ctor_set(x_58, 1, x_56); -return x_58; +lean_ctor_set(x_60, 0, x_57); +lean_ctor_set(x_60, 1, x_58); +return x_60; } else { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; -x_59 = lean_ctor_get(x_54, 0); -lean_inc(x_59); -x_60 = lean_ctor_get(x_54, 1); -lean_inc(x_60); -if (lean_is_exclusive(x_54)) { - lean_ctor_release(x_54, 0); - lean_ctor_release(x_54, 1); - x_61 = x_54; +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_61 = lean_ctor_get(x_56, 0); +lean_inc(x_61); +x_62 = lean_ctor_get(x_56, 1); +lean_inc(x_62); +if (lean_is_exclusive(x_56)) { + lean_ctor_release(x_56, 0); + lean_ctor_release(x_56, 1); + x_63 = x_56; } else { - lean_dec_ref(x_54); - x_61 = lean_box(0); + lean_dec_ref(x_56); + x_63 = lean_box(0); } -if (lean_is_scalar(x_61)) { - x_62 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_63)) { + x_64 = lean_alloc_ctor(1, 2, 0); } else { - x_62 = x_61; + x_64 = x_63; } -lean_ctor_set(x_62, 0, x_59); -lean_ctor_set(x_62, 1, x_60); -return x_62; +lean_ctor_set(x_64, 0, x_61); +lean_ctor_set(x_64, 1, x_62); +return x_64; } } } else { -lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_63 = lean_ctor_get(x_29, 0); -x_64 = lean_ctor_get(x_29, 1); -x_65 = lean_ctor_get(x_29, 2); -x_66 = lean_ctor_get(x_29, 4); -x_67 = lean_ctor_get(x_29, 5); -x_68 = lean_ctor_get(x_29, 6); -x_69 = lean_ctor_get(x_29, 7); +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; uint64_t x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_65 = lean_ctor_get(x_31, 0); +x_66 = lean_ctor_get(x_31, 1); +x_67 = lean_ctor_get(x_31, 2); +x_68 = lean_ctor_get(x_31, 4); +x_69 = lean_ctor_get(x_31, 5); +x_70 = lean_ctor_get(x_31, 6); +x_71 = lean_ctor_get(x_31, 7); +lean_inc(x_71); +lean_inc(x_70); lean_inc(x_69); lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); -lean_inc(x_64); -lean_inc(x_63); -lean_dec(x_29); -x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); -x_71 = lean_ctor_get(x_30, 0); -lean_inc(x_71); -if (lean_is_exclusive(x_30)) { - lean_ctor_release(x_30, 0); - x_72 = x_30; +lean_dec(x_31); +x_72 = lean_ctor_get_uint64(x_32, sizeof(void*)*1); +x_73 = lean_ctor_get(x_32, 0); +lean_inc(x_73); +if (lean_is_exclusive(x_32)) { + lean_ctor_release(x_32, 0); + x_74 = x_32; } else { - lean_dec_ref(x_30); - x_72 = lean_box(0); + lean_dec_ref(x_32); + x_74 = lean_box(0); } -x_73 = l_Lean_PersistentArray_append___rarg(x_17, x_71); -lean_dec(x_71); -if (lean_is_scalar(x_72)) { - x_74 = lean_alloc_ctor(0, 1, 8); +x_75 = l_Lean_PersistentArray_append___rarg(x_17, x_73); +lean_dec(x_73); +if (lean_is_scalar(x_74)) { + x_76 = lean_alloc_ctor(0, 1, 8); } else { - x_74 = x_72; + x_76 = x_74; } -lean_ctor_set(x_74, 0, x_73); -lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); -x_75 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_75, 0, x_63); -lean_ctor_set(x_75, 1, x_64); -lean_ctor_set(x_75, 2, x_65); -lean_ctor_set(x_75, 3, x_74); -lean_ctor_set(x_75, 4, x_66); -lean_ctor_set(x_75, 5, x_67); -lean_ctor_set(x_75, 6, x_68); -lean_ctor_set(x_75, 7, x_69); -x_76 = lean_st_ref_set(x_14, x_75, x_31); -x_77 = lean_ctor_get(x_76, 1); -lean_inc(x_77); -lean_dec(x_76); -x_78 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_generate___spec__2(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_77); +lean_ctor_set(x_76, 0, x_75); +lean_ctor_set_uint64(x_76, sizeof(void*)*1, x_72); +x_77 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_77, 0, x_65); +lean_ctor_set(x_77, 1, x_66); +lean_ctor_set(x_77, 2, x_67); +lean_ctor_set(x_77, 3, x_76); +lean_ctor_set(x_77, 4, x_68); +lean_ctor_set(x_77, 5, x_69); +lean_ctor_set(x_77, 6, x_70); +lean_ctor_set(x_77, 7, x_71); +x_78 = lean_st_ref_set(x_14, x_77, x_33); +x_79 = lean_ctor_get(x_78, 1); +lean_inc(x_79); +lean_dec(x_78); +x_80 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_generate___spec__2(x_24, x_9, x_10, x_11, x_12, x_13, x_14, x_79); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); @@ -22732,665 +22792,681 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_24); -if (lean_obj_tag(x_78) == 0) +if (lean_obj_tag(x_80) == 0) { -lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; -x_79 = lean_ctor_get(x_78, 0); -lean_inc(x_79); -x_80 = lean_ctor_get(x_78, 1); -lean_inc(x_80); -if (lean_is_exclusive(x_78)) { - lean_ctor_release(x_78, 0); - lean_ctor_release(x_78, 1); - x_81 = x_78; +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_81 = lean_ctor_get(x_80, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_80, 1); +lean_inc(x_82); +if (lean_is_exclusive(x_80)) { + lean_ctor_release(x_80, 0); + lean_ctor_release(x_80, 1); + x_83 = x_80; } else { - lean_dec_ref(x_78); - x_81 = lean_box(0); + lean_dec_ref(x_80); + x_83 = lean_box(0); } -if (lean_is_scalar(x_81)) { - x_82 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_83)) { + x_84 = lean_alloc_ctor(0, 2, 0); } else { - x_82 = x_81; + x_84 = x_83; } -lean_ctor_set(x_82, 0, x_79); -lean_ctor_set(x_82, 1, x_80); -return x_82; +lean_ctor_set(x_84, 0, x_81); +lean_ctor_set(x_84, 1, x_82); +return x_84; } else { -lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; -x_83 = lean_ctor_get(x_78, 0); -lean_inc(x_83); -x_84 = lean_ctor_get(x_78, 1); -lean_inc(x_84); -if (lean_is_exclusive(x_78)) { - lean_ctor_release(x_78, 0); - lean_ctor_release(x_78, 1); - x_85 = x_78; +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_85 = lean_ctor_get(x_80, 0); +lean_inc(x_85); +x_86 = lean_ctor_get(x_80, 1); +lean_inc(x_86); +if (lean_is_exclusive(x_80)) { + lean_ctor_release(x_80, 0); + lean_ctor_release(x_80, 1); + x_87 = x_80; } else { - lean_dec_ref(x_78); - x_85 = lean_box(0); + lean_dec_ref(x_80); + x_87 = lean_box(0); } -if (lean_is_scalar(x_85)) { - x_86 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_87)) { + x_88 = lean_alloc_ctor(1, 2, 0); } else { - x_86 = x_85; + x_88 = x_87; } -lean_ctor_set(x_86, 0, x_83); -lean_ctor_set(x_86, 1, x_84); -return x_86; +lean_ctor_set(x_88, 0, x_85); +lean_ctor_set(x_88, 1, x_86); +return x_88; } } } else { -lean_object* x_87; double x_88; double x_89; lean_object* x_90; -x_87 = lean_box(0); -x_88 = lean_unbox_float(x_25); +lean_object* x_89; double x_90; double x_91; lean_object* x_92; +x_89 = lean_box(0); +x_90 = lean_unbox_float(x_25); lean_dec(x_25); -x_89 = lean_unbox_float(x_26); +x_91 = lean_unbox_float(x_26); lean_dec(x_26); -x_90 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__3(x_2, x_3, x_4, x_17, x_24, x_1, x_27, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_13, x_14, x_22); -return x_90; -} -} -else -{ -lean_object* x_91; double x_92; double x_93; lean_object* x_94; -x_91 = lean_box(0); -x_92 = lean_unbox_float(x_25); -lean_dec(x_25); -x_93 = lean_unbox_float(x_26); -lean_dec(x_26); -x_94 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__3(x_2, x_3, x_4, x_17, x_24, x_1, x_27, x_92, x_93, x_5, x_91, x_9, x_10, x_11, x_12, x_13, x_14, x_22); -return x_94; +x_92 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__3(x_2, x_3, x_4, x_17, x_24, x_28, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_13, x_14, x_22); +return x_92; } } } } else { -lean_object* x_215; lean_object* x_216; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; -x_311 = lean_io_get_num_heartbeats(x_18); -x_312 = lean_ctor_get(x_311, 0); -lean_inc(x_312); -x_313 = lean_ctor_get(x_311, 1); -lean_inc(x_313); -lean_dec(x_311); +lean_object* x_223; lean_object* x_224; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; +x_327 = lean_io_get_num_heartbeats(x_18); +x_328 = lean_ctor_get(x_327, 0); +lean_inc(x_328); +x_329 = lean_ctor_get(x_327, 1); +lean_inc(x_329); +lean_dec(x_327); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_314 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_313); -if (lean_obj_tag(x_314) == 0) +x_330 = lean_apply_7(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_329); +if (lean_obj_tag(x_330) == 0) { -uint8_t x_315; -x_315 = !lean_is_exclusive(x_314); -if (x_315 == 0) +uint8_t x_331; +x_331 = !lean_is_exclusive(x_330); +if (x_331 == 0) { -lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; uint8_t x_320; -x_316 = lean_ctor_get(x_314, 0); -x_317 = lean_ctor_get(x_314, 1); -x_318 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_318, 0, x_316); -x_319 = lean_io_get_num_heartbeats(x_317); -x_320 = !lean_is_exclusive(x_319); -if (x_320 == 0) +lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; uint8_t x_336; +x_332 = lean_ctor_get(x_330, 0); +x_333 = lean_ctor_get(x_330, 1); +x_334 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_334, 0, x_332); +x_335 = lean_io_get_num_heartbeats(x_333); +x_336 = !lean_is_exclusive(x_335); +if (x_336 == 0) { -lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; -x_321 = lean_ctor_get(x_319, 0); -x_322 = lean_ctor_get(x_319, 1); -x_323 = 0; -x_324 = lean_unsigned_to_nat(0u); -x_325 = l_Float_ofScientific(x_312, x_323, x_324); -lean_dec(x_312); -x_326 = l_Float_ofScientific(x_321, x_323, x_324); -lean_dec(x_321); -x_327 = lean_box_float(x_325); -x_328 = lean_box_float(x_326); -lean_ctor_set(x_319, 1, x_328); -lean_ctor_set(x_319, 0, x_327); -lean_ctor_set(x_314, 1, x_319); -lean_ctor_set(x_314, 0, x_318); -x_215 = x_314; -x_216 = x_322; -goto block_310; +lean_object* x_337; lean_object* x_338; uint8_t x_339; lean_object* x_340; double x_341; double x_342; lean_object* x_343; lean_object* x_344; +x_337 = lean_ctor_get(x_335, 0); +x_338 = lean_ctor_get(x_335, 1); +x_339 = 0; +x_340 = lean_unsigned_to_nat(0u); +x_341 = l_Float_ofScientific(x_328, x_339, x_340); +lean_dec(x_328); +x_342 = l_Float_ofScientific(x_337, x_339, x_340); +lean_dec(x_337); +x_343 = lean_box_float(x_341); +x_344 = lean_box_float(x_342); +lean_ctor_set(x_335, 1, x_344); +lean_ctor_set(x_335, 0, x_343); +lean_ctor_set(x_330, 1, x_335); +lean_ctor_set(x_330, 0, x_334); +x_223 = x_330; +x_224 = x_338; +goto block_326; } else { -lean_object* x_329; lean_object* x_330; uint8_t x_331; lean_object* x_332; double x_333; double x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; -x_329 = lean_ctor_get(x_319, 0); -x_330 = lean_ctor_get(x_319, 1); -lean_inc(x_330); -lean_inc(x_329); -lean_dec(x_319); -x_331 = 0; -x_332 = lean_unsigned_to_nat(0u); -x_333 = l_Float_ofScientific(x_312, x_331, x_332); -lean_dec(x_312); -x_334 = l_Float_ofScientific(x_329, x_331, x_332); -lean_dec(x_329); -x_335 = lean_box_float(x_333); -x_336 = lean_box_float(x_334); -x_337 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_337, 0, x_335); -lean_ctor_set(x_337, 1, x_336); -lean_ctor_set(x_314, 1, x_337); -lean_ctor_set(x_314, 0, x_318); -x_215 = x_314; -x_216 = x_330; -goto block_310; +lean_object* x_345; lean_object* x_346; uint8_t x_347; lean_object* x_348; double x_349; double x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; +x_345 = lean_ctor_get(x_335, 0); +x_346 = lean_ctor_get(x_335, 1); +lean_inc(x_346); +lean_inc(x_345); +lean_dec(x_335); +x_347 = 0; +x_348 = lean_unsigned_to_nat(0u); +x_349 = l_Float_ofScientific(x_328, x_347, x_348); +lean_dec(x_328); +x_350 = l_Float_ofScientific(x_345, x_347, x_348); +lean_dec(x_345); +x_351 = lean_box_float(x_349); +x_352 = lean_box_float(x_350); +x_353 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_353, 0, x_351); +lean_ctor_set(x_353, 1, x_352); +lean_ctor_set(x_330, 1, x_353); +lean_ctor_set(x_330, 0, x_334); +x_223 = x_330; +x_224 = x_346; +goto block_326; } } else { -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; -x_338 = lean_ctor_get(x_314, 0); -x_339 = lean_ctor_get(x_314, 1); -lean_inc(x_339); -lean_inc(x_338); -lean_dec(x_314); -x_340 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = lean_ctor_get(x_341, 0); -lean_inc(x_342); -x_343 = lean_ctor_get(x_341, 1); -lean_inc(x_343); -if (lean_is_exclusive(x_341)) { - lean_ctor_release(x_341, 0); - lean_ctor_release(x_341, 1); - x_344 = x_341; -} else { - lean_dec_ref(x_341); - x_344 = lean_box(0); -} -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_312, x_345, x_346); -lean_dec(x_312); -x_348 = l_Float_ofScientific(x_342, x_345, x_346); -lean_dec(x_342); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -if (lean_is_scalar(x_344)) { - x_351 = lean_alloc_ctor(0, 2, 0); -} else { - x_351 = x_344; -} -lean_ctor_set(x_351, 0, x_349); -lean_ctor_set(x_351, 1, x_350); -x_352 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_352, 0, x_340); -lean_ctor_set(x_352, 1, x_351); -x_215 = x_352; -x_216 = x_343; -goto block_310; -} -} -else -{ -uint8_t x_353; -x_353 = !lean_is_exclusive(x_314); -if (x_353 == 0) -{ -lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; uint8_t x_358; -x_354 = lean_ctor_get(x_314, 0); -x_355 = lean_ctor_get(x_314, 1); -x_356 = lean_alloc_ctor(0, 1, 0); +lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; +x_354 = lean_ctor_get(x_330, 0); +x_355 = lean_ctor_get(x_330, 1); +lean_inc(x_355); +lean_inc(x_354); +lean_dec(x_330); +x_356 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_356, 0, x_354); x_357 = lean_io_get_num_heartbeats(x_355); -x_358 = !lean_is_exclusive(x_357); -if (x_358 == 0) -{ -lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; -x_359 = lean_ctor_get(x_357, 0); -x_360 = lean_ctor_get(x_357, 1); +x_358 = lean_ctor_get(x_357, 0); +lean_inc(x_358); +x_359 = lean_ctor_get(x_357, 1); +lean_inc(x_359); +if (lean_is_exclusive(x_357)) { + lean_ctor_release(x_357, 0); + lean_ctor_release(x_357, 1); + x_360 = x_357; +} else { + lean_dec_ref(x_357); + x_360 = lean_box(0); +} x_361 = 0; x_362 = lean_unsigned_to_nat(0u); -x_363 = l_Float_ofScientific(x_312, x_361, x_362); -lean_dec(x_312); -x_364 = l_Float_ofScientific(x_359, x_361, x_362); -lean_dec(x_359); +x_363 = l_Float_ofScientific(x_328, x_361, x_362); +lean_dec(x_328); +x_364 = l_Float_ofScientific(x_358, x_361, x_362); +lean_dec(x_358); x_365 = lean_box_float(x_363); x_366 = lean_box_float(x_364); -lean_ctor_set(x_357, 1, x_366); -lean_ctor_set(x_357, 0, x_365); -lean_ctor_set_tag(x_314, 0); -lean_ctor_set(x_314, 1, x_357); -lean_ctor_set(x_314, 0, x_356); -x_215 = x_314; -x_216 = x_360; -goto block_310; -} -else -{ -lean_object* x_367; lean_object* x_368; uint8_t x_369; lean_object* x_370; double x_371; double x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; -x_367 = lean_ctor_get(x_357, 0); -x_368 = lean_ctor_get(x_357, 1); -lean_inc(x_368); -lean_inc(x_367); -lean_dec(x_357); -x_369 = 0; -x_370 = lean_unsigned_to_nat(0u); -x_371 = l_Float_ofScientific(x_312, x_369, x_370); -lean_dec(x_312); -x_372 = l_Float_ofScientific(x_367, x_369, x_370); -lean_dec(x_367); -x_373 = lean_box_float(x_371); -x_374 = lean_box_float(x_372); -x_375 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_375, 0, x_373); -lean_ctor_set(x_375, 1, x_374); -lean_ctor_set_tag(x_314, 0); -lean_ctor_set(x_314, 1, x_375); -lean_ctor_set(x_314, 0, x_356); -x_215 = x_314; -x_216 = x_368; -goto block_310; -} -} -else -{ -lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; uint8_t x_383; lean_object* x_384; double x_385; double x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; -x_376 = lean_ctor_get(x_314, 0); -x_377 = lean_ctor_get(x_314, 1); -lean_inc(x_377); -lean_inc(x_376); -lean_dec(x_314); -x_378 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_378, 0, x_376); -x_379 = lean_io_get_num_heartbeats(x_377); -x_380 = lean_ctor_get(x_379, 0); -lean_inc(x_380); -x_381 = lean_ctor_get(x_379, 1); -lean_inc(x_381); -if (lean_is_exclusive(x_379)) { - lean_ctor_release(x_379, 0); - lean_ctor_release(x_379, 1); - x_382 = x_379; +if (lean_is_scalar(x_360)) { + x_367 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_379); - x_382 = lean_box(0); + x_367 = x_360; } -x_383 = 0; -x_384 = lean_unsigned_to_nat(0u); -x_385 = l_Float_ofScientific(x_312, x_383, x_384); -lean_dec(x_312); -x_386 = l_Float_ofScientific(x_380, x_383, x_384); -lean_dec(x_380); -x_387 = lean_box_float(x_385); -x_388 = lean_box_float(x_386); -if (lean_is_scalar(x_382)) { - x_389 = lean_alloc_ctor(0, 2, 0); -} else { - x_389 = x_382; +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +x_368 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_368, 0, x_356); +lean_ctor_set(x_368, 1, x_367); +x_223 = x_368; +x_224 = x_359; +goto block_326; } -lean_ctor_set(x_389, 0, x_387); -lean_ctor_set(x_389, 1, x_388); -x_390 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_390, 0, x_378); -lean_ctor_set(x_390, 1, x_389); -x_215 = x_390; -x_216 = x_381; -goto block_310; -} -} -block_310: -{ -lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; uint8_t x_221; lean_object* x_290; uint8_t x_291; -x_217 = lean_ctor_get(x_215, 1); -lean_inc(x_217); -x_218 = lean_ctor_get(x_215, 0); -lean_inc(x_218); -lean_dec(x_215); -x_219 = lean_ctor_get(x_217, 0); -lean_inc(x_219); -x_220 = lean_ctor_get(x_217, 1); -lean_inc(x_220); -lean_dec(x_217); -x_290 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__2; -x_291 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_290); -if (x_291 == 0) -{ -uint8_t x_292; -x_292 = 0; -x_221 = x_292; -goto block_289; } else { -double x_293; double x_294; double x_295; -x_293 = lean_unbox_float(x_220); -x_294 = lean_unbox_float(x_219); -x_295 = lean_float_sub(x_293, x_294); +uint8_t x_369; +x_369 = !lean_is_exclusive(x_330); +if (x_369 == 0) +{ +lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; uint8_t x_374; +x_370 = lean_ctor_get(x_330, 0); +x_371 = lean_ctor_get(x_330, 1); +x_372 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_372, 0, x_370); +x_373 = lean_io_get_num_heartbeats(x_371); +x_374 = !lean_is_exclusive(x_373); +if (x_374 == 0) +{ +lean_object* x_375; lean_object* x_376; uint8_t x_377; lean_object* x_378; double x_379; double x_380; lean_object* x_381; lean_object* x_382; +x_375 = lean_ctor_get(x_373, 0); +x_376 = lean_ctor_get(x_373, 1); +x_377 = 0; +x_378 = lean_unsigned_to_nat(0u); +x_379 = l_Float_ofScientific(x_328, x_377, x_378); +lean_dec(x_328); +x_380 = l_Float_ofScientific(x_375, x_377, x_378); +lean_dec(x_375); +x_381 = lean_box_float(x_379); +x_382 = lean_box_float(x_380); +lean_ctor_set(x_373, 1, x_382); +lean_ctor_set(x_373, 0, x_381); +lean_ctor_set_tag(x_330, 0); +lean_ctor_set(x_330, 1, x_373); +lean_ctor_set(x_330, 0, x_372); +x_223 = x_330; +x_224 = x_376; +goto block_326; +} +else +{ +lean_object* x_383; lean_object* x_384; uint8_t x_385; lean_object* x_386; double x_387; double x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; +x_383 = lean_ctor_get(x_373, 0); +x_384 = lean_ctor_get(x_373, 1); +lean_inc(x_384); +lean_inc(x_383); +lean_dec(x_373); +x_385 = 0; +x_386 = lean_unsigned_to_nat(0u); +x_387 = l_Float_ofScientific(x_328, x_385, x_386); +lean_dec(x_328); +x_388 = l_Float_ofScientific(x_383, x_385, x_386); +lean_dec(x_383); +x_389 = lean_box_float(x_387); +x_390 = lean_box_float(x_388); +x_391 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_391, 0, x_389); +lean_ctor_set(x_391, 1, x_390); +lean_ctor_set_tag(x_330, 0); +lean_ctor_set(x_330, 1, x_391); +lean_ctor_set(x_330, 0, x_372); +x_223 = x_330; +x_224 = x_384; +goto block_326; +} +} +else +{ +lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; uint8_t x_399; lean_object* x_400; double x_401; double x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; +x_392 = lean_ctor_get(x_330, 0); +x_393 = lean_ctor_get(x_330, 1); +lean_inc(x_393); +lean_inc(x_392); +lean_dec(x_330); +x_394 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_394, 0, x_392); +x_395 = lean_io_get_num_heartbeats(x_393); +x_396 = lean_ctor_get(x_395, 0); +lean_inc(x_396); +x_397 = lean_ctor_get(x_395, 1); +lean_inc(x_397); +if (lean_is_exclusive(x_395)) { + lean_ctor_release(x_395, 0); + lean_ctor_release(x_395, 1); + x_398 = x_395; +} else { + lean_dec_ref(x_395); + x_398 = lean_box(0); +} +x_399 = 0; +x_400 = lean_unsigned_to_nat(0u); +x_401 = l_Float_ofScientific(x_328, x_399, x_400); +lean_dec(x_328); +x_402 = l_Float_ofScientific(x_396, x_399, x_400); +lean_dec(x_396); +x_403 = lean_box_float(x_401); +x_404 = lean_box_float(x_402); +if (lean_is_scalar(x_398)) { + x_405 = lean_alloc_ctor(0, 2, 0); +} else { + x_405 = x_398; +} +lean_ctor_set(x_405, 0, x_403); +lean_ctor_set(x_405, 1, x_404); +x_406 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_406, 0, x_394); +lean_ctor_set(x_406, 1, x_405); +x_223 = x_406; +x_224 = x_397; +goto block_326; +} +} +block_326: +{ +lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; uint8_t x_230; uint8_t x_231; +x_225 = lean_ctor_get(x_223, 1); +lean_inc(x_225); +x_226 = lean_ctor_get(x_223, 0); +lean_inc(x_226); +lean_dec(x_223); +x_227 = lean_ctor_get(x_225, 0); +lean_inc(x_227); +x_228 = lean_ctor_get(x_225, 1); +lean_inc(x_228); +lean_dec(x_225); +x_229 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__2; +x_230 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_229); +if (x_230 == 0) +{ +if (x_6 == 0) +{ +uint8_t x_296; +x_296 = 0; +x_231 = x_296; +goto block_295; +} +else +{ +lean_object* x_297; double x_298; double x_299; lean_object* x_300; +x_297 = lean_box(0); +x_298 = lean_unbox_float(x_227); +lean_dec(x_227); +x_299 = lean_unbox_float(x_228); +lean_dec(x_228); +x_300 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__3(x_2, x_3, x_4, x_17, x_226, x_230, x_298, x_299, x_5, x_297, x_9, x_10, x_11, x_12, x_13, x_14, x_224); +return x_300; +} +} +else +{ +double x_301; double x_302; double x_303; +x_301 = lean_unbox_float(x_228); +x_302 = lean_unbox_float(x_227); +x_303 = lean_float_sub(x_301, x_302); if (x_20 == 0) { -lean_object* x_296; lean_object* x_297; uint8_t x_298; lean_object* x_299; double x_300; double x_301; double x_302; uint8_t x_303; -x_296 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__3; -x_297 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_296); -x_298 = 0; -x_299 = lean_unsigned_to_nat(0u); -x_300 = l_Float_ofScientific(x_297, x_298, x_299); -lean_dec(x_297); -x_301 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__4; -x_302 = lean_float_div(x_300, x_301); -x_303 = lean_float_decLt(x_302, x_295); -x_221 = x_303; -goto block_289; -} -else +if (x_6 == 0) { -lean_object* x_304; lean_object* x_305; uint8_t x_306; lean_object* x_307; double x_308; uint8_t x_309; +lean_object* x_304; lean_object* x_305; uint8_t x_306; lean_object* x_307; double x_308; double x_309; double x_310; uint8_t x_311; x_304 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__3; x_305 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_304); x_306 = 0; x_307 = lean_unsigned_to_nat(0u); x_308 = l_Float_ofScientific(x_305, x_306, x_307); lean_dec(x_305); -x_309 = lean_float_decLt(x_308, x_295); -x_221 = x_309; -goto block_289; +x_309 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__4; +x_310 = lean_float_div(x_308, x_309); +x_311 = lean_float_decLt(x_310, x_303); +x_231 = x_311; +goto block_295; +} +else +{ +lean_object* x_312; double x_313; double x_314; lean_object* x_315; +x_312 = lean_box(0); +x_313 = lean_unbox_float(x_227); +lean_dec(x_227); +x_314 = lean_unbox_float(x_228); +lean_dec(x_228); +x_315 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__3(x_2, x_3, x_4, x_17, x_226, x_230, x_313, x_314, x_5, x_312, x_9, x_10, x_11, x_12, x_13, x_14, x_224); +return x_315; } } -block_289: +else { if (x_6 == 0) { -if (x_221 == 0) +lean_object* x_316; lean_object* x_317; uint8_t x_318; lean_object* x_319; double x_320; uint8_t x_321; +x_316 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__3; +x_317 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_316); +x_318 = 0; +x_319 = lean_unsigned_to_nat(0u); +x_320 = l_Float_ofScientific(x_317, x_318, x_319); +lean_dec(x_317); +x_321 = lean_float_decLt(x_320, x_303); +x_231 = x_321; +goto block_295; +} +else { -lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; uint8_t x_226; -lean_dec(x_220); -lean_dec(x_219); +lean_object* x_322; double x_323; double x_324; lean_object* x_325; +x_322 = lean_box(0); +x_323 = lean_unbox_float(x_227); +lean_dec(x_227); +x_324 = lean_unbox_float(x_228); +lean_dec(x_228); +x_325 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__3(x_2, x_3, x_4, x_17, x_226, x_230, x_323, x_324, x_5, x_322, x_9, x_10, x_11, x_12, x_13, x_14, x_224); +return x_325; +} +} +} +block_295: +{ +if (x_231 == 0) +{ +lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; uint8_t x_236; +lean_dec(x_228); +lean_dec(x_227); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_222 = lean_st_ref_take(x_14, x_216); -x_223 = lean_ctor_get(x_222, 0); -lean_inc(x_223); -x_224 = lean_ctor_get(x_223, 3); -lean_inc(x_224); -x_225 = lean_ctor_get(x_222, 1); -lean_inc(x_225); -lean_dec(x_222); -x_226 = !lean_is_exclusive(x_223); -if (x_226 == 0) -{ -lean_object* x_227; uint8_t x_228; -x_227 = lean_ctor_get(x_223, 3); -lean_dec(x_227); -x_228 = !lean_is_exclusive(x_224); -if (x_228 == 0) -{ -lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_229 = lean_ctor_get(x_224, 0); -x_230 = l_Lean_PersistentArray_append___rarg(x_17, x_229); -lean_dec(x_229); -lean_ctor_set(x_224, 0, x_230); -x_231 = lean_st_ref_set(x_14, x_223, x_225); -x_232 = lean_ctor_get(x_231, 1); -lean_inc(x_232); -lean_dec(x_231); -x_233 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_generate___spec__2(x_218, x_9, x_10, x_11, x_12, x_13, x_14, x_232); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_218); -if (lean_obj_tag(x_233) == 0) -{ -uint8_t x_234; -x_234 = !lean_is_exclusive(x_233); -if (x_234 == 0) -{ -return x_233; -} -else -{ -lean_object* x_235; lean_object* x_236; lean_object* x_237; -x_235 = lean_ctor_get(x_233, 0); -x_236 = lean_ctor_get(x_233, 1); -lean_inc(x_236); +x_232 = lean_st_ref_take(x_14, x_224); +x_233 = lean_ctor_get(x_232, 0); +lean_inc(x_233); +x_234 = lean_ctor_get(x_233, 3); +lean_inc(x_234); +x_235 = lean_ctor_get(x_232, 1); lean_inc(x_235); -lean_dec(x_233); -x_237 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_237, 0, x_235); -lean_ctor_set(x_237, 1, x_236); -return x_237; -} -} -else +lean_dec(x_232); +x_236 = !lean_is_exclusive(x_233); +if (x_236 == 0) { -uint8_t x_238; -x_238 = !lean_is_exclusive(x_233); +lean_object* x_237; uint8_t x_238; +x_237 = lean_ctor_get(x_233, 3); +lean_dec(x_237); +x_238 = !lean_is_exclusive(x_234); if (x_238 == 0) { -return x_233; +lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; +x_239 = lean_ctor_get(x_234, 0); +x_240 = l_Lean_PersistentArray_append___rarg(x_17, x_239); +lean_dec(x_239); +lean_ctor_set(x_234, 0, x_240); +x_241 = lean_st_ref_set(x_14, x_233, x_235); +x_242 = lean_ctor_get(x_241, 1); +lean_inc(x_242); +lean_dec(x_241); +x_243 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_generate___spec__2(x_226, x_9, x_10, x_11, x_12, x_13, x_14, x_242); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_226); +if (lean_obj_tag(x_243) == 0) +{ +uint8_t x_244; +x_244 = !lean_is_exclusive(x_243); +if (x_244 == 0) +{ +return x_243; } else { -lean_object* x_239; lean_object* x_240; lean_object* x_241; -x_239 = lean_ctor_get(x_233, 0); -x_240 = lean_ctor_get(x_233, 1); -lean_inc(x_240); -lean_inc(x_239); -lean_dec(x_233); -x_241 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_241, 0, x_239); -lean_ctor_set(x_241, 1, x_240); -return x_241; -} -} -} -else -{ -uint64_t x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_242 = lean_ctor_get_uint64(x_224, sizeof(void*)*1); -x_243 = lean_ctor_get(x_224, 0); -lean_inc(x_243); -lean_dec(x_224); -x_244 = l_Lean_PersistentArray_append___rarg(x_17, x_243); +lean_object* x_245; lean_object* x_246; lean_object* x_247; +x_245 = lean_ctor_get(x_243, 0); +x_246 = lean_ctor_get(x_243, 1); +lean_inc(x_246); +lean_inc(x_245); lean_dec(x_243); -x_245 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_245, 0, x_244); -lean_ctor_set_uint64(x_245, sizeof(void*)*1, x_242); -lean_ctor_set(x_223, 3, x_245); -x_246 = lean_st_ref_set(x_14, x_223, x_225); -x_247 = lean_ctor_get(x_246, 1); -lean_inc(x_247); -lean_dec(x_246); -x_248 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_generate___spec__2(x_218, x_9, x_10, x_11, x_12, x_13, x_14, x_247); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_218); -if (lean_obj_tag(x_248) == 0) +x_247 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_247, 0, x_245); +lean_ctor_set(x_247, 1, x_246); +return x_247; +} +} +else { -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; -x_249 = lean_ctor_get(x_248, 0); -lean_inc(x_249); -x_250 = lean_ctor_get(x_248, 1); +uint8_t x_248; +x_248 = !lean_is_exclusive(x_243); +if (x_248 == 0) +{ +return x_243; +} +else +{ +lean_object* x_249; lean_object* x_250; lean_object* x_251; +x_249 = lean_ctor_get(x_243, 0); +x_250 = lean_ctor_get(x_243, 1); lean_inc(x_250); -if (lean_is_exclusive(x_248)) { - lean_ctor_release(x_248, 0); - lean_ctor_release(x_248, 1); - x_251 = x_248; -} else { - lean_dec_ref(x_248); - x_251 = lean_box(0); +lean_inc(x_249); +lean_dec(x_243); +x_251 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_251, 0, x_249); +lean_ctor_set(x_251, 1, x_250); +return x_251; } -if (lean_is_scalar(x_251)) { - x_252 = lean_alloc_ctor(0, 2, 0); -} else { - x_252 = x_251; } -lean_ctor_set(x_252, 0, x_249); -lean_ctor_set(x_252, 1, x_250); -return x_252; } else { -lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; -x_253 = lean_ctor_get(x_248, 0); +uint64_t x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; +x_252 = lean_ctor_get_uint64(x_234, sizeof(void*)*1); +x_253 = lean_ctor_get(x_234, 0); lean_inc(x_253); -x_254 = lean_ctor_get(x_248, 1); -lean_inc(x_254); -if (lean_is_exclusive(x_248)) { - lean_ctor_release(x_248, 0); - lean_ctor_release(x_248, 1); - x_255 = x_248; -} else { - lean_dec_ref(x_248); - x_255 = lean_box(0); -} -if (lean_is_scalar(x_255)) { - x_256 = lean_alloc_ctor(1, 2, 0); -} else { - x_256 = x_255; -} -lean_ctor_set(x_256, 0, x_253); -lean_ctor_set(x_256, 1, x_254); -return x_256; -} -} -} -else -{ -lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; uint64_t x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_257 = lean_ctor_get(x_223, 0); -x_258 = lean_ctor_get(x_223, 1); -x_259 = lean_ctor_get(x_223, 2); -x_260 = lean_ctor_get(x_223, 4); -x_261 = lean_ctor_get(x_223, 5); -x_262 = lean_ctor_get(x_223, 6); -x_263 = lean_ctor_get(x_223, 7); -lean_inc(x_263); -lean_inc(x_262); -lean_inc(x_261); -lean_inc(x_260); -lean_inc(x_259); -lean_inc(x_258); +lean_dec(x_234); +x_254 = l_Lean_PersistentArray_append___rarg(x_17, x_253); +lean_dec(x_253); +x_255 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_255, 0, x_254); +lean_ctor_set_uint64(x_255, sizeof(void*)*1, x_252); +lean_ctor_set(x_233, 3, x_255); +x_256 = lean_st_ref_set(x_14, x_233, x_235); +x_257 = lean_ctor_get(x_256, 1); lean_inc(x_257); -lean_dec(x_223); -x_264 = lean_ctor_get_uint64(x_224, sizeof(void*)*1); -x_265 = lean_ctor_get(x_224, 0); -lean_inc(x_265); -if (lean_is_exclusive(x_224)) { - lean_ctor_release(x_224, 0); - x_266 = x_224; -} else { - lean_dec_ref(x_224); - x_266 = lean_box(0); -} -x_267 = l_Lean_PersistentArray_append___rarg(x_17, x_265); -lean_dec(x_265); -if (lean_is_scalar(x_266)) { - x_268 = lean_alloc_ctor(0, 1, 8); -} else { - x_268 = x_266; -} -lean_ctor_set(x_268, 0, x_267); -lean_ctor_set_uint64(x_268, sizeof(void*)*1, x_264); -x_269 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_269, 0, x_257); -lean_ctor_set(x_269, 1, x_258); -lean_ctor_set(x_269, 2, x_259); -lean_ctor_set(x_269, 3, x_268); -lean_ctor_set(x_269, 4, x_260); -lean_ctor_set(x_269, 5, x_261); -lean_ctor_set(x_269, 6, x_262); -lean_ctor_set(x_269, 7, x_263); -x_270 = lean_st_ref_set(x_14, x_269, x_225); -x_271 = lean_ctor_get(x_270, 1); -lean_inc(x_271); -lean_dec(x_270); -x_272 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_generate___spec__2(x_218, x_9, x_10, x_11, x_12, x_13, x_14, x_271); +lean_dec(x_256); +x_258 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_generate___spec__2(x_226, x_9, x_10, x_11, x_12, x_13, x_14, x_257); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_218); -if (lean_obj_tag(x_272) == 0) +lean_dec(x_226); +if (lean_obj_tag(x_258) == 0) { -lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; -x_273 = lean_ctor_get(x_272, 0); +lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; +x_259 = lean_ctor_get(x_258, 0); +lean_inc(x_259); +x_260 = lean_ctor_get(x_258, 1); +lean_inc(x_260); +if (lean_is_exclusive(x_258)) { + lean_ctor_release(x_258, 0); + lean_ctor_release(x_258, 1); + x_261 = x_258; +} else { + lean_dec_ref(x_258); + x_261 = lean_box(0); +} +if (lean_is_scalar(x_261)) { + x_262 = lean_alloc_ctor(0, 2, 0); +} else { + x_262 = x_261; +} +lean_ctor_set(x_262, 0, x_259); +lean_ctor_set(x_262, 1, x_260); +return x_262; +} +else +{ +lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; +x_263 = lean_ctor_get(x_258, 0); +lean_inc(x_263); +x_264 = lean_ctor_get(x_258, 1); +lean_inc(x_264); +if (lean_is_exclusive(x_258)) { + lean_ctor_release(x_258, 0); + lean_ctor_release(x_258, 1); + x_265 = x_258; +} else { + lean_dec_ref(x_258); + x_265 = lean_box(0); +} +if (lean_is_scalar(x_265)) { + x_266 = lean_alloc_ctor(1, 2, 0); +} else { + x_266 = x_265; +} +lean_ctor_set(x_266, 0, x_263); +lean_ctor_set(x_266, 1, x_264); +return x_266; +} +} +} +else +{ +lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; uint64_t x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; +x_267 = lean_ctor_get(x_233, 0); +x_268 = lean_ctor_get(x_233, 1); +x_269 = lean_ctor_get(x_233, 2); +x_270 = lean_ctor_get(x_233, 4); +x_271 = lean_ctor_get(x_233, 5); +x_272 = lean_ctor_get(x_233, 6); +x_273 = lean_ctor_get(x_233, 7); lean_inc(x_273); -x_274 = lean_ctor_get(x_272, 1); -lean_inc(x_274); -if (lean_is_exclusive(x_272)) { - lean_ctor_release(x_272, 0); - lean_ctor_release(x_272, 1); - x_275 = x_272; +lean_inc(x_272); +lean_inc(x_271); +lean_inc(x_270); +lean_inc(x_269); +lean_inc(x_268); +lean_inc(x_267); +lean_dec(x_233); +x_274 = lean_ctor_get_uint64(x_234, sizeof(void*)*1); +x_275 = lean_ctor_get(x_234, 0); +lean_inc(x_275); +if (lean_is_exclusive(x_234)) { + lean_ctor_release(x_234, 0); + x_276 = x_234; } else { - lean_dec_ref(x_272); - x_275 = lean_box(0); + lean_dec_ref(x_234); + x_276 = lean_box(0); } -if (lean_is_scalar(x_275)) { - x_276 = lean_alloc_ctor(0, 2, 0); +x_277 = l_Lean_PersistentArray_append___rarg(x_17, x_275); +lean_dec(x_275); +if (lean_is_scalar(x_276)) { + x_278 = lean_alloc_ctor(0, 1, 8); } else { - x_276 = x_275; + x_278 = x_276; } -lean_ctor_set(x_276, 0, x_273); -lean_ctor_set(x_276, 1, x_274); -return x_276; +lean_ctor_set(x_278, 0, x_277); +lean_ctor_set_uint64(x_278, sizeof(void*)*1, x_274); +x_279 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_279, 0, x_267); +lean_ctor_set(x_279, 1, x_268); +lean_ctor_set(x_279, 2, x_269); +lean_ctor_set(x_279, 3, x_278); +lean_ctor_set(x_279, 4, x_270); +lean_ctor_set(x_279, 5, x_271); +lean_ctor_set(x_279, 6, x_272); +lean_ctor_set(x_279, 7, x_273); +x_280 = lean_st_ref_set(x_14, x_279, x_235); +x_281 = lean_ctor_get(x_280, 1); +lean_inc(x_281); +lean_dec(x_280); +x_282 = l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_generate___spec__2(x_226, x_9, x_10, x_11, x_12, x_13, x_14, x_281); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_226); +if (lean_obj_tag(x_282) == 0) +{ +lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; +x_283 = lean_ctor_get(x_282, 0); +lean_inc(x_283); +x_284 = lean_ctor_get(x_282, 1); +lean_inc(x_284); +if (lean_is_exclusive(x_282)) { + lean_ctor_release(x_282, 0); + lean_ctor_release(x_282, 1); + x_285 = x_282; +} else { + lean_dec_ref(x_282); + x_285 = lean_box(0); +} +if (lean_is_scalar(x_285)) { + x_286 = lean_alloc_ctor(0, 2, 0); +} else { + x_286 = x_285; +} +lean_ctor_set(x_286, 0, x_283); +lean_ctor_set(x_286, 1, x_284); +return x_286; } else { -lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; -x_277 = lean_ctor_get(x_272, 0); -lean_inc(x_277); -x_278 = lean_ctor_get(x_272, 1); -lean_inc(x_278); -if (lean_is_exclusive(x_272)) { - lean_ctor_release(x_272, 0); - lean_ctor_release(x_272, 1); - x_279 = x_272; +lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; +x_287 = lean_ctor_get(x_282, 0); +lean_inc(x_287); +x_288 = lean_ctor_get(x_282, 1); +lean_inc(x_288); +if (lean_is_exclusive(x_282)) { + lean_ctor_release(x_282, 0); + lean_ctor_release(x_282, 1); + x_289 = x_282; } else { - lean_dec_ref(x_272); - x_279 = lean_box(0); + lean_dec_ref(x_282); + x_289 = lean_box(0); } -if (lean_is_scalar(x_279)) { - x_280 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_289)) { + x_290 = lean_alloc_ctor(1, 2, 0); } else { - x_280 = x_279; + x_290 = x_289; } -lean_ctor_set(x_280, 0, x_277); -lean_ctor_set(x_280, 1, x_278); -return x_280; +lean_ctor_set(x_290, 0, x_287); +lean_ctor_set(x_290, 1, x_288); +return x_290; } } } else { -lean_object* x_281; double x_282; double x_283; lean_object* x_284; -x_281 = lean_box(0); -x_282 = lean_unbox_float(x_219); -lean_dec(x_219); -x_283 = lean_unbox_float(x_220); -lean_dec(x_220); -x_284 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__3(x_2, x_3, x_4, x_17, x_218, x_1, x_221, x_282, x_283, x_5, x_281, x_9, x_10, x_11, x_12, x_13, x_14, x_216); -return x_284; -} -} -else -{ -lean_object* x_285; double x_286; double x_287; lean_object* x_288; -x_285 = lean_box(0); -x_286 = lean_unbox_float(x_219); -lean_dec(x_219); -x_287 = lean_unbox_float(x_220); -lean_dec(x_220); -x_288 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__3(x_2, x_3, x_4, x_17, x_218, x_1, x_221, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_13, x_14, x_216); -return x_288; +lean_object* x_291; double x_292; double x_293; lean_object* x_294; +x_291 = lean_box(0); +x_292 = lean_unbox_float(x_227); +lean_dec(x_227); +x_293 = lean_unbox_float(x_228); +lean_dec(x_228); +x_294 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__3(x_2, x_3, x_4, x_17, x_226, x_230, x_292, x_293, x_5, x_291, x_9, x_10, x_11, x_12, x_13, x_14, x_224); +return x_294; } } } @@ -24357,27 +24433,25 @@ lean_object* x_14 = _args[13]; lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; _start: { -uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; -x_19 = lean_unbox(x_2); +uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; +x_18 = lean_unbox(x_2); lean_dec(x_2); -x_20 = lean_unbox(x_8); +x_19 = lean_unbox(x_7); +lean_dec(x_7); +x_20 = lean_unbox_float(x_8); lean_dec(x_8); x_21 = lean_unbox_float(x_9); lean_dec(x_9); -x_22 = lean_unbox_float(x_10); -lean_dec(x_10); -x_23 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__2(x_1, x_19, x_3, x_4, x_5, x_6, x_7, x_20, x_21, x_22, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -lean_dec(x_17); -lean_dec(x_15); +x_22 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__2(x_1, x_18, x_3, x_4, x_5, x_6, x_19, x_20, x_21, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +lean_dec(x_16); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_23; +return x_22; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__3___boxed(lean_object** _args) { @@ -24398,22 +24472,20 @@ lean_object* x_14 = _args[13]; lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; _start: { -uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; -x_19 = lean_unbox(x_2); +uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; +x_18 = lean_unbox(x_2); lean_dec(x_2); -x_20 = lean_unbox(x_7); +x_19 = lean_unbox(x_6); +lean_dec(x_6); +x_20 = lean_unbox_float(x_7); lean_dec(x_7); x_21 = lean_unbox_float(x_8); lean_dec(x_8); -x_22 = lean_unbox_float(x_9); -lean_dec(x_9); -x_23 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__3(x_1, x_19, x_3, x_4, x_5, x_6, x_20, x_21, x_22, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -lean_dec(x_11); -lean_dec(x_6); -return x_23; +x_22 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__3(x_1, x_18, x_3, x_4, x_5, x_19, x_20, x_21, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +lean_dec(x_10); +return x_22; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_generate___spec__1___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { @@ -29795,103 +29867,78 @@ lean_dec(x_9); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -double x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_18 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_18, 0, x_1); -lean_ctor_set(x_18, 1, x_3); -lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); -lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); -lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); -x_19 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2___closed__2; -x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_19); -if (x_20 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2___closed__1; +x_17 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_3); +lean_ctor_set_float(x_17, sizeof(void*)*2, x_16); +lean_ctor_set_float(x_17, sizeof(void*)*2 + 8, x_16); +lean_ctor_set_uint8(x_17, sizeof(void*)*2 + 16, x_2); +x_18 = lean_box(0); +x_19 = l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__1(x_4, x_5, x_10, x_6, x_17, x_18, x_11, x_12, x_13, x_14, x_15); +return x_19; +} +else { -lean_object* x_21; lean_object* x_22; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); x_21 = lean_box(0); -x_22 = l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__1(x_4, x_5, x_11, x_6, x_18, x_21, x_12, x_13, x_14, x_15, x_16); +x_22 = l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15); return x_22; } -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_18); -x_23 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_3); -lean_ctor_set_float(x_23, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); -x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__1(x_4, x_5, x_11, x_6, x_23, x_24, x_12, x_13, x_14, x_15, x_16); -return x_25; } } -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_18); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16); -return x_28; -} -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 5); -lean_inc(x_17); -lean_inc(x_15); +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 5); +lean_inc(x_16); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_18 = lean_apply_6(x_10, x_5, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_18) == 0) +x_17 = lean_apply_6(x_9, x_5, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_14, x_15, x_20); -lean_dec(x_15); -lean_dec(x_13); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_13, x_14, x_19); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_21; +return x_20; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_14, x_15, x_22); -lean_dec(x_15); -lean_dec(x_13); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } } } @@ -29909,253 +29956,253 @@ x_17 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___ x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_17); if (x_18 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_109 = lean_io_mono_nanos_now(x_16); -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_109, 1); -lean_inc(x_111); -lean_dec(x_109); +lean_object* x_19; lean_object* x_20; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_113 = lean_io_mono_nanos_now(x_16); +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +lean_dec(x_113); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_112 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_111); -if (lean_obj_tag(x_112) == 0) +x_116 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_115); +if (lean_obj_tag(x_116) == 0) { -uint8_t x_113; -x_113 = !lean_is_exclusive(x_112); -if (x_113 == 0) +uint8_t x_117; +x_117 = !lean_is_exclusive(x_116); +if (x_117 == 0) { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_114 = lean_ctor_get(x_112, 0); -x_115 = lean_ctor_get(x_112, 1); -x_116 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_116, 0, x_114); -x_117 = lean_io_mono_nanos_now(x_115); -x_118 = !lean_is_exclusive(x_117); -if (x_118 == 0) +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_118 = lean_ctor_get(x_116, 0); +x_119 = lean_ctor_get(x_116, 1); +x_120 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_120, 0, x_118); +x_121 = lean_io_mono_nanos_now(x_119); +x_122 = !lean_is_exclusive(x_121); +if (x_122 == 0) { -lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_122; double x_123; double x_124; double x_125; double x_126; double x_127; lean_object* x_128; lean_object* x_129; -x_119 = lean_ctor_get(x_117, 0); -x_120 = lean_ctor_get(x_117, 1); -x_121 = 0; -x_122 = lean_unsigned_to_nat(0u); -x_123 = l_Float_ofScientific(x_110, x_121, x_122); -lean_dec(x_110); -x_124 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_125 = lean_float_div(x_123, x_124); -x_126 = l_Float_ofScientific(x_119, x_121, x_122); -lean_dec(x_119); -x_127 = lean_float_div(x_126, x_124); -x_128 = lean_box_float(x_125); -x_129 = lean_box_float(x_127); -lean_ctor_set(x_117, 1, x_129); -lean_ctor_set(x_117, 0, x_128); -lean_ctor_set(x_112, 1, x_117); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_120; -goto block_108; +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; double x_130; double x_131; lean_object* x_132; lean_object* x_133; +x_123 = lean_ctor_get(x_121, 0); +x_124 = lean_ctor_get(x_121, 1); +x_125 = 0; +x_126 = lean_unsigned_to_nat(0u); +x_127 = l_Float_ofScientific(x_114, x_125, x_126); +lean_dec(x_114); +x_128 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_129 = lean_float_div(x_127, x_128); +x_130 = l_Float_ofScientific(x_123, x_125, x_126); +lean_dec(x_123); +x_131 = lean_float_div(x_130, x_128); +x_132 = lean_box_float(x_129); +x_133 = lean_box_float(x_131); +lean_ctor_set(x_121, 1, x_133); +lean_ctor_set(x_121, 0, x_132); +lean_ctor_set(x_116, 1, x_121); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_124; +goto block_112; } else { -lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; double x_134; double x_135; double x_136; double x_137; double x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_130 = lean_ctor_get(x_117, 0); -x_131 = lean_ctor_get(x_117, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_117); -x_132 = 0; -x_133 = lean_unsigned_to_nat(0u); -x_134 = l_Float_ofScientific(x_110, x_132, x_133); -lean_dec(x_110); -x_135 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_136 = lean_float_div(x_134, x_135); -x_137 = l_Float_ofScientific(x_130, x_132, x_133); -lean_dec(x_130); -x_138 = lean_float_div(x_137, x_135); -x_139 = lean_box_float(x_136); -x_140 = lean_box_float(x_138); -x_141 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -lean_ctor_set(x_112, 1, x_141); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_131; -goto block_108; +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_134 = lean_ctor_get(x_121, 0); +x_135 = lean_ctor_get(x_121, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_121); +x_136 = 0; +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Float_ofScientific(x_114, x_136, x_137); +lean_dec(x_114); +x_139 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_140 = lean_float_div(x_138, x_139); +x_141 = l_Float_ofScientific(x_134, x_136, x_137); +lean_dec(x_134); +x_142 = lean_float_div(x_141, x_139); +x_143 = lean_box_float(x_140); +x_144 = lean_box_float(x_142); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_116, 1, x_145); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_135; +goto block_112; } } else { -lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_142 = lean_ctor_get(x_112, 0); -x_143 = lean_ctor_get(x_112, 1); -lean_inc(x_143); -lean_inc(x_142); -lean_dec(x_112); -x_144 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_144, 0, x_142); -x_145 = lean_io_mono_nanos_now(x_143); -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; lean_object* x_154; double x_155; double x_156; double x_157; double x_158; double x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_146 = lean_ctor_get(x_116, 0); +x_147 = lean_ctor_get(x_116, 1); lean_inc(x_147); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - lean_ctor_release(x_145, 1); - x_148 = x_145; +lean_inc(x_146); +lean_dec(x_116); +x_148 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_148, 0, x_146); +x_149 = lean_io_mono_nanos_now(x_147); +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + lean_ctor_release(x_149, 1); + x_152 = x_149; } else { - lean_dec_ref(x_145); - x_148 = lean_box(0); + lean_dec_ref(x_149); + x_152 = lean_box(0); } -x_149 = 0; -x_150 = lean_unsigned_to_nat(0u); -x_151 = l_Float_ofScientific(x_110, x_149, x_150); -lean_dec(x_110); -x_152 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_153 = lean_float_div(x_151, x_152); -x_154 = l_Float_ofScientific(x_146, x_149, x_150); -lean_dec(x_146); -x_155 = lean_float_div(x_154, x_152); -x_156 = lean_box_float(x_153); -x_157 = lean_box_float(x_155); -if (lean_is_scalar(x_148)) { - x_158 = lean_alloc_ctor(0, 2, 0); +x_153 = 0; +x_154 = lean_unsigned_to_nat(0u); +x_155 = l_Float_ofScientific(x_114, x_153, x_154); +lean_dec(x_114); +x_156 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_157 = lean_float_div(x_155, x_156); +x_158 = l_Float_ofScientific(x_150, x_153, x_154); +lean_dec(x_150); +x_159 = lean_float_div(x_158, x_156); +x_160 = lean_box_float(x_157); +x_161 = lean_box_float(x_159); +if (lean_is_scalar(x_152)) { + x_162 = lean_alloc_ctor(0, 2, 0); } else { - x_158 = x_148; + x_162 = x_152; } -lean_ctor_set(x_158, 0, x_156); -lean_ctor_set(x_158, 1, x_157); -x_159 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_159, 0, x_144); -lean_ctor_set(x_159, 1, x_158); -x_19 = x_159; -x_20 = x_147; -goto block_108; +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_161); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_148); +lean_ctor_set(x_163, 1, x_162); +x_19 = x_163; +x_20 = x_151; +goto block_112; } } else { -uint8_t x_160; -x_160 = !lean_is_exclusive(x_112); -if (x_160 == 0) +uint8_t x_164; +x_164 = !lean_is_exclusive(x_116); +if (x_164 == 0) { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_161 = lean_ctor_get(x_112, 0); -x_162 = lean_ctor_get(x_112, 1); -x_163 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_163, 0, x_161); -x_164 = lean_io_mono_nanos_now(x_162); -x_165 = !lean_is_exclusive(x_164); -if (x_165 == 0) +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; +x_165 = lean_ctor_get(x_116, 0); +x_166 = lean_ctor_get(x_116, 1); +x_167 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_167, 0, x_165); +x_168 = lean_io_mono_nanos_now(x_166); +x_169 = !lean_is_exclusive(x_168); +if (x_169 == 0) { -lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; double x_170; double x_171; double x_172; double x_173; double x_174; lean_object* x_175; lean_object* x_176; -x_166 = lean_ctor_get(x_164, 0); -x_167 = lean_ctor_get(x_164, 1); -x_168 = 0; -x_169 = lean_unsigned_to_nat(0u); -x_170 = l_Float_ofScientific(x_110, x_168, x_169); -lean_dec(x_110); -x_171 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_172 = lean_float_div(x_170, x_171); -x_173 = l_Float_ofScientific(x_166, x_168, x_169); -lean_dec(x_166); -x_174 = lean_float_div(x_173, x_171); -x_175 = lean_box_float(x_172); -x_176 = lean_box_float(x_174); -lean_ctor_set(x_164, 1, x_176); -lean_ctor_set(x_164, 0, x_175); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_164); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_167; -goto block_108; +lean_object* x_170; lean_object* x_171; uint8_t x_172; lean_object* x_173; double x_174; double x_175; double x_176; double x_177; double x_178; lean_object* x_179; lean_object* x_180; +x_170 = lean_ctor_get(x_168, 0); +x_171 = lean_ctor_get(x_168, 1); +x_172 = 0; +x_173 = lean_unsigned_to_nat(0u); +x_174 = l_Float_ofScientific(x_114, x_172, x_173); +lean_dec(x_114); +x_175 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_176 = lean_float_div(x_174, x_175); +x_177 = l_Float_ofScientific(x_170, x_172, x_173); +lean_dec(x_170); +x_178 = lean_float_div(x_177, x_175); +x_179 = lean_box_float(x_176); +x_180 = lean_box_float(x_178); +lean_ctor_set(x_168, 1, x_180); +lean_ctor_set(x_168, 0, x_179); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_168); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_171; +goto block_112; } else { -lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_object* x_180; double x_181; double x_182; double x_183; double x_184; double x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_177 = lean_ctor_get(x_164, 0); -x_178 = lean_ctor_get(x_164, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_164); -x_179 = 0; -x_180 = lean_unsigned_to_nat(0u); -x_181 = l_Float_ofScientific(x_110, x_179, x_180); -lean_dec(x_110); -x_182 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_183 = lean_float_div(x_181, x_182); -x_184 = l_Float_ofScientific(x_177, x_179, x_180); -lean_dec(x_177); -x_185 = lean_float_div(x_184, x_182); -x_186 = lean_box_float(x_183); -x_187 = lean_box_float(x_185); -x_188 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_188); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_178; -goto block_108; +lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_181 = lean_ctor_get(x_168, 0); +x_182 = lean_ctor_get(x_168, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_168); +x_183 = 0; +x_184 = lean_unsigned_to_nat(0u); +x_185 = l_Float_ofScientific(x_114, x_183, x_184); +lean_dec(x_114); +x_186 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_187 = lean_float_div(x_185, x_186); +x_188 = l_Float_ofScientific(x_181, x_183, x_184); +lean_dec(x_181); +x_189 = lean_float_div(x_188, x_186); +x_190 = lean_box_float(x_187); +x_191 = lean_box_float(x_189); +x_192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_192); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_182; +goto block_112; } } else { -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_189 = lean_ctor_get(x_112, 0); -x_190 = lean_ctor_get(x_112, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_112); -x_191 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_191, 0, x_189); -x_192 = lean_io_mono_nanos_now(x_190); -x_193 = lean_ctor_get(x_192, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; lean_object* x_201; double x_202; double x_203; double x_204; double x_205; double x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_193 = lean_ctor_get(x_116, 0); +x_194 = lean_ctor_get(x_116, 1); lean_inc(x_194); -if (lean_is_exclusive(x_192)) { - lean_ctor_release(x_192, 0); - lean_ctor_release(x_192, 1); - x_195 = x_192; +lean_inc(x_193); +lean_dec(x_116); +x_195 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_195, 0, x_193); +x_196 = lean_io_mono_nanos_now(x_194); +x_197 = lean_ctor_get(x_196, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_196, 1); +lean_inc(x_198); +if (lean_is_exclusive(x_196)) { + lean_ctor_release(x_196, 0); + lean_ctor_release(x_196, 1); + x_199 = x_196; } else { - lean_dec_ref(x_192); - x_195 = lean_box(0); + lean_dec_ref(x_196); + x_199 = lean_box(0); } -x_196 = 0; -x_197 = lean_unsigned_to_nat(0u); -x_198 = l_Float_ofScientific(x_110, x_196, x_197); -lean_dec(x_110); -x_199 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; -x_200 = lean_float_div(x_198, x_199); -x_201 = l_Float_ofScientific(x_193, x_196, x_197); -lean_dec(x_193); -x_202 = lean_float_div(x_201, x_199); -x_203 = lean_box_float(x_200); -x_204 = lean_box_float(x_202); -if (lean_is_scalar(x_195)) { - x_205 = lean_alloc_ctor(0, 2, 0); +x_200 = 0; +x_201 = lean_unsigned_to_nat(0u); +x_202 = l_Float_ofScientific(x_114, x_200, x_201); +lean_dec(x_114); +x_203 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__5; +x_204 = lean_float_div(x_202, x_203); +x_205 = l_Float_ofScientific(x_197, x_200, x_201); +lean_dec(x_197); +x_206 = lean_float_div(x_205, x_203); +x_207 = lean_box_float(x_204); +x_208 = lean_box_float(x_206); +if (lean_is_scalar(x_199)) { + x_209 = lean_alloc_ctor(0, 2, 0); } else { - x_205 = x_195; + x_209 = x_199; } -lean_ctor_set(x_205, 0, x_203); -lean_ctor_set(x_205, 1, x_204); -x_206 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_206, 0, x_191); -lean_ctor_set(x_206, 1, x_205); -x_19 = x_206; -x_20 = x_194; -goto block_108; +lean_ctor_set(x_209, 0, x_207); +lean_ctor_set(x_209, 1, x_208); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_195); +lean_ctor_set(x_210, 1, x_209); +x_19 = x_210; +x_20 = x_198; +goto block_112; } } -block_108: +block_112: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_94; uint8_t x_95; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); x_22 = lean_ctor_get(x_19, 0); @@ -30166,17 +30213,33 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_21, 1); lean_inc(x_24); lean_dec(x_21); -x_94 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__2; -x_95 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_94); -if (x_95 == 0) +x_25 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__2; +x_26 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_25); +if (x_26 == 0) { -uint8_t x_96; -x_96 = 0; -x_25 = x_96; -goto block_93; +if (x_6 == 0) +{ +uint8_t x_92; +x_92 = 0; +x_27 = x_92; +goto block_91; } else { +lean_object* x_93; double x_94; double x_95; lean_object* x_96; +x_93 = lean_box(0); +x_94 = lean_unbox_float(x_23); +lean_dec(x_23); +x_95 = lean_unbox_float(x_24); +lean_dec(x_24); +x_96 = l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_94, x_95, x_5, x_93, x_9, x_10, x_11, x_12, x_20); +return x_96; +} +} +else +{ +if (x_6 == 0) +{ double x_97; double x_98; double x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; double x_104; double x_105; double x_106; uint8_t x_107; x_97 = lean_unbox_float(x_24); x_98 = lean_unbox_float(x_23); @@ -30190,859 +30253,871 @@ lean_dec(x_101); x_105 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__4; x_106 = lean_float_div(x_104, x_105); x_107 = lean_float_decLt(x_106, x_99); -x_25 = x_107; -goto block_93; +x_27 = x_107; +goto block_91; } -block_93: +else { -if (x_6 == 0) +lean_object* x_108; double x_109; double x_110; lean_object* x_111; +x_108 = lean_box(0); +x_109 = lean_unbox_float(x_23); +lean_dec(x_23); +x_110 = lean_unbox_float(x_24); +lean_dec(x_24); +x_111 = l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_109, x_110, x_5, x_108, x_9, x_10, x_11, x_12, x_20); +return x_111; +} +} +block_91: { -if (x_25 == 0) +if (x_27 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_24); lean_dec(x_23); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_26 = lean_st_ref_take(x_12, x_20); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -x_29 = lean_ctor_get(x_26, 1); +x_28 = lean_st_ref_take(x_12, x_20); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -lean_dec(x_26); -x_30 = !lean_is_exclusive(x_27); -if (x_30 == 0) -{ -lean_object* x_31; uint8_t x_32; -x_31 = lean_ctor_get(x_27, 3); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_28); +x_30 = lean_ctor_get(x_29, 3); +lean_inc(x_30); +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = !lean_is_exclusive(x_29); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_33 = lean_ctor_get(x_28, 0); -x_34 = l_Lean_PersistentArray_append___rarg(x_15, x_33); +lean_object* x_33; uint8_t x_34; +x_33 = lean_ctor_get(x_29, 3); lean_dec(x_33); -lean_ctor_set(x_28, 0, x_34); -x_35 = lean_st_ref_set(x_12, x_27, x_29); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); +x_34 = !lean_is_exclusive(x_30); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_ctor_get(x_30, 0); +x_36 = l_Lean_PersistentArray_append___rarg(x_15, x_35); lean_dec(x_35); -x_37 = l_MonadExcept_ofExcept___at_Lean_Meta_synthInstance_x3f___spec__5(x_22, x_9, x_10, x_11, x_12, x_36); +lean_ctor_set(x_30, 0, x_36); +x_37 = lean_st_ref_set(x_12, x_29, x_31); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +x_39 = l_MonadExcept_ofExcept___at_Lean_Meta_synthInstance_x3f___spec__5(x_22, x_9, x_10, x_11, x_12, x_38); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_37) == 0) +if (lean_obj_tag(x_39) == 0) { -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -return x_37; +return x_39; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_ctor_get(x_37, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_37); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_39); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } else { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_37); -if (x_42 == 0) +uint8_t x_44; +x_44 = !lean_is_exclusive(x_39); +if (x_44 == 0) { -return x_37; +return x_39; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_37, 0); -x_44 = lean_ctor_get(x_37, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_37); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_39, 0); +x_46 = lean_ctor_get(x_39, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_39); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } } else { -uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_47 = lean_ctor_get(x_28, 0); -lean_inc(x_47); -lean_dec(x_28); -x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_47); -lean_dec(x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); -lean_ctor_set(x_27, 3, x_49); -x_50 = lean_st_ref_set(x_12, x_27, x_29); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -lean_dec(x_50); -x_52 = l_MonadExcept_ofExcept___at_Lean_Meta_synthInstance_x3f___spec__5(x_22, x_9, x_10, x_11, x_12, x_51); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_22); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); +uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_49 = lean_ctor_get(x_30, 0); +lean_inc(x_49); +lean_dec(x_30); +x_50 = l_Lean_PersistentArray_append___rarg(x_15, x_49); +lean_dec(x_49); +x_51 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); +lean_ctor_set(x_29, 3, x_51); +x_52 = lean_st_ref_set(x_12, x_29, x_31); +x_53 = lean_ctor_get(x_52, 1); lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_55 = x_52; +lean_dec(x_52); +x_54 = l_MonadExcept_ofExcept___at_Lean_Meta_synthInstance_x3f___spec__5(x_22, x_9, x_10, x_11, x_12, x_53); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_22); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; } else { - lean_dec_ref(x_52); - x_55 = lean_box(0); + lean_dec_ref(x_54); + x_57 = lean_box(0); } -if (lean_is_scalar(x_55)) { - x_56 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_57)) { + x_58 = lean_alloc_ctor(0, 2, 0); } else { - x_56 = x_55; + x_58 = x_57; } -lean_ctor_set(x_56, 0, x_53); -lean_ctor_set(x_56, 1, x_54); -return x_56; +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_56); +return x_58; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_52, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_52, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_59 = x_52; +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_54, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_54, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_61 = x_54; } else { - lean_dec_ref(x_52); - x_59 = lean_box(0); + lean_dec_ref(x_54); + x_61 = lean_box(0); } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(1, 2, 0); } else { - x_60 = x_59; + x_62 = x_61; } -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_58); -return x_60; +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; } } } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_61 = lean_ctor_get(x_27, 0); -x_62 = lean_ctor_get(x_27, 1); -x_63 = lean_ctor_get(x_27, 2); -x_64 = lean_ctor_get(x_27, 4); -x_65 = lean_ctor_get(x_27, 5); -x_66 = lean_ctor_get(x_27, 6); -x_67 = lean_ctor_get(x_27, 7); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_63 = lean_ctor_get(x_29, 0); +x_64 = lean_ctor_get(x_29, 1); +x_65 = lean_ctor_get(x_29, 2); +x_66 = lean_ctor_get(x_29, 4); +x_67 = lean_ctor_get(x_29, 5); +x_68 = lean_ctor_get(x_29, 6); +x_69 = lean_ctor_get(x_29, 7); +lean_inc(x_69); +lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_27); -x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_69 = lean_ctor_get(x_28, 0); -lean_inc(x_69); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - x_70 = x_28; +lean_dec(x_29); +x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_71 = lean_ctor_get(x_30, 0); +lean_inc(x_71); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + x_72 = x_30; } else { - lean_dec_ref(x_28); - x_70 = lean_box(0); + lean_dec_ref(x_30); + x_72 = lean_box(0); } -x_71 = l_Lean_PersistentArray_append___rarg(x_15, x_69); -lean_dec(x_69); -if (lean_is_scalar(x_70)) { - x_72 = lean_alloc_ctor(0, 1, 8); +x_73 = l_Lean_PersistentArray_append___rarg(x_15, x_71); +lean_dec(x_71); +if (lean_is_scalar(x_72)) { + x_74 = lean_alloc_ctor(0, 1, 8); } else { - x_72 = x_70; + x_74 = x_72; } -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); -x_73 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_73, 0, x_61); -lean_ctor_set(x_73, 1, x_62); -lean_ctor_set(x_73, 2, x_63); -lean_ctor_set(x_73, 3, x_72); -lean_ctor_set(x_73, 4, x_64); -lean_ctor_set(x_73, 5, x_65); -lean_ctor_set(x_73, 6, x_66); -lean_ctor_set(x_73, 7, x_67); -x_74 = lean_st_ref_set(x_12, x_73, x_29); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_76 = l_MonadExcept_ofExcept___at_Lean_Meta_synthInstance_x3f___spec__5(x_22, x_9, x_10, x_11, x_12, x_75); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); +x_75 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_64); +lean_ctor_set(x_75, 2, x_65); +lean_ctor_set(x_75, 3, x_74); +lean_ctor_set(x_75, 4, x_66); +lean_ctor_set(x_75, 5, x_67); +lean_ctor_set(x_75, 6, x_68); +lean_ctor_set(x_75, 7, x_69); +x_76 = lean_st_ref_set(x_12, x_75, x_31); +x_77 = lean_ctor_get(x_76, 1); +lean_inc(x_77); +lean_dec(x_76); +x_78 = l_MonadExcept_ofExcept___at_Lean_Meta_synthInstance_x3f___spec__5(x_22, x_9, x_10, x_11, x_12, x_77); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_76) == 0) +if (lean_obj_tag(x_78) == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_76, 0); -lean_inc(x_77); -x_78 = lean_ctor_get(x_76, 1); -lean_inc(x_78); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_79 = x_76; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_81 = x_78; } else { - lean_dec_ref(x_76); - x_79 = lean_box(0); + lean_dec_ref(x_78); + x_81 = lean_box(0); } -if (lean_is_scalar(x_79)) { - x_80 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(0, 2, 0); } else { - x_80 = x_79; + x_82 = x_81; } -lean_ctor_set(x_80, 0, x_77); -lean_ctor_set(x_80, 1, x_78); -return x_80; +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_80); +return x_82; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_81 = lean_ctor_get(x_76, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_76, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_83 = x_76; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_83 = lean_ctor_get(x_78, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_78, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_85 = x_78; } else { - lean_dec_ref(x_76); - x_83 = lean_box(0); + lean_dec_ref(x_78); + x_85 = lean_box(0); } -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); } else { - x_84 = x_83; + x_86 = x_85; } -lean_ctor_set(x_84, 0, x_81); -lean_ctor_set(x_84, 1, x_82); -return x_84; +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; } } } else { -lean_object* x_85; double x_86; double x_87; lean_object* x_88; -x_85 = lean_box(0); -x_86 = lean_unbox_float(x_23); +lean_object* x_87; double x_88; double x_89; lean_object* x_90; +x_87 = lean_box(0); +x_88 = lean_unbox_float(x_23); lean_dec(x_23); -x_87 = lean_unbox_float(x_24); +x_89 = lean_unbox_float(x_24); lean_dec(x_24); -x_88 = l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_86, x_87, x_5, x_85, x_9, x_10, x_11, x_12, x_20); -return x_88; -} -} -else -{ -lean_object* x_89; double x_90; double x_91; lean_object* x_92; -x_89 = lean_box(0); -x_90 = lean_unbox_float(x_23); -lean_dec(x_23); -x_91 = lean_unbox_float(x_24); -lean_dec(x_24); -x_92 = l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_20); -return x_92; +x_90 = l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_20); +return x_90; } } } } else { -lean_object* x_207; lean_object* x_208; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_16); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_211; lean_object* x_212; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_16); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_207 = x_336; -x_208 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_211 = x_344; +x_212 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_207 = x_374; -x_208 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_282; uint8_t x_283; -x_209 = lean_ctor_get(x_207, 1); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 0); -lean_inc(x_210); -lean_dec(x_207); -x_211 = lean_ctor_get(x_209, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 1); -lean_inc(x_212); -lean_dec(x_209); -x_282 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_213 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_212); -x_286 = lean_unbox_float(x_211); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_213 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_211 = x_382; +x_212 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; uint8_t x_219; +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 0); +lean_inc(x_214); +lean_dec(x_211); +x_215 = lean_ctor_get(x_213, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 1); +lean_inc(x_216); +lean_dec(x_213); +x_217 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__2; +x_218 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_217); +if (x_218 == 0) { if (x_6 == 0) { -if (x_213 == 0) +uint8_t x_284; +x_284 = 0; +x_219 = x_284; +goto block_283; +} +else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; -lean_dec(x_212); -lean_dec(x_211); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_215); +lean_dec(x_215); +x_287 = lean_unbox_float(x_216); +lean_dec(x_216); +x_288 = l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_212); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_216); +x_290 = lean_unbox_float(x_215); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_219 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_215); +lean_dec(x_215); +x_300 = lean_unbox_float(x_216); +lean_dec(x_216); +x_301 = l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_212); +return x_301; +} +} +block_283: +{ +if (x_219 == 0) +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; +lean_dec(x_216); +lean_dec(x_215); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_214 = lean_st_ref_take(x_12, x_208); -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_215, 3); -lean_inc(x_216); -x_217 = lean_ctor_get(x_214, 1); -lean_inc(x_217); -lean_dec(x_214); -x_218 = !lean_is_exclusive(x_215); -if (x_218 == 0) +x_220 = lean_st_ref_take(x_12, x_212); +x_221 = lean_ctor_get(x_220, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_221, 3); +lean_inc(x_222); +x_223 = lean_ctor_get(x_220, 1); +lean_inc(x_223); +lean_dec(x_220); +x_224 = !lean_is_exclusive(x_221); +if (x_224 == 0) { -lean_object* x_219; uint8_t x_220; -x_219 = lean_ctor_get(x_215, 3); -lean_dec(x_219); -x_220 = !lean_is_exclusive(x_216); -if (x_220 == 0) -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_221 = lean_ctor_get(x_216, 0); -x_222 = l_Lean_PersistentArray_append___rarg(x_15, x_221); -lean_dec(x_221); -lean_ctor_set(x_216, 0, x_222); -x_223 = lean_st_ref_set(x_12, x_215, x_217); -x_224 = lean_ctor_get(x_223, 1); -lean_inc(x_224); -lean_dec(x_223); -x_225 = l_MonadExcept_ofExcept___at_Lean_Meta_synthInstance_x3f___spec__5(x_210, x_9, x_10, x_11, x_12, x_224); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_225) == 0) -{ -uint8_t x_226; -x_226 = !lean_is_exclusive(x_225); +lean_object* x_225; uint8_t x_226; +x_225 = lean_ctor_get(x_221, 3); +lean_dec(x_225); +x_226 = !lean_is_exclusive(x_222); if (x_226 == 0) { -return x_225; -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; -x_227 = lean_ctor_get(x_225, 0); -x_228 = lean_ctor_get(x_225, 1); -lean_inc(x_228); -lean_inc(x_227); -lean_dec(x_225); -x_229 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_229, 0, x_227); -lean_ctor_set(x_229, 1, x_228); -return x_229; -} -} -else -{ -uint8_t x_230; -x_230 = !lean_is_exclusive(x_225); -if (x_230 == 0) -{ -return x_225; -} -else -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_225, 0); -x_232 = lean_ctor_get(x_225, 1); -lean_inc(x_232); -lean_inc(x_231); -lean_dec(x_225); -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_231); -lean_ctor_set(x_233, 1, x_232); -return x_233; -} -} -} -else -{ -uint64_t x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_234 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_235 = lean_ctor_get(x_216, 0); -lean_inc(x_235); -lean_dec(x_216); -x_236 = l_Lean_PersistentArray_append___rarg(x_15, x_235); -lean_dec(x_235); -x_237 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_237, 0, x_236); -lean_ctor_set_uint64(x_237, sizeof(void*)*1, x_234); -lean_ctor_set(x_215, 3, x_237); -x_238 = lean_st_ref_set(x_12, x_215, x_217); -x_239 = lean_ctor_get(x_238, 1); -lean_inc(x_239); -lean_dec(x_238); -x_240 = l_MonadExcept_ofExcept___at_Lean_Meta_synthInstance_x3f___spec__5(x_210, x_9, x_10, x_11, x_12, x_239); +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_227 = lean_ctor_get(x_222, 0); +x_228 = l_Lean_PersistentArray_append___rarg(x_15, x_227); +lean_dec(x_227); +lean_ctor_set(x_222, 0, x_228); +x_229 = lean_st_ref_set(x_12, x_221, x_223); +x_230 = lean_ctor_get(x_229, 1); +lean_inc(x_230); +lean_dec(x_229); +x_231 = l_MonadExcept_ofExcept___at_Lean_Meta_synthInstance_x3f___spec__5(x_214, x_9, x_10, x_11, x_12, x_230); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_240) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_231) == 0) { -lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; -x_241 = lean_ctor_get(x_240, 0); +uint8_t x_232; +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +return x_231; +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_231, 0); +x_234 = lean_ctor_get(x_231, 1); +lean_inc(x_234); +lean_inc(x_233); +lean_dec(x_231); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +return x_235; +} +} +else +{ +uint8_t x_236; +x_236 = !lean_is_exclusive(x_231); +if (x_236 == 0) +{ +return x_231; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_231, 0); +x_238 = lean_ctor_get(x_231, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_231); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} +} +} +else +{ +uint64_t x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_240 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_241 = lean_ctor_get(x_222, 0); lean_inc(x_241); -x_242 = lean_ctor_get(x_240, 1); -lean_inc(x_242); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_243 = x_240; -} else { - lean_dec_ref(x_240); - x_243 = lean_box(0); -} -if (lean_is_scalar(x_243)) { - x_244 = lean_alloc_ctor(0, 2, 0); -} else { - x_244 = x_243; -} -lean_ctor_set(x_244, 0, x_241); -lean_ctor_set(x_244, 1, x_242); -return x_244; -} -else -{ -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_245 = lean_ctor_get(x_240, 0); +lean_dec(x_222); +x_242 = l_Lean_PersistentArray_append___rarg(x_15, x_241); +lean_dec(x_241); +x_243 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set_uint64(x_243, sizeof(void*)*1, x_240); +lean_ctor_set(x_221, 3, x_243); +x_244 = lean_st_ref_set(x_12, x_221, x_223); +x_245 = lean_ctor_get(x_244, 1); lean_inc(x_245); -x_246 = lean_ctor_get(x_240, 1); -lean_inc(x_246); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_247 = x_240; -} else { - lean_dec_ref(x_240); - x_247 = lean_box(0); -} -if (lean_is_scalar(x_247)) { - x_248 = lean_alloc_ctor(1, 2, 0); -} else { - x_248 = x_247; -} -lean_ctor_set(x_248, 0, x_245); -lean_ctor_set(x_248, 1, x_246); -return x_248; -} -} -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_249 = lean_ctor_get(x_215, 0); -x_250 = lean_ctor_get(x_215, 1); -x_251 = lean_ctor_get(x_215, 2); -x_252 = lean_ctor_get(x_215, 4); -x_253 = lean_ctor_get(x_215, 5); -x_254 = lean_ctor_get(x_215, 6); -x_255 = lean_ctor_get(x_215, 7); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_dec(x_215); -x_256 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_257 = lean_ctor_get(x_216, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_216)) { - lean_ctor_release(x_216, 0); - x_258 = x_216; -} else { - lean_dec_ref(x_216); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_15, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_261, 0, x_249); -lean_ctor_set(x_261, 1, x_250); -lean_ctor_set(x_261, 2, x_251); -lean_ctor_set(x_261, 3, x_260); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_255); -x_262 = lean_st_ref_set(x_12, x_261, x_217); -x_263 = lean_ctor_get(x_262, 1); -lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at_Lean_Meta_synthInstance_x3f___spec__5(x_210, x_9, x_10, x_11, x_12, x_263); +lean_dec(x_244); +x_246 = l_MonadExcept_ofExcept___at_Lean_Meta_synthInstance_x3f___spec__5(x_214, x_9, x_10, x_11, x_12, x_245); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_246) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_247 = lean_ctor_get(x_246, 0); +lean_inc(x_247); +x_248 = lean_ctor_get(x_246, 1); +lean_inc(x_248); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_249 = x_246; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_246); + x_249 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_249)) { + x_250 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_250 = x_249; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_250, 0, x_247); +lean_ctor_set(x_250, 1, x_248); +return x_250; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_251 = lean_ctor_get(x_246, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_246, 1); +lean_inc(x_252); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_253 = x_246; +} else { + lean_dec_ref(x_246); + x_253 = lean_box(0); +} +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(1, 2, 0); +} else { + x_254 = x_253; +} +lean_ctor_set(x_254, 0, x_251); +lean_ctor_set(x_254, 1, x_252); +return x_254; +} +} +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_255 = lean_ctor_get(x_221, 0); +x_256 = lean_ctor_get(x_221, 1); +x_257 = lean_ctor_get(x_221, 2); +x_258 = lean_ctor_get(x_221, 4); +x_259 = lean_ctor_get(x_221, 5); +x_260 = lean_ctor_get(x_221, 6); +x_261 = lean_ctor_get(x_221, 7); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_221); +x_262 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_263 = lean_ctor_get(x_222, 0); +lean_inc(x_263); +if (lean_is_exclusive(x_222)) { + lean_ctor_release(x_222, 0); + x_264 = x_222; +} else { + lean_dec_ref(x_222); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_15, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_267, 0, x_255); +lean_ctor_set(x_267, 1, x_256); +lean_ctor_set(x_267, 2, x_257); +lean_ctor_set(x_267, 3, x_266); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_261); +x_268 = lean_st_ref_set(x_12, x_267, x_223); +x_269 = lean_ctor_get(x_268, 1); lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at_Lean_Meta_synthInstance_x3f___spec__5(x_214, x_9, x_10, x_11, x_12, x_269); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_214); +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_272 = x_271; + x_274 = x_273; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; +} else { + lean_dec_ref(x_270); + x_277 = lean_box(0); +} +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); +} else { + x_278 = x_277; +} +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_211); -lean_dec(x_211); -x_275 = lean_unbox_float(x_212); -lean_dec(x_212); -x_276 = l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_274, x_275, x_5, x_273, x_9, x_10, x_11, x_12, x_208); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_211); -lean_dec(x_211); -x_279 = lean_unbox_float(x_212); -lean_dec(x_212); -x_280 = l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_278, x_279, x_5, x_277, x_9, x_10, x_11, x_12, x_208); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_215); +lean_dec(x_215); +x_281 = lean_unbox_float(x_216); +lean_dec(x_216); +x_282 = l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_212); +return x_282; } } } @@ -34009,43 +34084,41 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_8); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); lean_dec(x_8); x_19 = lean_unbox_float(x_9); lean_dec(x_9); -x_20 = lean_unbox_float(x_10); -lean_dec(x_10); -x_21 = l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_18, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_15); -lean_dec(x_13); +x_20 = l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__2(x_1, x_16, x_3, x_4, x_5, x_6, x_17, x_18, x_19, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_14); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_21; +return x_20; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_7); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); lean_dec(x_7); x_19 = lean_unbox_float(x_8); lean_dec(x_8); -x_20 = lean_unbox_float(x_9); -lean_dec(x_9); -x_21 = l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__3(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_11); -lean_dec(x_6); -return x_21; +x_20 = l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__3(x_1, x_16, x_3, x_4, x_5, x_17, x_18, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +return x_20; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_synthInstance_x3f___spec__4___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -36369,8 +36442,6 @@ lean_mark_persistent(l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lea l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Meta_SynthInstance_newSubgoal___spec__10___rarg___closed__3 = _init_l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Meta_SynthInstance_newSubgoal___spec__10___rarg___closed__3(); lean_mark_persistent(l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Meta_SynthInstance_newSubgoal___spec__10___rarg___closed__3); l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2___closed__1(); -l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2___closed__2(); -lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__2___closed__2); l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3___closed__1); l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__8___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Backtrack.c b/stage0/stdlib/Lean/Meta/Tactic/Backtrack.c index 18b1c029ab..ea729df570 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Backtrack.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Backtrack.c @@ -14,14 +14,13 @@ extern "C" { #endif LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static double l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__5___closed__2; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_profiler; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_getType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_ReaderT_pure___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__2(lean_object*); @@ -33,7 +32,7 @@ static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_B double lean_float_div(double, double); uint8_t l_Lean_Exception_isInterrupt(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofList(lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); @@ -99,7 +98,7 @@ LEAN_EXPORT lean_object* l_Lean_observing_x3f___at___private_Lean_Meta_Tactic_Ba LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_to_list(lean_object*); static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___closed__2; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_mono_nanos_now(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Tactic_Backtrack_backtrack(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -145,7 +144,7 @@ LEAN_EXPORT lean_object* l_List_partitionM_go___at___private_Lean_Meta_Tactic_Ba lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__7___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__3___closed__2; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -153,7 +152,6 @@ LEAN_EXPORT lean_object* l_List_filterMapTR_go___at_Lean_Meta_Tactic_Backtrack_B lean_object* l_List_foldl___at_Array_appendList___spec__1___rarg(lean_object*, lean_object*); static lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__2; lean_object* l_List_reverse___rarg(lean_object*); -static lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2___closed__2; static lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__2; LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -166,16 +164,16 @@ static double l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__ LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_trace_profiler; lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_isIndependentOf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__4___closed__1; static lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___closed__2; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Exception_isRuntime(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_processIndependentGoals___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___lambda__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -773,69 +771,36 @@ x_3 = l_Float_ofScientific(x_1, x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2___closed__2() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2___closed__1; +x_17 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_3); +lean_ctor_set_float(x_17, sizeof(void*)*2, x_16); +lean_ctor_set_float(x_17, sizeof(void*)*2 + 8, x_16); +lean_ctor_set_uint8(x_17, sizeof(void*)*2 + 16, x_2); +x_18 = lean_box(0); +x_19 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__1(x_4, x_5, x_10, x_6, x_17, x_18, x_11, x_12, x_13, x_14, x_15); +return x_19; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { -_start: +else { -double x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_18 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_18, 0, x_1); -lean_ctor_set(x_18, 1, x_3); -lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); -lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); -lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); -x_19 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2___closed__2; -x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_19); -if (x_20 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_21; lean_object* x_22; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); x_21 = lean_box(0); -x_22 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__1(x_4, x_5, x_11, x_6, x_18, x_21, x_12, x_13, x_14, x_15, x_16); +x_22 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15); return x_22; } -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_18); -x_23 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_3); -lean_ctor_set_float(x_23, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); -x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__1(x_4, x_5, x_11, x_6, x_23, x_24, x_12, x_13, x_14, x_15, x_16); -return x_25; -} -} -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_18); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16); -return x_28; -} } } static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__1() { @@ -855,46 +820,46 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 5); -lean_inc(x_17); -lean_inc(x_15); +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 5); +lean_inc(x_16); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_18 = lean_apply_6(x_10, x_5, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_18) == 0) +x_17 = lean_apply_6(x_9, x_5, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_14, x_15, x_20); -lean_dec(x_15); -lean_dec(x_13); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_13, x_14, x_19); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_21; +return x_20; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_14, x_15, x_22); -lean_dec(x_15); -lean_dec(x_13); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } } } @@ -958,253 +923,253 @@ x_17 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Me x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_17); if (x_18 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_109 = lean_io_mono_nanos_now(x_16); -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_109, 1); -lean_inc(x_111); -lean_dec(x_109); +lean_object* x_19; lean_object* x_20; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_113 = lean_io_mono_nanos_now(x_16); +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +lean_dec(x_113); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_112 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_111); -if (lean_obj_tag(x_112) == 0) +x_116 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_115); +if (lean_obj_tag(x_116) == 0) { -uint8_t x_113; -x_113 = !lean_is_exclusive(x_112); -if (x_113 == 0) +uint8_t x_117; +x_117 = !lean_is_exclusive(x_116); +if (x_117 == 0) { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_114 = lean_ctor_get(x_112, 0); -x_115 = lean_ctor_get(x_112, 1); -x_116 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_116, 0, x_114); -x_117 = lean_io_mono_nanos_now(x_115); -x_118 = !lean_is_exclusive(x_117); -if (x_118 == 0) +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_118 = lean_ctor_get(x_116, 0); +x_119 = lean_ctor_get(x_116, 1); +x_120 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_120, 0, x_118); +x_121 = lean_io_mono_nanos_now(x_119); +x_122 = !lean_is_exclusive(x_121); +if (x_122 == 0) { -lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_122; double x_123; double x_124; double x_125; double x_126; double x_127; lean_object* x_128; lean_object* x_129; -x_119 = lean_ctor_get(x_117, 0); -x_120 = lean_ctor_get(x_117, 1); -x_121 = 0; -x_122 = lean_unsigned_to_nat(0u); -x_123 = l_Float_ofScientific(x_110, x_121, x_122); -lean_dec(x_110); -x_124 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; -x_125 = lean_float_div(x_123, x_124); -x_126 = l_Float_ofScientific(x_119, x_121, x_122); -lean_dec(x_119); -x_127 = lean_float_div(x_126, x_124); -x_128 = lean_box_float(x_125); -x_129 = lean_box_float(x_127); -lean_ctor_set(x_117, 1, x_129); -lean_ctor_set(x_117, 0, x_128); -lean_ctor_set(x_112, 1, x_117); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_120; -goto block_108; +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; double x_130; double x_131; lean_object* x_132; lean_object* x_133; +x_123 = lean_ctor_get(x_121, 0); +x_124 = lean_ctor_get(x_121, 1); +x_125 = 0; +x_126 = lean_unsigned_to_nat(0u); +x_127 = l_Float_ofScientific(x_114, x_125, x_126); +lean_dec(x_114); +x_128 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; +x_129 = lean_float_div(x_127, x_128); +x_130 = l_Float_ofScientific(x_123, x_125, x_126); +lean_dec(x_123); +x_131 = lean_float_div(x_130, x_128); +x_132 = lean_box_float(x_129); +x_133 = lean_box_float(x_131); +lean_ctor_set(x_121, 1, x_133); +lean_ctor_set(x_121, 0, x_132); +lean_ctor_set(x_116, 1, x_121); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_124; +goto block_112; } else { -lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; double x_134; double x_135; double x_136; double x_137; double x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_130 = lean_ctor_get(x_117, 0); -x_131 = lean_ctor_get(x_117, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_117); -x_132 = 0; -x_133 = lean_unsigned_to_nat(0u); -x_134 = l_Float_ofScientific(x_110, x_132, x_133); -lean_dec(x_110); -x_135 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; -x_136 = lean_float_div(x_134, x_135); -x_137 = l_Float_ofScientific(x_130, x_132, x_133); -lean_dec(x_130); -x_138 = lean_float_div(x_137, x_135); -x_139 = lean_box_float(x_136); -x_140 = lean_box_float(x_138); -x_141 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -lean_ctor_set(x_112, 1, x_141); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_131; -goto block_108; +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_134 = lean_ctor_get(x_121, 0); +x_135 = lean_ctor_get(x_121, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_121); +x_136 = 0; +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Float_ofScientific(x_114, x_136, x_137); +lean_dec(x_114); +x_139 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; +x_140 = lean_float_div(x_138, x_139); +x_141 = l_Float_ofScientific(x_134, x_136, x_137); +lean_dec(x_134); +x_142 = lean_float_div(x_141, x_139); +x_143 = lean_box_float(x_140); +x_144 = lean_box_float(x_142); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_116, 1, x_145); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_135; +goto block_112; } } else { -lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_142 = lean_ctor_get(x_112, 0); -x_143 = lean_ctor_get(x_112, 1); -lean_inc(x_143); -lean_inc(x_142); -lean_dec(x_112); -x_144 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_144, 0, x_142); -x_145 = lean_io_mono_nanos_now(x_143); -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; lean_object* x_154; double x_155; double x_156; double x_157; double x_158; double x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_146 = lean_ctor_get(x_116, 0); +x_147 = lean_ctor_get(x_116, 1); lean_inc(x_147); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - lean_ctor_release(x_145, 1); - x_148 = x_145; +lean_inc(x_146); +lean_dec(x_116); +x_148 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_148, 0, x_146); +x_149 = lean_io_mono_nanos_now(x_147); +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + lean_ctor_release(x_149, 1); + x_152 = x_149; } else { - lean_dec_ref(x_145); - x_148 = lean_box(0); + lean_dec_ref(x_149); + x_152 = lean_box(0); } -x_149 = 0; -x_150 = lean_unsigned_to_nat(0u); -x_151 = l_Float_ofScientific(x_110, x_149, x_150); -lean_dec(x_110); -x_152 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; -x_153 = lean_float_div(x_151, x_152); -x_154 = l_Float_ofScientific(x_146, x_149, x_150); -lean_dec(x_146); -x_155 = lean_float_div(x_154, x_152); -x_156 = lean_box_float(x_153); -x_157 = lean_box_float(x_155); -if (lean_is_scalar(x_148)) { - x_158 = lean_alloc_ctor(0, 2, 0); +x_153 = 0; +x_154 = lean_unsigned_to_nat(0u); +x_155 = l_Float_ofScientific(x_114, x_153, x_154); +lean_dec(x_114); +x_156 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; +x_157 = lean_float_div(x_155, x_156); +x_158 = l_Float_ofScientific(x_150, x_153, x_154); +lean_dec(x_150); +x_159 = lean_float_div(x_158, x_156); +x_160 = lean_box_float(x_157); +x_161 = lean_box_float(x_159); +if (lean_is_scalar(x_152)) { + x_162 = lean_alloc_ctor(0, 2, 0); } else { - x_158 = x_148; + x_162 = x_152; } -lean_ctor_set(x_158, 0, x_156); -lean_ctor_set(x_158, 1, x_157); -x_159 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_159, 0, x_144); -lean_ctor_set(x_159, 1, x_158); -x_19 = x_159; -x_20 = x_147; -goto block_108; +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_161); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_148); +lean_ctor_set(x_163, 1, x_162); +x_19 = x_163; +x_20 = x_151; +goto block_112; } } else { -uint8_t x_160; -x_160 = !lean_is_exclusive(x_112); -if (x_160 == 0) +uint8_t x_164; +x_164 = !lean_is_exclusive(x_116); +if (x_164 == 0) { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_161 = lean_ctor_get(x_112, 0); -x_162 = lean_ctor_get(x_112, 1); -x_163 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_163, 0, x_161); -x_164 = lean_io_mono_nanos_now(x_162); -x_165 = !lean_is_exclusive(x_164); -if (x_165 == 0) +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; +x_165 = lean_ctor_get(x_116, 0); +x_166 = lean_ctor_get(x_116, 1); +x_167 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_167, 0, x_165); +x_168 = lean_io_mono_nanos_now(x_166); +x_169 = !lean_is_exclusive(x_168); +if (x_169 == 0) { -lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; double x_170; double x_171; double x_172; double x_173; double x_174; lean_object* x_175; lean_object* x_176; -x_166 = lean_ctor_get(x_164, 0); -x_167 = lean_ctor_get(x_164, 1); -x_168 = 0; -x_169 = lean_unsigned_to_nat(0u); -x_170 = l_Float_ofScientific(x_110, x_168, x_169); -lean_dec(x_110); -x_171 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; -x_172 = lean_float_div(x_170, x_171); -x_173 = l_Float_ofScientific(x_166, x_168, x_169); -lean_dec(x_166); -x_174 = lean_float_div(x_173, x_171); -x_175 = lean_box_float(x_172); -x_176 = lean_box_float(x_174); -lean_ctor_set(x_164, 1, x_176); -lean_ctor_set(x_164, 0, x_175); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_164); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_167; -goto block_108; +lean_object* x_170; lean_object* x_171; uint8_t x_172; lean_object* x_173; double x_174; double x_175; double x_176; double x_177; double x_178; lean_object* x_179; lean_object* x_180; +x_170 = lean_ctor_get(x_168, 0); +x_171 = lean_ctor_get(x_168, 1); +x_172 = 0; +x_173 = lean_unsigned_to_nat(0u); +x_174 = l_Float_ofScientific(x_114, x_172, x_173); +lean_dec(x_114); +x_175 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; +x_176 = lean_float_div(x_174, x_175); +x_177 = l_Float_ofScientific(x_170, x_172, x_173); +lean_dec(x_170); +x_178 = lean_float_div(x_177, x_175); +x_179 = lean_box_float(x_176); +x_180 = lean_box_float(x_178); +lean_ctor_set(x_168, 1, x_180); +lean_ctor_set(x_168, 0, x_179); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_168); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_171; +goto block_112; } else { -lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_object* x_180; double x_181; double x_182; double x_183; double x_184; double x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_177 = lean_ctor_get(x_164, 0); -x_178 = lean_ctor_get(x_164, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_164); -x_179 = 0; -x_180 = lean_unsigned_to_nat(0u); -x_181 = l_Float_ofScientific(x_110, x_179, x_180); -lean_dec(x_110); -x_182 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; -x_183 = lean_float_div(x_181, x_182); -x_184 = l_Float_ofScientific(x_177, x_179, x_180); -lean_dec(x_177); -x_185 = lean_float_div(x_184, x_182); -x_186 = lean_box_float(x_183); -x_187 = lean_box_float(x_185); -x_188 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_188); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_178; -goto block_108; +lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_181 = lean_ctor_get(x_168, 0); +x_182 = lean_ctor_get(x_168, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_168); +x_183 = 0; +x_184 = lean_unsigned_to_nat(0u); +x_185 = l_Float_ofScientific(x_114, x_183, x_184); +lean_dec(x_114); +x_186 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; +x_187 = lean_float_div(x_185, x_186); +x_188 = l_Float_ofScientific(x_181, x_183, x_184); +lean_dec(x_181); +x_189 = lean_float_div(x_188, x_186); +x_190 = lean_box_float(x_187); +x_191 = lean_box_float(x_189); +x_192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_192); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_182; +goto block_112; } } else { -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_189 = lean_ctor_get(x_112, 0); -x_190 = lean_ctor_get(x_112, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_112); -x_191 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_191, 0, x_189); -x_192 = lean_io_mono_nanos_now(x_190); -x_193 = lean_ctor_get(x_192, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; lean_object* x_201; double x_202; double x_203; double x_204; double x_205; double x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_193 = lean_ctor_get(x_116, 0); +x_194 = lean_ctor_get(x_116, 1); lean_inc(x_194); -if (lean_is_exclusive(x_192)) { - lean_ctor_release(x_192, 0); - lean_ctor_release(x_192, 1); - x_195 = x_192; +lean_inc(x_193); +lean_dec(x_116); +x_195 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_195, 0, x_193); +x_196 = lean_io_mono_nanos_now(x_194); +x_197 = lean_ctor_get(x_196, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_196, 1); +lean_inc(x_198); +if (lean_is_exclusive(x_196)) { + lean_ctor_release(x_196, 0); + lean_ctor_release(x_196, 1); + x_199 = x_196; } else { - lean_dec_ref(x_192); - x_195 = lean_box(0); + lean_dec_ref(x_196); + x_199 = lean_box(0); } -x_196 = 0; -x_197 = lean_unsigned_to_nat(0u); -x_198 = l_Float_ofScientific(x_110, x_196, x_197); -lean_dec(x_110); -x_199 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; -x_200 = lean_float_div(x_198, x_199); -x_201 = l_Float_ofScientific(x_193, x_196, x_197); -lean_dec(x_193); -x_202 = lean_float_div(x_201, x_199); -x_203 = lean_box_float(x_200); -x_204 = lean_box_float(x_202); -if (lean_is_scalar(x_195)) { - x_205 = lean_alloc_ctor(0, 2, 0); +x_200 = 0; +x_201 = lean_unsigned_to_nat(0u); +x_202 = l_Float_ofScientific(x_114, x_200, x_201); +lean_dec(x_114); +x_203 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; +x_204 = lean_float_div(x_202, x_203); +x_205 = l_Float_ofScientific(x_197, x_200, x_201); +lean_dec(x_197); +x_206 = lean_float_div(x_205, x_203); +x_207 = lean_box_float(x_204); +x_208 = lean_box_float(x_206); +if (lean_is_scalar(x_199)) { + x_209 = lean_alloc_ctor(0, 2, 0); } else { - x_205 = x_195; + x_209 = x_199; } -lean_ctor_set(x_205, 0, x_203); -lean_ctor_set(x_205, 1, x_204); -x_206 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_206, 0, x_191); -lean_ctor_set(x_206, 1, x_205); -x_19 = x_206; -x_20 = x_194; -goto block_108; +lean_ctor_set(x_209, 0, x_207); +lean_ctor_set(x_209, 1, x_208); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_195); +lean_ctor_set(x_210, 1, x_209); +x_19 = x_210; +x_20 = x_198; +goto block_112; } } -block_108: +block_112: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_94; uint8_t x_95; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); x_22 = lean_ctor_get(x_19, 0); @@ -1215,17 +1180,33 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_21, 1); lean_inc(x_24); lean_dec(x_21); -x_94 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__2; -x_95 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_94); -if (x_95 == 0) +x_25 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__2; +x_26 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_25); +if (x_26 == 0) { -uint8_t x_96; -x_96 = 0; -x_25 = x_96; -goto block_93; +if (x_6 == 0) +{ +uint8_t x_92; +x_92 = 0; +x_27 = x_92; +goto block_91; } else { +lean_object* x_93; double x_94; double x_95; lean_object* x_96; +x_93 = lean_box(0); +x_94 = lean_unbox_float(x_23); +lean_dec(x_23); +x_95 = lean_unbox_float(x_24); +lean_dec(x_24); +x_96 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_94, x_95, x_5, x_93, x_9, x_10, x_11, x_12, x_20); +return x_96; +} +} +else +{ +if (x_6 == 0) +{ double x_97; double x_98; double x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; double x_104; double x_105; double x_106; uint8_t x_107; x_97 = lean_unbox_float(x_24); x_98 = lean_unbox_float(x_23); @@ -1239,859 +1220,871 @@ lean_dec(x_101); x_105 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__4; x_106 = lean_float_div(x_104, x_105); x_107 = lean_float_decLt(x_106, x_99); -x_25 = x_107; -goto block_93; +x_27 = x_107; +goto block_91; } -block_93: +else { -if (x_6 == 0) +lean_object* x_108; double x_109; double x_110; lean_object* x_111; +x_108 = lean_box(0); +x_109 = lean_unbox_float(x_23); +lean_dec(x_23); +x_110 = lean_unbox_float(x_24); +lean_dec(x_24); +x_111 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_109, x_110, x_5, x_108, x_9, x_10, x_11, x_12, x_20); +return x_111; +} +} +block_91: { -if (x_25 == 0) +if (x_27 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_24); lean_dec(x_23); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_26 = lean_st_ref_take(x_12, x_20); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -x_29 = lean_ctor_get(x_26, 1); +x_28 = lean_st_ref_take(x_12, x_20); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -lean_dec(x_26); -x_30 = !lean_is_exclusive(x_27); -if (x_30 == 0) -{ -lean_object* x_31; uint8_t x_32; -x_31 = lean_ctor_get(x_27, 3); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_28); +x_30 = lean_ctor_get(x_29, 3); +lean_inc(x_30); +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = !lean_is_exclusive(x_29); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_33 = lean_ctor_get(x_28, 0); -x_34 = l_Lean_PersistentArray_append___rarg(x_15, x_33); +lean_object* x_33; uint8_t x_34; +x_33 = lean_ctor_get(x_29, 3); lean_dec(x_33); -lean_ctor_set(x_28, 0, x_34); -x_35 = lean_st_ref_set(x_12, x_27, x_29); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); +x_34 = !lean_is_exclusive(x_30); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_ctor_get(x_30, 0); +x_36 = l_Lean_PersistentArray_append___rarg(x_15, x_35); lean_dec(x_35); -x_37 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__4(x_22, x_9, x_10, x_11, x_12, x_36); +lean_ctor_set(x_30, 0, x_36); +x_37 = lean_st_ref_set(x_12, x_29, x_31); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +x_39 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__4(x_22, x_9, x_10, x_11, x_12, x_38); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_37) == 0) +if (lean_obj_tag(x_39) == 0) { -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -return x_37; +return x_39; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_ctor_get(x_37, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_37); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_39); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } else { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_37); -if (x_42 == 0) +uint8_t x_44; +x_44 = !lean_is_exclusive(x_39); +if (x_44 == 0) { -return x_37; +return x_39; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_37, 0); -x_44 = lean_ctor_get(x_37, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_37); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_39, 0); +x_46 = lean_ctor_get(x_39, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_39); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } } else { -uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_47 = lean_ctor_get(x_28, 0); -lean_inc(x_47); -lean_dec(x_28); -x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_47); -lean_dec(x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); -lean_ctor_set(x_27, 3, x_49); -x_50 = lean_st_ref_set(x_12, x_27, x_29); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -lean_dec(x_50); -x_52 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__4(x_22, x_9, x_10, x_11, x_12, x_51); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_22); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); +uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_49 = lean_ctor_get(x_30, 0); +lean_inc(x_49); +lean_dec(x_30); +x_50 = l_Lean_PersistentArray_append___rarg(x_15, x_49); +lean_dec(x_49); +x_51 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); +lean_ctor_set(x_29, 3, x_51); +x_52 = lean_st_ref_set(x_12, x_29, x_31); +x_53 = lean_ctor_get(x_52, 1); lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_55 = x_52; +lean_dec(x_52); +x_54 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__4(x_22, x_9, x_10, x_11, x_12, x_53); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_22); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; } else { - lean_dec_ref(x_52); - x_55 = lean_box(0); + lean_dec_ref(x_54); + x_57 = lean_box(0); } -if (lean_is_scalar(x_55)) { - x_56 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_57)) { + x_58 = lean_alloc_ctor(0, 2, 0); } else { - x_56 = x_55; + x_58 = x_57; } -lean_ctor_set(x_56, 0, x_53); -lean_ctor_set(x_56, 1, x_54); -return x_56; +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_56); +return x_58; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_52, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_52, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_59 = x_52; +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_54, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_54, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_61 = x_54; } else { - lean_dec_ref(x_52); - x_59 = lean_box(0); + lean_dec_ref(x_54); + x_61 = lean_box(0); } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(1, 2, 0); } else { - x_60 = x_59; + x_62 = x_61; } -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_58); -return x_60; +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; } } } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_61 = lean_ctor_get(x_27, 0); -x_62 = lean_ctor_get(x_27, 1); -x_63 = lean_ctor_get(x_27, 2); -x_64 = lean_ctor_get(x_27, 4); -x_65 = lean_ctor_get(x_27, 5); -x_66 = lean_ctor_get(x_27, 6); -x_67 = lean_ctor_get(x_27, 7); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_63 = lean_ctor_get(x_29, 0); +x_64 = lean_ctor_get(x_29, 1); +x_65 = lean_ctor_get(x_29, 2); +x_66 = lean_ctor_get(x_29, 4); +x_67 = lean_ctor_get(x_29, 5); +x_68 = lean_ctor_get(x_29, 6); +x_69 = lean_ctor_get(x_29, 7); +lean_inc(x_69); +lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_27); -x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_69 = lean_ctor_get(x_28, 0); -lean_inc(x_69); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - x_70 = x_28; +lean_dec(x_29); +x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_71 = lean_ctor_get(x_30, 0); +lean_inc(x_71); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + x_72 = x_30; } else { - lean_dec_ref(x_28); - x_70 = lean_box(0); + lean_dec_ref(x_30); + x_72 = lean_box(0); } -x_71 = l_Lean_PersistentArray_append___rarg(x_15, x_69); -lean_dec(x_69); -if (lean_is_scalar(x_70)) { - x_72 = lean_alloc_ctor(0, 1, 8); +x_73 = l_Lean_PersistentArray_append___rarg(x_15, x_71); +lean_dec(x_71); +if (lean_is_scalar(x_72)) { + x_74 = lean_alloc_ctor(0, 1, 8); } else { - x_72 = x_70; + x_74 = x_72; } -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); -x_73 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_73, 0, x_61); -lean_ctor_set(x_73, 1, x_62); -lean_ctor_set(x_73, 2, x_63); -lean_ctor_set(x_73, 3, x_72); -lean_ctor_set(x_73, 4, x_64); -lean_ctor_set(x_73, 5, x_65); -lean_ctor_set(x_73, 6, x_66); -lean_ctor_set(x_73, 7, x_67); -x_74 = lean_st_ref_set(x_12, x_73, x_29); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_76 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__4(x_22, x_9, x_10, x_11, x_12, x_75); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); +x_75 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_64); +lean_ctor_set(x_75, 2, x_65); +lean_ctor_set(x_75, 3, x_74); +lean_ctor_set(x_75, 4, x_66); +lean_ctor_set(x_75, 5, x_67); +lean_ctor_set(x_75, 6, x_68); +lean_ctor_set(x_75, 7, x_69); +x_76 = lean_st_ref_set(x_12, x_75, x_31); +x_77 = lean_ctor_get(x_76, 1); +lean_inc(x_77); +lean_dec(x_76); +x_78 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__4(x_22, x_9, x_10, x_11, x_12, x_77); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_76) == 0) +if (lean_obj_tag(x_78) == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_76, 0); -lean_inc(x_77); -x_78 = lean_ctor_get(x_76, 1); -lean_inc(x_78); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_79 = x_76; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_81 = x_78; } else { - lean_dec_ref(x_76); - x_79 = lean_box(0); + lean_dec_ref(x_78); + x_81 = lean_box(0); } -if (lean_is_scalar(x_79)) { - x_80 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(0, 2, 0); } else { - x_80 = x_79; + x_82 = x_81; } -lean_ctor_set(x_80, 0, x_77); -lean_ctor_set(x_80, 1, x_78); -return x_80; +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_80); +return x_82; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_81 = lean_ctor_get(x_76, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_76, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_83 = x_76; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_83 = lean_ctor_get(x_78, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_78, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_85 = x_78; } else { - lean_dec_ref(x_76); - x_83 = lean_box(0); + lean_dec_ref(x_78); + x_85 = lean_box(0); } -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); } else { - x_84 = x_83; + x_86 = x_85; } -lean_ctor_set(x_84, 0, x_81); -lean_ctor_set(x_84, 1, x_82); -return x_84; +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; } } } else { -lean_object* x_85; double x_86; double x_87; lean_object* x_88; -x_85 = lean_box(0); -x_86 = lean_unbox_float(x_23); +lean_object* x_87; double x_88; double x_89; lean_object* x_90; +x_87 = lean_box(0); +x_88 = lean_unbox_float(x_23); lean_dec(x_23); -x_87 = lean_unbox_float(x_24); +x_89 = lean_unbox_float(x_24); lean_dec(x_24); -x_88 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_86, x_87, x_5, x_85, x_9, x_10, x_11, x_12, x_20); -return x_88; -} -} -else -{ -lean_object* x_89; double x_90; double x_91; lean_object* x_92; -x_89 = lean_box(0); -x_90 = lean_unbox_float(x_23); -lean_dec(x_23); -x_91 = lean_unbox_float(x_24); -lean_dec(x_24); -x_92 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_20); -return x_92; +x_90 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_20); +return x_90; } } } } else { -lean_object* x_207; lean_object* x_208; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_16); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_211; lean_object* x_212; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_16); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_207 = x_336; -x_208 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_211 = x_344; +x_212 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_207 = x_374; -x_208 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_282; uint8_t x_283; -x_209 = lean_ctor_get(x_207, 1); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 0); -lean_inc(x_210); -lean_dec(x_207); -x_211 = lean_ctor_get(x_209, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 1); -lean_inc(x_212); -lean_dec(x_209); -x_282 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_213 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_212); -x_286 = lean_unbox_float(x_211); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_213 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_211 = x_382; +x_212 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; uint8_t x_219; +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 0); +lean_inc(x_214); +lean_dec(x_211); +x_215 = lean_ctor_get(x_213, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 1); +lean_inc(x_216); +lean_dec(x_213); +x_217 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__2; +x_218 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_217); +if (x_218 == 0) { if (x_6 == 0) { -if (x_213 == 0) +uint8_t x_284; +x_284 = 0; +x_219 = x_284; +goto block_283; +} +else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; -lean_dec(x_212); -lean_dec(x_211); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_215); +lean_dec(x_215); +x_287 = lean_unbox_float(x_216); +lean_dec(x_216); +x_288 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_212); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_216); +x_290 = lean_unbox_float(x_215); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_219 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_215); +lean_dec(x_215); +x_300 = lean_unbox_float(x_216); +lean_dec(x_216); +x_301 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_212); +return x_301; +} +} +block_283: +{ +if (x_219 == 0) +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; +lean_dec(x_216); +lean_dec(x_215); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_214 = lean_st_ref_take(x_12, x_208); -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_215, 3); -lean_inc(x_216); -x_217 = lean_ctor_get(x_214, 1); -lean_inc(x_217); -lean_dec(x_214); -x_218 = !lean_is_exclusive(x_215); -if (x_218 == 0) +x_220 = lean_st_ref_take(x_12, x_212); +x_221 = lean_ctor_get(x_220, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_221, 3); +lean_inc(x_222); +x_223 = lean_ctor_get(x_220, 1); +lean_inc(x_223); +lean_dec(x_220); +x_224 = !lean_is_exclusive(x_221); +if (x_224 == 0) { -lean_object* x_219; uint8_t x_220; -x_219 = lean_ctor_get(x_215, 3); -lean_dec(x_219); -x_220 = !lean_is_exclusive(x_216); -if (x_220 == 0) -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_221 = lean_ctor_get(x_216, 0); -x_222 = l_Lean_PersistentArray_append___rarg(x_15, x_221); -lean_dec(x_221); -lean_ctor_set(x_216, 0, x_222); -x_223 = lean_st_ref_set(x_12, x_215, x_217); -x_224 = lean_ctor_get(x_223, 1); -lean_inc(x_224); -lean_dec(x_223); -x_225 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__4(x_210, x_9, x_10, x_11, x_12, x_224); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_225) == 0) -{ -uint8_t x_226; -x_226 = !lean_is_exclusive(x_225); +lean_object* x_225; uint8_t x_226; +x_225 = lean_ctor_get(x_221, 3); +lean_dec(x_225); +x_226 = !lean_is_exclusive(x_222); if (x_226 == 0) { -return x_225; -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; -x_227 = lean_ctor_get(x_225, 0); -x_228 = lean_ctor_get(x_225, 1); -lean_inc(x_228); -lean_inc(x_227); -lean_dec(x_225); -x_229 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_229, 0, x_227); -lean_ctor_set(x_229, 1, x_228); -return x_229; -} -} -else -{ -uint8_t x_230; -x_230 = !lean_is_exclusive(x_225); -if (x_230 == 0) -{ -return x_225; -} -else -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_225, 0); -x_232 = lean_ctor_get(x_225, 1); -lean_inc(x_232); -lean_inc(x_231); -lean_dec(x_225); -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_231); -lean_ctor_set(x_233, 1, x_232); -return x_233; -} -} -} -else -{ -uint64_t x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_234 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_235 = lean_ctor_get(x_216, 0); -lean_inc(x_235); -lean_dec(x_216); -x_236 = l_Lean_PersistentArray_append___rarg(x_15, x_235); -lean_dec(x_235); -x_237 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_237, 0, x_236); -lean_ctor_set_uint64(x_237, sizeof(void*)*1, x_234); -lean_ctor_set(x_215, 3, x_237); -x_238 = lean_st_ref_set(x_12, x_215, x_217); -x_239 = lean_ctor_get(x_238, 1); -lean_inc(x_239); -lean_dec(x_238); -x_240 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__4(x_210, x_9, x_10, x_11, x_12, x_239); +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_227 = lean_ctor_get(x_222, 0); +x_228 = l_Lean_PersistentArray_append___rarg(x_15, x_227); +lean_dec(x_227); +lean_ctor_set(x_222, 0, x_228); +x_229 = lean_st_ref_set(x_12, x_221, x_223); +x_230 = lean_ctor_get(x_229, 1); +lean_inc(x_230); +lean_dec(x_229); +x_231 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__4(x_214, x_9, x_10, x_11, x_12, x_230); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_240) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_231) == 0) { -lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; -x_241 = lean_ctor_get(x_240, 0); +uint8_t x_232; +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +return x_231; +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_231, 0); +x_234 = lean_ctor_get(x_231, 1); +lean_inc(x_234); +lean_inc(x_233); +lean_dec(x_231); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +return x_235; +} +} +else +{ +uint8_t x_236; +x_236 = !lean_is_exclusive(x_231); +if (x_236 == 0) +{ +return x_231; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_231, 0); +x_238 = lean_ctor_get(x_231, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_231); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} +} +} +else +{ +uint64_t x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_240 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_241 = lean_ctor_get(x_222, 0); lean_inc(x_241); -x_242 = lean_ctor_get(x_240, 1); -lean_inc(x_242); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_243 = x_240; -} else { - lean_dec_ref(x_240); - x_243 = lean_box(0); -} -if (lean_is_scalar(x_243)) { - x_244 = lean_alloc_ctor(0, 2, 0); -} else { - x_244 = x_243; -} -lean_ctor_set(x_244, 0, x_241); -lean_ctor_set(x_244, 1, x_242); -return x_244; -} -else -{ -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_245 = lean_ctor_get(x_240, 0); +lean_dec(x_222); +x_242 = l_Lean_PersistentArray_append___rarg(x_15, x_241); +lean_dec(x_241); +x_243 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set_uint64(x_243, sizeof(void*)*1, x_240); +lean_ctor_set(x_221, 3, x_243); +x_244 = lean_st_ref_set(x_12, x_221, x_223); +x_245 = lean_ctor_get(x_244, 1); lean_inc(x_245); -x_246 = lean_ctor_get(x_240, 1); -lean_inc(x_246); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_247 = x_240; -} else { - lean_dec_ref(x_240); - x_247 = lean_box(0); -} -if (lean_is_scalar(x_247)) { - x_248 = lean_alloc_ctor(1, 2, 0); -} else { - x_248 = x_247; -} -lean_ctor_set(x_248, 0, x_245); -lean_ctor_set(x_248, 1, x_246); -return x_248; -} -} -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_249 = lean_ctor_get(x_215, 0); -x_250 = lean_ctor_get(x_215, 1); -x_251 = lean_ctor_get(x_215, 2); -x_252 = lean_ctor_get(x_215, 4); -x_253 = lean_ctor_get(x_215, 5); -x_254 = lean_ctor_get(x_215, 6); -x_255 = lean_ctor_get(x_215, 7); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_dec(x_215); -x_256 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_257 = lean_ctor_get(x_216, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_216)) { - lean_ctor_release(x_216, 0); - x_258 = x_216; -} else { - lean_dec_ref(x_216); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_15, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_261, 0, x_249); -lean_ctor_set(x_261, 1, x_250); -lean_ctor_set(x_261, 2, x_251); -lean_ctor_set(x_261, 3, x_260); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_255); -x_262 = lean_st_ref_set(x_12, x_261, x_217); -x_263 = lean_ctor_get(x_262, 1); -lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__4(x_210, x_9, x_10, x_11, x_12, x_263); +lean_dec(x_244); +x_246 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__4(x_214, x_9, x_10, x_11, x_12, x_245); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_246) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_247 = lean_ctor_get(x_246, 0); +lean_inc(x_247); +x_248 = lean_ctor_get(x_246, 1); +lean_inc(x_248); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_249 = x_246; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_246); + x_249 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_249)) { + x_250 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_250 = x_249; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_250, 0, x_247); +lean_ctor_set(x_250, 1, x_248); +return x_250; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_251 = lean_ctor_get(x_246, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_246, 1); +lean_inc(x_252); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_253 = x_246; +} else { + lean_dec_ref(x_246); + x_253 = lean_box(0); +} +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(1, 2, 0); +} else { + x_254 = x_253; +} +lean_ctor_set(x_254, 0, x_251); +lean_ctor_set(x_254, 1, x_252); +return x_254; +} +} +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_255 = lean_ctor_get(x_221, 0); +x_256 = lean_ctor_get(x_221, 1); +x_257 = lean_ctor_get(x_221, 2); +x_258 = lean_ctor_get(x_221, 4); +x_259 = lean_ctor_get(x_221, 5); +x_260 = lean_ctor_get(x_221, 6); +x_261 = lean_ctor_get(x_221, 7); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_221); +x_262 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_263 = lean_ctor_get(x_222, 0); +lean_inc(x_263); +if (lean_is_exclusive(x_222)) { + lean_ctor_release(x_222, 0); + x_264 = x_222; +} else { + lean_dec_ref(x_222); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_15, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_267, 0, x_255); +lean_ctor_set(x_267, 1, x_256); +lean_ctor_set(x_267, 2, x_257); +lean_ctor_set(x_267, 3, x_266); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_261); +x_268 = lean_st_ref_set(x_12, x_267, x_223); +x_269 = lean_ctor_get(x_268, 1); lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__4(x_214, x_9, x_10, x_11, x_12, x_269); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_214); +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_272 = x_271; + x_274 = x_273; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; +} else { + lean_dec_ref(x_270); + x_277 = lean_box(0); +} +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); +} else { + x_278 = x_277; +} +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_211); -lean_dec(x_211); -x_275 = lean_unbox_float(x_212); -lean_dec(x_212); -x_276 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_274, x_275, x_5, x_273, x_9, x_10, x_11, x_12, x_208); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_211); -lean_dec(x_211); -x_279 = lean_unbox_float(x_212); -lean_dec(x_212); -x_280 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_278, x_279, x_5, x_277, x_9, x_10, x_11, x_12, x_208); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_215); +lean_dec(x_215); +x_281 = lean_unbox_float(x_216); +lean_dec(x_216); +x_282 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_212); +return x_282; } } } @@ -2427,103 +2420,78 @@ lean_dec(x_9); return x_14; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -double x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_18 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_18, 0, x_1); -lean_ctor_set(x_18, 1, x_3); -lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); -lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); -lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); -x_19 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2___closed__2; -x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_19); -if (x_20 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2___closed__1; +x_17 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_3); +lean_ctor_set_float(x_17, sizeof(void*)*2, x_16); +lean_ctor_set_float(x_17, sizeof(void*)*2 + 8, x_16); +lean_ctor_set_uint8(x_17, sizeof(void*)*2 + 16, x_2); +x_18 = lean_box(0); +x_19 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__1(x_4, x_5, x_10, x_6, x_17, x_18, x_11, x_12, x_13, x_14, x_15); +return x_19; +} +else { -lean_object* x_21; lean_object* x_22; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); x_21 = lean_box(0); -x_22 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__1(x_4, x_5, x_11, x_6, x_18, x_21, x_12, x_13, x_14, x_15, x_16); +x_22 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15); return x_22; } -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_18); -x_23 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_3); -lean_ctor_set_float(x_23, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); -x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__1(x_4, x_5, x_11, x_6, x_23, x_24, x_12, x_13, x_14, x_15, x_16); -return x_25; } } -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_18); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16); -return x_28; -} -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 5); -lean_inc(x_17); -lean_inc(x_15); +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 5); +lean_inc(x_16); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_18 = lean_apply_6(x_10, x_5, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_18) == 0) +x_17 = lean_apply_6(x_9, x_5, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_14, x_15, x_20); -lean_dec(x_15); -lean_dec(x_13); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_13, x_14, x_19); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_21; +return x_20; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_14, x_15, x_22); -lean_dec(x_15); -lean_dec(x_13); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } } } @@ -2541,253 +2509,253 @@ x_17 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Me x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_17); if (x_18 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_109 = lean_io_mono_nanos_now(x_16); -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_109, 1); -lean_inc(x_111); -lean_dec(x_109); +lean_object* x_19; lean_object* x_20; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_113 = lean_io_mono_nanos_now(x_16); +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +lean_dec(x_113); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_112 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_111); -if (lean_obj_tag(x_112) == 0) +x_116 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_115); +if (lean_obj_tag(x_116) == 0) { -uint8_t x_113; -x_113 = !lean_is_exclusive(x_112); -if (x_113 == 0) +uint8_t x_117; +x_117 = !lean_is_exclusive(x_116); +if (x_117 == 0) { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_114 = lean_ctor_get(x_112, 0); -x_115 = lean_ctor_get(x_112, 1); -x_116 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_116, 0, x_114); -x_117 = lean_io_mono_nanos_now(x_115); -x_118 = !lean_is_exclusive(x_117); -if (x_118 == 0) +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_118 = lean_ctor_get(x_116, 0); +x_119 = lean_ctor_get(x_116, 1); +x_120 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_120, 0, x_118); +x_121 = lean_io_mono_nanos_now(x_119); +x_122 = !lean_is_exclusive(x_121); +if (x_122 == 0) { -lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_122; double x_123; double x_124; double x_125; double x_126; double x_127; lean_object* x_128; lean_object* x_129; -x_119 = lean_ctor_get(x_117, 0); -x_120 = lean_ctor_get(x_117, 1); -x_121 = 0; -x_122 = lean_unsigned_to_nat(0u); -x_123 = l_Float_ofScientific(x_110, x_121, x_122); -lean_dec(x_110); -x_124 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; -x_125 = lean_float_div(x_123, x_124); -x_126 = l_Float_ofScientific(x_119, x_121, x_122); -lean_dec(x_119); -x_127 = lean_float_div(x_126, x_124); -x_128 = lean_box_float(x_125); -x_129 = lean_box_float(x_127); -lean_ctor_set(x_117, 1, x_129); -lean_ctor_set(x_117, 0, x_128); -lean_ctor_set(x_112, 1, x_117); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_120; -goto block_108; +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; double x_130; double x_131; lean_object* x_132; lean_object* x_133; +x_123 = lean_ctor_get(x_121, 0); +x_124 = lean_ctor_get(x_121, 1); +x_125 = 0; +x_126 = lean_unsigned_to_nat(0u); +x_127 = l_Float_ofScientific(x_114, x_125, x_126); +lean_dec(x_114); +x_128 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; +x_129 = lean_float_div(x_127, x_128); +x_130 = l_Float_ofScientific(x_123, x_125, x_126); +lean_dec(x_123); +x_131 = lean_float_div(x_130, x_128); +x_132 = lean_box_float(x_129); +x_133 = lean_box_float(x_131); +lean_ctor_set(x_121, 1, x_133); +lean_ctor_set(x_121, 0, x_132); +lean_ctor_set(x_116, 1, x_121); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_124; +goto block_112; } else { -lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; double x_134; double x_135; double x_136; double x_137; double x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_130 = lean_ctor_get(x_117, 0); -x_131 = lean_ctor_get(x_117, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_117); -x_132 = 0; -x_133 = lean_unsigned_to_nat(0u); -x_134 = l_Float_ofScientific(x_110, x_132, x_133); -lean_dec(x_110); -x_135 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; -x_136 = lean_float_div(x_134, x_135); -x_137 = l_Float_ofScientific(x_130, x_132, x_133); -lean_dec(x_130); -x_138 = lean_float_div(x_137, x_135); -x_139 = lean_box_float(x_136); -x_140 = lean_box_float(x_138); -x_141 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -lean_ctor_set(x_112, 1, x_141); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_131; -goto block_108; +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_134 = lean_ctor_get(x_121, 0); +x_135 = lean_ctor_get(x_121, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_121); +x_136 = 0; +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Float_ofScientific(x_114, x_136, x_137); +lean_dec(x_114); +x_139 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; +x_140 = lean_float_div(x_138, x_139); +x_141 = l_Float_ofScientific(x_134, x_136, x_137); +lean_dec(x_134); +x_142 = lean_float_div(x_141, x_139); +x_143 = lean_box_float(x_140); +x_144 = lean_box_float(x_142); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_116, 1, x_145); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_135; +goto block_112; } } else { -lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_142 = lean_ctor_get(x_112, 0); -x_143 = lean_ctor_get(x_112, 1); -lean_inc(x_143); -lean_inc(x_142); -lean_dec(x_112); -x_144 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_144, 0, x_142); -x_145 = lean_io_mono_nanos_now(x_143); -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; lean_object* x_154; double x_155; double x_156; double x_157; double x_158; double x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_146 = lean_ctor_get(x_116, 0); +x_147 = lean_ctor_get(x_116, 1); lean_inc(x_147); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - lean_ctor_release(x_145, 1); - x_148 = x_145; +lean_inc(x_146); +lean_dec(x_116); +x_148 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_148, 0, x_146); +x_149 = lean_io_mono_nanos_now(x_147); +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + lean_ctor_release(x_149, 1); + x_152 = x_149; } else { - lean_dec_ref(x_145); - x_148 = lean_box(0); + lean_dec_ref(x_149); + x_152 = lean_box(0); } -x_149 = 0; -x_150 = lean_unsigned_to_nat(0u); -x_151 = l_Float_ofScientific(x_110, x_149, x_150); -lean_dec(x_110); -x_152 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; -x_153 = lean_float_div(x_151, x_152); -x_154 = l_Float_ofScientific(x_146, x_149, x_150); -lean_dec(x_146); -x_155 = lean_float_div(x_154, x_152); -x_156 = lean_box_float(x_153); -x_157 = lean_box_float(x_155); -if (lean_is_scalar(x_148)) { - x_158 = lean_alloc_ctor(0, 2, 0); +x_153 = 0; +x_154 = lean_unsigned_to_nat(0u); +x_155 = l_Float_ofScientific(x_114, x_153, x_154); +lean_dec(x_114); +x_156 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; +x_157 = lean_float_div(x_155, x_156); +x_158 = l_Float_ofScientific(x_150, x_153, x_154); +lean_dec(x_150); +x_159 = lean_float_div(x_158, x_156); +x_160 = lean_box_float(x_157); +x_161 = lean_box_float(x_159); +if (lean_is_scalar(x_152)) { + x_162 = lean_alloc_ctor(0, 2, 0); } else { - x_158 = x_148; + x_162 = x_152; } -lean_ctor_set(x_158, 0, x_156); -lean_ctor_set(x_158, 1, x_157); -x_159 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_159, 0, x_144); -lean_ctor_set(x_159, 1, x_158); -x_19 = x_159; -x_20 = x_147; -goto block_108; +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_161); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_148); +lean_ctor_set(x_163, 1, x_162); +x_19 = x_163; +x_20 = x_151; +goto block_112; } } else { -uint8_t x_160; -x_160 = !lean_is_exclusive(x_112); -if (x_160 == 0) +uint8_t x_164; +x_164 = !lean_is_exclusive(x_116); +if (x_164 == 0) { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_161 = lean_ctor_get(x_112, 0); -x_162 = lean_ctor_get(x_112, 1); -x_163 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_163, 0, x_161); -x_164 = lean_io_mono_nanos_now(x_162); -x_165 = !lean_is_exclusive(x_164); -if (x_165 == 0) +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; +x_165 = lean_ctor_get(x_116, 0); +x_166 = lean_ctor_get(x_116, 1); +x_167 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_167, 0, x_165); +x_168 = lean_io_mono_nanos_now(x_166); +x_169 = !lean_is_exclusive(x_168); +if (x_169 == 0) { -lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; double x_170; double x_171; double x_172; double x_173; double x_174; lean_object* x_175; lean_object* x_176; -x_166 = lean_ctor_get(x_164, 0); -x_167 = lean_ctor_get(x_164, 1); -x_168 = 0; -x_169 = lean_unsigned_to_nat(0u); -x_170 = l_Float_ofScientific(x_110, x_168, x_169); -lean_dec(x_110); -x_171 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; -x_172 = lean_float_div(x_170, x_171); -x_173 = l_Float_ofScientific(x_166, x_168, x_169); -lean_dec(x_166); -x_174 = lean_float_div(x_173, x_171); -x_175 = lean_box_float(x_172); -x_176 = lean_box_float(x_174); -lean_ctor_set(x_164, 1, x_176); -lean_ctor_set(x_164, 0, x_175); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_164); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_167; -goto block_108; +lean_object* x_170; lean_object* x_171; uint8_t x_172; lean_object* x_173; double x_174; double x_175; double x_176; double x_177; double x_178; lean_object* x_179; lean_object* x_180; +x_170 = lean_ctor_get(x_168, 0); +x_171 = lean_ctor_get(x_168, 1); +x_172 = 0; +x_173 = lean_unsigned_to_nat(0u); +x_174 = l_Float_ofScientific(x_114, x_172, x_173); +lean_dec(x_114); +x_175 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; +x_176 = lean_float_div(x_174, x_175); +x_177 = l_Float_ofScientific(x_170, x_172, x_173); +lean_dec(x_170); +x_178 = lean_float_div(x_177, x_175); +x_179 = lean_box_float(x_176); +x_180 = lean_box_float(x_178); +lean_ctor_set(x_168, 1, x_180); +lean_ctor_set(x_168, 0, x_179); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_168); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_171; +goto block_112; } else { -lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_object* x_180; double x_181; double x_182; double x_183; double x_184; double x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_177 = lean_ctor_get(x_164, 0); -x_178 = lean_ctor_get(x_164, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_164); -x_179 = 0; -x_180 = lean_unsigned_to_nat(0u); -x_181 = l_Float_ofScientific(x_110, x_179, x_180); -lean_dec(x_110); -x_182 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; -x_183 = lean_float_div(x_181, x_182); -x_184 = l_Float_ofScientific(x_177, x_179, x_180); -lean_dec(x_177); -x_185 = lean_float_div(x_184, x_182); -x_186 = lean_box_float(x_183); -x_187 = lean_box_float(x_185); -x_188 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_188); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_178; -goto block_108; +lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_181 = lean_ctor_get(x_168, 0); +x_182 = lean_ctor_get(x_168, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_168); +x_183 = 0; +x_184 = lean_unsigned_to_nat(0u); +x_185 = l_Float_ofScientific(x_114, x_183, x_184); +lean_dec(x_114); +x_186 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; +x_187 = lean_float_div(x_185, x_186); +x_188 = l_Float_ofScientific(x_181, x_183, x_184); +lean_dec(x_181); +x_189 = lean_float_div(x_188, x_186); +x_190 = lean_box_float(x_187); +x_191 = lean_box_float(x_189); +x_192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_192); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_182; +goto block_112; } } else { -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_189 = lean_ctor_get(x_112, 0); -x_190 = lean_ctor_get(x_112, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_112); -x_191 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_191, 0, x_189); -x_192 = lean_io_mono_nanos_now(x_190); -x_193 = lean_ctor_get(x_192, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; lean_object* x_201; double x_202; double x_203; double x_204; double x_205; double x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_193 = lean_ctor_get(x_116, 0); +x_194 = lean_ctor_get(x_116, 1); lean_inc(x_194); -if (lean_is_exclusive(x_192)) { - lean_ctor_release(x_192, 0); - lean_ctor_release(x_192, 1); - x_195 = x_192; +lean_inc(x_193); +lean_dec(x_116); +x_195 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_195, 0, x_193); +x_196 = lean_io_mono_nanos_now(x_194); +x_197 = lean_ctor_get(x_196, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_196, 1); +lean_inc(x_198); +if (lean_is_exclusive(x_196)) { + lean_ctor_release(x_196, 0); + lean_ctor_release(x_196, 1); + x_199 = x_196; } else { - lean_dec_ref(x_192); - x_195 = lean_box(0); + lean_dec_ref(x_196); + x_199 = lean_box(0); } -x_196 = 0; -x_197 = lean_unsigned_to_nat(0u); -x_198 = l_Float_ofScientific(x_110, x_196, x_197); -lean_dec(x_110); -x_199 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; -x_200 = lean_float_div(x_198, x_199); -x_201 = l_Float_ofScientific(x_193, x_196, x_197); -lean_dec(x_193); -x_202 = lean_float_div(x_201, x_199); -x_203 = lean_box_float(x_200); -x_204 = lean_box_float(x_202); -if (lean_is_scalar(x_195)) { - x_205 = lean_alloc_ctor(0, 2, 0); +x_200 = 0; +x_201 = lean_unsigned_to_nat(0u); +x_202 = l_Float_ofScientific(x_114, x_200, x_201); +lean_dec(x_114); +x_203 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__5; +x_204 = lean_float_div(x_202, x_203); +x_205 = l_Float_ofScientific(x_197, x_200, x_201); +lean_dec(x_197); +x_206 = lean_float_div(x_205, x_203); +x_207 = lean_box_float(x_204); +x_208 = lean_box_float(x_206); +if (lean_is_scalar(x_199)) { + x_209 = lean_alloc_ctor(0, 2, 0); } else { - x_205 = x_195; + x_209 = x_199; } -lean_ctor_set(x_205, 0, x_203); -lean_ctor_set(x_205, 1, x_204); -x_206 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_206, 0, x_191); -lean_ctor_set(x_206, 1, x_205); -x_19 = x_206; -x_20 = x_194; -goto block_108; +lean_ctor_set(x_209, 0, x_207); +lean_ctor_set(x_209, 1, x_208); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_195); +lean_ctor_set(x_210, 1, x_209); +x_19 = x_210; +x_20 = x_198; +goto block_112; } } -block_108: +block_112: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_94; uint8_t x_95; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); x_22 = lean_ctor_get(x_19, 0); @@ -2798,17 +2766,33 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_21, 1); lean_inc(x_24); lean_dec(x_21); -x_94 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__2; -x_95 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_94); -if (x_95 == 0) +x_25 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__2; +x_26 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_25); +if (x_26 == 0) { -uint8_t x_96; -x_96 = 0; -x_25 = x_96; -goto block_93; +if (x_6 == 0) +{ +uint8_t x_92; +x_92 = 0; +x_27 = x_92; +goto block_91; } else { +lean_object* x_93; double x_94; double x_95; lean_object* x_96; +x_93 = lean_box(0); +x_94 = lean_unbox_float(x_23); +lean_dec(x_23); +x_95 = lean_unbox_float(x_24); +lean_dec(x_24); +x_96 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_94, x_95, x_5, x_93, x_9, x_10, x_11, x_12, x_20); +return x_96; +} +} +else +{ +if (x_6 == 0) +{ double x_97; double x_98; double x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; double x_104; double x_105; double x_106; uint8_t x_107; x_97 = lean_unbox_float(x_24); x_98 = lean_unbox_float(x_23); @@ -2822,859 +2806,871 @@ lean_dec(x_101); x_105 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__4; x_106 = lean_float_div(x_104, x_105); x_107 = lean_float_decLt(x_106, x_99); -x_25 = x_107; -goto block_93; +x_27 = x_107; +goto block_91; } -block_93: +else { -if (x_6 == 0) +lean_object* x_108; double x_109; double x_110; lean_object* x_111; +x_108 = lean_box(0); +x_109 = lean_unbox_float(x_23); +lean_dec(x_23); +x_110 = lean_unbox_float(x_24); +lean_dec(x_24); +x_111 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_109, x_110, x_5, x_108, x_9, x_10, x_11, x_12, x_20); +return x_111; +} +} +block_91: { -if (x_25 == 0) +if (x_27 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_24); lean_dec(x_23); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_26 = lean_st_ref_take(x_12, x_20); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -x_29 = lean_ctor_get(x_26, 1); +x_28 = lean_st_ref_take(x_12, x_20); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -lean_dec(x_26); -x_30 = !lean_is_exclusive(x_27); -if (x_30 == 0) -{ -lean_object* x_31; uint8_t x_32; -x_31 = lean_ctor_get(x_27, 3); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_28); +x_30 = lean_ctor_get(x_29, 3); +lean_inc(x_30); +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = !lean_is_exclusive(x_29); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_33 = lean_ctor_get(x_28, 0); -x_34 = l_Lean_PersistentArray_append___rarg(x_15, x_33); +lean_object* x_33; uint8_t x_34; +x_33 = lean_ctor_get(x_29, 3); lean_dec(x_33); -lean_ctor_set(x_28, 0, x_34); -x_35 = lean_st_ref_set(x_12, x_27, x_29); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); +x_34 = !lean_is_exclusive(x_30); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_ctor_get(x_30, 0); +x_36 = l_Lean_PersistentArray_append___rarg(x_15, x_35); lean_dec(x_35); -x_37 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7(x_22, x_9, x_10, x_11, x_12, x_36); +lean_ctor_set(x_30, 0, x_36); +x_37 = lean_st_ref_set(x_12, x_29, x_31); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +x_39 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7(x_22, x_9, x_10, x_11, x_12, x_38); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_37) == 0) +if (lean_obj_tag(x_39) == 0) { -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -return x_37; +return x_39; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_ctor_get(x_37, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_37); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_39); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } else { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_37); -if (x_42 == 0) +uint8_t x_44; +x_44 = !lean_is_exclusive(x_39); +if (x_44 == 0) { -return x_37; +return x_39; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_37, 0); -x_44 = lean_ctor_get(x_37, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_37); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_39, 0); +x_46 = lean_ctor_get(x_39, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_39); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } } else { -uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_47 = lean_ctor_get(x_28, 0); -lean_inc(x_47); -lean_dec(x_28); -x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_47); -lean_dec(x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); -lean_ctor_set(x_27, 3, x_49); -x_50 = lean_st_ref_set(x_12, x_27, x_29); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -lean_dec(x_50); -x_52 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7(x_22, x_9, x_10, x_11, x_12, x_51); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_22); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); +uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_49 = lean_ctor_get(x_30, 0); +lean_inc(x_49); +lean_dec(x_30); +x_50 = l_Lean_PersistentArray_append___rarg(x_15, x_49); +lean_dec(x_49); +x_51 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); +lean_ctor_set(x_29, 3, x_51); +x_52 = lean_st_ref_set(x_12, x_29, x_31); +x_53 = lean_ctor_get(x_52, 1); lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_55 = x_52; +lean_dec(x_52); +x_54 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7(x_22, x_9, x_10, x_11, x_12, x_53); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_22); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; } else { - lean_dec_ref(x_52); - x_55 = lean_box(0); + lean_dec_ref(x_54); + x_57 = lean_box(0); } -if (lean_is_scalar(x_55)) { - x_56 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_57)) { + x_58 = lean_alloc_ctor(0, 2, 0); } else { - x_56 = x_55; + x_58 = x_57; } -lean_ctor_set(x_56, 0, x_53); -lean_ctor_set(x_56, 1, x_54); -return x_56; +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_56); +return x_58; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_52, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_52, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_59 = x_52; +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_54, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_54, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_61 = x_54; } else { - lean_dec_ref(x_52); - x_59 = lean_box(0); + lean_dec_ref(x_54); + x_61 = lean_box(0); } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(1, 2, 0); } else { - x_60 = x_59; + x_62 = x_61; } -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_58); -return x_60; +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; } } } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_61 = lean_ctor_get(x_27, 0); -x_62 = lean_ctor_get(x_27, 1); -x_63 = lean_ctor_get(x_27, 2); -x_64 = lean_ctor_get(x_27, 4); -x_65 = lean_ctor_get(x_27, 5); -x_66 = lean_ctor_get(x_27, 6); -x_67 = lean_ctor_get(x_27, 7); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_63 = lean_ctor_get(x_29, 0); +x_64 = lean_ctor_get(x_29, 1); +x_65 = lean_ctor_get(x_29, 2); +x_66 = lean_ctor_get(x_29, 4); +x_67 = lean_ctor_get(x_29, 5); +x_68 = lean_ctor_get(x_29, 6); +x_69 = lean_ctor_get(x_29, 7); +lean_inc(x_69); +lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_27); -x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_69 = lean_ctor_get(x_28, 0); -lean_inc(x_69); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - x_70 = x_28; +lean_dec(x_29); +x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_71 = lean_ctor_get(x_30, 0); +lean_inc(x_71); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + x_72 = x_30; } else { - lean_dec_ref(x_28); - x_70 = lean_box(0); + lean_dec_ref(x_30); + x_72 = lean_box(0); } -x_71 = l_Lean_PersistentArray_append___rarg(x_15, x_69); -lean_dec(x_69); -if (lean_is_scalar(x_70)) { - x_72 = lean_alloc_ctor(0, 1, 8); +x_73 = l_Lean_PersistentArray_append___rarg(x_15, x_71); +lean_dec(x_71); +if (lean_is_scalar(x_72)) { + x_74 = lean_alloc_ctor(0, 1, 8); } else { - x_72 = x_70; + x_74 = x_72; } -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); -x_73 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_73, 0, x_61); -lean_ctor_set(x_73, 1, x_62); -lean_ctor_set(x_73, 2, x_63); -lean_ctor_set(x_73, 3, x_72); -lean_ctor_set(x_73, 4, x_64); -lean_ctor_set(x_73, 5, x_65); -lean_ctor_set(x_73, 6, x_66); -lean_ctor_set(x_73, 7, x_67); -x_74 = lean_st_ref_set(x_12, x_73, x_29); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_76 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7(x_22, x_9, x_10, x_11, x_12, x_75); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); +x_75 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_64); +lean_ctor_set(x_75, 2, x_65); +lean_ctor_set(x_75, 3, x_74); +lean_ctor_set(x_75, 4, x_66); +lean_ctor_set(x_75, 5, x_67); +lean_ctor_set(x_75, 6, x_68); +lean_ctor_set(x_75, 7, x_69); +x_76 = lean_st_ref_set(x_12, x_75, x_31); +x_77 = lean_ctor_get(x_76, 1); +lean_inc(x_77); +lean_dec(x_76); +x_78 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7(x_22, x_9, x_10, x_11, x_12, x_77); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_76) == 0) +if (lean_obj_tag(x_78) == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_76, 0); -lean_inc(x_77); -x_78 = lean_ctor_get(x_76, 1); -lean_inc(x_78); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_79 = x_76; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_81 = x_78; } else { - lean_dec_ref(x_76); - x_79 = lean_box(0); + lean_dec_ref(x_78); + x_81 = lean_box(0); } -if (lean_is_scalar(x_79)) { - x_80 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(0, 2, 0); } else { - x_80 = x_79; + x_82 = x_81; } -lean_ctor_set(x_80, 0, x_77); -lean_ctor_set(x_80, 1, x_78); -return x_80; +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_80); +return x_82; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_81 = lean_ctor_get(x_76, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_76, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_83 = x_76; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_83 = lean_ctor_get(x_78, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_78, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_85 = x_78; } else { - lean_dec_ref(x_76); - x_83 = lean_box(0); + lean_dec_ref(x_78); + x_85 = lean_box(0); } -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); } else { - x_84 = x_83; + x_86 = x_85; } -lean_ctor_set(x_84, 0, x_81); -lean_ctor_set(x_84, 1, x_82); -return x_84; +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; } } } else { -lean_object* x_85; double x_86; double x_87; lean_object* x_88; -x_85 = lean_box(0); -x_86 = lean_unbox_float(x_23); +lean_object* x_87; double x_88; double x_89; lean_object* x_90; +x_87 = lean_box(0); +x_88 = lean_unbox_float(x_23); lean_dec(x_23); -x_87 = lean_unbox_float(x_24); +x_89 = lean_unbox_float(x_24); lean_dec(x_24); -x_88 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_86, x_87, x_5, x_85, x_9, x_10, x_11, x_12, x_20); -return x_88; -} -} -else -{ -lean_object* x_89; double x_90; double x_91; lean_object* x_92; -x_89 = lean_box(0); -x_90 = lean_unbox_float(x_23); -lean_dec(x_23); -x_91 = lean_unbox_float(x_24); -lean_dec(x_24); -x_92 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_20); -return x_92; +x_90 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_20); +return x_90; } } } } else { -lean_object* x_207; lean_object* x_208; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_16); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_211; lean_object* x_212; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_16); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_207 = x_336; -x_208 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_211 = x_344; +x_212 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_207 = x_374; -x_208 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_282; uint8_t x_283; -x_209 = lean_ctor_get(x_207, 1); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 0); -lean_inc(x_210); -lean_dec(x_207); -x_211 = lean_ctor_get(x_209, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 1); -lean_inc(x_212); -lean_dec(x_209); -x_282 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_213 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_212); -x_286 = lean_unbox_float(x_211); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_213 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_211 = x_382; +x_212 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; uint8_t x_219; +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 0); +lean_inc(x_214); +lean_dec(x_211); +x_215 = lean_ctor_get(x_213, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 1); +lean_inc(x_216); +lean_dec(x_213); +x_217 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__2; +x_218 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_217); +if (x_218 == 0) { if (x_6 == 0) { -if (x_213 == 0) +uint8_t x_284; +x_284 = 0; +x_219 = x_284; +goto block_283; +} +else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; -lean_dec(x_212); -lean_dec(x_211); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_215); +lean_dec(x_215); +x_287 = lean_unbox_float(x_216); +lean_dec(x_216); +x_288 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_212); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_216); +x_290 = lean_unbox_float(x_215); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_219 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_215); +lean_dec(x_215); +x_300 = lean_unbox_float(x_216); +lean_dec(x_216); +x_301 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_212); +return x_301; +} +} +block_283: +{ +if (x_219 == 0) +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; +lean_dec(x_216); +lean_dec(x_215); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_214 = lean_st_ref_take(x_12, x_208); -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_215, 3); -lean_inc(x_216); -x_217 = lean_ctor_get(x_214, 1); -lean_inc(x_217); -lean_dec(x_214); -x_218 = !lean_is_exclusive(x_215); -if (x_218 == 0) +x_220 = lean_st_ref_take(x_12, x_212); +x_221 = lean_ctor_get(x_220, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_221, 3); +lean_inc(x_222); +x_223 = lean_ctor_get(x_220, 1); +lean_inc(x_223); +lean_dec(x_220); +x_224 = !lean_is_exclusive(x_221); +if (x_224 == 0) { -lean_object* x_219; uint8_t x_220; -x_219 = lean_ctor_get(x_215, 3); -lean_dec(x_219); -x_220 = !lean_is_exclusive(x_216); -if (x_220 == 0) -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_221 = lean_ctor_get(x_216, 0); -x_222 = l_Lean_PersistentArray_append___rarg(x_15, x_221); -lean_dec(x_221); -lean_ctor_set(x_216, 0, x_222); -x_223 = lean_st_ref_set(x_12, x_215, x_217); -x_224 = lean_ctor_get(x_223, 1); -lean_inc(x_224); -lean_dec(x_223); -x_225 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7(x_210, x_9, x_10, x_11, x_12, x_224); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_225) == 0) -{ -uint8_t x_226; -x_226 = !lean_is_exclusive(x_225); +lean_object* x_225; uint8_t x_226; +x_225 = lean_ctor_get(x_221, 3); +lean_dec(x_225); +x_226 = !lean_is_exclusive(x_222); if (x_226 == 0) { -return x_225; -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; -x_227 = lean_ctor_get(x_225, 0); -x_228 = lean_ctor_get(x_225, 1); -lean_inc(x_228); -lean_inc(x_227); -lean_dec(x_225); -x_229 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_229, 0, x_227); -lean_ctor_set(x_229, 1, x_228); -return x_229; -} -} -else -{ -uint8_t x_230; -x_230 = !lean_is_exclusive(x_225); -if (x_230 == 0) -{ -return x_225; -} -else -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_225, 0); -x_232 = lean_ctor_get(x_225, 1); -lean_inc(x_232); -lean_inc(x_231); -lean_dec(x_225); -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_231); -lean_ctor_set(x_233, 1, x_232); -return x_233; -} -} -} -else -{ -uint64_t x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_234 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_235 = lean_ctor_get(x_216, 0); -lean_inc(x_235); -lean_dec(x_216); -x_236 = l_Lean_PersistentArray_append___rarg(x_15, x_235); -lean_dec(x_235); -x_237 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_237, 0, x_236); -lean_ctor_set_uint64(x_237, sizeof(void*)*1, x_234); -lean_ctor_set(x_215, 3, x_237); -x_238 = lean_st_ref_set(x_12, x_215, x_217); -x_239 = lean_ctor_get(x_238, 1); -lean_inc(x_239); -lean_dec(x_238); -x_240 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7(x_210, x_9, x_10, x_11, x_12, x_239); +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_227 = lean_ctor_get(x_222, 0); +x_228 = l_Lean_PersistentArray_append___rarg(x_15, x_227); +lean_dec(x_227); +lean_ctor_set(x_222, 0, x_228); +x_229 = lean_st_ref_set(x_12, x_221, x_223); +x_230 = lean_ctor_get(x_229, 1); +lean_inc(x_230); +lean_dec(x_229); +x_231 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7(x_214, x_9, x_10, x_11, x_12, x_230); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_240) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_231) == 0) { -lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; -x_241 = lean_ctor_get(x_240, 0); +uint8_t x_232; +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +return x_231; +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_231, 0); +x_234 = lean_ctor_get(x_231, 1); +lean_inc(x_234); +lean_inc(x_233); +lean_dec(x_231); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +return x_235; +} +} +else +{ +uint8_t x_236; +x_236 = !lean_is_exclusive(x_231); +if (x_236 == 0) +{ +return x_231; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_231, 0); +x_238 = lean_ctor_get(x_231, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_231); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} +} +} +else +{ +uint64_t x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_240 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_241 = lean_ctor_get(x_222, 0); lean_inc(x_241); -x_242 = lean_ctor_get(x_240, 1); -lean_inc(x_242); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_243 = x_240; -} else { - lean_dec_ref(x_240); - x_243 = lean_box(0); -} -if (lean_is_scalar(x_243)) { - x_244 = lean_alloc_ctor(0, 2, 0); -} else { - x_244 = x_243; -} -lean_ctor_set(x_244, 0, x_241); -lean_ctor_set(x_244, 1, x_242); -return x_244; -} -else -{ -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_245 = lean_ctor_get(x_240, 0); +lean_dec(x_222); +x_242 = l_Lean_PersistentArray_append___rarg(x_15, x_241); +lean_dec(x_241); +x_243 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set_uint64(x_243, sizeof(void*)*1, x_240); +lean_ctor_set(x_221, 3, x_243); +x_244 = lean_st_ref_set(x_12, x_221, x_223); +x_245 = lean_ctor_get(x_244, 1); lean_inc(x_245); -x_246 = lean_ctor_get(x_240, 1); -lean_inc(x_246); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_247 = x_240; -} else { - lean_dec_ref(x_240); - x_247 = lean_box(0); -} -if (lean_is_scalar(x_247)) { - x_248 = lean_alloc_ctor(1, 2, 0); -} else { - x_248 = x_247; -} -lean_ctor_set(x_248, 0, x_245); -lean_ctor_set(x_248, 1, x_246); -return x_248; -} -} -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_249 = lean_ctor_get(x_215, 0); -x_250 = lean_ctor_get(x_215, 1); -x_251 = lean_ctor_get(x_215, 2); -x_252 = lean_ctor_get(x_215, 4); -x_253 = lean_ctor_get(x_215, 5); -x_254 = lean_ctor_get(x_215, 6); -x_255 = lean_ctor_get(x_215, 7); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_dec(x_215); -x_256 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_257 = lean_ctor_get(x_216, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_216)) { - lean_ctor_release(x_216, 0); - x_258 = x_216; -} else { - lean_dec_ref(x_216); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_15, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_261, 0, x_249); -lean_ctor_set(x_261, 1, x_250); -lean_ctor_set(x_261, 2, x_251); -lean_ctor_set(x_261, 3, x_260); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_255); -x_262 = lean_st_ref_set(x_12, x_261, x_217); -x_263 = lean_ctor_get(x_262, 1); -lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7(x_210, x_9, x_10, x_11, x_12, x_263); +lean_dec(x_244); +x_246 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7(x_214, x_9, x_10, x_11, x_12, x_245); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_246) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_247 = lean_ctor_get(x_246, 0); +lean_inc(x_247); +x_248 = lean_ctor_get(x_246, 1); +lean_inc(x_248); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_249 = x_246; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_246); + x_249 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_249)) { + x_250 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_250 = x_249; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_250, 0, x_247); +lean_ctor_set(x_250, 1, x_248); +return x_250; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_251 = lean_ctor_get(x_246, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_246, 1); +lean_inc(x_252); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_253 = x_246; +} else { + lean_dec_ref(x_246); + x_253 = lean_box(0); +} +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(1, 2, 0); +} else { + x_254 = x_253; +} +lean_ctor_set(x_254, 0, x_251); +lean_ctor_set(x_254, 1, x_252); +return x_254; +} +} +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_255 = lean_ctor_get(x_221, 0); +x_256 = lean_ctor_get(x_221, 1); +x_257 = lean_ctor_get(x_221, 2); +x_258 = lean_ctor_get(x_221, 4); +x_259 = lean_ctor_get(x_221, 5); +x_260 = lean_ctor_get(x_221, 6); +x_261 = lean_ctor_get(x_221, 7); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_221); +x_262 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_263 = lean_ctor_get(x_222, 0); +lean_inc(x_263); +if (lean_is_exclusive(x_222)) { + lean_ctor_release(x_222, 0); + x_264 = x_222; +} else { + lean_dec_ref(x_222); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_15, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_267, 0, x_255); +lean_ctor_set(x_267, 1, x_256); +lean_ctor_set(x_267, 2, x_257); +lean_ctor_set(x_267, 3, x_266); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_261); +x_268 = lean_st_ref_set(x_12, x_267, x_223); +x_269 = lean_ctor_get(x_268, 1); lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__7(x_214, x_9, x_10, x_11, x_12, x_269); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_214); +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_272 = x_271; + x_274 = x_273; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; +} else { + lean_dec_ref(x_270); + x_277 = lean_box(0); +} +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); +} else { + x_278 = x_277; +} +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_211); -lean_dec(x_211); -x_275 = lean_unbox_float(x_212); -lean_dec(x_212); -x_276 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_274, x_275, x_5, x_273, x_9, x_10, x_11, x_12, x_208); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_211); -lean_dec(x_211); -x_279 = lean_unbox_float(x_212); -lean_dec(x_212); -x_280 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_278, x_279, x_5, x_277, x_9, x_10, x_11, x_12, x_208); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_215); +lean_dec(x_215); +x_281 = lean_unbox_float(x_216); +lean_dec(x_216); +x_282 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_212); +return x_282; } } } @@ -5039,43 +5035,41 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_8); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); lean_dec(x_8); x_19 = lean_unbox_float(x_9); lean_dec(x_9); -x_20 = lean_unbox_float(x_10); -lean_dec(x_10); -x_21 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_18, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_15); -lean_dec(x_13); +x_20 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2(x_1, x_16, x_3, x_4, x_5, x_6, x_17, x_18, x_19, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_14); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_21; +return x_20; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_7); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); lean_dec(x_7); x_19 = lean_unbox_float(x_8); lean_dec(x_8); -x_20 = lean_unbox_float(x_9); -lean_dec(x_9); -x_21 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_11); -lean_dec(x_6); -return x_21; +x_20 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3(x_1, x_16, x_3, x_4, x_5, x_17, x_18, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +return x_20; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -5128,43 +5122,41 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_8); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); lean_dec(x_8); x_19 = lean_unbox_float(x_9); lean_dec(x_9); -x_20 = lean_unbox_float(x_10); -lean_dec(x_10); -x_21 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_18, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_15); -lean_dec(x_13); +x_20 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__2(x_1, x_16, x_3, x_4, x_5, x_6, x_17, x_18, x_19, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_14); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_21; +return x_20; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_7); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); lean_dec(x_7); x_19 = lean_unbox_float(x_8); lean_dec(x_8); -x_20 = lean_unbox_float(x_9); -lean_dec(x_9); -x_21 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__3(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_11); -lean_dec(x_6); -return x_21; +x_20 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__3(x_1, x_16, x_3, x_4, x_5, x_17, x_18, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +return x_20; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__6___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -7140,8 +7132,6 @@ lean_mark_persistent(l___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_ l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg___closed__1 = _init_l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg___closed__1(); lean_mark_persistent(l_List_mapM_loop___at_Lean_Meta_Tactic_Backtrack_Backtrack_tryAllM___spec__1___rarg___closed__1); l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2___closed__1(); -l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2___closed__2 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2___closed__2(); -lean_mark_persistent(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__2___closed__2); l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__1); l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_Backtrack_0__Lean_Meta_Tactic_Backtrack_Backtrack_run___spec__3___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Meta/Tactic/FunInd.c b/stage0/stdlib/Lean/Meta/Tactic/FunInd.c index 2b4abd586c..d5a357eb9c 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/FunInd.c +++ b/stage0/stdlib/Lean/Meta/Tactic/FunInd.c @@ -47,7 +47,6 @@ LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_M_localM___rarg(lean_object*, lean static lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lambda__28___closed__1; LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_Tactic_FunInd_cleanupAfter_allHeqToEq___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instMonadExceptOfExceptionCoreM; -extern lean_object* l_Lean_profiler; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Tactic_FunInd_foldAndCollect___spec__25___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lambda__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_withAppAux___at_Lean_Tactic_FunInd_unpackMutualInduction___spec__1___lambda__2___closed__4; @@ -345,7 +344,7 @@ static lean_object* l_panic___at_Lean_Tactic_FunInd_withLetDecls___spec__1___rar static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction___lambda__13___closed__6; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Tactic_FunInd_deriveInductionStructural___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Tactic_FunInd_buildInductionBody___spec__20___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_CollectLevelParams_main(lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lambda__18___closed__4; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -622,7 +621,7 @@ static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction___lambda__13___clo LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction___lambda__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at_Lean_Tactic_FunInd_unpackMutualInduction___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Tactic_FunInd_deriveInductionStructural___spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_inferType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_instantiateMVarsIfMVarApp___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_levelZero; @@ -781,7 +780,7 @@ LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lambda__8(lean_ob LEAN_EXPORT lean_object* l_Lean_Meta_matchMatcherApp_x3f___at_Lean_Tactic_FunInd_buildInductionBody___spec__4___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkConstWithLevelParams___at_Lean_Meta_mkSimpCongrTheorem___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofConstName(lean_object*, uint8_t); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lambda__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_append___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallBoundedTelescope___at_Lean_Tactic_FunInd_buildInductionBody___spec__15___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -993,7 +992,7 @@ lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Tactic_FunInd_abstractIndependentMVars___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lambda__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural___lambda__5___closed__2; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_maskArray___rarg(lean_object*, lean_object*); lean_object* l_Lean_mkFreshFVarId___at___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAuxAux_process___spec__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1056,7 +1055,6 @@ LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lambda__15(le LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Tactic_FunInd_deriveInductionStructural___spec__11___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_Lean_Tactic_FunInd_foldAndCollect___spec__13(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Tactic_FunInd_buildInductionBody___spec__18___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2___closed__2; lean_object* l_Lean_mkArrow(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Tactic_FunInd_deriveInductionStructural___spec__19___lambda__3___closed__3; static lean_object* l_Lean_Tactic_FunInd_buildInductionBody___lambda__1___closed__5; @@ -1065,7 +1063,7 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Tactic_FunInd_deriveIn lean_object* l_Lean_Meta_instantiateMVarsIfMVarApp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Tactic_FunInd_buildInductionBody___spec__45(lean_object*, size_t, size_t, lean_object*); lean_object* l_Array_back_x21___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); lean_object* l_Array_ofSubarray___rarg(lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Tactic_FunInd_buildInductionBody___spec__33___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1171,7 +1169,7 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Tactic_FunInd_foldAndCollec static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction___lambda__3___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at_Lean_Tactic_FunInd_deriveUnaryInduction___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lambda__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction___lambda__8___closed__1; static lean_object* l_Lean_Tactic_FunInd_cleanPackedArgs___lambda__4___closed__4; static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Tactic_FunInd_deriveInductionStructural___spec__16___lambda__2___closed__4; @@ -8173,69 +8171,36 @@ x_3 = l_Float_ofScientific(x_1, x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2___closed__2() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_17 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2___closed__1; +x_18 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_3); +lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); +lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); +lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); +x_19 = lean_box(0); +x_20 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__1(x_4, x_5, x_10, x_6, x_18, x_19, x_11, x_12, x_13, x_14, x_15, x_16); +return x_20; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { -_start: +else { -double x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; -x_18 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_19 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_19, 0, x_1); -lean_ctor_set(x_19, 1, x_3); -lean_ctor_set_float(x_19, sizeof(void*)*2, x_18); -lean_ctor_set_float(x_19, sizeof(void*)*2 + 8, x_18); -lean_ctor_set_uint8(x_19, sizeof(void*)*2 + 16, x_2); -x_20 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2___closed__2; -x_21 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_20); -if (x_21 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_22; lean_object* x_23; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_21, 0, x_1); +lean_ctor_set(x_21, 1, x_3); +lean_ctor_set_float(x_21, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_21, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_21, sizeof(void*)*2 + 16, x_2); x_22 = lean_box(0); -x_23 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__1(x_4, x_5, x_11, x_6, x_19, x_22, x_12, x_13, x_14, x_15, x_16, x_17); +x_23 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__1(x_4, x_5, x_10, x_6, x_21, x_22, x_11, x_12, x_13, x_14, x_15, x_16); return x_23; } -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -lean_dec(x_19); -x_24 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_24, 0, x_1); -lean_ctor_set(x_24, 1, x_3); -lean_ctor_set_float(x_24, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_24, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_24, sizeof(void*)*2 + 16, x_2); -x_25 = lean_box(0); -x_26 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__1(x_4, x_5, x_11, x_6, x_24, x_25, x_12, x_13, x_14, x_15, x_16, x_17); -return x_26; -} -} -else -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; -lean_dec(x_19); -x_27 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_27, 0, x_1); -lean_ctor_set(x_27, 1, x_3); -lean_ctor_set_float(x_27, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_27, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_27, sizeof(void*)*2 + 16, x_2); -x_28 = lean_box(0); -x_29 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__1(x_4, x_5, x_11, x_6, x_27, x_28, x_12, x_13, x_14, x_15, x_16, x_17); -return x_29; -} } } static lean_object* _init_l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3___closed__1() { @@ -8255,53 +8220,53 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -lean_object* x_18; lean_object* x_19; -x_18 = lean_ctor_get(x_15, 5); -lean_inc(x_18); -lean_inc(x_16); +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_14, 5); +lean_inc(x_17); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_19 = lean_apply_7(x_10, x_5, x_12, x_13, x_14, x_15, x_16, x_17); -if (lean_obj_tag(x_19) == 0) +x_18 = lean_apply_7(x_9, x_5, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_18) == 0) { -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -lean_dec(x_12); -x_20 = lean_ctor_get(x_19, 0); +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +lean_dec(x_11); +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); lean_inc(x_20); -x_21 = lean_ctor_get(x_19, 1); +lean_dec(x_18); +x_21 = lean_ctor_get(x_19, 0); lean_inc(x_21); -lean_dec(x_19); -x_22 = lean_ctor_get(x_20, 0); +x_22 = lean_ctor_get(x_19, 1); lean_inc(x_22); -x_23 = lean_ctor_get(x_20, 1); -lean_inc(x_23); -lean_dec(x_20); -x_24 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2(x_1, x_2, x_3, x_4, x_18, x_5, x_6, x_7, x_8, x_9, x_22, x_23, x_13, x_14, x_15, x_16, x_21); -lean_dec(x_16); -lean_dec(x_14); +lean_dec(x_19); +x_23 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_21, x_22, x_12, x_13, x_14, x_15, x_20); +lean_dec(x_15); lean_dec(x_13); +lean_dec(x_12); lean_dec(x_5); -return x_24; +return x_23; } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_19, 1); -lean_inc(x_25); -lean_dec(x_19); -x_26 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3___closed__2; -x_27 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2(x_1, x_2, x_3, x_4, x_18, x_5, x_6, x_7, x_8, x_9, x_26, x_12, x_13, x_14, x_15, x_16, x_25); -lean_dec(x_16); -lean_dec(x_14); +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_18, 1); +lean_inc(x_24); +lean_dec(x_18); +x_25 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3___closed__2; +x_26 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_25, x_11, x_12, x_13, x_14, x_15, x_24); +lean_dec(x_15); lean_dec(x_13); +lean_dec(x_12); lean_dec(x_5); -return x_27; +return x_26; } } } @@ -8371,272 +8336,272 @@ x_21 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___ x_22 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_21); if (x_22 == 0) { -lean_object* x_23; lean_object* x_24; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_138 = lean_io_mono_nanos_now(x_17); -x_139 = lean_ctor_get(x_138, 0); -lean_inc(x_139); -x_140 = lean_ctor_get(x_138, 1); -lean_inc(x_140); -lean_dec(x_138); +lean_object* x_23; lean_object* x_24; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; +x_146 = lean_io_mono_nanos_now(x_17); +x_147 = lean_ctor_get(x_146, 0); +lean_inc(x_147); +x_148 = lean_ctor_get(x_146, 1); +lean_inc(x_148); +lean_dec(x_146); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_20); -x_141 = lean_apply_6(x_7, x_20, x_10, x_11, x_12, x_13, x_140); -if (lean_obj_tag(x_141) == 0) +x_149 = lean_apply_6(x_7, x_20, x_10, x_11, x_12, x_13, x_148); +if (lean_obj_tag(x_149) == 0) { -lean_object* x_142; lean_object* x_143; uint8_t x_144; +lean_object* x_150; lean_object* x_151; uint8_t x_152; lean_dec(x_20); -x_142 = lean_ctor_get(x_141, 0); -lean_inc(x_142); -x_143 = lean_ctor_get(x_141, 1); -lean_inc(x_143); -lean_dec(x_141); -x_144 = !lean_is_exclusive(x_142); -if (x_144 == 0) +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +lean_dec(x_149); +x_152 = !lean_is_exclusive(x_150); +if (x_152 == 0) { -lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; -x_145 = lean_ctor_get(x_142, 0); -x_146 = lean_ctor_get(x_142, 1); -x_147 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_147, 0, x_145); -x_148 = lean_io_mono_nanos_now(x_143); -x_149 = !lean_is_exclusive(x_148); -if (x_149 == 0) +lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; uint8_t x_157; +x_153 = lean_ctor_get(x_150, 0); +x_154 = lean_ctor_get(x_150, 1); +x_155 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_155, 0, x_153); +x_156 = lean_io_mono_nanos_now(x_151); +x_157 = !lean_is_exclusive(x_156); +if (x_157 == 0) { -lean_object* x_150; lean_object* x_151; uint8_t x_152; lean_object* x_153; double x_154; double x_155; double x_156; double x_157; double x_158; lean_object* x_159; lean_object* x_160; -x_150 = lean_ctor_get(x_148, 0); -x_151 = lean_ctor_get(x_148, 1); -x_152 = 0; -x_153 = lean_unsigned_to_nat(0u); -x_154 = l_Float_ofScientific(x_139, x_152, x_153); -lean_dec(x_139); -x_155 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; -x_156 = lean_float_div(x_154, x_155); -x_157 = l_Float_ofScientific(x_150, x_152, x_153); +lean_object* x_158; lean_object* x_159; uint8_t x_160; lean_object* x_161; double x_162; double x_163; double x_164; double x_165; double x_166; lean_object* x_167; lean_object* x_168; +x_158 = lean_ctor_get(x_156, 0); +x_159 = lean_ctor_get(x_156, 1); +x_160 = 0; +x_161 = lean_unsigned_to_nat(0u); +x_162 = l_Float_ofScientific(x_147, x_160, x_161); +lean_dec(x_147); +x_163 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; +x_164 = lean_float_div(x_162, x_163); +x_165 = l_Float_ofScientific(x_158, x_160, x_161); +lean_dec(x_158); +x_166 = lean_float_div(x_165, x_163); +x_167 = lean_box_float(x_164); +x_168 = lean_box_float(x_166); +lean_ctor_set(x_150, 1, x_168); +lean_ctor_set(x_150, 0, x_167); +lean_ctor_set(x_16, 1, x_150); +lean_ctor_set(x_16, 0, x_155); +lean_ctor_set(x_156, 1, x_154); +lean_ctor_set(x_156, 0, x_16); +x_23 = x_156; +x_24 = x_159; +goto block_145; +} +else +{ +lean_object* x_169; lean_object* x_170; uint8_t x_171; lean_object* x_172; double x_173; double x_174; double x_175; double x_176; double x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; +x_169 = lean_ctor_get(x_156, 0); +x_170 = lean_ctor_get(x_156, 1); +lean_inc(x_170); +lean_inc(x_169); +lean_dec(x_156); +x_171 = 0; +x_172 = lean_unsigned_to_nat(0u); +x_173 = l_Float_ofScientific(x_147, x_171, x_172); +lean_dec(x_147); +x_174 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; +x_175 = lean_float_div(x_173, x_174); +x_176 = l_Float_ofScientific(x_169, x_171, x_172); +lean_dec(x_169); +x_177 = lean_float_div(x_176, x_174); +x_178 = lean_box_float(x_175); +x_179 = lean_box_float(x_177); +lean_ctor_set(x_150, 1, x_179); +lean_ctor_set(x_150, 0, x_178); +lean_ctor_set(x_16, 1, x_150); +lean_ctor_set(x_16, 0, x_155); +x_180 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_180, 0, x_16); +lean_ctor_set(x_180, 1, x_154); +x_23 = x_180; +x_24 = x_170; +goto block_145; +} +} +else +{ +lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; uint8_t x_188; lean_object* x_189; double x_190; double x_191; double x_192; double x_193; double x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; +x_181 = lean_ctor_get(x_150, 0); +x_182 = lean_ctor_get(x_150, 1); +lean_inc(x_182); +lean_inc(x_181); lean_dec(x_150); -x_158 = lean_float_div(x_157, x_155); -x_159 = lean_box_float(x_156); -x_160 = lean_box_float(x_158); -lean_ctor_set(x_142, 1, x_160); -lean_ctor_set(x_142, 0, x_159); -lean_ctor_set(x_16, 1, x_142); -lean_ctor_set(x_16, 0, x_147); -lean_ctor_set(x_148, 1, x_146); -lean_ctor_set(x_148, 0, x_16); -x_23 = x_148; -x_24 = x_151; -goto block_137; -} -else -{ -lean_object* x_161; lean_object* x_162; uint8_t x_163; lean_object* x_164; double x_165; double x_166; double x_167; double x_168; double x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; -x_161 = lean_ctor_get(x_148, 0); -x_162 = lean_ctor_get(x_148, 1); -lean_inc(x_162); -lean_inc(x_161); -lean_dec(x_148); -x_163 = 0; -x_164 = lean_unsigned_to_nat(0u); -x_165 = l_Float_ofScientific(x_139, x_163, x_164); -lean_dec(x_139); -x_166 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; -x_167 = lean_float_div(x_165, x_166); -x_168 = l_Float_ofScientific(x_161, x_163, x_164); -lean_dec(x_161); -x_169 = lean_float_div(x_168, x_166); -x_170 = lean_box_float(x_167); -x_171 = lean_box_float(x_169); -lean_ctor_set(x_142, 1, x_171); -lean_ctor_set(x_142, 0, x_170); -lean_ctor_set(x_16, 1, x_142); -lean_ctor_set(x_16, 0, x_147); -x_172 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_172, 0, x_16); -lean_ctor_set(x_172, 1, x_146); -x_23 = x_172; -x_24 = x_162; -goto block_137; -} -} -else -{ -lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; uint8_t x_180; lean_object* x_181; double x_182; double x_183; double x_184; double x_185; double x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; -x_173 = lean_ctor_get(x_142, 0); -x_174 = lean_ctor_get(x_142, 1); -lean_inc(x_174); -lean_inc(x_173); -lean_dec(x_142); -x_175 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_175, 0, x_173); -x_176 = lean_io_mono_nanos_now(x_143); -x_177 = lean_ctor_get(x_176, 0); -lean_inc(x_177); -x_178 = lean_ctor_get(x_176, 1); -lean_inc(x_178); -if (lean_is_exclusive(x_176)) { - lean_ctor_release(x_176, 0); - lean_ctor_release(x_176, 1); - x_179 = x_176; +x_183 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_183, 0, x_181); +x_184 = lean_io_mono_nanos_now(x_151); +x_185 = lean_ctor_get(x_184, 0); +lean_inc(x_185); +x_186 = lean_ctor_get(x_184, 1); +lean_inc(x_186); +if (lean_is_exclusive(x_184)) { + lean_ctor_release(x_184, 0); + lean_ctor_release(x_184, 1); + x_187 = x_184; } else { - lean_dec_ref(x_176); - x_179 = lean_box(0); + lean_dec_ref(x_184); + x_187 = lean_box(0); } -x_180 = 0; -x_181 = lean_unsigned_to_nat(0u); -x_182 = l_Float_ofScientific(x_139, x_180, x_181); -lean_dec(x_139); -x_183 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; -x_184 = lean_float_div(x_182, x_183); -x_185 = l_Float_ofScientific(x_177, x_180, x_181); -lean_dec(x_177); -x_186 = lean_float_div(x_185, x_183); -x_187 = lean_box_float(x_184); -x_188 = lean_box_float(x_186); -x_189 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_189, 0, x_187); -lean_ctor_set(x_189, 1, x_188); -lean_ctor_set(x_16, 1, x_189); -lean_ctor_set(x_16, 0, x_175); -if (lean_is_scalar(x_179)) { - x_190 = lean_alloc_ctor(0, 2, 0); +x_188 = 0; +x_189 = lean_unsigned_to_nat(0u); +x_190 = l_Float_ofScientific(x_147, x_188, x_189); +lean_dec(x_147); +x_191 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; +x_192 = lean_float_div(x_190, x_191); +x_193 = l_Float_ofScientific(x_185, x_188, x_189); +lean_dec(x_185); +x_194 = lean_float_div(x_193, x_191); +x_195 = lean_box_float(x_192); +x_196 = lean_box_float(x_194); +x_197 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_197, 0, x_195); +lean_ctor_set(x_197, 1, x_196); +lean_ctor_set(x_16, 1, x_197); +lean_ctor_set(x_16, 0, x_183); +if (lean_is_scalar(x_187)) { + x_198 = lean_alloc_ctor(0, 2, 0); } else { - x_190 = x_179; + x_198 = x_187; } -lean_ctor_set(x_190, 0, x_16); -lean_ctor_set(x_190, 1, x_174); -x_23 = x_190; -x_24 = x_178; -goto block_137; +lean_ctor_set(x_198, 0, x_16); +lean_ctor_set(x_198, 1, x_182); +x_23 = x_198; +x_24 = x_186; +goto block_145; } } else { -uint8_t x_191; -x_191 = !lean_is_exclusive(x_141); -if (x_191 == 0) +uint8_t x_199; +x_199 = !lean_is_exclusive(x_149); +if (x_199 == 0) { -lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; -x_192 = lean_ctor_get(x_141, 0); -x_193 = lean_ctor_get(x_141, 1); -x_194 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_194, 0, x_192); -x_195 = lean_io_mono_nanos_now(x_193); -x_196 = !lean_is_exclusive(x_195); -if (x_196 == 0) +lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; uint8_t x_204; +x_200 = lean_ctor_get(x_149, 0); +x_201 = lean_ctor_get(x_149, 1); +x_202 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_202, 0, x_200); +x_203 = lean_io_mono_nanos_now(x_201); +x_204 = !lean_is_exclusive(x_203); +if (x_204 == 0) { -lean_object* x_197; lean_object* x_198; uint8_t x_199; lean_object* x_200; double x_201; double x_202; double x_203; double x_204; double x_205; lean_object* x_206; lean_object* x_207; -x_197 = lean_ctor_get(x_195, 0); -x_198 = lean_ctor_get(x_195, 1); -x_199 = 0; -x_200 = lean_unsigned_to_nat(0u); -x_201 = l_Float_ofScientific(x_139, x_199, x_200); -lean_dec(x_139); -x_202 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; -x_203 = lean_float_div(x_201, x_202); -x_204 = l_Float_ofScientific(x_197, x_199, x_200); -lean_dec(x_197); -x_205 = lean_float_div(x_204, x_202); -x_206 = lean_box_float(x_203); -x_207 = lean_box_float(x_205); -lean_ctor_set(x_16, 1, x_207); -lean_ctor_set(x_16, 0, x_206); -lean_ctor_set(x_195, 1, x_16); -lean_ctor_set(x_195, 0, x_194); -lean_ctor_set_tag(x_141, 0); -lean_ctor_set(x_141, 1, x_20); -lean_ctor_set(x_141, 0, x_195); -x_23 = x_141; -x_24 = x_198; -goto block_137; +lean_object* x_205; lean_object* x_206; uint8_t x_207; lean_object* x_208; double x_209; double x_210; double x_211; double x_212; double x_213; lean_object* x_214; lean_object* x_215; +x_205 = lean_ctor_get(x_203, 0); +x_206 = lean_ctor_get(x_203, 1); +x_207 = 0; +x_208 = lean_unsigned_to_nat(0u); +x_209 = l_Float_ofScientific(x_147, x_207, x_208); +lean_dec(x_147); +x_210 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; +x_211 = lean_float_div(x_209, x_210); +x_212 = l_Float_ofScientific(x_205, x_207, x_208); +lean_dec(x_205); +x_213 = lean_float_div(x_212, x_210); +x_214 = lean_box_float(x_211); +x_215 = lean_box_float(x_213); +lean_ctor_set(x_16, 1, x_215); +lean_ctor_set(x_16, 0, x_214); +lean_ctor_set(x_203, 1, x_16); +lean_ctor_set(x_203, 0, x_202); +lean_ctor_set_tag(x_149, 0); +lean_ctor_set(x_149, 1, x_20); +lean_ctor_set(x_149, 0, x_203); +x_23 = x_149; +x_24 = x_206; +goto block_145; } else { -lean_object* x_208; lean_object* x_209; uint8_t x_210; lean_object* x_211; double x_212; double x_213; double x_214; double x_215; double x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; -x_208 = lean_ctor_get(x_195, 0); -x_209 = lean_ctor_get(x_195, 1); -lean_inc(x_209); -lean_inc(x_208); -lean_dec(x_195); -x_210 = 0; -x_211 = lean_unsigned_to_nat(0u); -x_212 = l_Float_ofScientific(x_139, x_210, x_211); -lean_dec(x_139); -x_213 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; -x_214 = lean_float_div(x_212, x_213); -x_215 = l_Float_ofScientific(x_208, x_210, x_211); -lean_dec(x_208); -x_216 = lean_float_div(x_215, x_213); -x_217 = lean_box_float(x_214); -x_218 = lean_box_float(x_216); -lean_ctor_set(x_16, 1, x_218); -lean_ctor_set(x_16, 0, x_217); -x_219 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_219, 0, x_194); -lean_ctor_set(x_219, 1, x_16); -lean_ctor_set_tag(x_141, 0); -lean_ctor_set(x_141, 1, x_20); -lean_ctor_set(x_141, 0, x_219); -x_23 = x_141; -x_24 = x_209; -goto block_137; +lean_object* x_216; lean_object* x_217; uint8_t x_218; lean_object* x_219; double x_220; double x_221; double x_222; double x_223; double x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; +x_216 = lean_ctor_get(x_203, 0); +x_217 = lean_ctor_get(x_203, 1); +lean_inc(x_217); +lean_inc(x_216); +lean_dec(x_203); +x_218 = 0; +x_219 = lean_unsigned_to_nat(0u); +x_220 = l_Float_ofScientific(x_147, x_218, x_219); +lean_dec(x_147); +x_221 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; +x_222 = lean_float_div(x_220, x_221); +x_223 = l_Float_ofScientific(x_216, x_218, x_219); +lean_dec(x_216); +x_224 = lean_float_div(x_223, x_221); +x_225 = lean_box_float(x_222); +x_226 = lean_box_float(x_224); +lean_ctor_set(x_16, 1, x_226); +lean_ctor_set(x_16, 0, x_225); +x_227 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_227, 0, x_202); +lean_ctor_set(x_227, 1, x_16); +lean_ctor_set_tag(x_149, 0); +lean_ctor_set(x_149, 1, x_20); +lean_ctor_set(x_149, 0, x_227); +x_23 = x_149; +x_24 = x_217; +goto block_145; } } else { -lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; uint8_t x_227; lean_object* x_228; double x_229; double x_230; double x_231; double x_232; double x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; -x_220 = lean_ctor_get(x_141, 0); -x_221 = lean_ctor_get(x_141, 1); -lean_inc(x_221); -lean_inc(x_220); -lean_dec(x_141); -x_222 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_222, 0, x_220); -x_223 = lean_io_mono_nanos_now(x_221); -x_224 = lean_ctor_get(x_223, 0); -lean_inc(x_224); -x_225 = lean_ctor_get(x_223, 1); -lean_inc(x_225); -if (lean_is_exclusive(x_223)) { - lean_ctor_release(x_223, 0); - lean_ctor_release(x_223, 1); - x_226 = x_223; +lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; uint8_t x_235; lean_object* x_236; double x_237; double x_238; double x_239; double x_240; double x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; +x_228 = lean_ctor_get(x_149, 0); +x_229 = lean_ctor_get(x_149, 1); +lean_inc(x_229); +lean_inc(x_228); +lean_dec(x_149); +x_230 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_230, 0, x_228); +x_231 = lean_io_mono_nanos_now(x_229); +x_232 = lean_ctor_get(x_231, 0); +lean_inc(x_232); +x_233 = lean_ctor_get(x_231, 1); +lean_inc(x_233); +if (lean_is_exclusive(x_231)) { + lean_ctor_release(x_231, 0); + lean_ctor_release(x_231, 1); + x_234 = x_231; } else { - lean_dec_ref(x_223); - x_226 = lean_box(0); + lean_dec_ref(x_231); + x_234 = lean_box(0); } -x_227 = 0; -x_228 = lean_unsigned_to_nat(0u); -x_229 = l_Float_ofScientific(x_139, x_227, x_228); -lean_dec(x_139); -x_230 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; -x_231 = lean_float_div(x_229, x_230); -x_232 = l_Float_ofScientific(x_224, x_227, x_228); -lean_dec(x_224); -x_233 = lean_float_div(x_232, x_230); -x_234 = lean_box_float(x_231); -x_235 = lean_box_float(x_233); -lean_ctor_set(x_16, 1, x_235); -lean_ctor_set(x_16, 0, x_234); -if (lean_is_scalar(x_226)) { - x_236 = lean_alloc_ctor(0, 2, 0); +x_235 = 0; +x_236 = lean_unsigned_to_nat(0u); +x_237 = l_Float_ofScientific(x_147, x_235, x_236); +lean_dec(x_147); +x_238 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; +x_239 = lean_float_div(x_237, x_238); +x_240 = l_Float_ofScientific(x_232, x_235, x_236); +lean_dec(x_232); +x_241 = lean_float_div(x_240, x_238); +x_242 = lean_box_float(x_239); +x_243 = lean_box_float(x_241); +lean_ctor_set(x_16, 1, x_243); +lean_ctor_set(x_16, 0, x_242); +if (lean_is_scalar(x_234)) { + x_244 = lean_alloc_ctor(0, 2, 0); } else { - x_236 = x_226; + x_244 = x_234; } -lean_ctor_set(x_236, 0, x_222); -lean_ctor_set(x_236, 1, x_16); -x_237 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_237, 0, x_236); -lean_ctor_set(x_237, 1, x_20); -x_23 = x_237; -x_24 = x_225; -goto block_137; +lean_ctor_set(x_244, 0, x_230); +lean_ctor_set(x_244, 1, x_16); +x_245 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_245, 0, x_244); +lean_ctor_set(x_245, 1, x_20); +x_23 = x_245; +x_24 = x_233; +goto block_145; } } -block_137: +block_145: { -lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; lean_object* x_117; uint8_t x_118; +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; uint8_t x_33; x_25 = lean_ctor_get(x_23, 0); lean_inc(x_25); x_26 = lean_ctor_get(x_25, 1); @@ -8652,14 +8617,28 @@ lean_inc(x_29); x_30 = lean_ctor_get(x_26, 1); lean_inc(x_30); lean_dec(x_26); -x_117 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__2; -x_118 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_117); -if (x_118 == 0) +x_31 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__2; +x_32 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_31); +if (x_32 == 0) { -uint8_t x_119; -x_119 = 0; -x_31 = x_119; -goto block_116; +if (x_6 == 0) +{ +uint8_t x_115; +x_115 = 0; +x_33 = x_115; +goto block_114; +} +else +{ +lean_object* x_116; double x_117; double x_118; lean_object* x_119; +x_116 = lean_box(0); +x_117 = lean_unbox_float(x_29); +lean_dec(x_29); +x_118 = lean_unbox_float(x_30); +lean_dec(x_30); +x_119 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_19, x_28, x_32, x_117, x_118, x_5, x_116, x_27, x_10, x_11, x_12, x_13, x_24); +return x_119; +} } else { @@ -8669,6 +8648,8 @@ x_121 = lean_unbox_float(x_29); x_122 = lean_float_sub(x_120, x_121); if (x_22 == 0) { +if (x_6 == 0) +{ lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; uint8_t x_130; x_123 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; x_124 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_123); @@ -8679,1070 +8660,1110 @@ lean_dec(x_124); x_128 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__4; x_129 = lean_float_div(x_127, x_128); x_130 = lean_float_decLt(x_129, x_122); -x_31 = x_130; -goto block_116; +x_33 = x_130; +goto block_114; } else { -lean_object* x_131; lean_object* x_132; uint8_t x_133; lean_object* x_134; double x_135; uint8_t x_136; -x_131 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; -x_132 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_131); -x_133 = 0; -x_134 = lean_unsigned_to_nat(0u); -x_135 = l_Float_ofScientific(x_132, x_133, x_134); -lean_dec(x_132); -x_136 = lean_float_decLt(x_135, x_122); -x_31 = x_136; -goto block_116; +lean_object* x_131; double x_132; double x_133; lean_object* x_134; +x_131 = lean_box(0); +x_132 = lean_unbox_float(x_29); +lean_dec(x_29); +x_133 = lean_unbox_float(x_30); +lean_dec(x_30); +x_134 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_19, x_28, x_32, x_132, x_133, x_5, x_131, x_27, x_10, x_11, x_12, x_13, x_24); +return x_134; } } -block_116: +else { if (x_6 == 0) { -if (x_31 == 0) +lean_object* x_135; lean_object* x_136; uint8_t x_137; lean_object* x_138; double x_139; uint8_t x_140; +x_135 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; +x_136 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_135); +x_137 = 0; +x_138 = lean_unsigned_to_nat(0u); +x_139 = l_Float_ofScientific(x_136, x_137, x_138); +lean_dec(x_136); +x_140 = lean_float_decLt(x_139, x_122); +x_33 = x_140; +goto block_114; +} +else { -lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; +lean_object* x_141; double x_142; double x_143; lean_object* x_144; +x_141 = lean_box(0); +x_142 = lean_unbox_float(x_29); +lean_dec(x_29); +x_143 = lean_unbox_float(x_30); +lean_dec(x_30); +x_144 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_19, x_28, x_32, x_142, x_143, x_5, x_141, x_27, x_10, x_11, x_12, x_13, x_24); +return x_144; +} +} +} +block_114: +{ +if (x_33 == 0) +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; lean_dec(x_30); lean_dec(x_29); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_32 = lean_st_ref_take(x_13, x_24); -x_33 = lean_ctor_get(x_32, 0); -lean_inc(x_33); -x_34 = lean_ctor_get(x_33, 3); -lean_inc(x_34); -x_35 = lean_ctor_get(x_32, 1); +x_34 = lean_st_ref_take(x_13, x_24); +x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); -lean_dec(x_32); -x_36 = !lean_is_exclusive(x_33); -if (x_36 == 0) -{ -lean_object* x_37; uint8_t x_38; -x_37 = lean_ctor_get(x_33, 3); -lean_dec(x_37); -x_38 = !lean_is_exclusive(x_34); +x_36 = lean_ctor_get(x_35, 3); +lean_inc(x_36); +x_37 = lean_ctor_get(x_34, 1); +lean_inc(x_37); +lean_dec(x_34); +x_38 = !lean_is_exclusive(x_35); if (x_38 == 0) { -lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_39 = lean_ctor_get(x_34, 0); -x_40 = l_Lean_PersistentArray_append___rarg(x_19, x_39); +lean_object* x_39; uint8_t x_40; +x_39 = lean_ctor_get(x_35, 3); lean_dec(x_39); -lean_ctor_set(x_34, 0, x_40); -x_41 = lean_st_ref_set(x_13, x_33, x_35); -x_42 = lean_ctor_get(x_41, 1); -lean_inc(x_42); +x_40 = !lean_is_exclusive(x_36); +if (x_40 == 0) +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_41 = lean_ctor_get(x_36, 0); +x_42 = l_Lean_PersistentArray_append___rarg(x_19, x_41); lean_dec(x_41); -x_43 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_foldAndCollect___spec__34(x_28, x_27, x_10, x_11, x_12, x_13, x_42); +lean_ctor_set(x_36, 0, x_42); +x_43 = lean_st_ref_set(x_13, x_35, x_37); +x_44 = lean_ctor_get(x_43, 1); +lean_inc(x_44); +lean_dec(x_43); +x_45 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_foldAndCollect___spec__34(x_28, x_27, x_10, x_11, x_12, x_13, x_44); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_28); -if (lean_obj_tag(x_43) == 0) +if (lean_obj_tag(x_45) == 0) { -uint8_t x_44; -x_44 = !lean_is_exclusive(x_43); -if (x_44 == 0) -{ -lean_object* x_45; uint8_t x_46; -x_45 = lean_ctor_get(x_43, 0); +uint8_t x_46; x_46 = !lean_is_exclusive(x_45); if (x_46 == 0) { -return x_43; -} -else -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; +lean_object* x_47; uint8_t x_48; x_47 = lean_ctor_get(x_45, 0); -x_48 = lean_ctor_get(x_45, 1); -lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_45); -x_49 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -lean_ctor_set(x_43, 0, x_49); -return x_43; -} +x_48 = !lean_is_exclusive(x_47); +if (x_48 == 0) +{ +return x_45; } else { -lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_50 = lean_ctor_get(x_43, 0); -x_51 = lean_ctor_get(x_43, 1); -lean_inc(x_51); +lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_49 = lean_ctor_get(x_47, 0); +x_50 = lean_ctor_get(x_47, 1); lean_inc(x_50); -lean_dec(x_43); -x_52 = lean_ctor_get(x_50, 0); -lean_inc(x_52); -x_53 = lean_ctor_get(x_50, 1); +lean_inc(x_49); +lean_dec(x_47); +x_51 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_51, 0, x_49); +lean_ctor_set(x_51, 1, x_50); +lean_ctor_set(x_45, 0, x_51); +return x_45; +} +} +else +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_52 = lean_ctor_get(x_45, 0); +x_53 = lean_ctor_get(x_45, 1); lean_inc(x_53); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_54 = x_50; +lean_inc(x_52); +lean_dec(x_45); +x_54 = lean_ctor_get(x_52, 0); +lean_inc(x_54); +x_55 = lean_ctor_get(x_52, 1); +lean_inc(x_55); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_56 = x_52; } else { - lean_dec_ref(x_50); - x_54 = lean_box(0); + lean_dec_ref(x_52); + x_56 = lean_box(0); } -if (lean_is_scalar(x_54)) { - x_55 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_56)) { + x_57 = lean_alloc_ctor(0, 2, 0); } else { - x_55 = x_54; + x_57 = x_56; } -lean_ctor_set(x_55, 0, x_52); -lean_ctor_set(x_55, 1, x_53); -x_56 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_56, 0, x_55); -lean_ctor_set(x_56, 1, x_51); -return x_56; +lean_ctor_set(x_57, 0, x_54); +lean_ctor_set(x_57, 1, x_55); +x_58 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_58, 0, x_57); +lean_ctor_set(x_58, 1, x_53); +return x_58; } } else { -uint8_t x_57; -x_57 = !lean_is_exclusive(x_43); -if (x_57 == 0) +uint8_t x_59; +x_59 = !lean_is_exclusive(x_45); +if (x_59 == 0) { -return x_43; +return x_45; } else { -lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_58 = lean_ctor_get(x_43, 0); -x_59 = lean_ctor_get(x_43, 1); -lean_inc(x_59); -lean_inc(x_58); -lean_dec(x_43); -x_60 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_60, 0, x_58); -lean_ctor_set(x_60, 1, x_59); -return x_60; +lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_60 = lean_ctor_get(x_45, 0); +x_61 = lean_ctor_get(x_45, 1); +lean_inc(x_61); +lean_inc(x_60); +lean_dec(x_45); +x_62 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_62, 0, x_60); +lean_ctor_set(x_62, 1, x_61); +return x_62; } } } else { -uint64_t x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_61 = lean_ctor_get_uint64(x_34, sizeof(void*)*1); -x_62 = lean_ctor_get(x_34, 0); -lean_inc(x_62); -lean_dec(x_34); -x_63 = l_Lean_PersistentArray_append___rarg(x_19, x_62); -lean_dec(x_62); -x_64 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_64, 0, x_63); -lean_ctor_set_uint64(x_64, sizeof(void*)*1, x_61); -lean_ctor_set(x_33, 3, x_64); -x_65 = lean_st_ref_set(x_13, x_33, x_35); -x_66 = lean_ctor_get(x_65, 1); -lean_inc(x_66); -lean_dec(x_65); -x_67 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_foldAndCollect___spec__34(x_28, x_27, x_10, x_11, x_12, x_13, x_66); +uint64_t x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_63 = lean_ctor_get_uint64(x_36, sizeof(void*)*1); +x_64 = lean_ctor_get(x_36, 0); +lean_inc(x_64); +lean_dec(x_36); +x_65 = l_Lean_PersistentArray_append___rarg(x_19, x_64); +lean_dec(x_64); +x_66 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_66, 0, x_65); +lean_ctor_set_uint64(x_66, sizeof(void*)*1, x_63); +lean_ctor_set(x_35, 3, x_66); +x_67 = lean_st_ref_set(x_13, x_35, x_37); +x_68 = lean_ctor_get(x_67, 1); +lean_inc(x_68); +lean_dec(x_67); +x_69 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_foldAndCollect___spec__34(x_28, x_27, x_10, x_11, x_12, x_13, x_68); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_28); -if (lean_obj_tag(x_67) == 0) +if (lean_obj_tag(x_69) == 0) { -lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_68 = lean_ctor_get(x_67, 0); -lean_inc(x_68); -x_69 = lean_ctor_get(x_67, 1); -lean_inc(x_69); -if (lean_is_exclusive(x_67)) { - lean_ctor_release(x_67, 0); - lean_ctor_release(x_67, 1); - x_70 = x_67; -} else { - lean_dec_ref(x_67); - x_70 = lean_box(0); -} -x_71 = lean_ctor_get(x_68, 0); +lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_70 = lean_ctor_get(x_69, 0); +lean_inc(x_70); +x_71 = lean_ctor_get(x_69, 1); lean_inc(x_71); -x_72 = lean_ctor_get(x_68, 1); -lean_inc(x_72); -if (lean_is_exclusive(x_68)) { - lean_ctor_release(x_68, 0); - lean_ctor_release(x_68, 1); - x_73 = x_68; +if (lean_is_exclusive(x_69)) { + lean_ctor_release(x_69, 0); + lean_ctor_release(x_69, 1); + x_72 = x_69; } else { - lean_dec_ref(x_68); - x_73 = lean_box(0); + lean_dec_ref(x_69); + x_72 = lean_box(0); } -if (lean_is_scalar(x_73)) { - x_74 = lean_alloc_ctor(0, 2, 0); -} else { - x_74 = x_73; -} -lean_ctor_set(x_74, 0, x_71); -lean_ctor_set(x_74, 1, x_72); -if (lean_is_scalar(x_70)) { - x_75 = lean_alloc_ctor(0, 2, 0); -} else { +x_73 = lean_ctor_get(x_70, 0); +lean_inc(x_73); +x_74 = lean_ctor_get(x_70, 1); +lean_inc(x_74); +if (lean_is_exclusive(x_70)) { + lean_ctor_release(x_70, 0); + lean_ctor_release(x_70, 1); x_75 = x_70; +} else { + lean_dec_ref(x_70); + x_75 = lean_box(0); } -lean_ctor_set(x_75, 0, x_74); -lean_ctor_set(x_75, 1, x_69); -return x_75; +if (lean_is_scalar(x_75)) { + x_76 = lean_alloc_ctor(0, 2, 0); +} else { + x_76 = x_75; +} +lean_ctor_set(x_76, 0, x_73); +lean_ctor_set(x_76, 1, x_74); +if (lean_is_scalar(x_72)) { + x_77 = lean_alloc_ctor(0, 2, 0); +} else { + x_77 = x_72; +} +lean_ctor_set(x_77, 0, x_76); +lean_ctor_set(x_77, 1, x_71); +return x_77; } else { -lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_76 = lean_ctor_get(x_67, 0); -lean_inc(x_76); -x_77 = lean_ctor_get(x_67, 1); -lean_inc(x_77); -if (lean_is_exclusive(x_67)) { - lean_ctor_release(x_67, 0); - lean_ctor_release(x_67, 1); - x_78 = x_67; +lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_78 = lean_ctor_get(x_69, 0); +lean_inc(x_78); +x_79 = lean_ctor_get(x_69, 1); +lean_inc(x_79); +if (lean_is_exclusive(x_69)) { + lean_ctor_release(x_69, 0); + lean_ctor_release(x_69, 1); + x_80 = x_69; } else { - lean_dec_ref(x_67); - x_78 = lean_box(0); + lean_dec_ref(x_69); + x_80 = lean_box(0); } -if (lean_is_scalar(x_78)) { - x_79 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_80)) { + x_81 = lean_alloc_ctor(1, 2, 0); } else { - x_79 = x_78; + x_81 = x_80; } -lean_ctor_set(x_79, 0, x_76); -lean_ctor_set(x_79, 1, x_77); -return x_79; +lean_ctor_set(x_81, 0, x_78); +lean_ctor_set(x_81, 1, x_79); +return x_81; } } } else { -lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; uint64_t x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; -x_80 = lean_ctor_get(x_33, 0); -x_81 = lean_ctor_get(x_33, 1); -x_82 = lean_ctor_get(x_33, 2); -x_83 = lean_ctor_get(x_33, 4); -x_84 = lean_ctor_get(x_33, 5); -x_85 = lean_ctor_get(x_33, 6); -x_86 = lean_ctor_get(x_33, 7); +lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; uint64_t x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; +x_82 = lean_ctor_get(x_35, 0); +x_83 = lean_ctor_get(x_35, 1); +x_84 = lean_ctor_get(x_35, 2); +x_85 = lean_ctor_get(x_35, 4); +x_86 = lean_ctor_get(x_35, 5); +x_87 = lean_ctor_get(x_35, 6); +x_88 = lean_ctor_get(x_35, 7); +lean_inc(x_88); +lean_inc(x_87); lean_inc(x_86); lean_inc(x_85); lean_inc(x_84); lean_inc(x_83); lean_inc(x_82); -lean_inc(x_81); -lean_inc(x_80); -lean_dec(x_33); -x_87 = lean_ctor_get_uint64(x_34, sizeof(void*)*1); -x_88 = lean_ctor_get(x_34, 0); -lean_inc(x_88); -if (lean_is_exclusive(x_34)) { - lean_ctor_release(x_34, 0); - x_89 = x_34; +lean_dec(x_35); +x_89 = lean_ctor_get_uint64(x_36, sizeof(void*)*1); +x_90 = lean_ctor_get(x_36, 0); +lean_inc(x_90); +if (lean_is_exclusive(x_36)) { + lean_ctor_release(x_36, 0); + x_91 = x_36; } else { - lean_dec_ref(x_34); - x_89 = lean_box(0); + lean_dec_ref(x_36); + x_91 = lean_box(0); } -x_90 = l_Lean_PersistentArray_append___rarg(x_19, x_88); -lean_dec(x_88); -if (lean_is_scalar(x_89)) { - x_91 = lean_alloc_ctor(0, 1, 8); +x_92 = l_Lean_PersistentArray_append___rarg(x_19, x_90); +lean_dec(x_90); +if (lean_is_scalar(x_91)) { + x_93 = lean_alloc_ctor(0, 1, 8); } else { - x_91 = x_89; + x_93 = x_91; } -lean_ctor_set(x_91, 0, x_90); -lean_ctor_set_uint64(x_91, sizeof(void*)*1, x_87); -x_92 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_92, 0, x_80); -lean_ctor_set(x_92, 1, x_81); -lean_ctor_set(x_92, 2, x_82); -lean_ctor_set(x_92, 3, x_91); -lean_ctor_set(x_92, 4, x_83); -lean_ctor_set(x_92, 5, x_84); -lean_ctor_set(x_92, 6, x_85); -lean_ctor_set(x_92, 7, x_86); -x_93 = lean_st_ref_set(x_13, x_92, x_35); -x_94 = lean_ctor_get(x_93, 1); -lean_inc(x_94); -lean_dec(x_93); -x_95 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_foldAndCollect___spec__34(x_28, x_27, x_10, x_11, x_12, x_13, x_94); +lean_ctor_set(x_93, 0, x_92); +lean_ctor_set_uint64(x_93, sizeof(void*)*1, x_89); +x_94 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_94, 0, x_82); +lean_ctor_set(x_94, 1, x_83); +lean_ctor_set(x_94, 2, x_84); +lean_ctor_set(x_94, 3, x_93); +lean_ctor_set(x_94, 4, x_85); +lean_ctor_set(x_94, 5, x_86); +lean_ctor_set(x_94, 6, x_87); +lean_ctor_set(x_94, 7, x_88); +x_95 = lean_st_ref_set(x_13, x_94, x_37); +x_96 = lean_ctor_get(x_95, 1); +lean_inc(x_96); +lean_dec(x_95); +x_97 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_foldAndCollect___spec__34(x_28, x_27, x_10, x_11, x_12, x_13, x_96); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_28); -if (lean_obj_tag(x_95) == 0) +if (lean_obj_tag(x_97) == 0) { -lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; -x_96 = lean_ctor_get(x_95, 0); -lean_inc(x_96); -x_97 = lean_ctor_get(x_95, 1); -lean_inc(x_97); -if (lean_is_exclusive(x_95)) { - lean_ctor_release(x_95, 0); - lean_ctor_release(x_95, 1); - x_98 = x_95; -} else { - lean_dec_ref(x_95); - x_98 = lean_box(0); -} -x_99 = lean_ctor_get(x_96, 0); +lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; +x_98 = lean_ctor_get(x_97, 0); +lean_inc(x_98); +x_99 = lean_ctor_get(x_97, 1); lean_inc(x_99); -x_100 = lean_ctor_get(x_96, 1); -lean_inc(x_100); -if (lean_is_exclusive(x_96)) { - lean_ctor_release(x_96, 0); - lean_ctor_release(x_96, 1); - x_101 = x_96; +if (lean_is_exclusive(x_97)) { + lean_ctor_release(x_97, 0); + lean_ctor_release(x_97, 1); + x_100 = x_97; } else { - lean_dec_ref(x_96); - x_101 = lean_box(0); + lean_dec_ref(x_97); + x_100 = lean_box(0); } -if (lean_is_scalar(x_101)) { - x_102 = lean_alloc_ctor(0, 2, 0); -} else { - x_102 = x_101; -} -lean_ctor_set(x_102, 0, x_99); -lean_ctor_set(x_102, 1, x_100); -if (lean_is_scalar(x_98)) { - x_103 = lean_alloc_ctor(0, 2, 0); -} else { +x_101 = lean_ctor_get(x_98, 0); +lean_inc(x_101); +x_102 = lean_ctor_get(x_98, 1); +lean_inc(x_102); +if (lean_is_exclusive(x_98)) { + lean_ctor_release(x_98, 0); + lean_ctor_release(x_98, 1); x_103 = x_98; -} -lean_ctor_set(x_103, 0, x_102); -lean_ctor_set(x_103, 1, x_97); -return x_103; -} -else -{ -lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; -x_104 = lean_ctor_get(x_95, 0); -lean_inc(x_104); -x_105 = lean_ctor_get(x_95, 1); -lean_inc(x_105); -if (lean_is_exclusive(x_95)) { - lean_ctor_release(x_95, 0); - lean_ctor_release(x_95, 1); - x_106 = x_95; } else { - lean_dec_ref(x_95); - x_106 = lean_box(0); + lean_dec_ref(x_98); + x_103 = lean_box(0); } -if (lean_is_scalar(x_106)) { - x_107 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_103)) { + x_104 = lean_alloc_ctor(0, 2, 0); } else { - x_107 = x_106; + x_104 = x_103; } -lean_ctor_set(x_107, 0, x_104); -lean_ctor_set(x_107, 1, x_105); -return x_107; +lean_ctor_set(x_104, 0, x_101); +lean_ctor_set(x_104, 1, x_102); +if (lean_is_scalar(x_100)) { + x_105 = lean_alloc_ctor(0, 2, 0); +} else { + x_105 = x_100; +} +lean_ctor_set(x_105, 0, x_104); +lean_ctor_set(x_105, 1, x_99); +return x_105; +} +else +{ +lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; +x_106 = lean_ctor_get(x_97, 0); +lean_inc(x_106); +x_107 = lean_ctor_get(x_97, 1); +lean_inc(x_107); +if (lean_is_exclusive(x_97)) { + lean_ctor_release(x_97, 0); + lean_ctor_release(x_97, 1); + x_108 = x_97; +} else { + lean_dec_ref(x_97); + x_108 = lean_box(0); +} +if (lean_is_scalar(x_108)) { + x_109 = lean_alloc_ctor(1, 2, 0); +} else { + x_109 = x_108; +} +lean_ctor_set(x_109, 0, x_106); +lean_ctor_set(x_109, 1, x_107); +return x_109; } } } else { -lean_object* x_108; double x_109; double x_110; lean_object* x_111; -x_108 = lean_box(0); -x_109 = lean_unbox_float(x_29); +lean_object* x_110; double x_111; double x_112; lean_object* x_113; +x_110 = lean_box(0); +x_111 = lean_unbox_float(x_29); lean_dec(x_29); -x_110 = lean_unbox_float(x_30); +x_112 = lean_unbox_float(x_30); lean_dec(x_30); -x_111 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_19, x_28, x_1, x_31, x_109, x_110, x_5, x_108, x_27, x_10, x_11, x_12, x_13, x_24); -return x_111; -} -} -else -{ -lean_object* x_112; double x_113; double x_114; lean_object* x_115; -x_112 = lean_box(0); -x_113 = lean_unbox_float(x_29); -lean_dec(x_29); -x_114 = lean_unbox_float(x_30); -lean_dec(x_30); -x_115 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_19, x_28, x_1, x_31, x_113, x_114, x_5, x_112, x_27, x_10, x_11, x_12, x_13, x_24); -return x_115; +x_113 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_19, x_28, x_32, x_111, x_112, x_5, x_110, x_27, x_10, x_11, x_12, x_13, x_24); +return x_113; } } } } else { -lean_object* x_238; lean_object* x_239; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; -x_353 = lean_io_get_num_heartbeats(x_17); -x_354 = lean_ctor_get(x_353, 0); -lean_inc(x_354); -x_355 = lean_ctor_get(x_353, 1); -lean_inc(x_355); -lean_dec(x_353); +lean_object* x_246; lean_object* x_247; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; +x_369 = lean_io_get_num_heartbeats(x_17); +x_370 = lean_ctor_get(x_369, 0); +lean_inc(x_370); +x_371 = lean_ctor_get(x_369, 1); +lean_inc(x_371); +lean_dec(x_369); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_20); -x_356 = lean_apply_6(x_7, x_20, x_10, x_11, x_12, x_13, x_355); -if (lean_obj_tag(x_356) == 0) +x_372 = lean_apply_6(x_7, x_20, x_10, x_11, x_12, x_13, x_371); +if (lean_obj_tag(x_372) == 0) { -lean_object* x_357; lean_object* x_358; uint8_t x_359; +lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_dec(x_20); -x_357 = lean_ctor_get(x_356, 0); -lean_inc(x_357); -x_358 = lean_ctor_get(x_356, 1); -lean_inc(x_358); -lean_dec(x_356); -x_359 = !lean_is_exclusive(x_357); -if (x_359 == 0) -{ -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; uint8_t x_364; -x_360 = lean_ctor_get(x_357, 0); -x_361 = lean_ctor_get(x_357, 1); -x_362 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_358); -x_364 = !lean_is_exclusive(x_363); -if (x_364 == 0) -{ -lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; -x_365 = lean_ctor_get(x_363, 0); -x_366 = lean_ctor_get(x_363, 1); -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_354, x_367, x_368); -lean_dec(x_354); -x_370 = l_Float_ofScientific(x_365, x_367, x_368); -lean_dec(x_365); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -lean_ctor_set(x_357, 1, x_372); -lean_ctor_set(x_357, 0, x_371); -lean_ctor_set(x_16, 1, x_357); -lean_ctor_set(x_16, 0, x_362); -lean_ctor_set(x_363, 1, x_361); -lean_ctor_set(x_363, 0, x_16); -x_238 = x_363; -x_239 = x_366; -goto block_352; -} -else -{ -lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; -x_373 = lean_ctor_get(x_363, 0); -x_374 = lean_ctor_get(x_363, 1); -lean_inc(x_374); +x_373 = lean_ctor_get(x_372, 0); lean_inc(x_373); -lean_dec(x_363); -x_375 = 0; -x_376 = lean_unsigned_to_nat(0u); -x_377 = l_Float_ofScientific(x_354, x_375, x_376); -lean_dec(x_354); -x_378 = l_Float_ofScientific(x_373, x_375, x_376); +x_374 = lean_ctor_get(x_372, 1); +lean_inc(x_374); +lean_dec(x_372); +x_375 = !lean_is_exclusive(x_373); +if (x_375 == 0) +{ +lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; uint8_t x_380; +x_376 = lean_ctor_get(x_373, 0); +x_377 = lean_ctor_get(x_373, 1); +x_378 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_378, 0, x_376); +x_379 = lean_io_get_num_heartbeats(x_374); +x_380 = !lean_is_exclusive(x_379); +if (x_380 == 0) +{ +lean_object* x_381; lean_object* x_382; uint8_t x_383; lean_object* x_384; double x_385; double x_386; lean_object* x_387; lean_object* x_388; +x_381 = lean_ctor_get(x_379, 0); +x_382 = lean_ctor_get(x_379, 1); +x_383 = 0; +x_384 = lean_unsigned_to_nat(0u); +x_385 = l_Float_ofScientific(x_370, x_383, x_384); +lean_dec(x_370); +x_386 = l_Float_ofScientific(x_381, x_383, x_384); +lean_dec(x_381); +x_387 = lean_box_float(x_385); +x_388 = lean_box_float(x_386); +lean_ctor_set(x_373, 1, x_388); +lean_ctor_set(x_373, 0, x_387); +lean_ctor_set(x_16, 1, x_373); +lean_ctor_set(x_16, 0, x_378); +lean_ctor_set(x_379, 1, x_377); +lean_ctor_set(x_379, 0, x_16); +x_246 = x_379; +x_247 = x_382; +goto block_368; +} +else +{ +lean_object* x_389; lean_object* x_390; uint8_t x_391; lean_object* x_392; double x_393; double x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; +x_389 = lean_ctor_get(x_379, 0); +x_390 = lean_ctor_get(x_379, 1); +lean_inc(x_390); +lean_inc(x_389); +lean_dec(x_379); +x_391 = 0; +x_392 = lean_unsigned_to_nat(0u); +x_393 = l_Float_ofScientific(x_370, x_391, x_392); +lean_dec(x_370); +x_394 = l_Float_ofScientific(x_389, x_391, x_392); +lean_dec(x_389); +x_395 = lean_box_float(x_393); +x_396 = lean_box_float(x_394); +lean_ctor_set(x_373, 1, x_396); +lean_ctor_set(x_373, 0, x_395); +lean_ctor_set(x_16, 1, x_373); +lean_ctor_set(x_16, 0, x_378); +x_397 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_397, 0, x_16); +lean_ctor_set(x_397, 1, x_377); +x_246 = x_397; +x_247 = x_390; +goto block_368; +} +} +else +{ +lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; uint8_t x_405; lean_object* x_406; double x_407; double x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; +x_398 = lean_ctor_get(x_373, 0); +x_399 = lean_ctor_get(x_373, 1); +lean_inc(x_399); +lean_inc(x_398); lean_dec(x_373); -x_379 = lean_box_float(x_377); -x_380 = lean_box_float(x_378); -lean_ctor_set(x_357, 1, x_380); -lean_ctor_set(x_357, 0, x_379); -lean_ctor_set(x_16, 1, x_357); -lean_ctor_set(x_16, 0, x_362); -x_381 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_381, 0, x_16); -lean_ctor_set(x_381, 1, x_361); -x_238 = x_381; -x_239 = x_374; -goto block_352; -} -} -else -{ -lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; uint8_t x_389; lean_object* x_390; double x_391; double x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; -x_382 = lean_ctor_get(x_357, 0); -x_383 = lean_ctor_get(x_357, 1); -lean_inc(x_383); -lean_inc(x_382); -lean_dec(x_357); -x_384 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_384, 0, x_382); -x_385 = lean_io_get_num_heartbeats(x_358); -x_386 = lean_ctor_get(x_385, 0); -lean_inc(x_386); -x_387 = lean_ctor_get(x_385, 1); -lean_inc(x_387); -if (lean_is_exclusive(x_385)) { - lean_ctor_release(x_385, 0); - lean_ctor_release(x_385, 1); - x_388 = x_385; -} else { - lean_dec_ref(x_385); - x_388 = lean_box(0); -} -x_389 = 0; -x_390 = lean_unsigned_to_nat(0u); -x_391 = l_Float_ofScientific(x_354, x_389, x_390); -lean_dec(x_354); -x_392 = l_Float_ofScientific(x_386, x_389, x_390); -lean_dec(x_386); -x_393 = lean_box_float(x_391); -x_394 = lean_box_float(x_392); -x_395 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_395, 0, x_393); -lean_ctor_set(x_395, 1, x_394); -lean_ctor_set(x_16, 1, x_395); -lean_ctor_set(x_16, 0, x_384); -if (lean_is_scalar(x_388)) { - x_396 = lean_alloc_ctor(0, 2, 0); -} else { - x_396 = x_388; -} -lean_ctor_set(x_396, 0, x_16); -lean_ctor_set(x_396, 1, x_383); -x_238 = x_396; -x_239 = x_387; -goto block_352; -} -} -else -{ -uint8_t x_397; -x_397 = !lean_is_exclusive(x_356); -if (x_397 == 0) -{ -lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; uint8_t x_402; -x_398 = lean_ctor_get(x_356, 0); -x_399 = lean_ctor_get(x_356, 1); -x_400 = lean_alloc_ctor(0, 1, 0); +x_400 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_400, 0, x_398); -x_401 = lean_io_get_num_heartbeats(x_399); -x_402 = !lean_is_exclusive(x_401); -if (x_402 == 0) -{ -lean_object* x_403; lean_object* x_404; uint8_t x_405; lean_object* x_406; double x_407; double x_408; lean_object* x_409; lean_object* x_410; -x_403 = lean_ctor_get(x_401, 0); -x_404 = lean_ctor_get(x_401, 1); +x_401 = lean_io_get_num_heartbeats(x_374); +x_402 = lean_ctor_get(x_401, 0); +lean_inc(x_402); +x_403 = lean_ctor_get(x_401, 1); +lean_inc(x_403); +if (lean_is_exclusive(x_401)) { + lean_ctor_release(x_401, 0); + lean_ctor_release(x_401, 1); + x_404 = x_401; +} else { + lean_dec_ref(x_401); + x_404 = lean_box(0); +} x_405 = 0; x_406 = lean_unsigned_to_nat(0u); -x_407 = l_Float_ofScientific(x_354, x_405, x_406); -lean_dec(x_354); -x_408 = l_Float_ofScientific(x_403, x_405, x_406); -lean_dec(x_403); +x_407 = l_Float_ofScientific(x_370, x_405, x_406); +lean_dec(x_370); +x_408 = l_Float_ofScientific(x_402, x_405, x_406); +lean_dec(x_402); x_409 = lean_box_float(x_407); x_410 = lean_box_float(x_408); -lean_ctor_set(x_16, 1, x_410); -lean_ctor_set(x_16, 0, x_409); -lean_ctor_set(x_401, 1, x_16); -lean_ctor_set(x_401, 0, x_400); -lean_ctor_set_tag(x_356, 0); -lean_ctor_set(x_356, 1, x_20); -lean_ctor_set(x_356, 0, x_401); -x_238 = x_356; -x_239 = x_404; -goto block_352; -} -else -{ -lean_object* x_411; lean_object* x_412; uint8_t x_413; lean_object* x_414; double x_415; double x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; -x_411 = lean_ctor_get(x_401, 0); -x_412 = lean_ctor_get(x_401, 1); -lean_inc(x_412); -lean_inc(x_411); -lean_dec(x_401); -x_413 = 0; -x_414 = lean_unsigned_to_nat(0u); -x_415 = l_Float_ofScientific(x_354, x_413, x_414); -lean_dec(x_354); -x_416 = l_Float_ofScientific(x_411, x_413, x_414); -lean_dec(x_411); -x_417 = lean_box_float(x_415); -x_418 = lean_box_float(x_416); -lean_ctor_set(x_16, 1, x_418); -lean_ctor_set(x_16, 0, x_417); -x_419 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_419, 0, x_400); -lean_ctor_set(x_419, 1, x_16); -lean_ctor_set_tag(x_356, 0); -lean_ctor_set(x_356, 1, x_20); -lean_ctor_set(x_356, 0, x_419); -x_238 = x_356; -x_239 = x_412; -goto block_352; -} -} -else -{ -lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; uint8_t x_427; lean_object* x_428; double x_429; double x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; -x_420 = lean_ctor_get(x_356, 0); -x_421 = lean_ctor_get(x_356, 1); -lean_inc(x_421); -lean_inc(x_420); -lean_dec(x_356); -x_422 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_422, 0, x_420); -x_423 = lean_io_get_num_heartbeats(x_421); -x_424 = lean_ctor_get(x_423, 0); -lean_inc(x_424); -x_425 = lean_ctor_get(x_423, 1); -lean_inc(x_425); -if (lean_is_exclusive(x_423)) { - lean_ctor_release(x_423, 0); - lean_ctor_release(x_423, 1); - x_426 = x_423; +x_411 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_411, 0, x_409); +lean_ctor_set(x_411, 1, x_410); +lean_ctor_set(x_16, 1, x_411); +lean_ctor_set(x_16, 0, x_400); +if (lean_is_scalar(x_404)) { + x_412 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_423); - x_426 = lean_box(0); + x_412 = x_404; } -x_427 = 0; -x_428 = lean_unsigned_to_nat(0u); -x_429 = l_Float_ofScientific(x_354, x_427, x_428); -lean_dec(x_354); -x_430 = l_Float_ofScientific(x_424, x_427, x_428); -lean_dec(x_424); -x_431 = lean_box_float(x_429); -x_432 = lean_box_float(x_430); -lean_ctor_set(x_16, 1, x_432); -lean_ctor_set(x_16, 0, x_431); -if (lean_is_scalar(x_426)) { - x_433 = lean_alloc_ctor(0, 2, 0); -} else { - x_433 = x_426; +lean_ctor_set(x_412, 0, x_16); +lean_ctor_set(x_412, 1, x_399); +x_246 = x_412; +x_247 = x_403; +goto block_368; } -lean_ctor_set(x_433, 0, x_422); -lean_ctor_set(x_433, 1, x_16); -x_434 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_434, 0, x_433); -lean_ctor_set(x_434, 1, x_20); -x_238 = x_434; -x_239 = x_425; -goto block_352; -} -} -block_352: -{ -lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; uint8_t x_246; lean_object* x_332; uint8_t x_333; -x_240 = lean_ctor_get(x_238, 0); -lean_inc(x_240); -x_241 = lean_ctor_get(x_240, 1); -lean_inc(x_241); -x_242 = lean_ctor_get(x_238, 1); -lean_inc(x_242); -lean_dec(x_238); -x_243 = lean_ctor_get(x_240, 0); -lean_inc(x_243); -lean_dec(x_240); -x_244 = lean_ctor_get(x_241, 0); -lean_inc(x_244); -x_245 = lean_ctor_get(x_241, 1); -lean_inc(x_245); -lean_dec(x_241); -x_332 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__2; -x_333 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_332); -if (x_333 == 0) -{ -uint8_t x_334; -x_334 = 0; -x_246 = x_334; -goto block_331; } else { -double x_335; double x_336; double x_337; -x_335 = lean_unbox_float(x_245); -x_336 = lean_unbox_float(x_244); -x_337 = lean_float_sub(x_335, x_336); +uint8_t x_413; +x_413 = !lean_is_exclusive(x_372); +if (x_413 == 0) +{ +lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; uint8_t x_418; +x_414 = lean_ctor_get(x_372, 0); +x_415 = lean_ctor_get(x_372, 1); +x_416 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_416, 0, x_414); +x_417 = lean_io_get_num_heartbeats(x_415); +x_418 = !lean_is_exclusive(x_417); +if (x_418 == 0) +{ +lean_object* x_419; lean_object* x_420; uint8_t x_421; lean_object* x_422; double x_423; double x_424; lean_object* x_425; lean_object* x_426; +x_419 = lean_ctor_get(x_417, 0); +x_420 = lean_ctor_get(x_417, 1); +x_421 = 0; +x_422 = lean_unsigned_to_nat(0u); +x_423 = l_Float_ofScientific(x_370, x_421, x_422); +lean_dec(x_370); +x_424 = l_Float_ofScientific(x_419, x_421, x_422); +lean_dec(x_419); +x_425 = lean_box_float(x_423); +x_426 = lean_box_float(x_424); +lean_ctor_set(x_16, 1, x_426); +lean_ctor_set(x_16, 0, x_425); +lean_ctor_set(x_417, 1, x_16); +lean_ctor_set(x_417, 0, x_416); +lean_ctor_set_tag(x_372, 0); +lean_ctor_set(x_372, 1, x_20); +lean_ctor_set(x_372, 0, x_417); +x_246 = x_372; +x_247 = x_420; +goto block_368; +} +else +{ +lean_object* x_427; lean_object* x_428; uint8_t x_429; lean_object* x_430; double x_431; double x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; +x_427 = lean_ctor_get(x_417, 0); +x_428 = lean_ctor_get(x_417, 1); +lean_inc(x_428); +lean_inc(x_427); +lean_dec(x_417); +x_429 = 0; +x_430 = lean_unsigned_to_nat(0u); +x_431 = l_Float_ofScientific(x_370, x_429, x_430); +lean_dec(x_370); +x_432 = l_Float_ofScientific(x_427, x_429, x_430); +lean_dec(x_427); +x_433 = lean_box_float(x_431); +x_434 = lean_box_float(x_432); +lean_ctor_set(x_16, 1, x_434); +lean_ctor_set(x_16, 0, x_433); +x_435 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_435, 0, x_416); +lean_ctor_set(x_435, 1, x_16); +lean_ctor_set_tag(x_372, 0); +lean_ctor_set(x_372, 1, x_20); +lean_ctor_set(x_372, 0, x_435); +x_246 = x_372; +x_247 = x_428; +goto block_368; +} +} +else +{ +lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; uint8_t x_443; lean_object* x_444; double x_445; double x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; +x_436 = lean_ctor_get(x_372, 0); +x_437 = lean_ctor_get(x_372, 1); +lean_inc(x_437); +lean_inc(x_436); +lean_dec(x_372); +x_438 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_438, 0, x_436); +x_439 = lean_io_get_num_heartbeats(x_437); +x_440 = lean_ctor_get(x_439, 0); +lean_inc(x_440); +x_441 = lean_ctor_get(x_439, 1); +lean_inc(x_441); +if (lean_is_exclusive(x_439)) { + lean_ctor_release(x_439, 0); + lean_ctor_release(x_439, 1); + x_442 = x_439; +} else { + lean_dec_ref(x_439); + x_442 = lean_box(0); +} +x_443 = 0; +x_444 = lean_unsigned_to_nat(0u); +x_445 = l_Float_ofScientific(x_370, x_443, x_444); +lean_dec(x_370); +x_446 = l_Float_ofScientific(x_440, x_443, x_444); +lean_dec(x_440); +x_447 = lean_box_float(x_445); +x_448 = lean_box_float(x_446); +lean_ctor_set(x_16, 1, x_448); +lean_ctor_set(x_16, 0, x_447); +if (lean_is_scalar(x_442)) { + x_449 = lean_alloc_ctor(0, 2, 0); +} else { + x_449 = x_442; +} +lean_ctor_set(x_449, 0, x_438); +lean_ctor_set(x_449, 1, x_16); +x_450 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_450, 0, x_449); +lean_ctor_set(x_450, 1, x_20); +x_246 = x_450; +x_247 = x_441; +goto block_368; +} +} +block_368: +{ +lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; uint8_t x_255; uint8_t x_256; +x_248 = lean_ctor_get(x_246, 0); +lean_inc(x_248); +x_249 = lean_ctor_get(x_248, 1); +lean_inc(x_249); +x_250 = lean_ctor_get(x_246, 1); +lean_inc(x_250); +lean_dec(x_246); +x_251 = lean_ctor_get(x_248, 0); +lean_inc(x_251); +lean_dec(x_248); +x_252 = lean_ctor_get(x_249, 0); +lean_inc(x_252); +x_253 = lean_ctor_get(x_249, 1); +lean_inc(x_253); +lean_dec(x_249); +x_254 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__2; +x_255 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_254); +if (x_255 == 0) +{ +if (x_6 == 0) +{ +uint8_t x_338; +x_338 = 0; +x_256 = x_338; +goto block_337; +} +else +{ +lean_object* x_339; double x_340; double x_341; lean_object* x_342; +x_339 = lean_box(0); +x_340 = lean_unbox_float(x_252); +lean_dec(x_252); +x_341 = lean_unbox_float(x_253); +lean_dec(x_253); +x_342 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_19, x_251, x_255, x_340, x_341, x_5, x_339, x_250, x_10, x_11, x_12, x_13, x_247); +return x_342; +} +} +else +{ +double x_343; double x_344; double x_345; +x_343 = lean_unbox_float(x_253); +x_344 = lean_unbox_float(x_252); +x_345 = lean_float_sub(x_343, x_344); if (x_22 == 0) { -lean_object* x_338; lean_object* x_339; uint8_t x_340; lean_object* x_341; double x_342; double x_343; double x_344; uint8_t x_345; -x_338 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; -x_339 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_338); -x_340 = 0; -x_341 = lean_unsigned_to_nat(0u); -x_342 = l_Float_ofScientific(x_339, x_340, x_341); -lean_dec(x_339); -x_343 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__4; -x_344 = lean_float_div(x_342, x_343); -x_345 = lean_float_decLt(x_344, x_337); -x_246 = x_345; -goto block_331; -} -else +if (x_6 == 0) { -lean_object* x_346; lean_object* x_347; uint8_t x_348; lean_object* x_349; double x_350; uint8_t x_351; +lean_object* x_346; lean_object* x_347; uint8_t x_348; lean_object* x_349; double x_350; double x_351; double x_352; uint8_t x_353; x_346 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; x_347 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_346); x_348 = 0; x_349 = lean_unsigned_to_nat(0u); x_350 = l_Float_ofScientific(x_347, x_348, x_349); lean_dec(x_347); -x_351 = lean_float_decLt(x_350, x_337); -x_246 = x_351; -goto block_331; +x_351 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__4; +x_352 = lean_float_div(x_350, x_351); +x_353 = lean_float_decLt(x_352, x_345); +x_256 = x_353; +goto block_337; +} +else +{ +lean_object* x_354; double x_355; double x_356; lean_object* x_357; +x_354 = lean_box(0); +x_355 = lean_unbox_float(x_252); +lean_dec(x_252); +x_356 = lean_unbox_float(x_253); +lean_dec(x_253); +x_357 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_19, x_251, x_255, x_355, x_356, x_5, x_354, x_250, x_10, x_11, x_12, x_13, x_247); +return x_357; } } -block_331: +else { if (x_6 == 0) { -if (x_246 == 0) +lean_object* x_358; lean_object* x_359; uint8_t x_360; lean_object* x_361; double x_362; uint8_t x_363; +x_358 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; +x_359 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_358); +x_360 = 0; +x_361 = lean_unsigned_to_nat(0u); +x_362 = l_Float_ofScientific(x_359, x_360, x_361); +lean_dec(x_359); +x_363 = lean_float_decLt(x_362, x_345); +x_256 = x_363; +goto block_337; +} +else { -lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; uint8_t x_251; -lean_dec(x_245); -lean_dec(x_244); +lean_object* x_364; double x_365; double x_366; lean_object* x_367; +x_364 = lean_box(0); +x_365 = lean_unbox_float(x_252); +lean_dec(x_252); +x_366 = lean_unbox_float(x_253); +lean_dec(x_253); +x_367 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_19, x_251, x_255, x_365, x_366, x_5, x_364, x_250, x_10, x_11, x_12, x_13, x_247); +return x_367; +} +} +} +block_337: +{ +if (x_256 == 0) +{ +lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; uint8_t x_261; +lean_dec(x_253); +lean_dec(x_252); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_247 = lean_st_ref_take(x_13, x_239); -x_248 = lean_ctor_get(x_247, 0); -lean_inc(x_248); -x_249 = lean_ctor_get(x_248, 3); -lean_inc(x_249); -x_250 = lean_ctor_get(x_247, 1); -lean_inc(x_250); -lean_dec(x_247); -x_251 = !lean_is_exclusive(x_248); -if (x_251 == 0) -{ -lean_object* x_252; uint8_t x_253; -x_252 = lean_ctor_get(x_248, 3); -lean_dec(x_252); -x_253 = !lean_is_exclusive(x_249); -if (x_253 == 0) -{ -lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; -x_254 = lean_ctor_get(x_249, 0); -x_255 = l_Lean_PersistentArray_append___rarg(x_19, x_254); -lean_dec(x_254); -lean_ctor_set(x_249, 0, x_255); -x_256 = lean_st_ref_set(x_13, x_248, x_250); -x_257 = lean_ctor_get(x_256, 1); -lean_inc(x_257); -lean_dec(x_256); -x_258 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_foldAndCollect___spec__34(x_243, x_242, x_10, x_11, x_12, x_13, x_257); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_243); -if (lean_obj_tag(x_258) == 0) -{ -uint8_t x_259; -x_259 = !lean_is_exclusive(x_258); -if (x_259 == 0) -{ -lean_object* x_260; uint8_t x_261; -x_260 = lean_ctor_get(x_258, 0); -x_261 = !lean_is_exclusive(x_260); +x_257 = lean_st_ref_take(x_13, x_247); +x_258 = lean_ctor_get(x_257, 0); +lean_inc(x_258); +x_259 = lean_ctor_get(x_258, 3); +lean_inc(x_259); +x_260 = lean_ctor_get(x_257, 1); +lean_inc(x_260); +lean_dec(x_257); +x_261 = !lean_is_exclusive(x_258); if (x_261 == 0) { -return x_258; -} -else +lean_object* x_262; uint8_t x_263; +x_262 = lean_ctor_get(x_258, 3); +lean_dec(x_262); +x_263 = !lean_is_exclusive(x_259); +if (x_263 == 0) { -lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_262 = lean_ctor_get(x_260, 0); -x_263 = lean_ctor_get(x_260, 1); -lean_inc(x_263); -lean_inc(x_262); -lean_dec(x_260); -x_264 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_264, 0, x_262); -lean_ctor_set(x_264, 1, x_263); -lean_ctor_set(x_258, 0, x_264); -return x_258; -} -} -else -{ -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; -x_265 = lean_ctor_get(x_258, 0); -x_266 = lean_ctor_get(x_258, 1); -lean_inc(x_266); -lean_inc(x_265); -lean_dec(x_258); -x_267 = lean_ctor_get(x_265, 0); +lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; +x_264 = lean_ctor_get(x_259, 0); +x_265 = l_Lean_PersistentArray_append___rarg(x_19, x_264); +lean_dec(x_264); +lean_ctor_set(x_259, 0, x_265); +x_266 = lean_st_ref_set(x_13, x_258, x_260); +x_267 = lean_ctor_get(x_266, 1); lean_inc(x_267); -x_268 = lean_ctor_get(x_265, 1); -lean_inc(x_268); -if (lean_is_exclusive(x_265)) { - lean_ctor_release(x_265, 0); - lean_ctor_release(x_265, 1); - x_269 = x_265; -} else { - lean_dec_ref(x_265); - x_269 = lean_box(0); -} -if (lean_is_scalar(x_269)) { - x_270 = lean_alloc_ctor(0, 2, 0); -} else { - x_270 = x_269; -} -lean_ctor_set(x_270, 0, x_267); -lean_ctor_set(x_270, 1, x_268); -x_271 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_271, 0, x_270); -lean_ctor_set(x_271, 1, x_266); -return x_271; -} +lean_dec(x_266); +x_268 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_foldAndCollect___spec__34(x_251, x_250, x_10, x_11, x_12, x_13, x_267); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_251); +if (lean_obj_tag(x_268) == 0) +{ +uint8_t x_269; +x_269 = !lean_is_exclusive(x_268); +if (x_269 == 0) +{ +lean_object* x_270; uint8_t x_271; +x_270 = lean_ctor_get(x_268, 0); +x_271 = !lean_is_exclusive(x_270); +if (x_271 == 0) +{ +return x_268; } else { -uint8_t x_272; -x_272 = !lean_is_exclusive(x_258); -if (x_272 == 0) -{ -return x_258; -} -else -{ -lean_object* x_273; lean_object* x_274; lean_object* x_275; -x_273 = lean_ctor_get(x_258, 0); -x_274 = lean_ctor_get(x_258, 1); -lean_inc(x_274); +lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_272 = lean_ctor_get(x_270, 0); +x_273 = lean_ctor_get(x_270, 1); lean_inc(x_273); -lean_dec(x_258); -x_275 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_275, 0, x_273); -lean_ctor_set(x_275, 1, x_274); -return x_275; -} +lean_inc(x_272); +lean_dec(x_270); +x_274 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_274, 0, x_272); +lean_ctor_set(x_274, 1, x_273); +lean_ctor_set(x_268, 0, x_274); +return x_268; } } else { -uint64_t x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; -x_276 = lean_ctor_get_uint64(x_249, sizeof(void*)*1); -x_277 = lean_ctor_get(x_249, 0); +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; +x_275 = lean_ctor_get(x_268, 0); +x_276 = lean_ctor_get(x_268, 1); +lean_inc(x_276); +lean_inc(x_275); +lean_dec(x_268); +x_277 = lean_ctor_get(x_275, 0); lean_inc(x_277); -lean_dec(x_249); -x_278 = l_Lean_PersistentArray_append___rarg(x_19, x_277); -lean_dec(x_277); -x_279 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_279, 0, x_278); -lean_ctor_set_uint64(x_279, sizeof(void*)*1, x_276); -lean_ctor_set(x_248, 3, x_279); -x_280 = lean_st_ref_set(x_13, x_248, x_250); -x_281 = lean_ctor_get(x_280, 1); -lean_inc(x_281); -lean_dec(x_280); -x_282 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_foldAndCollect___spec__34(x_243, x_242, x_10, x_11, x_12, x_13, x_281); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_243); -if (lean_obj_tag(x_282) == 0) +x_278 = lean_ctor_get(x_275, 1); +lean_inc(x_278); +if (lean_is_exclusive(x_275)) { + lean_ctor_release(x_275, 0); + lean_ctor_release(x_275, 1); + x_279 = x_275; +} else { + lean_dec_ref(x_275); + x_279 = lean_box(0); +} +if (lean_is_scalar(x_279)) { + x_280 = lean_alloc_ctor(0, 2, 0); +} else { + x_280 = x_279; +} +lean_ctor_set(x_280, 0, x_277); +lean_ctor_set(x_280, 1, x_278); +x_281 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_281, 0, x_280); +lean_ctor_set(x_281, 1, x_276); +return x_281; +} +} +else { -lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; -x_283 = lean_ctor_get(x_282, 0); -lean_inc(x_283); -x_284 = lean_ctor_get(x_282, 1); +uint8_t x_282; +x_282 = !lean_is_exclusive(x_268); +if (x_282 == 0) +{ +return x_268; +} +else +{ +lean_object* x_283; lean_object* x_284; lean_object* x_285; +x_283 = lean_ctor_get(x_268, 0); +x_284 = lean_ctor_get(x_268, 1); lean_inc(x_284); -if (lean_is_exclusive(x_282)) { - lean_ctor_release(x_282, 0); - lean_ctor_release(x_282, 1); - x_285 = x_282; -} else { - lean_dec_ref(x_282); - x_285 = lean_box(0); +lean_inc(x_283); +lean_dec(x_268); +x_285 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_285, 0, x_283); +lean_ctor_set(x_285, 1, x_284); +return x_285; } -x_286 = lean_ctor_get(x_283, 0); -lean_inc(x_286); -x_287 = lean_ctor_get(x_283, 1); +} +} +else +{ +uint64_t x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; +x_286 = lean_ctor_get_uint64(x_259, sizeof(void*)*1); +x_287 = lean_ctor_get(x_259, 0); lean_inc(x_287); -if (lean_is_exclusive(x_283)) { - lean_ctor_release(x_283, 0); - lean_ctor_release(x_283, 1); - x_288 = x_283; -} else { - lean_dec_ref(x_283); - x_288 = lean_box(0); -} -if (lean_is_scalar(x_288)) { - x_289 = lean_alloc_ctor(0, 2, 0); -} else { - x_289 = x_288; -} -lean_ctor_set(x_289, 0, x_286); -lean_ctor_set(x_289, 1, x_287); -if (lean_is_scalar(x_285)) { - x_290 = lean_alloc_ctor(0, 2, 0); -} else { - x_290 = x_285; -} -lean_ctor_set(x_290, 0, x_289); -lean_ctor_set(x_290, 1, x_284); -return x_290; -} -else -{ -lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; -x_291 = lean_ctor_get(x_282, 0); +lean_dec(x_259); +x_288 = l_Lean_PersistentArray_append___rarg(x_19, x_287); +lean_dec(x_287); +x_289 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_289, 0, x_288); +lean_ctor_set_uint64(x_289, sizeof(void*)*1, x_286); +lean_ctor_set(x_258, 3, x_289); +x_290 = lean_st_ref_set(x_13, x_258, x_260); +x_291 = lean_ctor_get(x_290, 1); lean_inc(x_291); -x_292 = lean_ctor_get(x_282, 1); -lean_inc(x_292); -if (lean_is_exclusive(x_282)) { - lean_ctor_release(x_282, 0); - lean_ctor_release(x_282, 1); - x_293 = x_282; -} else { - lean_dec_ref(x_282); - x_293 = lean_box(0); -} -if (lean_is_scalar(x_293)) { - x_294 = lean_alloc_ctor(1, 2, 0); -} else { - x_294 = x_293; -} -lean_ctor_set(x_294, 0, x_291); -lean_ctor_set(x_294, 1, x_292); -return x_294; -} -} -} -else +lean_dec(x_290); +x_292 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_foldAndCollect___spec__34(x_251, x_250, x_10, x_11, x_12, x_13, x_291); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_251); +if (lean_obj_tag(x_292) == 0) { -lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; uint64_t x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; -x_295 = lean_ctor_get(x_248, 0); -x_296 = lean_ctor_get(x_248, 1); -x_297 = lean_ctor_get(x_248, 2); -x_298 = lean_ctor_get(x_248, 4); -x_299 = lean_ctor_get(x_248, 5); -x_300 = lean_ctor_get(x_248, 6); -x_301 = lean_ctor_get(x_248, 7); -lean_inc(x_301); -lean_inc(x_300); -lean_inc(x_299); -lean_inc(x_298); -lean_inc(x_297); +lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; +x_293 = lean_ctor_get(x_292, 0); +lean_inc(x_293); +x_294 = lean_ctor_get(x_292, 1); +lean_inc(x_294); +if (lean_is_exclusive(x_292)) { + lean_ctor_release(x_292, 0); + lean_ctor_release(x_292, 1); + x_295 = x_292; +} else { + lean_dec_ref(x_292); + x_295 = lean_box(0); +} +x_296 = lean_ctor_get(x_293, 0); lean_inc(x_296); -lean_inc(x_295); -lean_dec(x_248); -x_302 = lean_ctor_get_uint64(x_249, sizeof(void*)*1); -x_303 = lean_ctor_get(x_249, 0); -lean_inc(x_303); -if (lean_is_exclusive(x_249)) { - lean_ctor_release(x_249, 0); - x_304 = x_249; +x_297 = lean_ctor_get(x_293, 1); +lean_inc(x_297); +if (lean_is_exclusive(x_293)) { + lean_ctor_release(x_293, 0); + lean_ctor_release(x_293, 1); + x_298 = x_293; } else { - lean_dec_ref(x_249); - x_304 = lean_box(0); + lean_dec_ref(x_293); + x_298 = lean_box(0); } -x_305 = l_Lean_PersistentArray_append___rarg(x_19, x_303); -lean_dec(x_303); -if (lean_is_scalar(x_304)) { - x_306 = lean_alloc_ctor(0, 1, 8); +if (lean_is_scalar(x_298)) { + x_299 = lean_alloc_ctor(0, 2, 0); } else { - x_306 = x_304; + x_299 = x_298; } -lean_ctor_set(x_306, 0, x_305); -lean_ctor_set_uint64(x_306, sizeof(void*)*1, x_302); -x_307 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_307, 0, x_295); -lean_ctor_set(x_307, 1, x_296); -lean_ctor_set(x_307, 2, x_297); -lean_ctor_set(x_307, 3, x_306); -lean_ctor_set(x_307, 4, x_298); -lean_ctor_set(x_307, 5, x_299); -lean_ctor_set(x_307, 6, x_300); -lean_ctor_set(x_307, 7, x_301); -x_308 = lean_st_ref_set(x_13, x_307, x_250); -x_309 = lean_ctor_get(x_308, 1); -lean_inc(x_309); -lean_dec(x_308); -x_310 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_foldAndCollect___spec__34(x_243, x_242, x_10, x_11, x_12, x_13, x_309); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_243); -if (lean_obj_tag(x_310) == 0) +lean_ctor_set(x_299, 0, x_296); +lean_ctor_set(x_299, 1, x_297); +if (lean_is_scalar(x_295)) { + x_300 = lean_alloc_ctor(0, 2, 0); +} else { + x_300 = x_295; +} +lean_ctor_set(x_300, 0, x_299); +lean_ctor_set(x_300, 1, x_294); +return x_300; +} +else { -lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; -x_311 = lean_ctor_get(x_310, 0); +lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; +x_301 = lean_ctor_get(x_292, 0); +lean_inc(x_301); +x_302 = lean_ctor_get(x_292, 1); +lean_inc(x_302); +if (lean_is_exclusive(x_292)) { + lean_ctor_release(x_292, 0); + lean_ctor_release(x_292, 1); + x_303 = x_292; +} else { + lean_dec_ref(x_292); + x_303 = lean_box(0); +} +if (lean_is_scalar(x_303)) { + x_304 = lean_alloc_ctor(1, 2, 0); +} else { + x_304 = x_303; +} +lean_ctor_set(x_304, 0, x_301); +lean_ctor_set(x_304, 1, x_302); +return x_304; +} +} +} +else +{ +lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint64_t x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; +x_305 = lean_ctor_get(x_258, 0); +x_306 = lean_ctor_get(x_258, 1); +x_307 = lean_ctor_get(x_258, 2); +x_308 = lean_ctor_get(x_258, 4); +x_309 = lean_ctor_get(x_258, 5); +x_310 = lean_ctor_get(x_258, 6); +x_311 = lean_ctor_get(x_258, 7); lean_inc(x_311); -x_312 = lean_ctor_get(x_310, 1); -lean_inc(x_312); -if (lean_is_exclusive(x_310)) { - lean_ctor_release(x_310, 0); - lean_ctor_release(x_310, 1); - x_313 = x_310; +lean_inc(x_310); +lean_inc(x_309); +lean_inc(x_308); +lean_inc(x_307); +lean_inc(x_306); +lean_inc(x_305); +lean_dec(x_258); +x_312 = lean_ctor_get_uint64(x_259, sizeof(void*)*1); +x_313 = lean_ctor_get(x_259, 0); +lean_inc(x_313); +if (lean_is_exclusive(x_259)) { + lean_ctor_release(x_259, 0); + x_314 = x_259; } else { - lean_dec_ref(x_310); - x_313 = lean_box(0); + lean_dec_ref(x_259); + x_314 = lean_box(0); } -x_314 = lean_ctor_get(x_311, 0); -lean_inc(x_314); -x_315 = lean_ctor_get(x_311, 1); -lean_inc(x_315); -if (lean_is_exclusive(x_311)) { - lean_ctor_release(x_311, 0); - lean_ctor_release(x_311, 1); - x_316 = x_311; +x_315 = l_Lean_PersistentArray_append___rarg(x_19, x_313); +lean_dec(x_313); +if (lean_is_scalar(x_314)) { + x_316 = lean_alloc_ctor(0, 1, 8); } else { - lean_dec_ref(x_311); - x_316 = lean_box(0); + x_316 = x_314; } -if (lean_is_scalar(x_316)) { - x_317 = lean_alloc_ctor(0, 2, 0); -} else { - x_317 = x_316; -} -lean_ctor_set(x_317, 0, x_314); -lean_ctor_set(x_317, 1, x_315); -if (lean_is_scalar(x_313)) { - x_318 = lean_alloc_ctor(0, 2, 0); -} else { - x_318 = x_313; -} -lean_ctor_set(x_318, 0, x_317); -lean_ctor_set(x_318, 1, x_312); -return x_318; -} -else -{ -lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; -x_319 = lean_ctor_get(x_310, 0); +lean_ctor_set(x_316, 0, x_315); +lean_ctor_set_uint64(x_316, sizeof(void*)*1, x_312); +x_317 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_317, 0, x_305); +lean_ctor_set(x_317, 1, x_306); +lean_ctor_set(x_317, 2, x_307); +lean_ctor_set(x_317, 3, x_316); +lean_ctor_set(x_317, 4, x_308); +lean_ctor_set(x_317, 5, x_309); +lean_ctor_set(x_317, 6, x_310); +lean_ctor_set(x_317, 7, x_311); +x_318 = lean_st_ref_set(x_13, x_317, x_260); +x_319 = lean_ctor_get(x_318, 1); lean_inc(x_319); -x_320 = lean_ctor_get(x_310, 1); -lean_inc(x_320); -if (lean_is_exclusive(x_310)) { - lean_ctor_release(x_310, 0); - lean_ctor_release(x_310, 1); - x_321 = x_310; +lean_dec(x_318); +x_320 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_foldAndCollect___spec__34(x_251, x_250, x_10, x_11, x_12, x_13, x_319); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_251); +if (lean_obj_tag(x_320) == 0) +{ +lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; +x_321 = lean_ctor_get(x_320, 0); +lean_inc(x_321); +x_322 = lean_ctor_get(x_320, 1); +lean_inc(x_322); +if (lean_is_exclusive(x_320)) { + lean_ctor_release(x_320, 0); + lean_ctor_release(x_320, 1); + x_323 = x_320; } else { - lean_dec_ref(x_310); - x_321 = lean_box(0); + lean_dec_ref(x_320); + x_323 = lean_box(0); } -if (lean_is_scalar(x_321)) { - x_322 = lean_alloc_ctor(1, 2, 0); +x_324 = lean_ctor_get(x_321, 0); +lean_inc(x_324); +x_325 = lean_ctor_get(x_321, 1); +lean_inc(x_325); +if (lean_is_exclusive(x_321)) { + lean_ctor_release(x_321, 0); + lean_ctor_release(x_321, 1); + x_326 = x_321; } else { - x_322 = x_321; + lean_dec_ref(x_321); + x_326 = lean_box(0); } -lean_ctor_set(x_322, 0, x_319); -lean_ctor_set(x_322, 1, x_320); -return x_322; +if (lean_is_scalar(x_326)) { + x_327 = lean_alloc_ctor(0, 2, 0); +} else { + x_327 = x_326; +} +lean_ctor_set(x_327, 0, x_324); +lean_ctor_set(x_327, 1, x_325); +if (lean_is_scalar(x_323)) { + x_328 = lean_alloc_ctor(0, 2, 0); +} else { + x_328 = x_323; +} +lean_ctor_set(x_328, 0, x_327); +lean_ctor_set(x_328, 1, x_322); +return x_328; +} +else +{ +lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; +x_329 = lean_ctor_get(x_320, 0); +lean_inc(x_329); +x_330 = lean_ctor_get(x_320, 1); +lean_inc(x_330); +if (lean_is_exclusive(x_320)) { + lean_ctor_release(x_320, 0); + lean_ctor_release(x_320, 1); + x_331 = x_320; +} else { + lean_dec_ref(x_320); + x_331 = lean_box(0); +} +if (lean_is_scalar(x_331)) { + x_332 = lean_alloc_ctor(1, 2, 0); +} else { + x_332 = x_331; +} +lean_ctor_set(x_332, 0, x_329); +lean_ctor_set(x_332, 1, x_330); +return x_332; } } } else { -lean_object* x_323; double x_324; double x_325; lean_object* x_326; -x_323 = lean_box(0); -x_324 = lean_unbox_float(x_244); -lean_dec(x_244); -x_325 = lean_unbox_float(x_245); -lean_dec(x_245); -x_326 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_19, x_243, x_1, x_246, x_324, x_325, x_5, x_323, x_242, x_10, x_11, x_12, x_13, x_239); -return x_326; -} -} -else -{ -lean_object* x_327; double x_328; double x_329; lean_object* x_330; -x_327 = lean_box(0); -x_328 = lean_unbox_float(x_244); -lean_dec(x_244); -x_329 = lean_unbox_float(x_245); -lean_dec(x_245); -x_330 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_19, x_243, x_1, x_246, x_328, x_329, x_5, x_327, x_242, x_10, x_11, x_12, x_13, x_239); -return x_330; +lean_object* x_333; double x_334; double x_335; lean_object* x_336; +x_333 = lean_box(0); +x_334 = lean_unbox_float(x_252); +lean_dec(x_252); +x_335 = lean_unbox_float(x_253); +lean_dec(x_253); +x_336 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_19, x_251, x_255, x_334, x_335, x_5, x_333, x_250, x_10, x_11, x_12, x_13, x_247); +return x_336; } } } @@ -9750,788 +9771,844 @@ return x_330; } else { -lean_object* x_435; lean_object* x_436; lean_object* x_437; uint8_t x_438; -x_435 = lean_ctor_get(x_16, 0); -x_436 = lean_ctor_get(x_16, 1); -lean_inc(x_436); -lean_inc(x_435); -lean_dec(x_16); -x_437 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__1; -x_438 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_437); -if (x_438 == 0) -{ -lean_object* x_439; lean_object* x_440; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; -x_511 = lean_io_mono_nanos_now(x_17); -x_512 = lean_ctor_get(x_511, 0); -lean_inc(x_512); -x_513 = lean_ctor_get(x_511, 1); -lean_inc(x_513); -lean_dec(x_511); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_436); -x_514 = lean_apply_6(x_7, x_436, x_10, x_11, x_12, x_13, x_513); -if (lean_obj_tag(x_514) == 0) -{ -lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; uint8_t x_525; lean_object* x_526; double x_527; double x_528; double x_529; double x_530; double x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; -lean_dec(x_436); -x_515 = lean_ctor_get(x_514, 0); -lean_inc(x_515); -x_516 = lean_ctor_get(x_514, 1); -lean_inc(x_516); -lean_dec(x_514); -x_517 = lean_ctor_get(x_515, 0); -lean_inc(x_517); -x_518 = lean_ctor_get(x_515, 1); -lean_inc(x_518); -if (lean_is_exclusive(x_515)) { - lean_ctor_release(x_515, 0); - lean_ctor_release(x_515, 1); - x_519 = x_515; -} else { - lean_dec_ref(x_515); - x_519 = lean_box(0); -} -x_520 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_520, 0, x_517); -x_521 = lean_io_mono_nanos_now(x_516); -x_522 = lean_ctor_get(x_521, 0); -lean_inc(x_522); -x_523 = lean_ctor_get(x_521, 1); -lean_inc(x_523); -if (lean_is_exclusive(x_521)) { - lean_ctor_release(x_521, 0); - lean_ctor_release(x_521, 1); - x_524 = x_521; -} else { - lean_dec_ref(x_521); - x_524 = lean_box(0); -} -x_525 = 0; -x_526 = lean_unsigned_to_nat(0u); -x_527 = l_Float_ofScientific(x_512, x_525, x_526); -lean_dec(x_512); -x_528 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; -x_529 = lean_float_div(x_527, x_528); -x_530 = l_Float_ofScientific(x_522, x_525, x_526); -lean_dec(x_522); -x_531 = lean_float_div(x_530, x_528); -x_532 = lean_box_float(x_529); -x_533 = lean_box_float(x_531); -if (lean_is_scalar(x_519)) { - x_534 = lean_alloc_ctor(0, 2, 0); -} else { - x_534 = x_519; -} -lean_ctor_set(x_534, 0, x_532); -lean_ctor_set(x_534, 1, x_533); -x_535 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_535, 0, x_520); -lean_ctor_set(x_535, 1, x_534); -if (lean_is_scalar(x_524)) { - x_536 = lean_alloc_ctor(0, 2, 0); -} else { - x_536 = x_524; -} -lean_ctor_set(x_536, 0, x_535); -lean_ctor_set(x_536, 1, x_518); -x_439 = x_536; -x_440 = x_523; -goto block_510; -} -else -{ -lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; uint8_t x_545; lean_object* x_546; double x_547; double x_548; double x_549; double x_550; double x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; -x_537 = lean_ctor_get(x_514, 0); -lean_inc(x_537); -x_538 = lean_ctor_get(x_514, 1); -lean_inc(x_538); -if (lean_is_exclusive(x_514)) { - lean_ctor_release(x_514, 0); - lean_ctor_release(x_514, 1); - x_539 = x_514; -} else { - lean_dec_ref(x_514); - x_539 = lean_box(0); -} -x_540 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_540, 0, x_537); -x_541 = lean_io_mono_nanos_now(x_538); -x_542 = lean_ctor_get(x_541, 0); -lean_inc(x_542); -x_543 = lean_ctor_get(x_541, 1); -lean_inc(x_543); -if (lean_is_exclusive(x_541)) { - lean_ctor_release(x_541, 0); - lean_ctor_release(x_541, 1); - x_544 = x_541; -} else { - lean_dec_ref(x_541); - x_544 = lean_box(0); -} -x_545 = 0; -x_546 = lean_unsigned_to_nat(0u); -x_547 = l_Float_ofScientific(x_512, x_545, x_546); -lean_dec(x_512); -x_548 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; -x_549 = lean_float_div(x_547, x_548); -x_550 = l_Float_ofScientific(x_542, x_545, x_546); -lean_dec(x_542); -x_551 = lean_float_div(x_550, x_548); -x_552 = lean_box_float(x_549); -x_553 = lean_box_float(x_551); -x_554 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_554, 0, x_552); -lean_ctor_set(x_554, 1, x_553); -if (lean_is_scalar(x_544)) { - x_555 = lean_alloc_ctor(0, 2, 0); -} else { - x_555 = x_544; -} -lean_ctor_set(x_555, 0, x_540); -lean_ctor_set(x_555, 1, x_554); -if (lean_is_scalar(x_539)) { - x_556 = lean_alloc_ctor(0, 2, 0); -} else { - x_556 = x_539; - lean_ctor_set_tag(x_556, 0); -} -lean_ctor_set(x_556, 0, x_555); -lean_ctor_set(x_556, 1, x_436); -x_439 = x_556; -x_440 = x_543; -goto block_510; -} -block_510: -{ -lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; uint8_t x_447; lean_object* x_490; uint8_t x_491; -x_441 = lean_ctor_get(x_439, 0); -lean_inc(x_441); -x_442 = lean_ctor_get(x_441, 1); -lean_inc(x_442); -x_443 = lean_ctor_get(x_439, 1); -lean_inc(x_443); -lean_dec(x_439); -x_444 = lean_ctor_get(x_441, 0); -lean_inc(x_444); -lean_dec(x_441); -x_445 = lean_ctor_get(x_442, 0); -lean_inc(x_445); -x_446 = lean_ctor_get(x_442, 1); -lean_inc(x_446); -lean_dec(x_442); -x_490 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__2; -x_491 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_490); -if (x_491 == 0) -{ -uint8_t x_492; -x_492 = 0; -x_447 = x_492; -goto block_489; -} -else -{ -double x_493; double x_494; double x_495; -x_493 = lean_unbox_float(x_446); -x_494 = lean_unbox_float(x_445); -x_495 = lean_float_sub(x_493, x_494); -if (x_438 == 0) -{ -lean_object* x_496; lean_object* x_497; uint8_t x_498; lean_object* x_499; double x_500; double x_501; double x_502; uint8_t x_503; -x_496 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; -x_497 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_496); -x_498 = 0; -x_499 = lean_unsigned_to_nat(0u); -x_500 = l_Float_ofScientific(x_497, x_498, x_499); -lean_dec(x_497); -x_501 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__4; -x_502 = lean_float_div(x_500, x_501); -x_503 = lean_float_decLt(x_502, x_495); -x_447 = x_503; -goto block_489; -} -else -{ -lean_object* x_504; lean_object* x_505; uint8_t x_506; lean_object* x_507; double x_508; uint8_t x_509; -x_504 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; -x_505 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_504); -x_506 = 0; -x_507 = lean_unsigned_to_nat(0u); -x_508 = l_Float_ofScientific(x_505, x_506, x_507); -lean_dec(x_505); -x_509 = lean_float_decLt(x_508, x_495); -x_447 = x_509; -goto block_489; -} -} -block_489: -{ -if (x_6 == 0) -{ -if (x_447 == 0) -{ -lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; uint64_t x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; -lean_dec(x_446); -lean_dec(x_445); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -x_448 = lean_st_ref_take(x_13, x_440); -x_449 = lean_ctor_get(x_448, 0); -lean_inc(x_449); -x_450 = lean_ctor_get(x_449, 3); -lean_inc(x_450); -x_451 = lean_ctor_get(x_448, 1); -lean_inc(x_451); -lean_dec(x_448); -x_452 = lean_ctor_get(x_449, 0); +lean_object* x_451; lean_object* x_452; lean_object* x_453; uint8_t x_454; +x_451 = lean_ctor_get(x_16, 0); +x_452 = lean_ctor_get(x_16, 1); lean_inc(x_452); -x_453 = lean_ctor_get(x_449, 1); -lean_inc(x_453); -x_454 = lean_ctor_get(x_449, 2); -lean_inc(x_454); -x_455 = lean_ctor_get(x_449, 4); -lean_inc(x_455); -x_456 = lean_ctor_get(x_449, 5); -lean_inc(x_456); -x_457 = lean_ctor_get(x_449, 6); -lean_inc(x_457); -x_458 = lean_ctor_get(x_449, 7); -lean_inc(x_458); -if (lean_is_exclusive(x_449)) { - lean_ctor_release(x_449, 0); - lean_ctor_release(x_449, 1); - lean_ctor_release(x_449, 2); - lean_ctor_release(x_449, 3); - lean_ctor_release(x_449, 4); - lean_ctor_release(x_449, 5); - lean_ctor_release(x_449, 6); - lean_ctor_release(x_449, 7); - x_459 = x_449; -} else { - lean_dec_ref(x_449); - x_459 = lean_box(0); -} -x_460 = lean_ctor_get_uint64(x_450, sizeof(void*)*1); -x_461 = lean_ctor_get(x_450, 0); -lean_inc(x_461); -if (lean_is_exclusive(x_450)) { - lean_ctor_release(x_450, 0); - x_462 = x_450; -} else { - lean_dec_ref(x_450); - x_462 = lean_box(0); -} -x_463 = l_Lean_PersistentArray_append___rarg(x_435, x_461); -lean_dec(x_461); -if (lean_is_scalar(x_462)) { - x_464 = lean_alloc_ctor(0, 1, 8); -} else { - x_464 = x_462; -} -lean_ctor_set(x_464, 0, x_463); -lean_ctor_set_uint64(x_464, sizeof(void*)*1, x_460); -if (lean_is_scalar(x_459)) { - x_465 = lean_alloc_ctor(0, 8, 0); -} else { - x_465 = x_459; -} -lean_ctor_set(x_465, 0, x_452); -lean_ctor_set(x_465, 1, x_453); -lean_ctor_set(x_465, 2, x_454); -lean_ctor_set(x_465, 3, x_464); -lean_ctor_set(x_465, 4, x_455); -lean_ctor_set(x_465, 5, x_456); -lean_ctor_set(x_465, 6, x_457); -lean_ctor_set(x_465, 7, x_458); -x_466 = lean_st_ref_set(x_13, x_465, x_451); -x_467 = lean_ctor_get(x_466, 1); -lean_inc(x_467); -lean_dec(x_466); -x_468 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_foldAndCollect___spec__34(x_444, x_443, x_10, x_11, x_12, x_13, x_467); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_444); -if (lean_obj_tag(x_468) == 0) +lean_inc(x_451); +lean_dec(x_16); +x_453 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__1; +x_454 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_453); +if (x_454 == 0) { -lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; -x_469 = lean_ctor_get(x_468, 0); -lean_inc(x_469); -x_470 = lean_ctor_get(x_468, 1); -lean_inc(x_470); -if (lean_is_exclusive(x_468)) { - lean_ctor_release(x_468, 0); - lean_ctor_release(x_468, 1); - x_471 = x_468; -} else { - lean_dec_ref(x_468); - x_471 = lean_box(0); -} -x_472 = lean_ctor_get(x_469, 0); -lean_inc(x_472); -x_473 = lean_ctor_get(x_469, 1); -lean_inc(x_473); -if (lean_is_exclusive(x_469)) { - lean_ctor_release(x_469, 0); - lean_ctor_release(x_469, 1); - x_474 = x_469; -} else { - lean_dec_ref(x_469); - x_474 = lean_box(0); -} -if (lean_is_scalar(x_474)) { - x_475 = lean_alloc_ctor(0, 2, 0); -} else { - x_475 = x_474; -} -lean_ctor_set(x_475, 0, x_472); -lean_ctor_set(x_475, 1, x_473); -if (lean_is_scalar(x_471)) { - x_476 = lean_alloc_ctor(0, 2, 0); -} else { - x_476 = x_471; -} -lean_ctor_set(x_476, 0, x_475); -lean_ctor_set(x_476, 1, x_470); -return x_476; -} -else -{ -lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; -x_477 = lean_ctor_get(x_468, 0); -lean_inc(x_477); -x_478 = lean_ctor_get(x_468, 1); -lean_inc(x_478); -if (lean_is_exclusive(x_468)) { - lean_ctor_release(x_468, 0); - lean_ctor_release(x_468, 1); - x_479 = x_468; -} else { - lean_dec_ref(x_468); - x_479 = lean_box(0); -} -if (lean_is_scalar(x_479)) { - x_480 = lean_alloc_ctor(1, 2, 0); -} else { - x_480 = x_479; -} -lean_ctor_set(x_480, 0, x_477); -lean_ctor_set(x_480, 1, x_478); -return x_480; -} -} -else -{ -lean_object* x_481; double x_482; double x_483; lean_object* x_484; -x_481 = lean_box(0); -x_482 = lean_unbox_float(x_445); -lean_dec(x_445); -x_483 = lean_unbox_float(x_446); -lean_dec(x_446); -x_484 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_435, x_444, x_1, x_447, x_482, x_483, x_5, x_481, x_443, x_10, x_11, x_12, x_13, x_440); -return x_484; -} -} -else -{ -lean_object* x_485; double x_486; double x_487; lean_object* x_488; -x_485 = lean_box(0); -x_486 = lean_unbox_float(x_445); -lean_dec(x_445); -x_487 = lean_unbox_float(x_446); -lean_dec(x_446); -x_488 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_435, x_444, x_1, x_447, x_486, x_487, x_5, x_485, x_443, x_10, x_11, x_12, x_13, x_440); -return x_488; -} -} -} -} -else -{ -lean_object* x_557; lean_object* x_558; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; -x_629 = lean_io_get_num_heartbeats(x_17); -x_630 = lean_ctor_get(x_629, 0); -lean_inc(x_630); -x_631 = lean_ctor_get(x_629, 1); -lean_inc(x_631); -lean_dec(x_629); +lean_object* x_455; lean_object* x_456; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; +x_535 = lean_io_mono_nanos_now(x_17); +x_536 = lean_ctor_get(x_535, 0); +lean_inc(x_536); +x_537 = lean_ctor_get(x_535, 1); +lean_inc(x_537); +lean_dec(x_535); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -lean_inc(x_436); -x_632 = lean_apply_6(x_7, x_436, x_10, x_11, x_12, x_13, x_631); -if (lean_obj_tag(x_632) == 0) +lean_inc(x_452); +x_538 = lean_apply_6(x_7, x_452, x_10, x_11, x_12, x_13, x_537); +if (lean_obj_tag(x_538) == 0) { -lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; uint8_t x_643; lean_object* x_644; double x_645; double x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; -lean_dec(x_436); -x_633 = lean_ctor_get(x_632, 0); -lean_inc(x_633); -x_634 = lean_ctor_get(x_632, 1); -lean_inc(x_634); -lean_dec(x_632); -x_635 = lean_ctor_get(x_633, 0); -lean_inc(x_635); -x_636 = lean_ctor_get(x_633, 1); -lean_inc(x_636); -if (lean_is_exclusive(x_633)) { - lean_ctor_release(x_633, 0); - lean_ctor_release(x_633, 1); - x_637 = x_633; +lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; uint8_t x_549; lean_object* x_550; double x_551; double x_552; double x_553; double x_554; double x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; +lean_dec(x_452); +x_539 = lean_ctor_get(x_538, 0); +lean_inc(x_539); +x_540 = lean_ctor_get(x_538, 1); +lean_inc(x_540); +lean_dec(x_538); +x_541 = lean_ctor_get(x_539, 0); +lean_inc(x_541); +x_542 = lean_ctor_get(x_539, 1); +lean_inc(x_542); +if (lean_is_exclusive(x_539)) { + lean_ctor_release(x_539, 0); + lean_ctor_release(x_539, 1); + x_543 = x_539; } else { - lean_dec_ref(x_633); - x_637 = lean_box(0); + lean_dec_ref(x_539); + x_543 = lean_box(0); } -x_638 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_638, 0, x_635); -x_639 = lean_io_get_num_heartbeats(x_634); -x_640 = lean_ctor_get(x_639, 0); -lean_inc(x_640); -x_641 = lean_ctor_get(x_639, 1); -lean_inc(x_641); -if (lean_is_exclusive(x_639)) { - lean_ctor_release(x_639, 0); - lean_ctor_release(x_639, 1); - x_642 = x_639; +x_544 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_544, 0, x_541); +x_545 = lean_io_mono_nanos_now(x_540); +x_546 = lean_ctor_get(x_545, 0); +lean_inc(x_546); +x_547 = lean_ctor_get(x_545, 1); +lean_inc(x_547); +if (lean_is_exclusive(x_545)) { + lean_ctor_release(x_545, 0); + lean_ctor_release(x_545, 1); + x_548 = x_545; } else { - lean_dec_ref(x_639); - x_642 = lean_box(0); + lean_dec_ref(x_545); + x_548 = lean_box(0); } -x_643 = 0; -x_644 = lean_unsigned_to_nat(0u); -x_645 = l_Float_ofScientific(x_630, x_643, x_644); -lean_dec(x_630); -x_646 = l_Float_ofScientific(x_640, x_643, x_644); -lean_dec(x_640); -x_647 = lean_box_float(x_645); -x_648 = lean_box_float(x_646); -if (lean_is_scalar(x_637)) { - x_649 = lean_alloc_ctor(0, 2, 0); +x_549 = 0; +x_550 = lean_unsigned_to_nat(0u); +x_551 = l_Float_ofScientific(x_536, x_549, x_550); +lean_dec(x_536); +x_552 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; +x_553 = lean_float_div(x_551, x_552); +x_554 = l_Float_ofScientific(x_546, x_549, x_550); +lean_dec(x_546); +x_555 = lean_float_div(x_554, x_552); +x_556 = lean_box_float(x_553); +x_557 = lean_box_float(x_555); +if (lean_is_scalar(x_543)) { + x_558 = lean_alloc_ctor(0, 2, 0); } else { - x_649 = x_637; + x_558 = x_543; } -lean_ctor_set(x_649, 0, x_647); -lean_ctor_set(x_649, 1, x_648); -x_650 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_650, 0, x_638); -lean_ctor_set(x_650, 1, x_649); -if (lean_is_scalar(x_642)) { - x_651 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_558, 0, x_556); +lean_ctor_set(x_558, 1, x_557); +x_559 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_559, 0, x_544); +lean_ctor_set(x_559, 1, x_558); +if (lean_is_scalar(x_548)) { + x_560 = lean_alloc_ctor(0, 2, 0); } else { - x_651 = x_642; + x_560 = x_548; } -lean_ctor_set(x_651, 0, x_650); -lean_ctor_set(x_651, 1, x_636); -x_557 = x_651; -x_558 = x_641; -goto block_628; +lean_ctor_set(x_560, 0, x_559); +lean_ctor_set(x_560, 1, x_542); +x_455 = x_560; +x_456 = x_547; +goto block_534; } else { -lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; uint8_t x_660; lean_object* x_661; double x_662; double x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; -x_652 = lean_ctor_get(x_632, 0); -lean_inc(x_652); -x_653 = lean_ctor_get(x_632, 1); -lean_inc(x_653); -if (lean_is_exclusive(x_632)) { - lean_ctor_release(x_632, 0); - lean_ctor_release(x_632, 1); - x_654 = x_632; -} else { - lean_dec_ref(x_632); - x_654 = lean_box(0); -} -x_655 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_655, 0, x_652); -x_656 = lean_io_get_num_heartbeats(x_653); -x_657 = lean_ctor_get(x_656, 0); -lean_inc(x_657); -x_658 = lean_ctor_get(x_656, 1); -lean_inc(x_658); -if (lean_is_exclusive(x_656)) { - lean_ctor_release(x_656, 0); - lean_ctor_release(x_656, 1); - x_659 = x_656; -} else { - lean_dec_ref(x_656); - x_659 = lean_box(0); -} -x_660 = 0; -x_661 = lean_unsigned_to_nat(0u); -x_662 = l_Float_ofScientific(x_630, x_660, x_661); -lean_dec(x_630); -x_663 = l_Float_ofScientific(x_657, x_660, x_661); -lean_dec(x_657); -x_664 = lean_box_float(x_662); -x_665 = lean_box_float(x_663); -x_666 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_666, 0, x_664); -lean_ctor_set(x_666, 1, x_665); -if (lean_is_scalar(x_659)) { - x_667 = lean_alloc_ctor(0, 2, 0); -} else { - x_667 = x_659; -} -lean_ctor_set(x_667, 0, x_655); -lean_ctor_set(x_667, 1, x_666); -if (lean_is_scalar(x_654)) { - x_668 = lean_alloc_ctor(0, 2, 0); -} else { - x_668 = x_654; - lean_ctor_set_tag(x_668, 0); -} -lean_ctor_set(x_668, 0, x_667); -lean_ctor_set(x_668, 1, x_436); -x_557 = x_668; -x_558 = x_658; -goto block_628; -} -block_628: -{ -lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; uint8_t x_565; lean_object* x_608; uint8_t x_609; -x_559 = lean_ctor_get(x_557, 0); -lean_inc(x_559); -x_560 = lean_ctor_get(x_559, 1); -lean_inc(x_560); -x_561 = lean_ctor_get(x_557, 1); +lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; uint8_t x_569; lean_object* x_570; double x_571; double x_572; double x_573; double x_574; double x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; +x_561 = lean_ctor_get(x_538, 0); lean_inc(x_561); -lean_dec(x_557); -x_562 = lean_ctor_get(x_559, 0); +x_562 = lean_ctor_get(x_538, 1); lean_inc(x_562); -lean_dec(x_559); -x_563 = lean_ctor_get(x_560, 0); -lean_inc(x_563); -x_564 = lean_ctor_get(x_560, 1); -lean_inc(x_564); -lean_dec(x_560); -x_608 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__2; -x_609 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_608); -if (x_609 == 0) -{ -uint8_t x_610; -x_610 = 0; -x_565 = x_610; -goto block_607; +if (lean_is_exclusive(x_538)) { + lean_ctor_release(x_538, 0); + lean_ctor_release(x_538, 1); + x_563 = x_538; +} else { + lean_dec_ref(x_538); + x_563 = lean_box(0); } -else -{ -double x_611; double x_612; double x_613; -x_611 = lean_unbox_float(x_564); -x_612 = lean_unbox_float(x_563); -x_613 = lean_float_sub(x_611, x_612); -if (x_438 == 0) -{ -lean_object* x_614; lean_object* x_615; uint8_t x_616; lean_object* x_617; double x_618; double x_619; double x_620; uint8_t x_621; -x_614 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; -x_615 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_614); -x_616 = 0; -x_617 = lean_unsigned_to_nat(0u); -x_618 = l_Float_ofScientific(x_615, x_616, x_617); -lean_dec(x_615); -x_619 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__4; -x_620 = lean_float_div(x_618, x_619); -x_621 = lean_float_decLt(x_620, x_613); -x_565 = x_621; -goto block_607; +x_564 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_564, 0, x_561); +x_565 = lean_io_mono_nanos_now(x_562); +x_566 = lean_ctor_get(x_565, 0); +lean_inc(x_566); +x_567 = lean_ctor_get(x_565, 1); +lean_inc(x_567); +if (lean_is_exclusive(x_565)) { + lean_ctor_release(x_565, 0); + lean_ctor_release(x_565, 1); + x_568 = x_565; +} else { + lean_dec_ref(x_565); + x_568 = lean_box(0); } -else +x_569 = 0; +x_570 = lean_unsigned_to_nat(0u); +x_571 = l_Float_ofScientific(x_536, x_569, x_570); +lean_dec(x_536); +x_572 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; +x_573 = lean_float_div(x_571, x_572); +x_574 = l_Float_ofScientific(x_566, x_569, x_570); +lean_dec(x_566); +x_575 = lean_float_div(x_574, x_572); +x_576 = lean_box_float(x_573); +x_577 = lean_box_float(x_575); +x_578 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_578, 0, x_576); +lean_ctor_set(x_578, 1, x_577); +if (lean_is_scalar(x_568)) { + x_579 = lean_alloc_ctor(0, 2, 0); +} else { + x_579 = x_568; +} +lean_ctor_set(x_579, 0, x_564); +lean_ctor_set(x_579, 1, x_578); +if (lean_is_scalar(x_563)) { + x_580 = lean_alloc_ctor(0, 2, 0); +} else { + x_580 = x_563; + lean_ctor_set_tag(x_580, 0); +} +lean_ctor_set(x_580, 0, x_579); +lean_ctor_set(x_580, 1, x_452); +x_455 = x_580; +x_456 = x_567; +goto block_534; +} +block_534: { -lean_object* x_622; lean_object* x_623; uint8_t x_624; lean_object* x_625; double x_626; uint8_t x_627; -x_622 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; -x_623 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_622); -x_624 = 0; -x_625 = lean_unsigned_to_nat(0u); -x_626 = l_Float_ofScientific(x_623, x_624, x_625); -lean_dec(x_623); -x_627 = lean_float_decLt(x_626, x_613); -x_565 = x_627; -goto block_607; -} -} -block_607: +lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; uint8_t x_464; uint8_t x_465; +x_457 = lean_ctor_get(x_455, 0); +lean_inc(x_457); +x_458 = lean_ctor_get(x_457, 1); +lean_inc(x_458); +x_459 = lean_ctor_get(x_455, 1); +lean_inc(x_459); +lean_dec(x_455); +x_460 = lean_ctor_get(x_457, 0); +lean_inc(x_460); +lean_dec(x_457); +x_461 = lean_ctor_get(x_458, 0); +lean_inc(x_461); +x_462 = lean_ctor_get(x_458, 1); +lean_inc(x_462); +lean_dec(x_458); +x_463 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__2; +x_464 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_463); +if (x_464 == 0) { if (x_6 == 0) { -if (x_565 == 0) +uint8_t x_504; +x_504 = 0; +x_465 = x_504; +goto block_503; +} +else { -lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; uint64_t x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; -lean_dec(x_564); -lean_dec(x_563); +lean_object* x_505; double x_506; double x_507; lean_object* x_508; +x_505 = lean_box(0); +x_506 = lean_unbox_float(x_461); +lean_dec(x_461); +x_507 = lean_unbox_float(x_462); +lean_dec(x_462); +x_508 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_451, x_460, x_464, x_506, x_507, x_5, x_505, x_459, x_10, x_11, x_12, x_13, x_456); +return x_508; +} +} +else +{ +double x_509; double x_510; double x_511; +x_509 = lean_unbox_float(x_462); +x_510 = lean_unbox_float(x_461); +x_511 = lean_float_sub(x_509, x_510); +if (x_454 == 0) +{ +if (x_6 == 0) +{ +lean_object* x_512; lean_object* x_513; uint8_t x_514; lean_object* x_515; double x_516; double x_517; double x_518; uint8_t x_519; +x_512 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; +x_513 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_512); +x_514 = 0; +x_515 = lean_unsigned_to_nat(0u); +x_516 = l_Float_ofScientific(x_513, x_514, x_515); +lean_dec(x_513); +x_517 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__4; +x_518 = lean_float_div(x_516, x_517); +x_519 = lean_float_decLt(x_518, x_511); +x_465 = x_519; +goto block_503; +} +else +{ +lean_object* x_520; double x_521; double x_522; lean_object* x_523; +x_520 = lean_box(0); +x_521 = lean_unbox_float(x_461); +lean_dec(x_461); +x_522 = lean_unbox_float(x_462); +lean_dec(x_462); +x_523 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_451, x_460, x_464, x_521, x_522, x_5, x_520, x_459, x_10, x_11, x_12, x_13, x_456); +return x_523; +} +} +else +{ +if (x_6 == 0) +{ +lean_object* x_524; lean_object* x_525; uint8_t x_526; lean_object* x_527; double x_528; uint8_t x_529; +x_524 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; +x_525 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_524); +x_526 = 0; +x_527 = lean_unsigned_to_nat(0u); +x_528 = l_Float_ofScientific(x_525, x_526, x_527); +lean_dec(x_525); +x_529 = lean_float_decLt(x_528, x_511); +x_465 = x_529; +goto block_503; +} +else +{ +lean_object* x_530; double x_531; double x_532; lean_object* x_533; +x_530 = lean_box(0); +x_531 = lean_unbox_float(x_461); +lean_dec(x_461); +x_532 = lean_unbox_float(x_462); +lean_dec(x_462); +x_533 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_451, x_460, x_464, x_531, x_532, x_5, x_530, x_459, x_10, x_11, x_12, x_13, x_456); +return x_533; +} +} +} +block_503: +{ +if (x_465 == 0) +{ +lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; uint64_t x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; +lean_dec(x_462); +lean_dec(x_461); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_566 = lean_st_ref_take(x_13, x_558); -x_567 = lean_ctor_get(x_566, 0); -lean_inc(x_567); -x_568 = lean_ctor_get(x_567, 3); -lean_inc(x_568); -x_569 = lean_ctor_get(x_566, 1); -lean_inc(x_569); -lean_dec(x_566); -x_570 = lean_ctor_get(x_567, 0); -lean_inc(x_570); -x_571 = lean_ctor_get(x_567, 1); -lean_inc(x_571); -x_572 = lean_ctor_get(x_567, 2); -lean_inc(x_572); -x_573 = lean_ctor_get(x_567, 4); -lean_inc(x_573); -x_574 = lean_ctor_get(x_567, 5); -lean_inc(x_574); -x_575 = lean_ctor_get(x_567, 6); -lean_inc(x_575); -x_576 = lean_ctor_get(x_567, 7); -lean_inc(x_576); -if (lean_is_exclusive(x_567)) { - lean_ctor_release(x_567, 0); - lean_ctor_release(x_567, 1); - lean_ctor_release(x_567, 2); - lean_ctor_release(x_567, 3); - lean_ctor_release(x_567, 4); - lean_ctor_release(x_567, 5); - lean_ctor_release(x_567, 6); - lean_ctor_release(x_567, 7); - x_577 = x_567; +x_466 = lean_st_ref_take(x_13, x_456); +x_467 = lean_ctor_get(x_466, 0); +lean_inc(x_467); +x_468 = lean_ctor_get(x_467, 3); +lean_inc(x_468); +x_469 = lean_ctor_get(x_466, 1); +lean_inc(x_469); +lean_dec(x_466); +x_470 = lean_ctor_get(x_467, 0); +lean_inc(x_470); +x_471 = lean_ctor_get(x_467, 1); +lean_inc(x_471); +x_472 = lean_ctor_get(x_467, 2); +lean_inc(x_472); +x_473 = lean_ctor_get(x_467, 4); +lean_inc(x_473); +x_474 = lean_ctor_get(x_467, 5); +lean_inc(x_474); +x_475 = lean_ctor_get(x_467, 6); +lean_inc(x_475); +x_476 = lean_ctor_get(x_467, 7); +lean_inc(x_476); +if (lean_is_exclusive(x_467)) { + lean_ctor_release(x_467, 0); + lean_ctor_release(x_467, 1); + lean_ctor_release(x_467, 2); + lean_ctor_release(x_467, 3); + lean_ctor_release(x_467, 4); + lean_ctor_release(x_467, 5); + lean_ctor_release(x_467, 6); + lean_ctor_release(x_467, 7); + x_477 = x_467; } else { - lean_dec_ref(x_567); - x_577 = lean_box(0); + lean_dec_ref(x_467); + x_477 = lean_box(0); } -x_578 = lean_ctor_get_uint64(x_568, sizeof(void*)*1); -x_579 = lean_ctor_get(x_568, 0); -lean_inc(x_579); -if (lean_is_exclusive(x_568)) { - lean_ctor_release(x_568, 0); - x_580 = x_568; +x_478 = lean_ctor_get_uint64(x_468, sizeof(void*)*1); +x_479 = lean_ctor_get(x_468, 0); +lean_inc(x_479); +if (lean_is_exclusive(x_468)) { + lean_ctor_release(x_468, 0); + x_480 = x_468; } else { - lean_dec_ref(x_568); - x_580 = lean_box(0); + lean_dec_ref(x_468); + x_480 = lean_box(0); } -x_581 = l_Lean_PersistentArray_append___rarg(x_435, x_579); -lean_dec(x_579); -if (lean_is_scalar(x_580)) { - x_582 = lean_alloc_ctor(0, 1, 8); +x_481 = l_Lean_PersistentArray_append___rarg(x_451, x_479); +lean_dec(x_479); +if (lean_is_scalar(x_480)) { + x_482 = lean_alloc_ctor(0, 1, 8); } else { - x_582 = x_580; + x_482 = x_480; } -lean_ctor_set(x_582, 0, x_581); -lean_ctor_set_uint64(x_582, sizeof(void*)*1, x_578); -if (lean_is_scalar(x_577)) { - x_583 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_482, 0, x_481); +lean_ctor_set_uint64(x_482, sizeof(void*)*1, x_478); +if (lean_is_scalar(x_477)) { + x_483 = lean_alloc_ctor(0, 8, 0); } else { - x_583 = x_577; + x_483 = x_477; } -lean_ctor_set(x_583, 0, x_570); -lean_ctor_set(x_583, 1, x_571); -lean_ctor_set(x_583, 2, x_572); -lean_ctor_set(x_583, 3, x_582); -lean_ctor_set(x_583, 4, x_573); -lean_ctor_set(x_583, 5, x_574); -lean_ctor_set(x_583, 6, x_575); -lean_ctor_set(x_583, 7, x_576); -x_584 = lean_st_ref_set(x_13, x_583, x_569); -x_585 = lean_ctor_get(x_584, 1); -lean_inc(x_585); -lean_dec(x_584); -x_586 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_foldAndCollect___spec__34(x_562, x_561, x_10, x_11, x_12, x_13, x_585); +lean_ctor_set(x_483, 0, x_470); +lean_ctor_set(x_483, 1, x_471); +lean_ctor_set(x_483, 2, x_472); +lean_ctor_set(x_483, 3, x_482); +lean_ctor_set(x_483, 4, x_473); +lean_ctor_set(x_483, 5, x_474); +lean_ctor_set(x_483, 6, x_475); +lean_ctor_set(x_483, 7, x_476); +x_484 = lean_st_ref_set(x_13, x_483, x_469); +x_485 = lean_ctor_get(x_484, 1); +lean_inc(x_485); +lean_dec(x_484); +x_486 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_foldAndCollect___spec__34(x_460, x_459, x_10, x_11, x_12, x_13, x_485); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); -lean_dec(x_562); -if (lean_obj_tag(x_586) == 0) +lean_dec(x_460); +if (lean_obj_tag(x_486) == 0) { -lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; -x_587 = lean_ctor_get(x_586, 0); +lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; +x_487 = lean_ctor_get(x_486, 0); +lean_inc(x_487); +x_488 = lean_ctor_get(x_486, 1); +lean_inc(x_488); +if (lean_is_exclusive(x_486)) { + lean_ctor_release(x_486, 0); + lean_ctor_release(x_486, 1); + x_489 = x_486; +} else { + lean_dec_ref(x_486); + x_489 = lean_box(0); +} +x_490 = lean_ctor_get(x_487, 0); +lean_inc(x_490); +x_491 = lean_ctor_get(x_487, 1); +lean_inc(x_491); +if (lean_is_exclusive(x_487)) { + lean_ctor_release(x_487, 0); + lean_ctor_release(x_487, 1); + x_492 = x_487; +} else { + lean_dec_ref(x_487); + x_492 = lean_box(0); +} +if (lean_is_scalar(x_492)) { + x_493 = lean_alloc_ctor(0, 2, 0); +} else { + x_493 = x_492; +} +lean_ctor_set(x_493, 0, x_490); +lean_ctor_set(x_493, 1, x_491); +if (lean_is_scalar(x_489)) { + x_494 = lean_alloc_ctor(0, 2, 0); +} else { + x_494 = x_489; +} +lean_ctor_set(x_494, 0, x_493); +lean_ctor_set(x_494, 1, x_488); +return x_494; +} +else +{ +lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; +x_495 = lean_ctor_get(x_486, 0); +lean_inc(x_495); +x_496 = lean_ctor_get(x_486, 1); +lean_inc(x_496); +if (lean_is_exclusive(x_486)) { + lean_ctor_release(x_486, 0); + lean_ctor_release(x_486, 1); + x_497 = x_486; +} else { + lean_dec_ref(x_486); + x_497 = lean_box(0); +} +if (lean_is_scalar(x_497)) { + x_498 = lean_alloc_ctor(1, 2, 0); +} else { + x_498 = x_497; +} +lean_ctor_set(x_498, 0, x_495); +lean_ctor_set(x_498, 1, x_496); +return x_498; +} +} +else +{ +lean_object* x_499; double x_500; double x_501; lean_object* x_502; +x_499 = lean_box(0); +x_500 = lean_unbox_float(x_461); +lean_dec(x_461); +x_501 = lean_unbox_float(x_462); +lean_dec(x_462); +x_502 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_451, x_460, x_464, x_500, x_501, x_5, x_499, x_459, x_10, x_11, x_12, x_13, x_456); +return x_502; +} +} +} +} +else +{ +lean_object* x_581; lean_object* x_582; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; +x_661 = lean_io_get_num_heartbeats(x_17); +x_662 = lean_ctor_get(x_661, 0); +lean_inc(x_662); +x_663 = lean_ctor_get(x_661, 1); +lean_inc(x_663); +lean_dec(x_661); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_452); +x_664 = lean_apply_6(x_7, x_452, x_10, x_11, x_12, x_13, x_663); +if (lean_obj_tag(x_664) == 0) +{ +lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; uint8_t x_675; lean_object* x_676; double x_677; double x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; +lean_dec(x_452); +x_665 = lean_ctor_get(x_664, 0); +lean_inc(x_665); +x_666 = lean_ctor_get(x_664, 1); +lean_inc(x_666); +lean_dec(x_664); +x_667 = lean_ctor_get(x_665, 0); +lean_inc(x_667); +x_668 = lean_ctor_get(x_665, 1); +lean_inc(x_668); +if (lean_is_exclusive(x_665)) { + lean_ctor_release(x_665, 0); + lean_ctor_release(x_665, 1); + x_669 = x_665; +} else { + lean_dec_ref(x_665); + x_669 = lean_box(0); +} +x_670 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_670, 0, x_667); +x_671 = lean_io_get_num_heartbeats(x_666); +x_672 = lean_ctor_get(x_671, 0); +lean_inc(x_672); +x_673 = lean_ctor_get(x_671, 1); +lean_inc(x_673); +if (lean_is_exclusive(x_671)) { + lean_ctor_release(x_671, 0); + lean_ctor_release(x_671, 1); + x_674 = x_671; +} else { + lean_dec_ref(x_671); + x_674 = lean_box(0); +} +x_675 = 0; +x_676 = lean_unsigned_to_nat(0u); +x_677 = l_Float_ofScientific(x_662, x_675, x_676); +lean_dec(x_662); +x_678 = l_Float_ofScientific(x_672, x_675, x_676); +lean_dec(x_672); +x_679 = lean_box_float(x_677); +x_680 = lean_box_float(x_678); +if (lean_is_scalar(x_669)) { + x_681 = lean_alloc_ctor(0, 2, 0); +} else { + x_681 = x_669; +} +lean_ctor_set(x_681, 0, x_679); +lean_ctor_set(x_681, 1, x_680); +x_682 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_682, 0, x_670); +lean_ctor_set(x_682, 1, x_681); +if (lean_is_scalar(x_674)) { + x_683 = lean_alloc_ctor(0, 2, 0); +} else { + x_683 = x_674; +} +lean_ctor_set(x_683, 0, x_682); +lean_ctor_set(x_683, 1, x_668); +x_581 = x_683; +x_582 = x_673; +goto block_660; +} +else +{ +lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; uint8_t x_692; lean_object* x_693; double x_694; double x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; +x_684 = lean_ctor_get(x_664, 0); +lean_inc(x_684); +x_685 = lean_ctor_get(x_664, 1); +lean_inc(x_685); +if (lean_is_exclusive(x_664)) { + lean_ctor_release(x_664, 0); + lean_ctor_release(x_664, 1); + x_686 = x_664; +} else { + lean_dec_ref(x_664); + x_686 = lean_box(0); +} +x_687 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_687, 0, x_684); +x_688 = lean_io_get_num_heartbeats(x_685); +x_689 = lean_ctor_get(x_688, 0); +lean_inc(x_689); +x_690 = lean_ctor_get(x_688, 1); +lean_inc(x_690); +if (lean_is_exclusive(x_688)) { + lean_ctor_release(x_688, 0); + lean_ctor_release(x_688, 1); + x_691 = x_688; +} else { + lean_dec_ref(x_688); + x_691 = lean_box(0); +} +x_692 = 0; +x_693 = lean_unsigned_to_nat(0u); +x_694 = l_Float_ofScientific(x_662, x_692, x_693); +lean_dec(x_662); +x_695 = l_Float_ofScientific(x_689, x_692, x_693); +lean_dec(x_689); +x_696 = lean_box_float(x_694); +x_697 = lean_box_float(x_695); +x_698 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_698, 0, x_696); +lean_ctor_set(x_698, 1, x_697); +if (lean_is_scalar(x_691)) { + x_699 = lean_alloc_ctor(0, 2, 0); +} else { + x_699 = x_691; +} +lean_ctor_set(x_699, 0, x_687); +lean_ctor_set(x_699, 1, x_698); +if (lean_is_scalar(x_686)) { + x_700 = lean_alloc_ctor(0, 2, 0); +} else { + x_700 = x_686; + lean_ctor_set_tag(x_700, 0); +} +lean_ctor_set(x_700, 0, x_699); +lean_ctor_set(x_700, 1, x_452); +x_581 = x_700; +x_582 = x_690; +goto block_660; +} +block_660: +{ +lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; uint8_t x_590; uint8_t x_591; +x_583 = lean_ctor_get(x_581, 0); +lean_inc(x_583); +x_584 = lean_ctor_get(x_583, 1); +lean_inc(x_584); +x_585 = lean_ctor_get(x_581, 1); +lean_inc(x_585); +lean_dec(x_581); +x_586 = lean_ctor_get(x_583, 0); +lean_inc(x_586); +lean_dec(x_583); +x_587 = lean_ctor_get(x_584, 0); lean_inc(x_587); -x_588 = lean_ctor_get(x_586, 1); +x_588 = lean_ctor_get(x_584, 1); lean_inc(x_588); -if (lean_is_exclusive(x_586)) { - lean_ctor_release(x_586, 0); - lean_ctor_release(x_586, 1); - x_589 = x_586; -} else { - lean_dec_ref(x_586); - x_589 = lean_box(0); -} -x_590 = lean_ctor_get(x_587, 0); -lean_inc(x_590); -x_591 = lean_ctor_get(x_587, 1); -lean_inc(x_591); -if (lean_is_exclusive(x_587)) { - lean_ctor_release(x_587, 0); - lean_ctor_release(x_587, 1); - x_592 = x_587; -} else { - lean_dec_ref(x_587); - x_592 = lean_box(0); -} -if (lean_is_scalar(x_592)) { - x_593 = lean_alloc_ctor(0, 2, 0); -} else { - x_593 = x_592; -} -lean_ctor_set(x_593, 0, x_590); -lean_ctor_set(x_593, 1, x_591); -if (lean_is_scalar(x_589)) { - x_594 = lean_alloc_ctor(0, 2, 0); -} else { - x_594 = x_589; -} -lean_ctor_set(x_594, 0, x_593); -lean_ctor_set(x_594, 1, x_588); -return x_594; +lean_dec(x_584); +x_589 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__2; +x_590 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_589); +if (x_590 == 0) +{ +if (x_6 == 0) +{ +uint8_t x_630; +x_630 = 0; +x_591 = x_630; +goto block_629; } else { -lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; -x_595 = lean_ctor_get(x_586, 0); +lean_object* x_631; double x_632; double x_633; lean_object* x_634; +x_631 = lean_box(0); +x_632 = lean_unbox_float(x_587); +lean_dec(x_587); +x_633 = lean_unbox_float(x_588); +lean_dec(x_588); +x_634 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_451, x_586, x_590, x_632, x_633, x_5, x_631, x_585, x_10, x_11, x_12, x_13, x_582); +return x_634; +} +} +else +{ +double x_635; double x_636; double x_637; +x_635 = lean_unbox_float(x_588); +x_636 = lean_unbox_float(x_587); +x_637 = lean_float_sub(x_635, x_636); +if (x_454 == 0) +{ +if (x_6 == 0) +{ +lean_object* x_638; lean_object* x_639; uint8_t x_640; lean_object* x_641; double x_642; double x_643; double x_644; uint8_t x_645; +x_638 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; +x_639 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_638); +x_640 = 0; +x_641 = lean_unsigned_to_nat(0u); +x_642 = l_Float_ofScientific(x_639, x_640, x_641); +lean_dec(x_639); +x_643 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__4; +x_644 = lean_float_div(x_642, x_643); +x_645 = lean_float_decLt(x_644, x_637); +x_591 = x_645; +goto block_629; +} +else +{ +lean_object* x_646; double x_647; double x_648; lean_object* x_649; +x_646 = lean_box(0); +x_647 = lean_unbox_float(x_587); +lean_dec(x_587); +x_648 = lean_unbox_float(x_588); +lean_dec(x_588); +x_649 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_451, x_586, x_590, x_647, x_648, x_5, x_646, x_585, x_10, x_11, x_12, x_13, x_582); +return x_649; +} +} +else +{ +if (x_6 == 0) +{ +lean_object* x_650; lean_object* x_651; uint8_t x_652; lean_object* x_653; double x_654; uint8_t x_655; +x_650 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; +x_651 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_650); +x_652 = 0; +x_653 = lean_unsigned_to_nat(0u); +x_654 = l_Float_ofScientific(x_651, x_652, x_653); +lean_dec(x_651); +x_655 = lean_float_decLt(x_654, x_637); +x_591 = x_655; +goto block_629; +} +else +{ +lean_object* x_656; double x_657; double x_658; lean_object* x_659; +x_656 = lean_box(0); +x_657 = lean_unbox_float(x_587); +lean_dec(x_587); +x_658 = lean_unbox_float(x_588); +lean_dec(x_588); +x_659 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_451, x_586, x_590, x_657, x_658, x_5, x_656, x_585, x_10, x_11, x_12, x_13, x_582); +return x_659; +} +} +} +block_629: +{ +if (x_591 == 0) +{ +lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; uint64_t x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; +lean_dec(x_588); +lean_dec(x_587); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_592 = lean_st_ref_take(x_13, x_582); +x_593 = lean_ctor_get(x_592, 0); +lean_inc(x_593); +x_594 = lean_ctor_get(x_593, 3); +lean_inc(x_594); +x_595 = lean_ctor_get(x_592, 1); lean_inc(x_595); -x_596 = lean_ctor_get(x_586, 1); +lean_dec(x_592); +x_596 = lean_ctor_get(x_593, 0); lean_inc(x_596); -if (lean_is_exclusive(x_586)) { - lean_ctor_release(x_586, 0); - lean_ctor_release(x_586, 1); - x_597 = x_586; +x_597 = lean_ctor_get(x_593, 1); +lean_inc(x_597); +x_598 = lean_ctor_get(x_593, 2); +lean_inc(x_598); +x_599 = lean_ctor_get(x_593, 4); +lean_inc(x_599); +x_600 = lean_ctor_get(x_593, 5); +lean_inc(x_600); +x_601 = lean_ctor_get(x_593, 6); +lean_inc(x_601); +x_602 = lean_ctor_get(x_593, 7); +lean_inc(x_602); +if (lean_is_exclusive(x_593)) { + lean_ctor_release(x_593, 0); + lean_ctor_release(x_593, 1); + lean_ctor_release(x_593, 2); + lean_ctor_release(x_593, 3); + lean_ctor_release(x_593, 4); + lean_ctor_release(x_593, 5); + lean_ctor_release(x_593, 6); + lean_ctor_release(x_593, 7); + x_603 = x_593; } else { - lean_dec_ref(x_586); - x_597 = lean_box(0); + lean_dec_ref(x_593); + x_603 = lean_box(0); } -if (lean_is_scalar(x_597)) { - x_598 = lean_alloc_ctor(1, 2, 0); +x_604 = lean_ctor_get_uint64(x_594, sizeof(void*)*1); +x_605 = lean_ctor_get(x_594, 0); +lean_inc(x_605); +if (lean_is_exclusive(x_594)) { + lean_ctor_release(x_594, 0); + x_606 = x_594; } else { - x_598 = x_597; + lean_dec_ref(x_594); + x_606 = lean_box(0); } -lean_ctor_set(x_598, 0, x_595); -lean_ctor_set(x_598, 1, x_596); -return x_598; +x_607 = l_Lean_PersistentArray_append___rarg(x_451, x_605); +lean_dec(x_605); +if (lean_is_scalar(x_606)) { + x_608 = lean_alloc_ctor(0, 1, 8); +} else { + x_608 = x_606; +} +lean_ctor_set(x_608, 0, x_607); +lean_ctor_set_uint64(x_608, sizeof(void*)*1, x_604); +if (lean_is_scalar(x_603)) { + x_609 = lean_alloc_ctor(0, 8, 0); +} else { + x_609 = x_603; +} +lean_ctor_set(x_609, 0, x_596); +lean_ctor_set(x_609, 1, x_597); +lean_ctor_set(x_609, 2, x_598); +lean_ctor_set(x_609, 3, x_608); +lean_ctor_set(x_609, 4, x_599); +lean_ctor_set(x_609, 5, x_600); +lean_ctor_set(x_609, 6, x_601); +lean_ctor_set(x_609, 7, x_602); +x_610 = lean_st_ref_set(x_13, x_609, x_595); +x_611 = lean_ctor_get(x_610, 1); +lean_inc(x_611); +lean_dec(x_610); +x_612 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_foldAndCollect___spec__34(x_586, x_585, x_10, x_11, x_12, x_13, x_611); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_586); +if (lean_obj_tag(x_612) == 0) +{ +lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; +x_613 = lean_ctor_get(x_612, 0); +lean_inc(x_613); +x_614 = lean_ctor_get(x_612, 1); +lean_inc(x_614); +if (lean_is_exclusive(x_612)) { + lean_ctor_release(x_612, 0); + lean_ctor_release(x_612, 1); + x_615 = x_612; +} else { + lean_dec_ref(x_612); + x_615 = lean_box(0); +} +x_616 = lean_ctor_get(x_613, 0); +lean_inc(x_616); +x_617 = lean_ctor_get(x_613, 1); +lean_inc(x_617); +if (lean_is_exclusive(x_613)) { + lean_ctor_release(x_613, 0); + lean_ctor_release(x_613, 1); + x_618 = x_613; +} else { + lean_dec_ref(x_613); + x_618 = lean_box(0); +} +if (lean_is_scalar(x_618)) { + x_619 = lean_alloc_ctor(0, 2, 0); +} else { + x_619 = x_618; +} +lean_ctor_set(x_619, 0, x_616); +lean_ctor_set(x_619, 1, x_617); +if (lean_is_scalar(x_615)) { + x_620 = lean_alloc_ctor(0, 2, 0); +} else { + x_620 = x_615; +} +lean_ctor_set(x_620, 0, x_619); +lean_ctor_set(x_620, 1, x_614); +return x_620; +} +else +{ +lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; +x_621 = lean_ctor_get(x_612, 0); +lean_inc(x_621); +x_622 = lean_ctor_get(x_612, 1); +lean_inc(x_622); +if (lean_is_exclusive(x_612)) { + lean_ctor_release(x_612, 0); + lean_ctor_release(x_612, 1); + x_623 = x_612; +} else { + lean_dec_ref(x_612); + x_623 = lean_box(0); +} +if (lean_is_scalar(x_623)) { + x_624 = lean_alloc_ctor(1, 2, 0); +} else { + x_624 = x_623; +} +lean_ctor_set(x_624, 0, x_621); +lean_ctor_set(x_624, 1, x_622); +return x_624; } } else { -lean_object* x_599; double x_600; double x_601; lean_object* x_602; -x_599 = lean_box(0); -x_600 = lean_unbox_float(x_563); -lean_dec(x_563); -x_601 = lean_unbox_float(x_564); -lean_dec(x_564); -x_602 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_435, x_562, x_1, x_565, x_600, x_601, x_5, x_599, x_561, x_10, x_11, x_12, x_13, x_558); -return x_602; -} -} -else -{ -lean_object* x_603; double x_604; double x_605; lean_object* x_606; -x_603 = lean_box(0); -x_604 = lean_unbox_float(x_563); -lean_dec(x_563); -x_605 = lean_unbox_float(x_564); -lean_dec(x_564); -x_606 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_435, x_562, x_1, x_565, x_604, x_605, x_5, x_603, x_561, x_10, x_11, x_12, x_13, x_558); -return x_606; +lean_object* x_625; double x_626; double x_627; lean_object* x_628; +x_625 = lean_box(0); +x_626 = lean_unbox_float(x_587); +lean_dec(x_587); +x_627 = lean_unbox_float(x_588); +lean_dec(x_588); +x_628 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_2, x_3, x_4, x_451, x_586, x_590, x_626, x_627, x_5, x_625, x_585, x_10, x_11, x_12, x_13, x_582); +return x_628; } } } @@ -14931,77 +15008,41 @@ lean_dec(x_4); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2___boxed(lean_object** _args) { -lean_object* x_1 = _args[0]; -lean_object* x_2 = _args[1]; -lean_object* x_3 = _args[2]; -lean_object* x_4 = _args[3]; -lean_object* x_5 = _args[4]; -lean_object* x_6 = _args[5]; -lean_object* x_7 = _args[6]; -lean_object* x_8 = _args[7]; -lean_object* x_9 = _args[8]; -lean_object* x_10 = _args[9]; -lean_object* x_11 = _args[10]; -lean_object* x_12 = _args[11]; -lean_object* x_13 = _args[12]; -lean_object* x_14 = _args[13]; -lean_object* x_15 = _args[14]; -lean_object* x_16 = _args[15]; -lean_object* x_17 = _args[16]; +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; -x_18 = lean_unbox(x_2); +uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; +x_17 = lean_unbox(x_2); lean_dec(x_2); -x_19 = lean_unbox(x_8); +x_18 = lean_unbox(x_7); +lean_dec(x_7); +x_19 = lean_unbox_float(x_8); lean_dec(x_8); x_20 = lean_unbox_float(x_9); lean_dec(x_9); -x_21 = lean_unbox_float(x_10); -lean_dec(x_10); -x_22 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2(x_1, x_18, x_3, x_4, x_5, x_6, x_7, x_19, x_20, x_21, x_11, x_12, x_13, x_14, x_15, x_16, x_17); -lean_dec(x_16); -lean_dec(x_14); +x_21 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +lean_dec(x_15); lean_dec(x_13); -lean_dec(x_7); +lean_dec(x_12); lean_dec(x_6); -return x_22; +return x_21; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3___boxed(lean_object** _args) { -lean_object* x_1 = _args[0]; -lean_object* x_2 = _args[1]; -lean_object* x_3 = _args[2]; -lean_object* x_4 = _args[3]; -lean_object* x_5 = _args[4]; -lean_object* x_6 = _args[5]; -lean_object* x_7 = _args[6]; -lean_object* x_8 = _args[7]; -lean_object* x_9 = _args[8]; -lean_object* x_10 = _args[9]; -lean_object* x_11 = _args[10]; -lean_object* x_12 = _args[11]; -lean_object* x_13 = _args[12]; -lean_object* x_14 = _args[13]; -lean_object* x_15 = _args[14]; -lean_object* x_16 = _args[15]; -lean_object* x_17 = _args[16]; +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; -x_18 = lean_unbox(x_2); +uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; +x_17 = lean_unbox(x_2); lean_dec(x_2); -x_19 = lean_unbox(x_7); +x_18 = lean_unbox(x_6); +lean_dec(x_6); +x_19 = lean_unbox_float(x_7); lean_dec(x_7); x_20 = lean_unbox_float(x_8); lean_dec(x_8); -x_21 = lean_unbox_float(x_9); -lean_dec(x_9); -x_22 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_1, x_18, x_3, x_4, x_5, x_6, x_19, x_20, x_21, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); -lean_dec(x_11); -lean_dec(x_6); -return x_22; +x_21 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3(x_1, x_17, x_3, x_4, x_5, x_18, x_19, x_20, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +lean_dec(x_10); +return x_21; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { @@ -21928,117 +21969,92 @@ lean_dec(x_11); return x_20; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -double x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; -x_19 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_20 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_20, 0, x_1); -lean_ctor_set(x_20, 1, x_3); -lean_ctor_set_float(x_20, sizeof(void*)*2, x_19); -lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_19); -lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); -x_21 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2___closed__2; -x_22 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_21); -if (x_22 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_18 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2___closed__1; +x_19 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_19, 0, x_1); +lean_ctor_set(x_19, 1, x_3); +lean_ctor_set_float(x_19, sizeof(void*)*2, x_18); +lean_ctor_set_float(x_19, sizeof(void*)*2 + 8, x_18); +lean_ctor_set_uint8(x_19, sizeof(void*)*2 + 16, x_2); +x_20 = lean_box(0); +x_21 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__1(x_4, x_5, x_10, x_6, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +return x_21; +} +else { -lean_object* x_23; lean_object* x_24; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_22, 0, x_1); +lean_ctor_set(x_22, 1, x_3); +lean_ctor_set_float(x_22, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_22, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_22, sizeof(void*)*2 + 16, x_2); x_23 = lean_box(0); -x_24 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__1(x_4, x_5, x_11, x_6, x_20, x_23, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +x_24 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__1(x_4, x_5, x_10, x_6, x_22, x_23, x_11, x_12, x_13, x_14, x_15, x_16, x_17); return x_24; } -else -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; -lean_dec(x_20); -x_25 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_25, 0, x_1); -lean_ctor_set(x_25, 1, x_3); -lean_ctor_set_float(x_25, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_25, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_25, sizeof(void*)*2 + 16, x_2); -x_26 = lean_box(0); -x_27 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__1(x_4, x_5, x_11, x_6, x_25, x_26, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -return x_27; } } -else -{ -lean_object* x_28; lean_object* x_29; lean_object* x_30; -lean_dec(x_20); -x_28 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_28, 0, x_1); -lean_ctor_set(x_28, 1, x_3); -lean_ctor_set_float(x_28, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_28, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_28, sizeof(void*)*2 + 16, x_2); -x_29 = lean_box(0); -x_30 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__1(x_4, x_5, x_11, x_6, x_28, x_29, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -return x_30; -} -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_19; lean_object* x_20; -x_19 = lean_ctor_get(x_16, 5); -lean_inc(x_19); -lean_inc(x_17); +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_15, 5); +lean_inc(x_18); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_20 = lean_apply_8(x_10, x_5, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -if (lean_obj_tag(x_20) == 0) +x_19 = lean_apply_8(x_9, x_5, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +if (lean_obj_tag(x_19) == 0) { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; -lean_dec(x_13); +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_dec(x_12); +lean_dec(x_11); +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); x_21 = lean_ctor_get(x_20, 0); lean_inc(x_21); -x_22 = lean_ctor_get(x_21, 0); +x_22 = lean_ctor_get(x_19, 1); lean_inc(x_22); +lean_dec(x_19); x_23 = lean_ctor_get(x_20, 1); lean_inc(x_23); lean_dec(x_20); -x_24 = lean_ctor_get(x_21, 1); +x_24 = lean_ctor_get(x_21, 0); lean_inc(x_24); -lean_dec(x_21); -x_25 = lean_ctor_get(x_22, 0); +x_25 = lean_ctor_get(x_21, 1); lean_inc(x_25); -x_26 = lean_ctor_get(x_22, 1); -lean_inc(x_26); -lean_dec(x_22); -x_27 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__2(x_1, x_2, x_3, x_4, x_19, x_5, x_6, x_7, x_8, x_9, x_25, x_26, x_24, x_14, x_15, x_16, x_17, x_23); -lean_dec(x_17); -lean_dec(x_15); +lean_dec(x_21); +x_26 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__2(x_1, x_2, x_3, x_4, x_18, x_5, x_6, x_7, x_8, x_24, x_25, x_23, x_13, x_14, x_15, x_16, x_22); +lean_dec(x_16); lean_dec(x_14); +lean_dec(x_13); lean_dec(x_5); -return x_27; +return x_26; } else { -lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = lean_ctor_get(x_20, 1); -lean_inc(x_28); -lean_dec(x_20); -x_29 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3___closed__2; -x_30 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__2(x_1, x_2, x_3, x_4, x_19, x_5, x_6, x_7, x_8, x_9, x_29, x_12, x_13, x_14, x_15, x_16, x_17, x_28); -lean_dec(x_17); -lean_dec(x_15); +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_19, 1); +lean_inc(x_27); +lean_dec(x_19); +x_28 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3___closed__2; +x_29 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__2(x_1, x_2, x_3, x_4, x_18, x_5, x_6, x_7, x_8, x_28, x_11, x_12, x_13, x_14, x_15, x_16, x_27); +lean_dec(x_16); lean_dec(x_14); +lean_dec(x_13); lean_dec(x_5); -return x_30; +return x_29; } } } @@ -22071,302 +22087,302 @@ x_26 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___ x_27 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_26); if (x_27 == 0) { -lean_object* x_28; lean_object* x_29; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; -x_165 = lean_io_mono_nanos_now(x_19); -x_166 = lean_ctor_get(x_165, 0); -lean_inc(x_166); -x_167 = lean_ctor_get(x_165, 1); -lean_inc(x_167); -lean_dec(x_165); +lean_object* x_28; lean_object* x_29; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; +x_173 = lean_io_mono_nanos_now(x_19); +x_174 = lean_ctor_get(x_173, 0); +lean_inc(x_174); +x_175 = lean_ctor_get(x_173, 1); +lean_inc(x_175); +lean_dec(x_173); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_21); lean_inc(x_25); -x_168 = lean_apply_7(x_7, x_25, x_21, x_11, x_12, x_13, x_14, x_167); -if (lean_obj_tag(x_168) == 0) +x_176 = lean_apply_7(x_7, x_25, x_21, x_11, x_12, x_13, x_14, x_175); +if (lean_obj_tag(x_176) == 0) { -lean_object* x_169; lean_object* x_170; lean_object* x_171; uint8_t x_172; +lean_object* x_177; lean_object* x_178; lean_object* x_179; uint8_t x_180; lean_dec(x_25); lean_dec(x_21); -x_169 = lean_ctor_get(x_168, 0); -lean_inc(x_169); -x_170 = lean_ctor_get(x_169, 0); -lean_inc(x_170); -x_171 = lean_ctor_get(x_168, 1); -lean_inc(x_171); -lean_dec(x_168); -x_172 = !lean_is_exclusive(x_169); -if (x_172 == 0) +x_177 = lean_ctor_get(x_176, 0); +lean_inc(x_177); +x_178 = lean_ctor_get(x_177, 0); +lean_inc(x_178); +x_179 = lean_ctor_get(x_176, 1); +lean_inc(x_179); +lean_dec(x_176); +x_180 = !lean_is_exclusive(x_177); +if (x_180 == 0) { -lean_object* x_173; lean_object* x_174; uint8_t x_175; -x_173 = lean_ctor_get(x_169, 1); -x_174 = lean_ctor_get(x_169, 0); +lean_object* x_181; lean_object* x_182; uint8_t x_183; +x_181 = lean_ctor_get(x_177, 1); +x_182 = lean_ctor_get(x_177, 0); +lean_dec(x_182); +x_183 = !lean_is_exclusive(x_178); +if (x_183 == 0) +{ +lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; uint8_t x_190; lean_object* x_191; double x_192; double x_193; double x_194; double x_195; double x_196; lean_object* x_197; lean_object* x_198; +x_184 = lean_ctor_get(x_178, 0); +x_185 = lean_ctor_get(x_178, 1); +x_186 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_186, 0, x_184); +x_187 = lean_io_mono_nanos_now(x_179); +x_188 = lean_ctor_get(x_187, 0); +lean_inc(x_188); +x_189 = lean_ctor_get(x_187, 1); +lean_inc(x_189); +lean_dec(x_187); +x_190 = 0; +x_191 = lean_unsigned_to_nat(0u); +x_192 = l_Float_ofScientific(x_174, x_190, x_191); lean_dec(x_174); -x_175 = !lean_is_exclusive(x_170); -if (x_175 == 0) -{ -lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; uint8_t x_182; lean_object* x_183; double x_184; double x_185; double x_186; double x_187; double x_188; lean_object* x_189; lean_object* x_190; -x_176 = lean_ctor_get(x_170, 0); -x_177 = lean_ctor_get(x_170, 1); -x_178 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_178, 0, x_176); -x_179 = lean_io_mono_nanos_now(x_171); -x_180 = lean_ctor_get(x_179, 0); -lean_inc(x_180); -x_181 = lean_ctor_get(x_179, 1); -lean_inc(x_181); -lean_dec(x_179); -x_182 = 0; -x_183 = lean_unsigned_to_nat(0u); -x_184 = l_Float_ofScientific(x_166, x_182, x_183); -lean_dec(x_166); -x_185 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; -x_186 = lean_float_div(x_184, x_185); -x_187 = l_Float_ofScientific(x_180, x_182, x_183); -lean_dec(x_180); -x_188 = lean_float_div(x_187, x_185); -x_189 = lean_box_float(x_186); -x_190 = lean_box_float(x_188); -lean_ctor_set(x_170, 1, x_190); -lean_ctor_set(x_170, 0, x_189); -lean_ctor_set(x_169, 1, x_170); -lean_ctor_set(x_169, 0, x_178); -lean_ctor_set(x_18, 1, x_177); -lean_ctor_set(x_18, 0, x_169); -lean_ctor_set(x_17, 1, x_173); +x_193 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; +x_194 = lean_float_div(x_192, x_193); +x_195 = l_Float_ofScientific(x_188, x_190, x_191); +lean_dec(x_188); +x_196 = lean_float_div(x_195, x_193); +x_197 = lean_box_float(x_194); +x_198 = lean_box_float(x_196); +lean_ctor_set(x_178, 1, x_198); +lean_ctor_set(x_178, 0, x_197); +lean_ctor_set(x_177, 1, x_178); +lean_ctor_set(x_177, 0, x_186); +lean_ctor_set(x_18, 1, x_185); +lean_ctor_set(x_18, 0, x_177); +lean_ctor_set(x_17, 1, x_181); x_28 = x_17; -x_29 = x_181; -goto block_164; +x_29 = x_189; +goto block_172; } else { -lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; uint8_t x_197; lean_object* x_198; double x_199; double x_200; double x_201; double x_202; double x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_191 = lean_ctor_get(x_170, 0); -x_192 = lean_ctor_get(x_170, 1); -lean_inc(x_192); -lean_inc(x_191); -lean_dec(x_170); -x_193 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_193, 0, x_191); -x_194 = lean_io_mono_nanos_now(x_171); -x_195 = lean_ctor_get(x_194, 0); -lean_inc(x_195); -x_196 = lean_ctor_get(x_194, 1); -lean_inc(x_196); -lean_dec(x_194); -x_197 = 0; -x_198 = lean_unsigned_to_nat(0u); -x_199 = l_Float_ofScientific(x_166, x_197, x_198); -lean_dec(x_166); -x_200 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; -x_201 = lean_float_div(x_199, x_200); -x_202 = l_Float_ofScientific(x_195, x_197, x_198); -lean_dec(x_195); -x_203 = lean_float_div(x_202, x_200); -x_204 = lean_box_float(x_201); -x_205 = lean_box_float(x_203); -x_206 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_206, 0, x_204); -lean_ctor_set(x_206, 1, x_205); -lean_ctor_set(x_169, 1, x_206); -lean_ctor_set(x_169, 0, x_193); -lean_ctor_set(x_18, 1, x_192); -lean_ctor_set(x_18, 0, x_169); -lean_ctor_set(x_17, 1, x_173); +lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; uint8_t x_205; lean_object* x_206; double x_207; double x_208; double x_209; double x_210; double x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; +x_199 = lean_ctor_get(x_178, 0); +x_200 = lean_ctor_get(x_178, 1); +lean_inc(x_200); +lean_inc(x_199); +lean_dec(x_178); +x_201 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_201, 0, x_199); +x_202 = lean_io_mono_nanos_now(x_179); +x_203 = lean_ctor_get(x_202, 0); +lean_inc(x_203); +x_204 = lean_ctor_get(x_202, 1); +lean_inc(x_204); +lean_dec(x_202); +x_205 = 0; +x_206 = lean_unsigned_to_nat(0u); +x_207 = l_Float_ofScientific(x_174, x_205, x_206); +lean_dec(x_174); +x_208 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; +x_209 = lean_float_div(x_207, x_208); +x_210 = l_Float_ofScientific(x_203, x_205, x_206); +lean_dec(x_203); +x_211 = lean_float_div(x_210, x_208); +x_212 = lean_box_float(x_209); +x_213 = lean_box_float(x_211); +x_214 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_214, 0, x_212); +lean_ctor_set(x_214, 1, x_213); +lean_ctor_set(x_177, 1, x_214); +lean_ctor_set(x_177, 0, x_201); +lean_ctor_set(x_18, 1, x_200); +lean_ctor_set(x_18, 0, x_177); +lean_ctor_set(x_17, 1, x_181); x_28 = x_17; -x_29 = x_196; -goto block_164; +x_29 = x_204; +goto block_172; } } else { -lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; uint8_t x_215; lean_object* x_216; double x_217; double x_218; double x_219; double x_220; double x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_207 = lean_ctor_get(x_169, 1); -lean_inc(x_207); -lean_dec(x_169); -x_208 = lean_ctor_get(x_170, 0); -lean_inc(x_208); -x_209 = lean_ctor_get(x_170, 1); -lean_inc(x_209); -if (lean_is_exclusive(x_170)) { - lean_ctor_release(x_170, 0); - lean_ctor_release(x_170, 1); - x_210 = x_170; +lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; uint8_t x_223; lean_object* x_224; double x_225; double x_226; double x_227; double x_228; double x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; +x_215 = lean_ctor_get(x_177, 1); +lean_inc(x_215); +lean_dec(x_177); +x_216 = lean_ctor_get(x_178, 0); +lean_inc(x_216); +x_217 = lean_ctor_get(x_178, 1); +lean_inc(x_217); +if (lean_is_exclusive(x_178)) { + lean_ctor_release(x_178, 0); + lean_ctor_release(x_178, 1); + x_218 = x_178; } else { - lean_dec_ref(x_170); - x_210 = lean_box(0); + lean_dec_ref(x_178); + x_218 = lean_box(0); } -x_211 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_211, 0, x_208); -x_212 = lean_io_mono_nanos_now(x_171); -x_213 = lean_ctor_get(x_212, 0); -lean_inc(x_213); -x_214 = lean_ctor_get(x_212, 1); -lean_inc(x_214); -lean_dec(x_212); -x_215 = 0; -x_216 = lean_unsigned_to_nat(0u); -x_217 = l_Float_ofScientific(x_166, x_215, x_216); -lean_dec(x_166); -x_218 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; -x_219 = lean_float_div(x_217, x_218); -x_220 = l_Float_ofScientific(x_213, x_215, x_216); -lean_dec(x_213); -x_221 = lean_float_div(x_220, x_218); -x_222 = lean_box_float(x_219); -x_223 = lean_box_float(x_221); -if (lean_is_scalar(x_210)) { - x_224 = lean_alloc_ctor(0, 2, 0); +x_219 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_219, 0, x_216); +x_220 = lean_io_mono_nanos_now(x_179); +x_221 = lean_ctor_get(x_220, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_220, 1); +lean_inc(x_222); +lean_dec(x_220); +x_223 = 0; +x_224 = lean_unsigned_to_nat(0u); +x_225 = l_Float_ofScientific(x_174, x_223, x_224); +lean_dec(x_174); +x_226 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; +x_227 = lean_float_div(x_225, x_226); +x_228 = l_Float_ofScientific(x_221, x_223, x_224); +lean_dec(x_221); +x_229 = lean_float_div(x_228, x_226); +x_230 = lean_box_float(x_227); +x_231 = lean_box_float(x_229); +if (lean_is_scalar(x_218)) { + x_232 = lean_alloc_ctor(0, 2, 0); } else { - x_224 = x_210; + x_232 = x_218; } -lean_ctor_set(x_224, 0, x_222); -lean_ctor_set(x_224, 1, x_223); -x_225 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_225, 0, x_211); -lean_ctor_set(x_225, 1, x_224); -lean_ctor_set(x_18, 1, x_209); -lean_ctor_set(x_18, 0, x_225); -lean_ctor_set(x_17, 1, x_207); +lean_ctor_set(x_232, 0, x_230); +lean_ctor_set(x_232, 1, x_231); +x_233 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_233, 0, x_219); +lean_ctor_set(x_233, 1, x_232); +lean_ctor_set(x_18, 1, x_217); +lean_ctor_set(x_18, 0, x_233); +lean_ctor_set(x_17, 1, x_215); x_28 = x_17; -x_29 = x_214; -goto block_164; +x_29 = x_222; +goto block_172; } } else { -uint8_t x_226; -x_226 = !lean_is_exclusive(x_168); -if (x_226 == 0) +uint8_t x_234; +x_234 = !lean_is_exclusive(x_176); +if (x_234 == 0) { -lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; uint8_t x_231; -x_227 = lean_ctor_get(x_168, 0); -x_228 = lean_ctor_get(x_168, 1); -x_229 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_229, 0, x_227); -x_230 = lean_io_mono_nanos_now(x_228); -x_231 = !lean_is_exclusive(x_230); -if (x_231 == 0) +lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; uint8_t x_239; +x_235 = lean_ctor_get(x_176, 0); +x_236 = lean_ctor_get(x_176, 1); +x_237 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_237, 0, x_235); +x_238 = lean_io_mono_nanos_now(x_236); +x_239 = !lean_is_exclusive(x_238); +if (x_239 == 0) { -lean_object* x_232; lean_object* x_233; uint8_t x_234; lean_object* x_235; double x_236; double x_237; double x_238; double x_239; double x_240; lean_object* x_241; lean_object* x_242; -x_232 = lean_ctor_get(x_230, 0); -x_233 = lean_ctor_get(x_230, 1); -x_234 = 0; -x_235 = lean_unsigned_to_nat(0u); -x_236 = l_Float_ofScientific(x_166, x_234, x_235); -lean_dec(x_166); -x_237 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; -x_238 = lean_float_div(x_236, x_237); -x_239 = l_Float_ofScientific(x_232, x_234, x_235); -lean_dec(x_232); -x_240 = lean_float_div(x_239, x_237); -x_241 = lean_box_float(x_238); -x_242 = lean_box_float(x_240); -lean_ctor_set(x_18, 1, x_242); -lean_ctor_set(x_18, 0, x_241); +lean_object* x_240; lean_object* x_241; uint8_t x_242; lean_object* x_243; double x_244; double x_245; double x_246; double x_247; double x_248; lean_object* x_249; lean_object* x_250; +x_240 = lean_ctor_get(x_238, 0); +x_241 = lean_ctor_get(x_238, 1); +x_242 = 0; +x_243 = lean_unsigned_to_nat(0u); +x_244 = l_Float_ofScientific(x_174, x_242, x_243); +lean_dec(x_174); +x_245 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; +x_246 = lean_float_div(x_244, x_245); +x_247 = l_Float_ofScientific(x_240, x_242, x_243); +lean_dec(x_240); +x_248 = lean_float_div(x_247, x_245); +x_249 = lean_box_float(x_246); +x_250 = lean_box_float(x_248); +lean_ctor_set(x_18, 1, x_250); +lean_ctor_set(x_18, 0, x_249); lean_ctor_set(x_17, 1, x_18); -lean_ctor_set(x_17, 0, x_229); -lean_ctor_set(x_230, 1, x_25); -lean_ctor_set(x_230, 0, x_17); -lean_ctor_set_tag(x_168, 0); -lean_ctor_set(x_168, 1, x_21); -lean_ctor_set(x_168, 0, x_230); -x_28 = x_168; -x_29 = x_233; -goto block_164; +lean_ctor_set(x_17, 0, x_237); +lean_ctor_set(x_238, 1, x_25); +lean_ctor_set(x_238, 0, x_17); +lean_ctor_set_tag(x_176, 0); +lean_ctor_set(x_176, 1, x_21); +lean_ctor_set(x_176, 0, x_238); +x_28 = x_176; +x_29 = x_241; +goto block_172; } else { -lean_object* x_243; lean_object* x_244; uint8_t x_245; lean_object* x_246; double x_247; double x_248; double x_249; double x_250; double x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; -x_243 = lean_ctor_get(x_230, 0); -x_244 = lean_ctor_get(x_230, 1); -lean_inc(x_244); -lean_inc(x_243); -lean_dec(x_230); -x_245 = 0; -x_246 = lean_unsigned_to_nat(0u); -x_247 = l_Float_ofScientific(x_166, x_245, x_246); -lean_dec(x_166); -x_248 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; -x_249 = lean_float_div(x_247, x_248); -x_250 = l_Float_ofScientific(x_243, x_245, x_246); -lean_dec(x_243); -x_251 = lean_float_div(x_250, x_248); -x_252 = lean_box_float(x_249); -x_253 = lean_box_float(x_251); -lean_ctor_set(x_18, 1, x_253); -lean_ctor_set(x_18, 0, x_252); +lean_object* x_251; lean_object* x_252; uint8_t x_253; lean_object* x_254; double x_255; double x_256; double x_257; double x_258; double x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; +x_251 = lean_ctor_get(x_238, 0); +x_252 = lean_ctor_get(x_238, 1); +lean_inc(x_252); +lean_inc(x_251); +lean_dec(x_238); +x_253 = 0; +x_254 = lean_unsigned_to_nat(0u); +x_255 = l_Float_ofScientific(x_174, x_253, x_254); +lean_dec(x_174); +x_256 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; +x_257 = lean_float_div(x_255, x_256); +x_258 = l_Float_ofScientific(x_251, x_253, x_254); +lean_dec(x_251); +x_259 = lean_float_div(x_258, x_256); +x_260 = lean_box_float(x_257); +x_261 = lean_box_float(x_259); +lean_ctor_set(x_18, 1, x_261); +lean_ctor_set(x_18, 0, x_260); lean_ctor_set(x_17, 1, x_18); -lean_ctor_set(x_17, 0, x_229); -x_254 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_254, 0, x_17); -lean_ctor_set(x_254, 1, x_25); -lean_ctor_set_tag(x_168, 0); -lean_ctor_set(x_168, 1, x_21); -lean_ctor_set(x_168, 0, x_254); -x_28 = x_168; -x_29 = x_244; -goto block_164; +lean_ctor_set(x_17, 0, x_237); +x_262 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_262, 0, x_17); +lean_ctor_set(x_262, 1, x_25); +lean_ctor_set_tag(x_176, 0); +lean_ctor_set(x_176, 1, x_21); +lean_ctor_set(x_176, 0, x_262); +x_28 = x_176; +x_29 = x_252; +goto block_172; } } else { -lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint8_t x_262; lean_object* x_263; double x_264; double x_265; double x_266; double x_267; double x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_255 = lean_ctor_get(x_168, 0); -x_256 = lean_ctor_get(x_168, 1); -lean_inc(x_256); -lean_inc(x_255); -lean_dec(x_168); -x_257 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_257, 0, x_255); -x_258 = lean_io_mono_nanos_now(x_256); -x_259 = lean_ctor_get(x_258, 0); -lean_inc(x_259); -x_260 = lean_ctor_get(x_258, 1); -lean_inc(x_260); -if (lean_is_exclusive(x_258)) { - lean_ctor_release(x_258, 0); - lean_ctor_release(x_258, 1); - x_261 = x_258; +lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; uint8_t x_270; lean_object* x_271; double x_272; double x_273; double x_274; double x_275; double x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; +x_263 = lean_ctor_get(x_176, 0); +x_264 = lean_ctor_get(x_176, 1); +lean_inc(x_264); +lean_inc(x_263); +lean_dec(x_176); +x_265 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_265, 0, x_263); +x_266 = lean_io_mono_nanos_now(x_264); +x_267 = lean_ctor_get(x_266, 0); +lean_inc(x_267); +x_268 = lean_ctor_get(x_266, 1); +lean_inc(x_268); +if (lean_is_exclusive(x_266)) { + lean_ctor_release(x_266, 0); + lean_ctor_release(x_266, 1); + x_269 = x_266; } else { - lean_dec_ref(x_258); - x_261 = lean_box(0); + lean_dec_ref(x_266); + x_269 = lean_box(0); } -x_262 = 0; -x_263 = lean_unsigned_to_nat(0u); -x_264 = l_Float_ofScientific(x_166, x_262, x_263); -lean_dec(x_166); -x_265 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; -x_266 = lean_float_div(x_264, x_265); -x_267 = l_Float_ofScientific(x_259, x_262, x_263); -lean_dec(x_259); -x_268 = lean_float_div(x_267, x_265); -x_269 = lean_box_float(x_266); -x_270 = lean_box_float(x_268); -lean_ctor_set(x_18, 1, x_270); -lean_ctor_set(x_18, 0, x_269); +x_270 = 0; +x_271 = lean_unsigned_to_nat(0u); +x_272 = l_Float_ofScientific(x_174, x_270, x_271); +lean_dec(x_174); +x_273 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; +x_274 = lean_float_div(x_272, x_273); +x_275 = l_Float_ofScientific(x_267, x_270, x_271); +lean_dec(x_267); +x_276 = lean_float_div(x_275, x_273); +x_277 = lean_box_float(x_274); +x_278 = lean_box_float(x_276); +lean_ctor_set(x_18, 1, x_278); +lean_ctor_set(x_18, 0, x_277); lean_ctor_set(x_17, 1, x_18); -lean_ctor_set(x_17, 0, x_257); -if (lean_is_scalar(x_261)) { - x_271 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_265); +if (lean_is_scalar(x_269)) { + x_279 = lean_alloc_ctor(0, 2, 0); } else { - x_271 = x_261; + x_279 = x_269; } -lean_ctor_set(x_271, 0, x_17); -lean_ctor_set(x_271, 1, x_25); -x_272 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_272, 0, x_271); -lean_ctor_set(x_272, 1, x_21); -x_28 = x_272; -x_29 = x_260; -goto block_164; +lean_ctor_set(x_279, 0, x_17); +lean_ctor_set(x_279, 1, x_25); +x_280 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_280, 0, x_279); +lean_ctor_set(x_280, 1, x_21); +x_28 = x_280; +x_29 = x_268; +goto block_172; } } -block_164: +block_172: { -lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; lean_object* x_144; uint8_t x_145; +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; uint8_t x_40; x_30 = lean_ctor_get(x_28, 0); lean_inc(x_30); x_31 = lean_ctor_get(x_30, 0); @@ -22387,14 +22403,28 @@ lean_inc(x_36); x_37 = lean_ctor_get(x_32, 1); lean_inc(x_37); lean_dec(x_32); -x_144 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__2; -x_145 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_144); -if (x_145 == 0) +x_38 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__2; +x_39 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_38); +if (x_39 == 0) { -uint8_t x_146; -x_146 = 0; -x_38 = x_146; -goto block_143; +if (x_6 == 0) +{ +uint8_t x_142; +x_142 = 0; +x_40 = x_142; +goto block_141; +} +else +{ +lean_object* x_143; double x_144; double x_145; lean_object* x_146; +x_143 = lean_box(0); +x_144 = lean_unbox_float(x_36); +lean_dec(x_36); +x_145 = lean_unbox_float(x_37); +lean_dec(x_37); +x_146 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_24, x_35, x_39, x_144, x_145, x_5, x_143, x_34, x_33, x_11, x_12, x_13, x_14, x_29); +return x_146; +} } else { @@ -22404,6 +22434,8 @@ x_148 = lean_unbox_float(x_36); x_149 = lean_float_sub(x_147, x_148); if (x_27 == 0) { +if (x_6 == 0) +{ lean_object* x_150; lean_object* x_151; uint8_t x_152; lean_object* x_153; double x_154; double x_155; double x_156; uint8_t x_157; x_150 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; x_151 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_150); @@ -22414,1297 +22446,1337 @@ lean_dec(x_151); x_155 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__4; x_156 = lean_float_div(x_154, x_155); x_157 = lean_float_decLt(x_156, x_149); -x_38 = x_157; -goto block_143; +x_40 = x_157; +goto block_141; } else { -lean_object* x_158; lean_object* x_159; uint8_t x_160; lean_object* x_161; double x_162; uint8_t x_163; -x_158 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; -x_159 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_158); -x_160 = 0; -x_161 = lean_unsigned_to_nat(0u); -x_162 = l_Float_ofScientific(x_159, x_160, x_161); -lean_dec(x_159); -x_163 = lean_float_decLt(x_162, x_149); -x_38 = x_163; -goto block_143; +lean_object* x_158; double x_159; double x_160; lean_object* x_161; +x_158 = lean_box(0); +x_159 = lean_unbox_float(x_36); +lean_dec(x_36); +x_160 = lean_unbox_float(x_37); +lean_dec(x_37); +x_161 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_24, x_35, x_39, x_159, x_160, x_5, x_158, x_34, x_33, x_11, x_12, x_13, x_14, x_29); +return x_161; } } -block_143: +else { if (x_6 == 0) { -if (x_38 == 0) +lean_object* x_162; lean_object* x_163; uint8_t x_164; lean_object* x_165; double x_166; uint8_t x_167; +x_162 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; +x_163 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_162); +x_164 = 0; +x_165 = lean_unsigned_to_nat(0u); +x_166 = l_Float_ofScientific(x_163, x_164, x_165); +lean_dec(x_163); +x_167 = lean_float_decLt(x_166, x_149); +x_40 = x_167; +goto block_141; +} +else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; +lean_object* x_168; double x_169; double x_170; lean_object* x_171; +x_168 = lean_box(0); +x_169 = lean_unbox_float(x_36); +lean_dec(x_36); +x_170 = lean_unbox_float(x_37); +lean_dec(x_37); +x_171 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_24, x_35, x_39, x_169, x_170, x_5, x_168, x_34, x_33, x_11, x_12, x_13, x_14, x_29); +return x_171; +} +} +} +block_141: +{ +if (x_40 == 0) +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; lean_dec(x_37); lean_dec(x_36); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_39 = lean_st_ref_take(x_14, x_29); -x_40 = lean_ctor_get(x_39, 0); -lean_inc(x_40); -x_41 = lean_ctor_get(x_40, 3); -lean_inc(x_41); -x_42 = lean_ctor_get(x_39, 1); +x_41 = lean_st_ref_take(x_14, x_29); +x_42 = lean_ctor_get(x_41, 0); lean_inc(x_42); -lean_dec(x_39); -x_43 = !lean_is_exclusive(x_40); -if (x_43 == 0) -{ -lean_object* x_44; uint8_t x_45; -x_44 = lean_ctor_get(x_40, 3); -lean_dec(x_44); -x_45 = !lean_is_exclusive(x_41); +x_43 = lean_ctor_get(x_42, 3); +lean_inc(x_43); +x_44 = lean_ctor_get(x_41, 1); +lean_inc(x_44); +lean_dec(x_41); +x_45 = !lean_is_exclusive(x_42); if (x_45 == 0) { -lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_46 = lean_ctor_get(x_41, 0); -x_47 = l_Lean_PersistentArray_append___rarg(x_24, x_46); +lean_object* x_46; uint8_t x_47; +x_46 = lean_ctor_get(x_42, 3); lean_dec(x_46); -lean_ctor_set(x_41, 0, x_47); -x_48 = lean_st_ref_set(x_14, x_40, x_42); -x_49 = lean_ctor_get(x_48, 1); -lean_inc(x_49); +x_47 = !lean_is_exclusive(x_43); +if (x_47 == 0) +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_48 = lean_ctor_get(x_43, 0); +x_49 = l_Lean_PersistentArray_append___rarg(x_24, x_48); lean_dec(x_48); -x_50 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_buildInductionCase___spec__10(x_35, x_34, x_33, x_11, x_12, x_13, x_14, x_49); +lean_ctor_set(x_43, 0, x_49); +x_50 = lean_st_ref_set(x_14, x_42, x_44); +x_51 = lean_ctor_get(x_50, 1); +lean_inc(x_51); +lean_dec(x_50); +x_52 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_buildInductionCase___spec__10(x_35, x_34, x_33, x_11, x_12, x_13, x_14, x_51); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_35); -if (lean_obj_tag(x_50) == 0) +if (lean_obj_tag(x_52) == 0) { -lean_object* x_51; lean_object* x_52; uint8_t x_53; -x_51 = lean_ctor_get(x_50, 0); -lean_inc(x_51); -x_52 = lean_ctor_get(x_51, 0); -lean_inc(x_52); -x_53 = !lean_is_exclusive(x_50); -if (x_53 == 0) -{ -lean_object* x_54; uint8_t x_55; -x_54 = lean_ctor_get(x_50, 0); -lean_dec(x_54); -x_55 = !lean_is_exclusive(x_51); +lean_object* x_53; lean_object* x_54; uint8_t x_55; +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +x_54 = lean_ctor_get(x_53, 0); +lean_inc(x_54); +x_55 = !lean_is_exclusive(x_52); if (x_55 == 0) { lean_object* x_56; uint8_t x_57; -x_56 = lean_ctor_get(x_51, 0); +x_56 = lean_ctor_get(x_52, 0); lean_dec(x_56); -x_57 = !lean_is_exclusive(x_52); +x_57 = !lean_is_exclusive(x_53); if (x_57 == 0) { -return x_50; +lean_object* x_58; uint8_t x_59; +x_58 = lean_ctor_get(x_53, 0); +lean_dec(x_58); +x_59 = !lean_is_exclusive(x_54); +if (x_59 == 0) +{ +return x_52; } else { -lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_58 = lean_ctor_get(x_52, 0); -x_59 = lean_ctor_get(x_52, 1); -lean_inc(x_59); -lean_inc(x_58); -lean_dec(x_52); -x_60 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_60, 0, x_58); -lean_ctor_set(x_60, 1, x_59); -lean_ctor_set(x_51, 0, x_60); -return x_50; -} -} -else -{ -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; -x_61 = lean_ctor_get(x_51, 1); +lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_60 = lean_ctor_get(x_54, 0); +x_61 = lean_ctor_get(x_54, 1); lean_inc(x_61); -lean_dec(x_51); -x_62 = lean_ctor_get(x_52, 0); -lean_inc(x_62); -x_63 = lean_ctor_get(x_52, 1); +lean_inc(x_60); +lean_dec(x_54); +x_62 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_62, 0, x_60); +lean_ctor_set(x_62, 1, x_61); +lean_ctor_set(x_53, 0, x_62); +return x_52; +} +} +else +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; +x_63 = lean_ctor_get(x_53, 1); lean_inc(x_63); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_64 = x_52; +lean_dec(x_53); +x_64 = lean_ctor_get(x_54, 0); +lean_inc(x_64); +x_65 = lean_ctor_get(x_54, 1); +lean_inc(x_65); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_66 = x_54; } else { - lean_dec_ref(x_52); - x_64 = lean_box(0); + lean_dec_ref(x_54); + x_66 = lean_box(0); } -if (lean_is_scalar(x_64)) { - x_65 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_66)) { + x_67 = lean_alloc_ctor(0, 2, 0); } else { - x_65 = x_64; + x_67 = x_66; } -lean_ctor_set(x_65, 0, x_62); -lean_ctor_set(x_65, 1, x_63); -x_66 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_66, 0, x_65); -lean_ctor_set(x_66, 1, x_61); -lean_ctor_set(x_50, 0, x_66); -return x_50; +lean_ctor_set(x_67, 0, x_64); +lean_ctor_set(x_67, 1, x_65); +x_68 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_68, 0, x_67); +lean_ctor_set(x_68, 1, x_63); +lean_ctor_set(x_52, 0, x_68); +return x_52; } } else { -lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_67 = lean_ctor_get(x_50, 1); -lean_inc(x_67); -lean_dec(x_50); -x_68 = lean_ctor_get(x_51, 1); -lean_inc(x_68); -if (lean_is_exclusive(x_51)) { - lean_ctor_release(x_51, 0); - lean_ctor_release(x_51, 1); - x_69 = x_51; -} else { - lean_dec_ref(x_51); - x_69 = lean_box(0); -} -x_70 = lean_ctor_get(x_52, 0); +lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_69 = lean_ctor_get(x_52, 1); +lean_inc(x_69); +lean_dec(x_52); +x_70 = lean_ctor_get(x_53, 1); lean_inc(x_70); -x_71 = lean_ctor_get(x_52, 1); -lean_inc(x_71); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_72 = x_52; +if (lean_is_exclusive(x_53)) { + lean_ctor_release(x_53, 0); + lean_ctor_release(x_53, 1); + x_71 = x_53; } else { - lean_dec_ref(x_52); - x_72 = lean_box(0); + lean_dec_ref(x_53); + x_71 = lean_box(0); } -if (lean_is_scalar(x_72)) { - x_73 = lean_alloc_ctor(0, 2, 0); +x_72 = lean_ctor_get(x_54, 0); +lean_inc(x_72); +x_73 = lean_ctor_get(x_54, 1); +lean_inc(x_73); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_74 = x_54; } else { - x_73 = x_72; + lean_dec_ref(x_54); + x_74 = lean_box(0); } -lean_ctor_set(x_73, 0, x_70); -lean_ctor_set(x_73, 1, x_71); -if (lean_is_scalar(x_69)) { - x_74 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_74)) { + x_75 = lean_alloc_ctor(0, 2, 0); } else { - x_74 = x_69; + x_75 = x_74; } -lean_ctor_set(x_74, 0, x_73); -lean_ctor_set(x_74, 1, x_68); -x_75 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_75, 0, x_74); -lean_ctor_set(x_75, 1, x_67); -return x_75; +lean_ctor_set(x_75, 0, x_72); +lean_ctor_set(x_75, 1, x_73); +if (lean_is_scalar(x_71)) { + x_76 = lean_alloc_ctor(0, 2, 0); +} else { + x_76 = x_71; +} +lean_ctor_set(x_76, 0, x_75); +lean_ctor_set(x_76, 1, x_70); +x_77 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_77, 0, x_76); +lean_ctor_set(x_77, 1, x_69); +return x_77; } } else { -uint8_t x_76; -x_76 = !lean_is_exclusive(x_50); -if (x_76 == 0) +uint8_t x_78; +x_78 = !lean_is_exclusive(x_52); +if (x_78 == 0) { -return x_50; +return x_52; } else { -lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_77 = lean_ctor_get(x_50, 0); -x_78 = lean_ctor_get(x_50, 1); -lean_inc(x_78); -lean_inc(x_77); -lean_dec(x_50); -x_79 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_79, 0, x_77); -lean_ctor_set(x_79, 1, x_78); -return x_79; +lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_79 = lean_ctor_get(x_52, 0); +x_80 = lean_ctor_get(x_52, 1); +lean_inc(x_80); +lean_inc(x_79); +lean_dec(x_52); +x_81 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_81, 0, x_79); +lean_ctor_set(x_81, 1, x_80); +return x_81; } } } else { -uint64_t x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; -x_80 = lean_ctor_get_uint64(x_41, sizeof(void*)*1); -x_81 = lean_ctor_get(x_41, 0); -lean_inc(x_81); -lean_dec(x_41); -x_82 = l_Lean_PersistentArray_append___rarg(x_24, x_81); -lean_dec(x_81); -x_83 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_83, 0, x_82); -lean_ctor_set_uint64(x_83, sizeof(void*)*1, x_80); -lean_ctor_set(x_40, 3, x_83); -x_84 = lean_st_ref_set(x_14, x_40, x_42); -x_85 = lean_ctor_get(x_84, 1); -lean_inc(x_85); -lean_dec(x_84); -x_86 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_buildInductionCase___spec__10(x_35, x_34, x_33, x_11, x_12, x_13, x_14, x_85); +uint64_t x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_82 = lean_ctor_get_uint64(x_43, sizeof(void*)*1); +x_83 = lean_ctor_get(x_43, 0); +lean_inc(x_83); +lean_dec(x_43); +x_84 = l_Lean_PersistentArray_append___rarg(x_24, x_83); +lean_dec(x_83); +x_85 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_85, 0, x_84); +lean_ctor_set_uint64(x_85, sizeof(void*)*1, x_82); +lean_ctor_set(x_42, 3, x_85); +x_86 = lean_st_ref_set(x_14, x_42, x_44); +x_87 = lean_ctor_get(x_86, 1); +lean_inc(x_87); +lean_dec(x_86); +x_88 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_buildInductionCase___spec__10(x_35, x_34, x_33, x_11, x_12, x_13, x_14, x_87); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_35); -if (lean_obj_tag(x_86) == 0) +if (lean_obj_tag(x_88) == 0) { -lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; -x_87 = lean_ctor_get(x_86, 0); -lean_inc(x_87); -x_88 = lean_ctor_get(x_87, 0); -lean_inc(x_88); -x_89 = lean_ctor_get(x_86, 1); +lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; +x_89 = lean_ctor_get(x_88, 0); lean_inc(x_89); -if (lean_is_exclusive(x_86)) { - lean_ctor_release(x_86, 0); - lean_ctor_release(x_86, 1); - x_90 = x_86; -} else { - lean_dec_ref(x_86); - x_90 = lean_box(0); -} -x_91 = lean_ctor_get(x_87, 1); +x_90 = lean_ctor_get(x_89, 0); +lean_inc(x_90); +x_91 = lean_ctor_get(x_88, 1); lean_inc(x_91); -if (lean_is_exclusive(x_87)) { - lean_ctor_release(x_87, 0); - lean_ctor_release(x_87, 1); - x_92 = x_87; -} else { - lean_dec_ref(x_87); - x_92 = lean_box(0); -} -x_93 = lean_ctor_get(x_88, 0); -lean_inc(x_93); -x_94 = lean_ctor_get(x_88, 1); -lean_inc(x_94); if (lean_is_exclusive(x_88)) { lean_ctor_release(x_88, 0); lean_ctor_release(x_88, 1); - x_95 = x_88; + x_92 = x_88; } else { lean_dec_ref(x_88); - x_95 = lean_box(0); + x_92 = lean_box(0); } -if (lean_is_scalar(x_95)) { - x_96 = lean_alloc_ctor(0, 2, 0); +x_93 = lean_ctor_get(x_89, 1); +lean_inc(x_93); +if (lean_is_exclusive(x_89)) { + lean_ctor_release(x_89, 0); + lean_ctor_release(x_89, 1); + x_94 = x_89; } else { - x_96 = x_95; + lean_dec_ref(x_89); + x_94 = lean_box(0); } -lean_ctor_set(x_96, 0, x_93); -lean_ctor_set(x_96, 1, x_94); -if (lean_is_scalar(x_92)) { - x_97 = lean_alloc_ctor(0, 2, 0); +x_95 = lean_ctor_get(x_90, 0); +lean_inc(x_95); +x_96 = lean_ctor_get(x_90, 1); +lean_inc(x_96); +if (lean_is_exclusive(x_90)) { + lean_ctor_release(x_90, 0); + lean_ctor_release(x_90, 1); + x_97 = x_90; } else { - x_97 = x_92; + lean_dec_ref(x_90); + x_97 = lean_box(0); } -lean_ctor_set(x_97, 0, x_96); -lean_ctor_set(x_97, 1, x_91); -if (lean_is_scalar(x_90)) { +if (lean_is_scalar(x_97)) { x_98 = lean_alloc_ctor(0, 2, 0); } else { - x_98 = x_90; + x_98 = x_97; } -lean_ctor_set(x_98, 0, x_97); -lean_ctor_set(x_98, 1, x_89); -return x_98; +lean_ctor_set(x_98, 0, x_95); +lean_ctor_set(x_98, 1, x_96); +if (lean_is_scalar(x_94)) { + x_99 = lean_alloc_ctor(0, 2, 0); +} else { + x_99 = x_94; +} +lean_ctor_set(x_99, 0, x_98); +lean_ctor_set(x_99, 1, x_93); +if (lean_is_scalar(x_92)) { + x_100 = lean_alloc_ctor(0, 2, 0); +} else { + x_100 = x_92; +} +lean_ctor_set(x_100, 0, x_99); +lean_ctor_set(x_100, 1, x_91); +return x_100; } else { -lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; -x_99 = lean_ctor_get(x_86, 0); -lean_inc(x_99); -x_100 = lean_ctor_get(x_86, 1); -lean_inc(x_100); -if (lean_is_exclusive(x_86)) { - lean_ctor_release(x_86, 0); - lean_ctor_release(x_86, 1); - x_101 = x_86; +lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; +x_101 = lean_ctor_get(x_88, 0); +lean_inc(x_101); +x_102 = lean_ctor_get(x_88, 1); +lean_inc(x_102); +if (lean_is_exclusive(x_88)) { + lean_ctor_release(x_88, 0); + lean_ctor_release(x_88, 1); + x_103 = x_88; } else { - lean_dec_ref(x_86); - x_101 = lean_box(0); + lean_dec_ref(x_88); + x_103 = lean_box(0); } -if (lean_is_scalar(x_101)) { - x_102 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_103)) { + x_104 = lean_alloc_ctor(1, 2, 0); } else { - x_102 = x_101; + x_104 = x_103; } -lean_ctor_set(x_102, 0, x_99); -lean_ctor_set(x_102, 1, x_100); -return x_102; +lean_ctor_set(x_104, 0, x_101); +lean_ctor_set(x_104, 1, x_102); +return x_104; } } } else { -lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; uint64_t x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; -x_103 = lean_ctor_get(x_40, 0); -x_104 = lean_ctor_get(x_40, 1); -x_105 = lean_ctor_get(x_40, 2); -x_106 = lean_ctor_get(x_40, 4); -x_107 = lean_ctor_get(x_40, 5); -x_108 = lean_ctor_get(x_40, 6); -x_109 = lean_ctor_get(x_40, 7); +lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; uint64_t x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; +x_105 = lean_ctor_get(x_42, 0); +x_106 = lean_ctor_get(x_42, 1); +x_107 = lean_ctor_get(x_42, 2); +x_108 = lean_ctor_get(x_42, 4); +x_109 = lean_ctor_get(x_42, 5); +x_110 = lean_ctor_get(x_42, 6); +x_111 = lean_ctor_get(x_42, 7); +lean_inc(x_111); +lean_inc(x_110); lean_inc(x_109); lean_inc(x_108); lean_inc(x_107); lean_inc(x_106); lean_inc(x_105); -lean_inc(x_104); -lean_inc(x_103); -lean_dec(x_40); -x_110 = lean_ctor_get_uint64(x_41, sizeof(void*)*1); -x_111 = lean_ctor_get(x_41, 0); -lean_inc(x_111); -if (lean_is_exclusive(x_41)) { - lean_ctor_release(x_41, 0); - x_112 = x_41; +lean_dec(x_42); +x_112 = lean_ctor_get_uint64(x_43, sizeof(void*)*1); +x_113 = lean_ctor_get(x_43, 0); +lean_inc(x_113); +if (lean_is_exclusive(x_43)) { + lean_ctor_release(x_43, 0); + x_114 = x_43; } else { - lean_dec_ref(x_41); - x_112 = lean_box(0); + lean_dec_ref(x_43); + x_114 = lean_box(0); } -x_113 = l_Lean_PersistentArray_append___rarg(x_24, x_111); -lean_dec(x_111); -if (lean_is_scalar(x_112)) { - x_114 = lean_alloc_ctor(0, 1, 8); +x_115 = l_Lean_PersistentArray_append___rarg(x_24, x_113); +lean_dec(x_113); +if (lean_is_scalar(x_114)) { + x_116 = lean_alloc_ctor(0, 1, 8); } else { - x_114 = x_112; + x_116 = x_114; } -lean_ctor_set(x_114, 0, x_113); -lean_ctor_set_uint64(x_114, sizeof(void*)*1, x_110); -x_115 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_115, 0, x_103); -lean_ctor_set(x_115, 1, x_104); -lean_ctor_set(x_115, 2, x_105); -lean_ctor_set(x_115, 3, x_114); -lean_ctor_set(x_115, 4, x_106); -lean_ctor_set(x_115, 5, x_107); -lean_ctor_set(x_115, 6, x_108); -lean_ctor_set(x_115, 7, x_109); -x_116 = lean_st_ref_set(x_14, x_115, x_42); -x_117 = lean_ctor_get(x_116, 1); -lean_inc(x_117); -lean_dec(x_116); -x_118 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_buildInductionCase___spec__10(x_35, x_34, x_33, x_11, x_12, x_13, x_14, x_117); +lean_ctor_set(x_116, 0, x_115); +lean_ctor_set_uint64(x_116, sizeof(void*)*1, x_112); +x_117 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_117, 0, x_105); +lean_ctor_set(x_117, 1, x_106); +lean_ctor_set(x_117, 2, x_107); +lean_ctor_set(x_117, 3, x_116); +lean_ctor_set(x_117, 4, x_108); +lean_ctor_set(x_117, 5, x_109); +lean_ctor_set(x_117, 6, x_110); +lean_ctor_set(x_117, 7, x_111); +x_118 = lean_st_ref_set(x_14, x_117, x_44); +x_119 = lean_ctor_get(x_118, 1); +lean_inc(x_119); +lean_dec(x_118); +x_120 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_buildInductionCase___spec__10(x_35, x_34, x_33, x_11, x_12, x_13, x_14, x_119); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_35); -if (lean_obj_tag(x_118) == 0) +if (lean_obj_tag(x_120) == 0) { -lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; -x_119 = lean_ctor_get(x_118, 0); -lean_inc(x_119); -x_120 = lean_ctor_get(x_119, 0); -lean_inc(x_120); -x_121 = lean_ctor_get(x_118, 1); +lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; +x_121 = lean_ctor_get(x_120, 0); lean_inc(x_121); -if (lean_is_exclusive(x_118)) { - lean_ctor_release(x_118, 0); - lean_ctor_release(x_118, 1); - x_122 = x_118; -} else { - lean_dec_ref(x_118); - x_122 = lean_box(0); -} -x_123 = lean_ctor_get(x_119, 1); +x_122 = lean_ctor_get(x_121, 0); +lean_inc(x_122); +x_123 = lean_ctor_get(x_120, 1); lean_inc(x_123); -if (lean_is_exclusive(x_119)) { - lean_ctor_release(x_119, 0); - lean_ctor_release(x_119, 1); - x_124 = x_119; -} else { - lean_dec_ref(x_119); - x_124 = lean_box(0); -} -x_125 = lean_ctor_get(x_120, 0); -lean_inc(x_125); -x_126 = lean_ctor_get(x_120, 1); -lean_inc(x_126); if (lean_is_exclusive(x_120)) { lean_ctor_release(x_120, 0); lean_ctor_release(x_120, 1); - x_127 = x_120; + x_124 = x_120; } else { lean_dec_ref(x_120); - x_127 = lean_box(0); + x_124 = lean_box(0); } -if (lean_is_scalar(x_127)) { - x_128 = lean_alloc_ctor(0, 2, 0); +x_125 = lean_ctor_get(x_121, 1); +lean_inc(x_125); +if (lean_is_exclusive(x_121)) { + lean_ctor_release(x_121, 0); + lean_ctor_release(x_121, 1); + x_126 = x_121; } else { - x_128 = x_127; + lean_dec_ref(x_121); + x_126 = lean_box(0); } -lean_ctor_set(x_128, 0, x_125); -lean_ctor_set(x_128, 1, x_126); -if (lean_is_scalar(x_124)) { - x_129 = lean_alloc_ctor(0, 2, 0); +x_127 = lean_ctor_get(x_122, 0); +lean_inc(x_127); +x_128 = lean_ctor_get(x_122, 1); +lean_inc(x_128); +if (lean_is_exclusive(x_122)) { + lean_ctor_release(x_122, 0); + lean_ctor_release(x_122, 1); + x_129 = x_122; } else { - x_129 = x_124; + lean_dec_ref(x_122); + x_129 = lean_box(0); } -lean_ctor_set(x_129, 0, x_128); -lean_ctor_set(x_129, 1, x_123); -if (lean_is_scalar(x_122)) { +if (lean_is_scalar(x_129)) { x_130 = lean_alloc_ctor(0, 2, 0); } else { - x_130 = x_122; + x_130 = x_129; } -lean_ctor_set(x_130, 0, x_129); -lean_ctor_set(x_130, 1, x_121); -return x_130; -} -else -{ -lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; -x_131 = lean_ctor_get(x_118, 0); -lean_inc(x_131); -x_132 = lean_ctor_get(x_118, 1); -lean_inc(x_132); -if (lean_is_exclusive(x_118)) { - lean_ctor_release(x_118, 0); - lean_ctor_release(x_118, 1); - x_133 = x_118; +lean_ctor_set(x_130, 0, x_127); +lean_ctor_set(x_130, 1, x_128); +if (lean_is_scalar(x_126)) { + x_131 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_118); - x_133 = lean_box(0); + x_131 = x_126; } -if (lean_is_scalar(x_133)) { - x_134 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_131, 0, x_130); +lean_ctor_set(x_131, 1, x_125); +if (lean_is_scalar(x_124)) { + x_132 = lean_alloc_ctor(0, 2, 0); } else { - x_134 = x_133; + x_132 = x_124; } -lean_ctor_set(x_134, 0, x_131); -lean_ctor_set(x_134, 1, x_132); -return x_134; +lean_ctor_set(x_132, 0, x_131); +lean_ctor_set(x_132, 1, x_123); +return x_132; +} +else +{ +lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; +x_133 = lean_ctor_get(x_120, 0); +lean_inc(x_133); +x_134 = lean_ctor_get(x_120, 1); +lean_inc(x_134); +if (lean_is_exclusive(x_120)) { + lean_ctor_release(x_120, 0); + lean_ctor_release(x_120, 1); + x_135 = x_120; +} else { + lean_dec_ref(x_120); + x_135 = lean_box(0); +} +if (lean_is_scalar(x_135)) { + x_136 = lean_alloc_ctor(1, 2, 0); +} else { + x_136 = x_135; +} +lean_ctor_set(x_136, 0, x_133); +lean_ctor_set(x_136, 1, x_134); +return x_136; } } } else { -lean_object* x_135; double x_136; double x_137; lean_object* x_138; -x_135 = lean_box(0); -x_136 = lean_unbox_float(x_36); +lean_object* x_137; double x_138; double x_139; lean_object* x_140; +x_137 = lean_box(0); +x_138 = lean_unbox_float(x_36); lean_dec(x_36); -x_137 = lean_unbox_float(x_37); +x_139 = lean_unbox_float(x_37); lean_dec(x_37); -x_138 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_24, x_35, x_1, x_38, x_136, x_137, x_5, x_135, x_34, x_33, x_11, x_12, x_13, x_14, x_29); -return x_138; -} -} -else -{ -lean_object* x_139; double x_140; double x_141; lean_object* x_142; -x_139 = lean_box(0); -x_140 = lean_unbox_float(x_36); -lean_dec(x_36); -x_141 = lean_unbox_float(x_37); -lean_dec(x_37); -x_142 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_24, x_35, x_1, x_38, x_140, x_141, x_5, x_139, x_34, x_33, x_11, x_12, x_13, x_14, x_29); -return x_142; +x_140 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_24, x_35, x_39, x_138, x_139, x_5, x_137, x_34, x_33, x_11, x_12, x_13, x_14, x_29); +return x_140; } } } } else { -lean_object* x_273; lean_object* x_274; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; -x_410 = lean_io_get_num_heartbeats(x_19); -x_411 = lean_ctor_get(x_410, 0); -lean_inc(x_411); -x_412 = lean_ctor_get(x_410, 1); -lean_inc(x_412); -lean_dec(x_410); +lean_object* x_281; lean_object* x_282; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; +x_426 = lean_io_get_num_heartbeats(x_19); +x_427 = lean_ctor_get(x_426, 0); +lean_inc(x_427); +x_428 = lean_ctor_get(x_426, 1); +lean_inc(x_428); +lean_dec(x_426); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_21); lean_inc(x_25); -x_413 = lean_apply_7(x_7, x_25, x_21, x_11, x_12, x_13, x_14, x_412); -if (lean_obj_tag(x_413) == 0) +x_429 = lean_apply_7(x_7, x_25, x_21, x_11, x_12, x_13, x_14, x_428); +if (lean_obj_tag(x_429) == 0) { -lean_object* x_414; lean_object* x_415; lean_object* x_416; uint8_t x_417; +lean_object* x_430; lean_object* x_431; lean_object* x_432; uint8_t x_433; lean_dec(x_25); lean_dec(x_21); -x_414 = lean_ctor_get(x_413, 0); -lean_inc(x_414); -x_415 = lean_ctor_get(x_414, 0); -lean_inc(x_415); -x_416 = lean_ctor_get(x_413, 1); -lean_inc(x_416); -lean_dec(x_413); -x_417 = !lean_is_exclusive(x_414); -if (x_417 == 0) +x_430 = lean_ctor_get(x_429, 0); +lean_inc(x_430); +x_431 = lean_ctor_get(x_430, 0); +lean_inc(x_431); +x_432 = lean_ctor_get(x_429, 1); +lean_inc(x_432); +lean_dec(x_429); +x_433 = !lean_is_exclusive(x_430); +if (x_433 == 0) { -lean_object* x_418; lean_object* x_419; uint8_t x_420; -x_418 = lean_ctor_get(x_414, 1); -x_419 = lean_ctor_get(x_414, 0); -lean_dec(x_419); -x_420 = !lean_is_exclusive(x_415); -if (x_420 == 0) +lean_object* x_434; lean_object* x_435; uint8_t x_436; +x_434 = lean_ctor_get(x_430, 1); +x_435 = lean_ctor_get(x_430, 0); +lean_dec(x_435); +x_436 = !lean_is_exclusive(x_431); +if (x_436 == 0) { -lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; uint8_t x_427; lean_object* x_428; double x_429; double x_430; lean_object* x_431; lean_object* x_432; -x_421 = lean_ctor_get(x_415, 0); -x_422 = lean_ctor_get(x_415, 1); -x_423 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_423, 0, x_421); -x_424 = lean_io_get_num_heartbeats(x_416); -x_425 = lean_ctor_get(x_424, 0); -lean_inc(x_425); -x_426 = lean_ctor_get(x_424, 1); -lean_inc(x_426); -lean_dec(x_424); -x_427 = 0; -x_428 = lean_unsigned_to_nat(0u); -x_429 = l_Float_ofScientific(x_411, x_427, x_428); -lean_dec(x_411); -x_430 = l_Float_ofScientific(x_425, x_427, x_428); -lean_dec(x_425); -x_431 = lean_box_float(x_429); -x_432 = lean_box_float(x_430); -lean_ctor_set(x_415, 1, x_432); -lean_ctor_set(x_415, 0, x_431); -lean_ctor_set(x_414, 1, x_415); -lean_ctor_set(x_414, 0, x_423); -lean_ctor_set(x_18, 1, x_422); -lean_ctor_set(x_18, 0, x_414); -lean_ctor_set(x_17, 1, x_418); -x_273 = x_17; -x_274 = x_426; -goto block_409; +lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; uint8_t x_443; lean_object* x_444; double x_445; double x_446; lean_object* x_447; lean_object* x_448; +x_437 = lean_ctor_get(x_431, 0); +x_438 = lean_ctor_get(x_431, 1); +x_439 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_439, 0, x_437); +x_440 = lean_io_get_num_heartbeats(x_432); +x_441 = lean_ctor_get(x_440, 0); +lean_inc(x_441); +x_442 = lean_ctor_get(x_440, 1); +lean_inc(x_442); +lean_dec(x_440); +x_443 = 0; +x_444 = lean_unsigned_to_nat(0u); +x_445 = l_Float_ofScientific(x_427, x_443, x_444); +lean_dec(x_427); +x_446 = l_Float_ofScientific(x_441, x_443, x_444); +lean_dec(x_441); +x_447 = lean_box_float(x_445); +x_448 = lean_box_float(x_446); +lean_ctor_set(x_431, 1, x_448); +lean_ctor_set(x_431, 0, x_447); +lean_ctor_set(x_430, 1, x_431); +lean_ctor_set(x_430, 0, x_439); +lean_ctor_set(x_18, 1, x_438); +lean_ctor_set(x_18, 0, x_430); +lean_ctor_set(x_17, 1, x_434); +x_281 = x_17; +x_282 = x_442; +goto block_425; } else { -lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; uint8_t x_439; lean_object* x_440; double x_441; double x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; -x_433 = lean_ctor_get(x_415, 0); -x_434 = lean_ctor_get(x_415, 1); -lean_inc(x_434); -lean_inc(x_433); -lean_dec(x_415); -x_435 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_435, 0, x_433); -x_436 = lean_io_get_num_heartbeats(x_416); -x_437 = lean_ctor_get(x_436, 0); -lean_inc(x_437); -x_438 = lean_ctor_get(x_436, 1); -lean_inc(x_438); -lean_dec(x_436); -x_439 = 0; -x_440 = lean_unsigned_to_nat(0u); -x_441 = l_Float_ofScientific(x_411, x_439, x_440); -lean_dec(x_411); -x_442 = l_Float_ofScientific(x_437, x_439, x_440); -lean_dec(x_437); -x_443 = lean_box_float(x_441); -x_444 = lean_box_float(x_442); -x_445 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_445, 0, x_443); -lean_ctor_set(x_445, 1, x_444); -lean_ctor_set(x_414, 1, x_445); -lean_ctor_set(x_414, 0, x_435); -lean_ctor_set(x_18, 1, x_434); -lean_ctor_set(x_18, 0, x_414); -lean_ctor_set(x_17, 1, x_418); -x_273 = x_17; -x_274 = x_438; -goto block_409; -} -} -else -{ -lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; uint8_t x_454; lean_object* x_455; double x_456; double x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; -x_446 = lean_ctor_get(x_414, 1); -lean_inc(x_446); -lean_dec(x_414); -x_447 = lean_ctor_get(x_415, 0); -lean_inc(x_447); -x_448 = lean_ctor_get(x_415, 1); -lean_inc(x_448); -if (lean_is_exclusive(x_415)) { - lean_ctor_release(x_415, 0); - lean_ctor_release(x_415, 1); - x_449 = x_415; -} else { - lean_dec_ref(x_415); - x_449 = lean_box(0); -} -x_450 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_450, 0, x_447); -x_451 = lean_io_get_num_heartbeats(x_416); -x_452 = lean_ctor_get(x_451, 0); -lean_inc(x_452); -x_453 = lean_ctor_get(x_451, 1); +lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; uint8_t x_455; lean_object* x_456; double x_457; double x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; +x_449 = lean_ctor_get(x_431, 0); +x_450 = lean_ctor_get(x_431, 1); +lean_inc(x_450); +lean_inc(x_449); +lean_dec(x_431); +x_451 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_451, 0, x_449); +x_452 = lean_io_get_num_heartbeats(x_432); +x_453 = lean_ctor_get(x_452, 0); lean_inc(x_453); -lean_dec(x_451); -x_454 = 0; -x_455 = lean_unsigned_to_nat(0u); -x_456 = l_Float_ofScientific(x_411, x_454, x_455); -lean_dec(x_411); -x_457 = l_Float_ofScientific(x_452, x_454, x_455); +x_454 = lean_ctor_get(x_452, 1); +lean_inc(x_454); lean_dec(x_452); -x_458 = lean_box_float(x_456); +x_455 = 0; +x_456 = lean_unsigned_to_nat(0u); +x_457 = l_Float_ofScientific(x_427, x_455, x_456); +lean_dec(x_427); +x_458 = l_Float_ofScientific(x_453, x_455, x_456); +lean_dec(x_453); x_459 = lean_box_float(x_457); -if (lean_is_scalar(x_449)) { - x_460 = lean_alloc_ctor(0, 2, 0); -} else { - x_460 = x_449; -} -lean_ctor_set(x_460, 0, x_458); -lean_ctor_set(x_460, 1, x_459); +x_460 = lean_box_float(x_458); x_461 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_461, 0, x_450); +lean_ctor_set(x_461, 0, x_459); lean_ctor_set(x_461, 1, x_460); -lean_ctor_set(x_18, 1, x_448); -lean_ctor_set(x_18, 0, x_461); -lean_ctor_set(x_17, 1, x_446); -x_273 = x_17; -x_274 = x_453; -goto block_409; +lean_ctor_set(x_430, 1, x_461); +lean_ctor_set(x_430, 0, x_451); +lean_ctor_set(x_18, 1, x_450); +lean_ctor_set(x_18, 0, x_430); +lean_ctor_set(x_17, 1, x_434); +x_281 = x_17; +x_282 = x_454; +goto block_425; } } else { -uint8_t x_462; -x_462 = !lean_is_exclusive(x_413); -if (x_462 == 0) -{ -lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; uint8_t x_467; -x_463 = lean_ctor_get(x_413, 0); -x_464 = lean_ctor_get(x_413, 1); -x_465 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_465, 0, x_463); -x_466 = lean_io_get_num_heartbeats(x_464); -x_467 = !lean_is_exclusive(x_466); -if (x_467 == 0) -{ -lean_object* x_468; lean_object* x_469; uint8_t x_470; lean_object* x_471; double x_472; double x_473; lean_object* x_474; lean_object* x_475; -x_468 = lean_ctor_get(x_466, 0); -x_469 = lean_ctor_get(x_466, 1); +lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; uint8_t x_470; lean_object* x_471; double x_472; double x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; +x_462 = lean_ctor_get(x_430, 1); +lean_inc(x_462); +lean_dec(x_430); +x_463 = lean_ctor_get(x_431, 0); +lean_inc(x_463); +x_464 = lean_ctor_get(x_431, 1); +lean_inc(x_464); +if (lean_is_exclusive(x_431)) { + lean_ctor_release(x_431, 0); + lean_ctor_release(x_431, 1); + x_465 = x_431; +} else { + lean_dec_ref(x_431); + x_465 = lean_box(0); +} +x_466 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_466, 0, x_463); +x_467 = lean_io_get_num_heartbeats(x_432); +x_468 = lean_ctor_get(x_467, 0); +lean_inc(x_468); +x_469 = lean_ctor_get(x_467, 1); +lean_inc(x_469); +lean_dec(x_467); x_470 = 0; x_471 = lean_unsigned_to_nat(0u); -x_472 = l_Float_ofScientific(x_411, x_470, x_471); -lean_dec(x_411); +x_472 = l_Float_ofScientific(x_427, x_470, x_471); +lean_dec(x_427); x_473 = l_Float_ofScientific(x_468, x_470, x_471); lean_dec(x_468); x_474 = lean_box_float(x_472); x_475 = lean_box_float(x_473); -lean_ctor_set(x_18, 1, x_475); -lean_ctor_set(x_18, 0, x_474); -lean_ctor_set(x_17, 1, x_18); -lean_ctor_set(x_17, 0, x_465); -lean_ctor_set(x_466, 1, x_25); -lean_ctor_set(x_466, 0, x_17); -lean_ctor_set_tag(x_413, 0); -lean_ctor_set(x_413, 1, x_21); -lean_ctor_set(x_413, 0, x_466); -x_273 = x_413; -x_274 = x_469; -goto block_409; -} -else -{ -lean_object* x_476; lean_object* x_477; uint8_t x_478; lean_object* x_479; double x_480; double x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; -x_476 = lean_ctor_get(x_466, 0); -x_477 = lean_ctor_get(x_466, 1); -lean_inc(x_477); -lean_inc(x_476); -lean_dec(x_466); -x_478 = 0; -x_479 = lean_unsigned_to_nat(0u); -x_480 = l_Float_ofScientific(x_411, x_478, x_479); -lean_dec(x_411); -x_481 = l_Float_ofScientific(x_476, x_478, x_479); -lean_dec(x_476); -x_482 = lean_box_float(x_480); -x_483 = lean_box_float(x_481); -lean_ctor_set(x_18, 1, x_483); -lean_ctor_set(x_18, 0, x_482); -lean_ctor_set(x_17, 1, x_18); -lean_ctor_set(x_17, 0, x_465); -x_484 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_484, 0, x_17); -lean_ctor_set(x_484, 1, x_25); -lean_ctor_set_tag(x_413, 0); -lean_ctor_set(x_413, 1, x_21); -lean_ctor_set(x_413, 0, x_484); -x_273 = x_413; -x_274 = x_477; -goto block_409; -} -} -else -{ -lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; uint8_t x_492; lean_object* x_493; double x_494; double x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; -x_485 = lean_ctor_get(x_413, 0); -x_486 = lean_ctor_get(x_413, 1); -lean_inc(x_486); -lean_inc(x_485); -lean_dec(x_413); -x_487 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_487, 0, x_485); -x_488 = lean_io_get_num_heartbeats(x_486); -x_489 = lean_ctor_get(x_488, 0); -lean_inc(x_489); -x_490 = lean_ctor_get(x_488, 1); -lean_inc(x_490); -if (lean_is_exclusive(x_488)) { - lean_ctor_release(x_488, 0); - lean_ctor_release(x_488, 1); - x_491 = x_488; +if (lean_is_scalar(x_465)) { + x_476 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_488); - x_491 = lean_box(0); + x_476 = x_465; } -x_492 = 0; -x_493 = lean_unsigned_to_nat(0u); -x_494 = l_Float_ofScientific(x_411, x_492, x_493); -lean_dec(x_411); -x_495 = l_Float_ofScientific(x_489, x_492, x_493); -lean_dec(x_489); -x_496 = lean_box_float(x_494); -x_497 = lean_box_float(x_495); -lean_ctor_set(x_18, 1, x_497); -lean_ctor_set(x_18, 0, x_496); -lean_ctor_set(x_17, 1, x_18); -lean_ctor_set(x_17, 0, x_487); -if (lean_is_scalar(x_491)) { - x_498 = lean_alloc_ctor(0, 2, 0); -} else { - x_498 = x_491; +lean_ctor_set(x_476, 0, x_474); +lean_ctor_set(x_476, 1, x_475); +x_477 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_477, 0, x_466); +lean_ctor_set(x_477, 1, x_476); +lean_ctor_set(x_18, 1, x_464); +lean_ctor_set(x_18, 0, x_477); +lean_ctor_set(x_17, 1, x_462); +x_281 = x_17; +x_282 = x_469; +goto block_425; } -lean_ctor_set(x_498, 0, x_17); -lean_ctor_set(x_498, 1, x_25); -x_499 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_499, 0, x_498); -lean_ctor_set(x_499, 1, x_21); -x_273 = x_499; -x_274 = x_490; -goto block_409; -} -} -block_409: -{ -lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; uint8_t x_283; lean_object* x_389; uint8_t x_390; -x_275 = lean_ctor_get(x_273, 0); -lean_inc(x_275); -x_276 = lean_ctor_get(x_275, 0); -lean_inc(x_276); -x_277 = lean_ctor_get(x_276, 1); -lean_inc(x_277); -x_278 = lean_ctor_get(x_273, 1); -lean_inc(x_278); -lean_dec(x_273); -x_279 = lean_ctor_get(x_275, 1); -lean_inc(x_279); -lean_dec(x_275); -x_280 = lean_ctor_get(x_276, 0); -lean_inc(x_280); -lean_dec(x_276); -x_281 = lean_ctor_get(x_277, 0); -lean_inc(x_281); -x_282 = lean_ctor_get(x_277, 1); -lean_inc(x_282); -lean_dec(x_277); -x_389 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__2; -x_390 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_389); -if (x_390 == 0) -{ -uint8_t x_391; -x_391 = 0; -x_283 = x_391; -goto block_388; } else { -double x_392; double x_393; double x_394; -x_392 = lean_unbox_float(x_282); -x_393 = lean_unbox_float(x_281); -x_394 = lean_float_sub(x_392, x_393); +uint8_t x_478; +x_478 = !lean_is_exclusive(x_429); +if (x_478 == 0) +{ +lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; uint8_t x_483; +x_479 = lean_ctor_get(x_429, 0); +x_480 = lean_ctor_get(x_429, 1); +x_481 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_481, 0, x_479); +x_482 = lean_io_get_num_heartbeats(x_480); +x_483 = !lean_is_exclusive(x_482); +if (x_483 == 0) +{ +lean_object* x_484; lean_object* x_485; uint8_t x_486; lean_object* x_487; double x_488; double x_489; lean_object* x_490; lean_object* x_491; +x_484 = lean_ctor_get(x_482, 0); +x_485 = lean_ctor_get(x_482, 1); +x_486 = 0; +x_487 = lean_unsigned_to_nat(0u); +x_488 = l_Float_ofScientific(x_427, x_486, x_487); +lean_dec(x_427); +x_489 = l_Float_ofScientific(x_484, x_486, x_487); +lean_dec(x_484); +x_490 = lean_box_float(x_488); +x_491 = lean_box_float(x_489); +lean_ctor_set(x_18, 1, x_491); +lean_ctor_set(x_18, 0, x_490); +lean_ctor_set(x_17, 1, x_18); +lean_ctor_set(x_17, 0, x_481); +lean_ctor_set(x_482, 1, x_25); +lean_ctor_set(x_482, 0, x_17); +lean_ctor_set_tag(x_429, 0); +lean_ctor_set(x_429, 1, x_21); +lean_ctor_set(x_429, 0, x_482); +x_281 = x_429; +x_282 = x_485; +goto block_425; +} +else +{ +lean_object* x_492; lean_object* x_493; uint8_t x_494; lean_object* x_495; double x_496; double x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; +x_492 = lean_ctor_get(x_482, 0); +x_493 = lean_ctor_get(x_482, 1); +lean_inc(x_493); +lean_inc(x_492); +lean_dec(x_482); +x_494 = 0; +x_495 = lean_unsigned_to_nat(0u); +x_496 = l_Float_ofScientific(x_427, x_494, x_495); +lean_dec(x_427); +x_497 = l_Float_ofScientific(x_492, x_494, x_495); +lean_dec(x_492); +x_498 = lean_box_float(x_496); +x_499 = lean_box_float(x_497); +lean_ctor_set(x_18, 1, x_499); +lean_ctor_set(x_18, 0, x_498); +lean_ctor_set(x_17, 1, x_18); +lean_ctor_set(x_17, 0, x_481); +x_500 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_500, 0, x_17); +lean_ctor_set(x_500, 1, x_25); +lean_ctor_set_tag(x_429, 0); +lean_ctor_set(x_429, 1, x_21); +lean_ctor_set(x_429, 0, x_500); +x_281 = x_429; +x_282 = x_493; +goto block_425; +} +} +else +{ +lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; uint8_t x_508; lean_object* x_509; double x_510; double x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; +x_501 = lean_ctor_get(x_429, 0); +x_502 = lean_ctor_get(x_429, 1); +lean_inc(x_502); +lean_inc(x_501); +lean_dec(x_429); +x_503 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_503, 0, x_501); +x_504 = lean_io_get_num_heartbeats(x_502); +x_505 = lean_ctor_get(x_504, 0); +lean_inc(x_505); +x_506 = lean_ctor_get(x_504, 1); +lean_inc(x_506); +if (lean_is_exclusive(x_504)) { + lean_ctor_release(x_504, 0); + lean_ctor_release(x_504, 1); + x_507 = x_504; +} else { + lean_dec_ref(x_504); + x_507 = lean_box(0); +} +x_508 = 0; +x_509 = lean_unsigned_to_nat(0u); +x_510 = l_Float_ofScientific(x_427, x_508, x_509); +lean_dec(x_427); +x_511 = l_Float_ofScientific(x_505, x_508, x_509); +lean_dec(x_505); +x_512 = lean_box_float(x_510); +x_513 = lean_box_float(x_511); +lean_ctor_set(x_18, 1, x_513); +lean_ctor_set(x_18, 0, x_512); +lean_ctor_set(x_17, 1, x_18); +lean_ctor_set(x_17, 0, x_503); +if (lean_is_scalar(x_507)) { + x_514 = lean_alloc_ctor(0, 2, 0); +} else { + x_514 = x_507; +} +lean_ctor_set(x_514, 0, x_17); +lean_ctor_set(x_514, 1, x_25); +x_515 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_515, 0, x_514); +lean_ctor_set(x_515, 1, x_21); +x_281 = x_515; +x_282 = x_506; +goto block_425; +} +} +block_425: +{ +lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; uint8_t x_292; uint8_t x_293; +x_283 = lean_ctor_get(x_281, 0); +lean_inc(x_283); +x_284 = lean_ctor_get(x_283, 0); +lean_inc(x_284); +x_285 = lean_ctor_get(x_284, 1); +lean_inc(x_285); +x_286 = lean_ctor_get(x_281, 1); +lean_inc(x_286); +lean_dec(x_281); +x_287 = lean_ctor_get(x_283, 1); +lean_inc(x_287); +lean_dec(x_283); +x_288 = lean_ctor_get(x_284, 0); +lean_inc(x_288); +lean_dec(x_284); +x_289 = lean_ctor_get(x_285, 0); +lean_inc(x_289); +x_290 = lean_ctor_get(x_285, 1); +lean_inc(x_290); +lean_dec(x_285); +x_291 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__2; +x_292 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_291); +if (x_292 == 0) +{ +if (x_6 == 0) +{ +uint8_t x_395; +x_395 = 0; +x_293 = x_395; +goto block_394; +} +else +{ +lean_object* x_396; double x_397; double x_398; lean_object* x_399; +x_396 = lean_box(0); +x_397 = lean_unbox_float(x_289); +lean_dec(x_289); +x_398 = lean_unbox_float(x_290); +lean_dec(x_290); +x_399 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_24, x_288, x_292, x_397, x_398, x_5, x_396, x_287, x_286, x_11, x_12, x_13, x_14, x_282); +return x_399; +} +} +else +{ +double x_400; double x_401; double x_402; +x_400 = lean_unbox_float(x_290); +x_401 = lean_unbox_float(x_289); +x_402 = lean_float_sub(x_400, x_401); if (x_27 == 0) { -lean_object* x_395; lean_object* x_396; uint8_t x_397; lean_object* x_398; double x_399; double x_400; double x_401; uint8_t x_402; -x_395 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; -x_396 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_395); -x_397 = 0; -x_398 = lean_unsigned_to_nat(0u); -x_399 = l_Float_ofScientific(x_396, x_397, x_398); -lean_dec(x_396); -x_400 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__4; -x_401 = lean_float_div(x_399, x_400); -x_402 = lean_float_decLt(x_401, x_394); -x_283 = x_402; -goto block_388; -} -else +if (x_6 == 0) { -lean_object* x_403; lean_object* x_404; uint8_t x_405; lean_object* x_406; double x_407; uint8_t x_408; +lean_object* x_403; lean_object* x_404; uint8_t x_405; lean_object* x_406; double x_407; double x_408; double x_409; uint8_t x_410; x_403 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; x_404 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_403); x_405 = 0; x_406 = lean_unsigned_to_nat(0u); x_407 = l_Float_ofScientific(x_404, x_405, x_406); lean_dec(x_404); -x_408 = lean_float_decLt(x_407, x_394); -x_283 = x_408; -goto block_388; +x_408 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__4; +x_409 = lean_float_div(x_407, x_408); +x_410 = lean_float_decLt(x_409, x_402); +x_293 = x_410; +goto block_394; +} +else +{ +lean_object* x_411; double x_412; double x_413; lean_object* x_414; +x_411 = lean_box(0); +x_412 = lean_unbox_float(x_289); +lean_dec(x_289); +x_413 = lean_unbox_float(x_290); +lean_dec(x_290); +x_414 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_24, x_288, x_292, x_412, x_413, x_5, x_411, x_287, x_286, x_11, x_12, x_13, x_14, x_282); +return x_414; } } -block_388: +else { if (x_6 == 0) { -if (x_283 == 0) +lean_object* x_415; lean_object* x_416; uint8_t x_417; lean_object* x_418; double x_419; uint8_t x_420; +x_415 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; +x_416 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_415); +x_417 = 0; +x_418 = lean_unsigned_to_nat(0u); +x_419 = l_Float_ofScientific(x_416, x_417, x_418); +lean_dec(x_416); +x_420 = lean_float_decLt(x_419, x_402); +x_293 = x_420; +goto block_394; +} +else { -lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; uint8_t x_288; -lean_dec(x_282); -lean_dec(x_281); +lean_object* x_421; double x_422; double x_423; lean_object* x_424; +x_421 = lean_box(0); +x_422 = lean_unbox_float(x_289); +lean_dec(x_289); +x_423 = lean_unbox_float(x_290); +lean_dec(x_290); +x_424 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_24, x_288, x_292, x_422, x_423, x_5, x_421, x_287, x_286, x_11, x_12, x_13, x_14, x_282); +return x_424; +} +} +} +block_394: +{ +if (x_293 == 0) +{ +lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; uint8_t x_298; +lean_dec(x_290); +lean_dec(x_289); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_284 = lean_st_ref_take(x_14, x_274); -x_285 = lean_ctor_get(x_284, 0); -lean_inc(x_285); -x_286 = lean_ctor_get(x_285, 3); -lean_inc(x_286); -x_287 = lean_ctor_get(x_284, 1); -lean_inc(x_287); -lean_dec(x_284); -x_288 = !lean_is_exclusive(x_285); -if (x_288 == 0) -{ -lean_object* x_289; uint8_t x_290; -x_289 = lean_ctor_get(x_285, 3); -lean_dec(x_289); -x_290 = !lean_is_exclusive(x_286); -if (x_290 == 0) -{ -lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; -x_291 = lean_ctor_get(x_286, 0); -x_292 = l_Lean_PersistentArray_append___rarg(x_24, x_291); -lean_dec(x_291); -lean_ctor_set(x_286, 0, x_292); -x_293 = lean_st_ref_set(x_14, x_285, x_287); -x_294 = lean_ctor_get(x_293, 1); -lean_inc(x_294); -lean_dec(x_293); -x_295 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_buildInductionCase___spec__10(x_280, x_279, x_278, x_11, x_12, x_13, x_14, x_294); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_280); -if (lean_obj_tag(x_295) == 0) -{ -lean_object* x_296; lean_object* x_297; uint8_t x_298; -x_296 = lean_ctor_get(x_295, 0); +x_294 = lean_st_ref_take(x_14, x_282); +x_295 = lean_ctor_get(x_294, 0); +lean_inc(x_295); +x_296 = lean_ctor_get(x_295, 3); lean_inc(x_296); -x_297 = lean_ctor_get(x_296, 0); +x_297 = lean_ctor_get(x_294, 1); lean_inc(x_297); +lean_dec(x_294); x_298 = !lean_is_exclusive(x_295); if (x_298 == 0) { lean_object* x_299; uint8_t x_300; -x_299 = lean_ctor_get(x_295, 0); +x_299 = lean_ctor_get(x_295, 3); lean_dec(x_299); x_300 = !lean_is_exclusive(x_296); if (x_300 == 0) { -lean_object* x_301; uint8_t x_302; +lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; x_301 = lean_ctor_get(x_296, 0); +x_302 = l_Lean_PersistentArray_append___rarg(x_24, x_301); lean_dec(x_301); -x_302 = !lean_is_exclusive(x_297); -if (x_302 == 0) -{ -return x_295; -} -else -{ -lean_object* x_303; lean_object* x_304; lean_object* x_305; -x_303 = lean_ctor_get(x_297, 0); -x_304 = lean_ctor_get(x_297, 1); +lean_ctor_set(x_296, 0, x_302); +x_303 = lean_st_ref_set(x_14, x_295, x_297); +x_304 = lean_ctor_get(x_303, 1); lean_inc(x_304); -lean_inc(x_303); -lean_dec(x_297); -x_305 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_305, 0, x_303); -lean_ctor_set(x_305, 1, x_304); -lean_ctor_set(x_296, 0, x_305); -return x_295; -} -} -else +lean_dec(x_303); +x_305 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_buildInductionCase___spec__10(x_288, x_287, x_286, x_11, x_12, x_13, x_14, x_304); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_288); +if (lean_obj_tag(x_305) == 0) { -lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; -x_306 = lean_ctor_get(x_296, 1); +lean_object* x_306; lean_object* x_307; uint8_t x_308; +x_306 = lean_ctor_get(x_305, 0); lean_inc(x_306); -lean_dec(x_296); -x_307 = lean_ctor_get(x_297, 0); +x_307 = lean_ctor_get(x_306, 0); lean_inc(x_307); -x_308 = lean_ctor_get(x_297, 1); -lean_inc(x_308); -if (lean_is_exclusive(x_297)) { - lean_ctor_release(x_297, 0); - lean_ctor_release(x_297, 1); - x_309 = x_297; -} else { - lean_dec_ref(x_297); - x_309 = lean_box(0); +x_308 = !lean_is_exclusive(x_305); +if (x_308 == 0) +{ +lean_object* x_309; uint8_t x_310; +x_309 = lean_ctor_get(x_305, 0); +lean_dec(x_309); +x_310 = !lean_is_exclusive(x_306); +if (x_310 == 0) +{ +lean_object* x_311; uint8_t x_312; +x_311 = lean_ctor_get(x_306, 0); +lean_dec(x_311); +x_312 = !lean_is_exclusive(x_307); +if (x_312 == 0) +{ +return x_305; } -if (lean_is_scalar(x_309)) { - x_310 = lean_alloc_ctor(0, 2, 0); -} else { - x_310 = x_309; -} -lean_ctor_set(x_310, 0, x_307); -lean_ctor_set(x_310, 1, x_308); -x_311 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_311, 0, x_310); -lean_ctor_set(x_311, 1, x_306); -lean_ctor_set(x_295, 0, x_311); -return x_295; +else +{ +lean_object* x_313; lean_object* x_314; lean_object* x_315; +x_313 = lean_ctor_get(x_307, 0); +x_314 = lean_ctor_get(x_307, 1); +lean_inc(x_314); +lean_inc(x_313); +lean_dec(x_307); +x_315 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_315, 0, x_313); +lean_ctor_set(x_315, 1, x_314); +lean_ctor_set(x_306, 0, x_315); +return x_305; } } else { -lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; -x_312 = lean_ctor_get(x_295, 1); -lean_inc(x_312); +lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; +x_316 = lean_ctor_get(x_306, 1); +lean_inc(x_316); +lean_dec(x_306); +x_317 = lean_ctor_get(x_307, 0); +lean_inc(x_317); +x_318 = lean_ctor_get(x_307, 1); +lean_inc(x_318); +if (lean_is_exclusive(x_307)) { + lean_ctor_release(x_307, 0); + lean_ctor_release(x_307, 1); + x_319 = x_307; +} else { + lean_dec_ref(x_307); + x_319 = lean_box(0); +} +if (lean_is_scalar(x_319)) { + x_320 = lean_alloc_ctor(0, 2, 0); +} else { + x_320 = x_319; +} +lean_ctor_set(x_320, 0, x_317); +lean_ctor_set(x_320, 1, x_318); +x_321 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_321, 0, x_320); +lean_ctor_set(x_321, 1, x_316); +lean_ctor_set(x_305, 0, x_321); +return x_305; +} +} +else +{ +lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; +x_322 = lean_ctor_get(x_305, 1); +lean_inc(x_322); +lean_dec(x_305); +x_323 = lean_ctor_get(x_306, 1); +lean_inc(x_323); +if (lean_is_exclusive(x_306)) { + lean_ctor_release(x_306, 0); + lean_ctor_release(x_306, 1); + x_324 = x_306; +} else { + lean_dec_ref(x_306); + x_324 = lean_box(0); +} +x_325 = lean_ctor_get(x_307, 0); +lean_inc(x_325); +x_326 = lean_ctor_get(x_307, 1); +lean_inc(x_326); +if (lean_is_exclusive(x_307)) { + lean_ctor_release(x_307, 0); + lean_ctor_release(x_307, 1); + x_327 = x_307; +} else { + lean_dec_ref(x_307); + x_327 = lean_box(0); +} +if (lean_is_scalar(x_327)) { + x_328 = lean_alloc_ctor(0, 2, 0); +} else { + x_328 = x_327; +} +lean_ctor_set(x_328, 0, x_325); +lean_ctor_set(x_328, 1, x_326); +if (lean_is_scalar(x_324)) { + x_329 = lean_alloc_ctor(0, 2, 0); +} else { + x_329 = x_324; +} +lean_ctor_set(x_329, 0, x_328); +lean_ctor_set(x_329, 1, x_323); +x_330 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_330, 0, x_329); +lean_ctor_set(x_330, 1, x_322); +return x_330; +} +} +else +{ +uint8_t x_331; +x_331 = !lean_is_exclusive(x_305); +if (x_331 == 0) +{ +return x_305; +} +else +{ +lean_object* x_332; lean_object* x_333; lean_object* x_334; +x_332 = lean_ctor_get(x_305, 0); +x_333 = lean_ctor_get(x_305, 1); +lean_inc(x_333); +lean_inc(x_332); +lean_dec(x_305); +x_334 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_334, 0, x_332); +lean_ctor_set(x_334, 1, x_333); +return x_334; +} +} +} +else +{ +uint64_t x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; +x_335 = lean_ctor_get_uint64(x_296, sizeof(void*)*1); +x_336 = lean_ctor_get(x_296, 0); +lean_inc(x_336); +lean_dec(x_296); +x_337 = l_Lean_PersistentArray_append___rarg(x_24, x_336); +lean_dec(x_336); +x_338 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_338, 0, x_337); +lean_ctor_set_uint64(x_338, sizeof(void*)*1, x_335); +lean_ctor_set(x_295, 3, x_338); +x_339 = lean_st_ref_set(x_14, x_295, x_297); +x_340 = lean_ctor_get(x_339, 1); +lean_inc(x_340); +lean_dec(x_339); +x_341 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_buildInductionCase___spec__10(x_288, x_287, x_286, x_11, x_12, x_13, x_14, x_340); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_288); +if (lean_obj_tag(x_341) == 0) +{ +lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; +x_342 = lean_ctor_get(x_341, 0); +lean_inc(x_342); +x_343 = lean_ctor_get(x_342, 0); +lean_inc(x_343); +x_344 = lean_ctor_get(x_341, 1); +lean_inc(x_344); +if (lean_is_exclusive(x_341)) { + lean_ctor_release(x_341, 0); + lean_ctor_release(x_341, 1); + x_345 = x_341; +} else { + lean_dec_ref(x_341); + x_345 = lean_box(0); +} +x_346 = lean_ctor_get(x_342, 1); +lean_inc(x_346); +if (lean_is_exclusive(x_342)) { + lean_ctor_release(x_342, 0); + lean_ctor_release(x_342, 1); + x_347 = x_342; +} else { + lean_dec_ref(x_342); + x_347 = lean_box(0); +} +x_348 = lean_ctor_get(x_343, 0); +lean_inc(x_348); +x_349 = lean_ctor_get(x_343, 1); +lean_inc(x_349); +if (lean_is_exclusive(x_343)) { + lean_ctor_release(x_343, 0); + lean_ctor_release(x_343, 1); + x_350 = x_343; +} else { + lean_dec_ref(x_343); + x_350 = lean_box(0); +} +if (lean_is_scalar(x_350)) { + x_351 = lean_alloc_ctor(0, 2, 0); +} else { + x_351 = x_350; +} +lean_ctor_set(x_351, 0, x_348); +lean_ctor_set(x_351, 1, x_349); +if (lean_is_scalar(x_347)) { + x_352 = lean_alloc_ctor(0, 2, 0); +} else { + x_352 = x_347; +} +lean_ctor_set(x_352, 0, x_351); +lean_ctor_set(x_352, 1, x_346); +if (lean_is_scalar(x_345)) { + x_353 = lean_alloc_ctor(0, 2, 0); +} else { + x_353 = x_345; +} +lean_ctor_set(x_353, 0, x_352); +lean_ctor_set(x_353, 1, x_344); +return x_353; +} +else +{ +lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; +x_354 = lean_ctor_get(x_341, 0); +lean_inc(x_354); +x_355 = lean_ctor_get(x_341, 1); +lean_inc(x_355); +if (lean_is_exclusive(x_341)) { + lean_ctor_release(x_341, 0); + lean_ctor_release(x_341, 1); + x_356 = x_341; +} else { + lean_dec_ref(x_341); + x_356 = lean_box(0); +} +if (lean_is_scalar(x_356)) { + x_357 = lean_alloc_ctor(1, 2, 0); +} else { + x_357 = x_356; +} +lean_ctor_set(x_357, 0, x_354); +lean_ctor_set(x_357, 1, x_355); +return x_357; +} +} +} +else +{ +lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; uint64_t x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; +x_358 = lean_ctor_get(x_295, 0); +x_359 = lean_ctor_get(x_295, 1); +x_360 = lean_ctor_get(x_295, 2); +x_361 = lean_ctor_get(x_295, 4); +x_362 = lean_ctor_get(x_295, 5); +x_363 = lean_ctor_get(x_295, 6); +x_364 = lean_ctor_get(x_295, 7); +lean_inc(x_364); +lean_inc(x_363); +lean_inc(x_362); +lean_inc(x_361); +lean_inc(x_360); +lean_inc(x_359); +lean_inc(x_358); lean_dec(x_295); -x_313 = lean_ctor_get(x_296, 1); -lean_inc(x_313); +x_365 = lean_ctor_get_uint64(x_296, sizeof(void*)*1); +x_366 = lean_ctor_get(x_296, 0); +lean_inc(x_366); if (lean_is_exclusive(x_296)) { lean_ctor_release(x_296, 0); - lean_ctor_release(x_296, 1); - x_314 = x_296; + x_367 = x_296; } else { lean_dec_ref(x_296); - x_314 = lean_box(0); -} -x_315 = lean_ctor_get(x_297, 0); -lean_inc(x_315); -x_316 = lean_ctor_get(x_297, 1); -lean_inc(x_316); -if (lean_is_exclusive(x_297)) { - lean_ctor_release(x_297, 0); - lean_ctor_release(x_297, 1); - x_317 = x_297; -} else { - lean_dec_ref(x_297); - x_317 = lean_box(0); -} -if (lean_is_scalar(x_317)) { - x_318 = lean_alloc_ctor(0, 2, 0); -} else { - x_318 = x_317; -} -lean_ctor_set(x_318, 0, x_315); -lean_ctor_set(x_318, 1, x_316); -if (lean_is_scalar(x_314)) { - x_319 = lean_alloc_ctor(0, 2, 0); -} else { - x_319 = x_314; -} -lean_ctor_set(x_319, 0, x_318); -lean_ctor_set(x_319, 1, x_313); -x_320 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_320, 0, x_319); -lean_ctor_set(x_320, 1, x_312); -return x_320; -} -} -else -{ -uint8_t x_321; -x_321 = !lean_is_exclusive(x_295); -if (x_321 == 0) -{ -return x_295; -} -else -{ -lean_object* x_322; lean_object* x_323; lean_object* x_324; -x_322 = lean_ctor_get(x_295, 0); -x_323 = lean_ctor_get(x_295, 1); -lean_inc(x_323); -lean_inc(x_322); -lean_dec(x_295); -x_324 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_324, 0, x_322); -lean_ctor_set(x_324, 1, x_323); -return x_324; -} -} -} -else -{ -uint64_t x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; -x_325 = lean_ctor_get_uint64(x_286, sizeof(void*)*1); -x_326 = lean_ctor_get(x_286, 0); -lean_inc(x_326); -lean_dec(x_286); -x_327 = l_Lean_PersistentArray_append___rarg(x_24, x_326); -lean_dec(x_326); -x_328 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_328, 0, x_327); -lean_ctor_set_uint64(x_328, sizeof(void*)*1, x_325); -lean_ctor_set(x_285, 3, x_328); -x_329 = lean_st_ref_set(x_14, x_285, x_287); -x_330 = lean_ctor_get(x_329, 1); -lean_inc(x_330); -lean_dec(x_329); -x_331 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_buildInductionCase___spec__10(x_280, x_279, x_278, x_11, x_12, x_13, x_14, x_330); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_280); -if (lean_obj_tag(x_331) == 0) -{ -lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; -x_332 = lean_ctor_get(x_331, 0); -lean_inc(x_332); -x_333 = lean_ctor_get(x_332, 0); -lean_inc(x_333); -x_334 = lean_ctor_get(x_331, 1); -lean_inc(x_334); -if (lean_is_exclusive(x_331)) { - lean_ctor_release(x_331, 0); - lean_ctor_release(x_331, 1); - x_335 = x_331; -} else { - lean_dec_ref(x_331); - x_335 = lean_box(0); -} -x_336 = lean_ctor_get(x_332, 1); -lean_inc(x_336); -if (lean_is_exclusive(x_332)) { - lean_ctor_release(x_332, 0); - lean_ctor_release(x_332, 1); - x_337 = x_332; -} else { - lean_dec_ref(x_332); - x_337 = lean_box(0); -} -x_338 = lean_ctor_get(x_333, 0); -lean_inc(x_338); -x_339 = lean_ctor_get(x_333, 1); -lean_inc(x_339); -if (lean_is_exclusive(x_333)) { - lean_ctor_release(x_333, 0); - lean_ctor_release(x_333, 1); - x_340 = x_333; -} else { - lean_dec_ref(x_333); - x_340 = lean_box(0); -} -if (lean_is_scalar(x_340)) { - x_341 = lean_alloc_ctor(0, 2, 0); -} else { - x_341 = x_340; -} -lean_ctor_set(x_341, 0, x_338); -lean_ctor_set(x_341, 1, x_339); -if (lean_is_scalar(x_337)) { - x_342 = lean_alloc_ctor(0, 2, 0); -} else { - x_342 = x_337; -} -lean_ctor_set(x_342, 0, x_341); -lean_ctor_set(x_342, 1, x_336); -if (lean_is_scalar(x_335)) { - x_343 = lean_alloc_ctor(0, 2, 0); -} else { - x_343 = x_335; -} -lean_ctor_set(x_343, 0, x_342); -lean_ctor_set(x_343, 1, x_334); -return x_343; -} -else -{ -lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; -x_344 = lean_ctor_get(x_331, 0); -lean_inc(x_344); -x_345 = lean_ctor_get(x_331, 1); -lean_inc(x_345); -if (lean_is_exclusive(x_331)) { - lean_ctor_release(x_331, 0); - lean_ctor_release(x_331, 1); - x_346 = x_331; -} else { - lean_dec_ref(x_331); - x_346 = lean_box(0); -} -if (lean_is_scalar(x_346)) { - x_347 = lean_alloc_ctor(1, 2, 0); -} else { - x_347 = x_346; -} -lean_ctor_set(x_347, 0, x_344); -lean_ctor_set(x_347, 1, x_345); -return x_347; -} -} -} -else -{ -lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; uint64_t x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; -x_348 = lean_ctor_get(x_285, 0); -x_349 = lean_ctor_get(x_285, 1); -x_350 = lean_ctor_get(x_285, 2); -x_351 = lean_ctor_get(x_285, 4); -x_352 = lean_ctor_get(x_285, 5); -x_353 = lean_ctor_get(x_285, 6); -x_354 = lean_ctor_get(x_285, 7); -lean_inc(x_354); -lean_inc(x_353); -lean_inc(x_352); -lean_inc(x_351); -lean_inc(x_350); -lean_inc(x_349); -lean_inc(x_348); -lean_dec(x_285); -x_355 = lean_ctor_get_uint64(x_286, sizeof(void*)*1); -x_356 = lean_ctor_get(x_286, 0); -lean_inc(x_356); -if (lean_is_exclusive(x_286)) { - lean_ctor_release(x_286, 0); - x_357 = x_286; -} else { - lean_dec_ref(x_286); - x_357 = lean_box(0); -} -x_358 = l_Lean_PersistentArray_append___rarg(x_24, x_356); -lean_dec(x_356); -if (lean_is_scalar(x_357)) { - x_359 = lean_alloc_ctor(0, 1, 8); -} else { - x_359 = x_357; -} -lean_ctor_set(x_359, 0, x_358); -lean_ctor_set_uint64(x_359, sizeof(void*)*1, x_355); -x_360 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_360, 0, x_348); -lean_ctor_set(x_360, 1, x_349); -lean_ctor_set(x_360, 2, x_350); -lean_ctor_set(x_360, 3, x_359); -lean_ctor_set(x_360, 4, x_351); -lean_ctor_set(x_360, 5, x_352); -lean_ctor_set(x_360, 6, x_353); -lean_ctor_set(x_360, 7, x_354); -x_361 = lean_st_ref_set(x_14, x_360, x_287); -x_362 = lean_ctor_get(x_361, 1); -lean_inc(x_362); -lean_dec(x_361); -x_363 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_buildInductionCase___spec__10(x_280, x_279, x_278, x_11, x_12, x_13, x_14, x_362); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_280); -if (lean_obj_tag(x_363) == 0) -{ -lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_364, 0); -lean_inc(x_365); -x_366 = lean_ctor_get(x_363, 1); -lean_inc(x_366); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_367 = x_363; -} else { - lean_dec_ref(x_363); x_367 = lean_box(0); } -x_368 = lean_ctor_get(x_364, 1); -lean_inc(x_368); -if (lean_is_exclusive(x_364)) { - lean_ctor_release(x_364, 0); - lean_ctor_release(x_364, 1); - x_369 = x_364; -} else { - lean_dec_ref(x_364); - x_369 = lean_box(0); -} -x_370 = lean_ctor_get(x_365, 0); -lean_inc(x_370); -x_371 = lean_ctor_get(x_365, 1); -lean_inc(x_371); -if (lean_is_exclusive(x_365)) { - lean_ctor_release(x_365, 0); - lean_ctor_release(x_365, 1); - x_372 = x_365; -} else { - lean_dec_ref(x_365); - x_372 = lean_box(0); -} -if (lean_is_scalar(x_372)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_372; -} -lean_ctor_set(x_373, 0, x_370); -lean_ctor_set(x_373, 1, x_371); -if (lean_is_scalar(x_369)) { - x_374 = lean_alloc_ctor(0, 2, 0); -} else { - x_374 = x_369; -} -lean_ctor_set(x_374, 0, x_373); -lean_ctor_set(x_374, 1, x_368); +x_368 = l_Lean_PersistentArray_append___rarg(x_24, x_366); +lean_dec(x_366); if (lean_is_scalar(x_367)) { - x_375 = lean_alloc_ctor(0, 2, 0); + x_369 = lean_alloc_ctor(0, 1, 8); } else { - x_375 = x_367; + x_369 = x_367; } -lean_ctor_set(x_375, 0, x_374); -lean_ctor_set(x_375, 1, x_366); -return x_375; -} -else +lean_ctor_set(x_369, 0, x_368); +lean_ctor_set_uint64(x_369, sizeof(void*)*1, x_365); +x_370 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_370, 0, x_358); +lean_ctor_set(x_370, 1, x_359); +lean_ctor_set(x_370, 2, x_360); +lean_ctor_set(x_370, 3, x_369); +lean_ctor_set(x_370, 4, x_361); +lean_ctor_set(x_370, 5, x_362); +lean_ctor_set(x_370, 6, x_363); +lean_ctor_set(x_370, 7, x_364); +x_371 = lean_st_ref_set(x_14, x_370, x_297); +x_372 = lean_ctor_get(x_371, 1); +lean_inc(x_372); +lean_dec(x_371); +x_373 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_buildInductionCase___spec__10(x_288, x_287, x_286, x_11, x_12, x_13, x_14, x_372); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_288); +if (lean_obj_tag(x_373) == 0) { -lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; -x_376 = lean_ctor_get(x_363, 0); +lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; +x_374 = lean_ctor_get(x_373, 0); +lean_inc(x_374); +x_375 = lean_ctor_get(x_374, 0); +lean_inc(x_375); +x_376 = lean_ctor_get(x_373, 1); lean_inc(x_376); -x_377 = lean_ctor_get(x_363, 1); -lean_inc(x_377); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_378 = x_363; +if (lean_is_exclusive(x_373)) { + lean_ctor_release(x_373, 0); + lean_ctor_release(x_373, 1); + x_377 = x_373; } else { - lean_dec_ref(x_363); - x_378 = lean_box(0); + lean_dec_ref(x_373); + x_377 = lean_box(0); } -if (lean_is_scalar(x_378)) { - x_379 = lean_alloc_ctor(1, 2, 0); +x_378 = lean_ctor_get(x_374, 1); +lean_inc(x_378); +if (lean_is_exclusive(x_374)) { + lean_ctor_release(x_374, 0); + lean_ctor_release(x_374, 1); + x_379 = x_374; } else { - x_379 = x_378; + lean_dec_ref(x_374); + x_379 = lean_box(0); } -lean_ctor_set(x_379, 0, x_376); -lean_ctor_set(x_379, 1, x_377); -return x_379; +x_380 = lean_ctor_get(x_375, 0); +lean_inc(x_380); +x_381 = lean_ctor_get(x_375, 1); +lean_inc(x_381); +if (lean_is_exclusive(x_375)) { + lean_ctor_release(x_375, 0); + lean_ctor_release(x_375, 1); + x_382 = x_375; +} else { + lean_dec_ref(x_375); + x_382 = lean_box(0); +} +if (lean_is_scalar(x_382)) { + x_383 = lean_alloc_ctor(0, 2, 0); +} else { + x_383 = x_382; +} +lean_ctor_set(x_383, 0, x_380); +lean_ctor_set(x_383, 1, x_381); +if (lean_is_scalar(x_379)) { + x_384 = lean_alloc_ctor(0, 2, 0); +} else { + x_384 = x_379; +} +lean_ctor_set(x_384, 0, x_383); +lean_ctor_set(x_384, 1, x_378); +if (lean_is_scalar(x_377)) { + x_385 = lean_alloc_ctor(0, 2, 0); +} else { + x_385 = x_377; +} +lean_ctor_set(x_385, 0, x_384); +lean_ctor_set(x_385, 1, x_376); +return x_385; +} +else +{ +lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; +x_386 = lean_ctor_get(x_373, 0); +lean_inc(x_386); +x_387 = lean_ctor_get(x_373, 1); +lean_inc(x_387); +if (lean_is_exclusive(x_373)) { + lean_ctor_release(x_373, 0); + lean_ctor_release(x_373, 1); + x_388 = x_373; +} else { + lean_dec_ref(x_373); + x_388 = lean_box(0); +} +if (lean_is_scalar(x_388)) { + x_389 = lean_alloc_ctor(1, 2, 0); +} else { + x_389 = x_388; +} +lean_ctor_set(x_389, 0, x_386); +lean_ctor_set(x_389, 1, x_387); +return x_389; } } } else { -lean_object* x_380; double x_381; double x_382; lean_object* x_383; -x_380 = lean_box(0); -x_381 = lean_unbox_float(x_281); -lean_dec(x_281); -x_382 = lean_unbox_float(x_282); -lean_dec(x_282); -x_383 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_24, x_280, x_1, x_283, x_381, x_382, x_5, x_380, x_279, x_278, x_11, x_12, x_13, x_14, x_274); -return x_383; -} -} -else -{ -lean_object* x_384; double x_385; double x_386; lean_object* x_387; -x_384 = lean_box(0); -x_385 = lean_unbox_float(x_281); -lean_dec(x_281); -x_386 = lean_unbox_float(x_282); -lean_dec(x_282); -x_387 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_24, x_280, x_1, x_283, x_385, x_386, x_5, x_384, x_279, x_278, x_11, x_12, x_13, x_14, x_274); -return x_387; +lean_object* x_390; double x_391; double x_392; lean_object* x_393; +x_390 = lean_box(0); +x_391 = lean_unbox_float(x_289); +lean_dec(x_289); +x_392 = lean_unbox_float(x_290); +lean_dec(x_290); +x_393 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_24, x_288, x_292, x_391, x_392, x_5, x_390, x_287, x_286, x_11, x_12, x_13, x_14, x_282); +return x_393; } } } @@ -23712,858 +23784,914 @@ return x_387; } else { -lean_object* x_500; lean_object* x_501; lean_object* x_502; uint8_t x_503; -x_500 = lean_ctor_get(x_18, 0); -x_501 = lean_ctor_get(x_18, 1); -lean_inc(x_501); -lean_inc(x_500); +lean_object* x_516; lean_object* x_517; lean_object* x_518; uint8_t x_519; +x_516 = lean_ctor_get(x_18, 0); +x_517 = lean_ctor_get(x_18, 1); +lean_inc(x_517); +lean_inc(x_516); lean_dec(x_18); -x_502 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__1; -x_503 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_502); -if (x_503 == 0) +x_518 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__1; +x_519 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_518); +if (x_519 == 0) { -lean_object* x_504; lean_object* x_505; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; -x_582 = lean_io_mono_nanos_now(x_19); -x_583 = lean_ctor_get(x_582, 0); -lean_inc(x_583); -x_584 = lean_ctor_get(x_582, 1); -lean_inc(x_584); -lean_dec(x_582); +lean_object* x_520; lean_object* x_521; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; +x_606 = lean_io_mono_nanos_now(x_19); +x_607 = lean_ctor_get(x_606, 0); +lean_inc(x_607); +x_608 = lean_ctor_get(x_606, 1); +lean_inc(x_608); +lean_dec(x_606); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_21); -lean_inc(x_501); -x_585 = lean_apply_7(x_7, x_501, x_21, x_11, x_12, x_13, x_14, x_584); -if (lean_obj_tag(x_585) == 0) +lean_inc(x_517); +x_609 = lean_apply_7(x_7, x_517, x_21, x_11, x_12, x_13, x_14, x_608); +if (lean_obj_tag(x_609) == 0) { -lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; uint8_t x_598; lean_object* x_599; double x_600; double x_601; double x_602; double x_603; double x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; -lean_dec(x_501); +lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; uint8_t x_622; lean_object* x_623; double x_624; double x_625; double x_626; double x_627; double x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; +lean_dec(x_517); lean_dec(x_21); -x_586 = lean_ctor_get(x_585, 0); -lean_inc(x_586); -x_587 = lean_ctor_get(x_586, 0); -lean_inc(x_587); -x_588 = lean_ctor_get(x_585, 1); -lean_inc(x_588); -lean_dec(x_585); -x_589 = lean_ctor_get(x_586, 1); -lean_inc(x_589); -if (lean_is_exclusive(x_586)) { - lean_ctor_release(x_586, 0); - lean_ctor_release(x_586, 1); - x_590 = x_586; -} else { - lean_dec_ref(x_586); - x_590 = lean_box(0); -} -x_591 = lean_ctor_get(x_587, 0); -lean_inc(x_591); -x_592 = lean_ctor_get(x_587, 1); -lean_inc(x_592); -if (lean_is_exclusive(x_587)) { - lean_ctor_release(x_587, 0); - lean_ctor_release(x_587, 1); - x_593 = x_587; -} else { - lean_dec_ref(x_587); - x_593 = lean_box(0); -} -x_594 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_594, 0, x_591); -x_595 = lean_io_mono_nanos_now(x_588); -x_596 = lean_ctor_get(x_595, 0); -lean_inc(x_596); -x_597 = lean_ctor_get(x_595, 1); -lean_inc(x_597); -lean_dec(x_595); -x_598 = 0; -x_599 = lean_unsigned_to_nat(0u); -x_600 = l_Float_ofScientific(x_583, x_598, x_599); -lean_dec(x_583); -x_601 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; -x_602 = lean_float_div(x_600, x_601); -x_603 = l_Float_ofScientific(x_596, x_598, x_599); -lean_dec(x_596); -x_604 = lean_float_div(x_603, x_601); -x_605 = lean_box_float(x_602); -x_606 = lean_box_float(x_604); -if (lean_is_scalar(x_593)) { - x_607 = lean_alloc_ctor(0, 2, 0); -} else { - x_607 = x_593; -} -lean_ctor_set(x_607, 0, x_605); -lean_ctor_set(x_607, 1, x_606); -if (lean_is_scalar(x_590)) { - x_608 = lean_alloc_ctor(0, 2, 0); -} else { - x_608 = x_590; -} -lean_ctor_set(x_608, 0, x_594); -lean_ctor_set(x_608, 1, x_607); -x_609 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_609, 0, x_608); -lean_ctor_set(x_609, 1, x_592); -lean_ctor_set(x_17, 1, x_589); -lean_ctor_set(x_17, 0, x_609); -x_504 = x_17; -x_505 = x_597; -goto block_581; -} -else -{ -lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; uint8_t x_618; lean_object* x_619; double x_620; double x_621; double x_622; double x_623; double x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; -x_610 = lean_ctor_get(x_585, 0); +x_610 = lean_ctor_get(x_609, 0); lean_inc(x_610); -x_611 = lean_ctor_get(x_585, 1); +x_611 = lean_ctor_get(x_610, 0); lean_inc(x_611); -if (lean_is_exclusive(x_585)) { - lean_ctor_release(x_585, 0); - lean_ctor_release(x_585, 1); - x_612 = x_585; +x_612 = lean_ctor_get(x_609, 1); +lean_inc(x_612); +lean_dec(x_609); +x_613 = lean_ctor_get(x_610, 1); +lean_inc(x_613); +if (lean_is_exclusive(x_610)) { + lean_ctor_release(x_610, 0); + lean_ctor_release(x_610, 1); + x_614 = x_610; } else { - lean_dec_ref(x_585); - x_612 = lean_box(0); + lean_dec_ref(x_610); + x_614 = lean_box(0); } -x_613 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_613, 0, x_610); -x_614 = lean_io_mono_nanos_now(x_611); -x_615 = lean_ctor_get(x_614, 0); +x_615 = lean_ctor_get(x_611, 0); lean_inc(x_615); -x_616 = lean_ctor_get(x_614, 1); +x_616 = lean_ctor_get(x_611, 1); lean_inc(x_616); -if (lean_is_exclusive(x_614)) { - lean_ctor_release(x_614, 0); - lean_ctor_release(x_614, 1); - x_617 = x_614; +if (lean_is_exclusive(x_611)) { + lean_ctor_release(x_611, 0); + lean_ctor_release(x_611, 1); + x_617 = x_611; } else { - lean_dec_ref(x_614); + lean_dec_ref(x_611); x_617 = lean_box(0); } -x_618 = 0; -x_619 = lean_unsigned_to_nat(0u); -x_620 = l_Float_ofScientific(x_583, x_618, x_619); -lean_dec(x_583); -x_621 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; -x_622 = lean_float_div(x_620, x_621); -x_623 = l_Float_ofScientific(x_615, x_618, x_619); -lean_dec(x_615); -x_624 = lean_float_div(x_623, x_621); -x_625 = lean_box_float(x_622); -x_626 = lean_box_float(x_624); -x_627 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_627, 0, x_625); -lean_ctor_set(x_627, 1, x_626); -lean_ctor_set(x_17, 1, x_627); -lean_ctor_set(x_17, 0, x_613); +x_618 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_618, 0, x_615); +x_619 = lean_io_mono_nanos_now(x_612); +x_620 = lean_ctor_get(x_619, 0); +lean_inc(x_620); +x_621 = lean_ctor_get(x_619, 1); +lean_inc(x_621); +lean_dec(x_619); +x_622 = 0; +x_623 = lean_unsigned_to_nat(0u); +x_624 = l_Float_ofScientific(x_607, x_622, x_623); +lean_dec(x_607); +x_625 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; +x_626 = lean_float_div(x_624, x_625); +x_627 = l_Float_ofScientific(x_620, x_622, x_623); +lean_dec(x_620); +x_628 = lean_float_div(x_627, x_625); +x_629 = lean_box_float(x_626); +x_630 = lean_box_float(x_628); if (lean_is_scalar(x_617)) { - x_628 = lean_alloc_ctor(0, 2, 0); + x_631 = lean_alloc_ctor(0, 2, 0); } else { - x_628 = x_617; + x_631 = x_617; } -lean_ctor_set(x_628, 0, x_17); -lean_ctor_set(x_628, 1, x_501); -if (lean_is_scalar(x_612)) { - x_629 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_631, 0, x_629); +lean_ctor_set(x_631, 1, x_630); +if (lean_is_scalar(x_614)) { + x_632 = lean_alloc_ctor(0, 2, 0); } else { - x_629 = x_612; - lean_ctor_set_tag(x_629, 0); + x_632 = x_614; } -lean_ctor_set(x_629, 0, x_628); -lean_ctor_set(x_629, 1, x_21); -x_504 = x_629; -x_505 = x_616; -goto block_581; -} -block_581: -{ -lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; uint8_t x_514; lean_object* x_561; uint8_t x_562; -x_506 = lean_ctor_get(x_504, 0); -lean_inc(x_506); -x_507 = lean_ctor_get(x_506, 0); -lean_inc(x_507); -x_508 = lean_ctor_get(x_507, 1); -lean_inc(x_508); -x_509 = lean_ctor_get(x_504, 1); -lean_inc(x_509); -lean_dec(x_504); -x_510 = lean_ctor_get(x_506, 1); -lean_inc(x_510); -lean_dec(x_506); -x_511 = lean_ctor_get(x_507, 0); -lean_inc(x_511); -lean_dec(x_507); -x_512 = lean_ctor_get(x_508, 0); -lean_inc(x_512); -x_513 = lean_ctor_get(x_508, 1); -lean_inc(x_513); -lean_dec(x_508); -x_561 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__2; -x_562 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_561); -if (x_562 == 0) -{ -uint8_t x_563; -x_563 = 0; -x_514 = x_563; -goto block_560; +lean_ctor_set(x_632, 0, x_618); +lean_ctor_set(x_632, 1, x_631); +x_633 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_633, 0, x_632); +lean_ctor_set(x_633, 1, x_616); +lean_ctor_set(x_17, 1, x_613); +lean_ctor_set(x_17, 0, x_633); +x_520 = x_17; +x_521 = x_621; +goto block_605; } else { -double x_564; double x_565; double x_566; -x_564 = lean_unbox_float(x_513); -x_565 = lean_unbox_float(x_512); -x_566 = lean_float_sub(x_564, x_565); -if (x_503 == 0) +lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; uint8_t x_642; lean_object* x_643; double x_644; double x_645; double x_646; double x_647; double x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; +x_634 = lean_ctor_get(x_609, 0); +lean_inc(x_634); +x_635 = lean_ctor_get(x_609, 1); +lean_inc(x_635); +if (lean_is_exclusive(x_609)) { + lean_ctor_release(x_609, 0); + lean_ctor_release(x_609, 1); + x_636 = x_609; +} else { + lean_dec_ref(x_609); + x_636 = lean_box(0); +} +x_637 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_637, 0, x_634); +x_638 = lean_io_mono_nanos_now(x_635); +x_639 = lean_ctor_get(x_638, 0); +lean_inc(x_639); +x_640 = lean_ctor_get(x_638, 1); +lean_inc(x_640); +if (lean_is_exclusive(x_638)) { + lean_ctor_release(x_638, 0); + lean_ctor_release(x_638, 1); + x_641 = x_638; +} else { + lean_dec_ref(x_638); + x_641 = lean_box(0); +} +x_642 = 0; +x_643 = lean_unsigned_to_nat(0u); +x_644 = l_Float_ofScientific(x_607, x_642, x_643); +lean_dec(x_607); +x_645 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; +x_646 = lean_float_div(x_644, x_645); +x_647 = l_Float_ofScientific(x_639, x_642, x_643); +lean_dec(x_639); +x_648 = lean_float_div(x_647, x_645); +x_649 = lean_box_float(x_646); +x_650 = lean_box_float(x_648); +x_651 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_651, 0, x_649); +lean_ctor_set(x_651, 1, x_650); +lean_ctor_set(x_17, 1, x_651); +lean_ctor_set(x_17, 0, x_637); +if (lean_is_scalar(x_641)) { + x_652 = lean_alloc_ctor(0, 2, 0); +} else { + x_652 = x_641; +} +lean_ctor_set(x_652, 0, x_17); +lean_ctor_set(x_652, 1, x_517); +if (lean_is_scalar(x_636)) { + x_653 = lean_alloc_ctor(0, 2, 0); +} else { + x_653 = x_636; + lean_ctor_set_tag(x_653, 0); +} +lean_ctor_set(x_653, 0, x_652); +lean_ctor_set(x_653, 1, x_21); +x_520 = x_653; +x_521 = x_640; +goto block_605; +} +block_605: { -lean_object* x_567; lean_object* x_568; uint8_t x_569; lean_object* x_570; double x_571; double x_572; double x_573; uint8_t x_574; -x_567 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; -x_568 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_567); -x_569 = 0; -x_570 = lean_unsigned_to_nat(0u); -x_571 = l_Float_ofScientific(x_568, x_569, x_570); -lean_dec(x_568); -x_572 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__4; -x_573 = lean_float_div(x_571, x_572); -x_574 = lean_float_decLt(x_573, x_566); -x_514 = x_574; -goto block_560; -} -else -{ -lean_object* x_575; lean_object* x_576; uint8_t x_577; lean_object* x_578; double x_579; uint8_t x_580; -x_575 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; -x_576 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_575); -x_577 = 0; -x_578 = lean_unsigned_to_nat(0u); -x_579 = l_Float_ofScientific(x_576, x_577, x_578); -lean_dec(x_576); -x_580 = lean_float_decLt(x_579, x_566); -x_514 = x_580; -goto block_560; -} -} -block_560: +lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; uint8_t x_531; uint8_t x_532; +x_522 = lean_ctor_get(x_520, 0); +lean_inc(x_522); +x_523 = lean_ctor_get(x_522, 0); +lean_inc(x_523); +x_524 = lean_ctor_get(x_523, 1); +lean_inc(x_524); +x_525 = lean_ctor_get(x_520, 1); +lean_inc(x_525); +lean_dec(x_520); +x_526 = lean_ctor_get(x_522, 1); +lean_inc(x_526); +lean_dec(x_522); +x_527 = lean_ctor_get(x_523, 0); +lean_inc(x_527); +lean_dec(x_523); +x_528 = lean_ctor_get(x_524, 0); +lean_inc(x_528); +x_529 = lean_ctor_get(x_524, 1); +lean_inc(x_529); +lean_dec(x_524); +x_530 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__2; +x_531 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_530); +if (x_531 == 0) { if (x_6 == 0) { -if (x_514 == 0) +uint8_t x_575; +x_575 = 0; +x_532 = x_575; +goto block_574; +} +else { -lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; uint64_t x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; -lean_dec(x_513); -lean_dec(x_512); +lean_object* x_576; double x_577; double x_578; lean_object* x_579; +x_576 = lean_box(0); +x_577 = lean_unbox_float(x_528); +lean_dec(x_528); +x_578 = lean_unbox_float(x_529); +lean_dec(x_529); +x_579 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_516, x_527, x_531, x_577, x_578, x_5, x_576, x_526, x_525, x_11, x_12, x_13, x_14, x_521); +return x_579; +} +} +else +{ +double x_580; double x_581; double x_582; +x_580 = lean_unbox_float(x_529); +x_581 = lean_unbox_float(x_528); +x_582 = lean_float_sub(x_580, x_581); +if (x_519 == 0) +{ +if (x_6 == 0) +{ +lean_object* x_583; lean_object* x_584; uint8_t x_585; lean_object* x_586; double x_587; double x_588; double x_589; uint8_t x_590; +x_583 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; +x_584 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_583); +x_585 = 0; +x_586 = lean_unsigned_to_nat(0u); +x_587 = l_Float_ofScientific(x_584, x_585, x_586); +lean_dec(x_584); +x_588 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__4; +x_589 = lean_float_div(x_587, x_588); +x_590 = lean_float_decLt(x_589, x_582); +x_532 = x_590; +goto block_574; +} +else +{ +lean_object* x_591; double x_592; double x_593; lean_object* x_594; +x_591 = lean_box(0); +x_592 = lean_unbox_float(x_528); +lean_dec(x_528); +x_593 = lean_unbox_float(x_529); +lean_dec(x_529); +x_594 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_516, x_527, x_531, x_592, x_593, x_5, x_591, x_526, x_525, x_11, x_12, x_13, x_14, x_521); +return x_594; +} +} +else +{ +if (x_6 == 0) +{ +lean_object* x_595; lean_object* x_596; uint8_t x_597; lean_object* x_598; double x_599; uint8_t x_600; +x_595 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; +x_596 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_595); +x_597 = 0; +x_598 = lean_unsigned_to_nat(0u); +x_599 = l_Float_ofScientific(x_596, x_597, x_598); +lean_dec(x_596); +x_600 = lean_float_decLt(x_599, x_582); +x_532 = x_600; +goto block_574; +} +else +{ +lean_object* x_601; double x_602; double x_603; lean_object* x_604; +x_601 = lean_box(0); +x_602 = lean_unbox_float(x_528); +lean_dec(x_528); +x_603 = lean_unbox_float(x_529); +lean_dec(x_529); +x_604 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_516, x_527, x_531, x_602, x_603, x_5, x_601, x_526, x_525, x_11, x_12, x_13, x_14, x_521); +return x_604; +} +} +} +block_574: +{ +if (x_532 == 0) +{ +lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; uint64_t x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; +lean_dec(x_529); +lean_dec(x_528); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_515 = lean_st_ref_take(x_14, x_505); -x_516 = lean_ctor_get(x_515, 0); -lean_inc(x_516); -x_517 = lean_ctor_get(x_516, 3); -lean_inc(x_517); -x_518 = lean_ctor_get(x_515, 1); -lean_inc(x_518); -lean_dec(x_515); -x_519 = lean_ctor_get(x_516, 0); -lean_inc(x_519); -x_520 = lean_ctor_get(x_516, 1); -lean_inc(x_520); -x_521 = lean_ctor_get(x_516, 2); -lean_inc(x_521); -x_522 = lean_ctor_get(x_516, 4); -lean_inc(x_522); -x_523 = lean_ctor_get(x_516, 5); -lean_inc(x_523); -x_524 = lean_ctor_get(x_516, 6); -lean_inc(x_524); -x_525 = lean_ctor_get(x_516, 7); -lean_inc(x_525); -if (lean_is_exclusive(x_516)) { - lean_ctor_release(x_516, 0); - lean_ctor_release(x_516, 1); - lean_ctor_release(x_516, 2); - lean_ctor_release(x_516, 3); - lean_ctor_release(x_516, 4); - lean_ctor_release(x_516, 5); - lean_ctor_release(x_516, 6); - lean_ctor_release(x_516, 7); - x_526 = x_516; -} else { - lean_dec_ref(x_516); - x_526 = lean_box(0); -} -x_527 = lean_ctor_get_uint64(x_517, sizeof(void*)*1); -x_528 = lean_ctor_get(x_517, 0); -lean_inc(x_528); -if (lean_is_exclusive(x_517)) { - lean_ctor_release(x_517, 0); - x_529 = x_517; -} else { - lean_dec_ref(x_517); - x_529 = lean_box(0); -} -x_530 = l_Lean_PersistentArray_append___rarg(x_500, x_528); -lean_dec(x_528); -if (lean_is_scalar(x_529)) { - x_531 = lean_alloc_ctor(0, 1, 8); -} else { - x_531 = x_529; -} -lean_ctor_set(x_531, 0, x_530); -lean_ctor_set_uint64(x_531, sizeof(void*)*1, x_527); -if (lean_is_scalar(x_526)) { - x_532 = lean_alloc_ctor(0, 8, 0); -} else { - x_532 = x_526; -} -lean_ctor_set(x_532, 0, x_519); -lean_ctor_set(x_532, 1, x_520); -lean_ctor_set(x_532, 2, x_521); -lean_ctor_set(x_532, 3, x_531); -lean_ctor_set(x_532, 4, x_522); -lean_ctor_set(x_532, 5, x_523); -lean_ctor_set(x_532, 6, x_524); -lean_ctor_set(x_532, 7, x_525); -x_533 = lean_st_ref_set(x_14, x_532, x_518); -x_534 = lean_ctor_get(x_533, 1); +x_533 = lean_st_ref_take(x_14, x_521); +x_534 = lean_ctor_get(x_533, 0); lean_inc(x_534); +x_535 = lean_ctor_get(x_534, 3); +lean_inc(x_535); +x_536 = lean_ctor_get(x_533, 1); +lean_inc(x_536); lean_dec(x_533); -x_535 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_buildInductionCase___spec__10(x_511, x_510, x_509, x_11, x_12, x_13, x_14, x_534); +x_537 = lean_ctor_get(x_534, 0); +lean_inc(x_537); +x_538 = lean_ctor_get(x_534, 1); +lean_inc(x_538); +x_539 = lean_ctor_get(x_534, 2); +lean_inc(x_539); +x_540 = lean_ctor_get(x_534, 4); +lean_inc(x_540); +x_541 = lean_ctor_get(x_534, 5); +lean_inc(x_541); +x_542 = lean_ctor_get(x_534, 6); +lean_inc(x_542); +x_543 = lean_ctor_get(x_534, 7); +lean_inc(x_543); +if (lean_is_exclusive(x_534)) { + lean_ctor_release(x_534, 0); + lean_ctor_release(x_534, 1); + lean_ctor_release(x_534, 2); + lean_ctor_release(x_534, 3); + lean_ctor_release(x_534, 4); + lean_ctor_release(x_534, 5); + lean_ctor_release(x_534, 6); + lean_ctor_release(x_534, 7); + x_544 = x_534; +} else { + lean_dec_ref(x_534); + x_544 = lean_box(0); +} +x_545 = lean_ctor_get_uint64(x_535, sizeof(void*)*1); +x_546 = lean_ctor_get(x_535, 0); +lean_inc(x_546); +if (lean_is_exclusive(x_535)) { + lean_ctor_release(x_535, 0); + x_547 = x_535; +} else { + lean_dec_ref(x_535); + x_547 = lean_box(0); +} +x_548 = l_Lean_PersistentArray_append___rarg(x_516, x_546); +lean_dec(x_546); +if (lean_is_scalar(x_547)) { + x_549 = lean_alloc_ctor(0, 1, 8); +} else { + x_549 = x_547; +} +lean_ctor_set(x_549, 0, x_548); +lean_ctor_set_uint64(x_549, sizeof(void*)*1, x_545); +if (lean_is_scalar(x_544)) { + x_550 = lean_alloc_ctor(0, 8, 0); +} else { + x_550 = x_544; +} +lean_ctor_set(x_550, 0, x_537); +lean_ctor_set(x_550, 1, x_538); +lean_ctor_set(x_550, 2, x_539); +lean_ctor_set(x_550, 3, x_549); +lean_ctor_set(x_550, 4, x_540); +lean_ctor_set(x_550, 5, x_541); +lean_ctor_set(x_550, 6, x_542); +lean_ctor_set(x_550, 7, x_543); +x_551 = lean_st_ref_set(x_14, x_550, x_536); +x_552 = lean_ctor_get(x_551, 1); +lean_inc(x_552); +lean_dec(x_551); +x_553 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_buildInductionCase___spec__10(x_527, x_526, x_525, x_11, x_12, x_13, x_14, x_552); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); -lean_dec(x_511); -if (lean_obj_tag(x_535) == 0) +lean_dec(x_527); +if (lean_obj_tag(x_553) == 0) { -lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; -x_536 = lean_ctor_get(x_535, 0); -lean_inc(x_536); -x_537 = lean_ctor_get(x_536, 0); -lean_inc(x_537); -x_538 = lean_ctor_get(x_535, 1); -lean_inc(x_538); -if (lean_is_exclusive(x_535)) { - lean_ctor_release(x_535, 0); - lean_ctor_release(x_535, 1); - x_539 = x_535; +lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; +x_554 = lean_ctor_get(x_553, 0); +lean_inc(x_554); +x_555 = lean_ctor_get(x_554, 0); +lean_inc(x_555); +x_556 = lean_ctor_get(x_553, 1); +lean_inc(x_556); +if (lean_is_exclusive(x_553)) { + lean_ctor_release(x_553, 0); + lean_ctor_release(x_553, 1); + x_557 = x_553; } else { - lean_dec_ref(x_535); - x_539 = lean_box(0); + lean_dec_ref(x_553); + x_557 = lean_box(0); } -x_540 = lean_ctor_get(x_536, 1); -lean_inc(x_540); -if (lean_is_exclusive(x_536)) { - lean_ctor_release(x_536, 0); - lean_ctor_release(x_536, 1); - x_541 = x_536; +x_558 = lean_ctor_get(x_554, 1); +lean_inc(x_558); +if (lean_is_exclusive(x_554)) { + lean_ctor_release(x_554, 0); + lean_ctor_release(x_554, 1); + x_559 = x_554; } else { - lean_dec_ref(x_536); - x_541 = lean_box(0); + lean_dec_ref(x_554); + x_559 = lean_box(0); } -x_542 = lean_ctor_get(x_537, 0); -lean_inc(x_542); -x_543 = lean_ctor_get(x_537, 1); -lean_inc(x_543); -if (lean_is_exclusive(x_537)) { - lean_ctor_release(x_537, 0); - lean_ctor_release(x_537, 1); - x_544 = x_537; +x_560 = lean_ctor_get(x_555, 0); +lean_inc(x_560); +x_561 = lean_ctor_get(x_555, 1); +lean_inc(x_561); +if (lean_is_exclusive(x_555)) { + lean_ctor_release(x_555, 0); + lean_ctor_release(x_555, 1); + x_562 = x_555; } else { - lean_dec_ref(x_537); - x_544 = lean_box(0); + lean_dec_ref(x_555); + x_562 = lean_box(0); } -if (lean_is_scalar(x_544)) { - x_545 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_562)) { + x_563 = lean_alloc_ctor(0, 2, 0); } else { - x_545 = x_544; + x_563 = x_562; } -lean_ctor_set(x_545, 0, x_542); -lean_ctor_set(x_545, 1, x_543); -if (lean_is_scalar(x_541)) { - x_546 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_563, 0, x_560); +lean_ctor_set(x_563, 1, x_561); +if (lean_is_scalar(x_559)) { + x_564 = lean_alloc_ctor(0, 2, 0); } else { - x_546 = x_541; + x_564 = x_559; } -lean_ctor_set(x_546, 0, x_545); -lean_ctor_set(x_546, 1, x_540); -if (lean_is_scalar(x_539)) { - x_547 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_564, 0, x_563); +lean_ctor_set(x_564, 1, x_558); +if (lean_is_scalar(x_557)) { + x_565 = lean_alloc_ctor(0, 2, 0); } else { - x_547 = x_539; + x_565 = x_557; } -lean_ctor_set(x_547, 0, x_546); -lean_ctor_set(x_547, 1, x_538); -return x_547; +lean_ctor_set(x_565, 0, x_564); +lean_ctor_set(x_565, 1, x_556); +return x_565; } else { -lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; -x_548 = lean_ctor_get(x_535, 0); -lean_inc(x_548); -x_549 = lean_ctor_get(x_535, 1); -lean_inc(x_549); -if (lean_is_exclusive(x_535)) { - lean_ctor_release(x_535, 0); - lean_ctor_release(x_535, 1); - x_550 = x_535; +lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; +x_566 = lean_ctor_get(x_553, 0); +lean_inc(x_566); +x_567 = lean_ctor_get(x_553, 1); +lean_inc(x_567); +if (lean_is_exclusive(x_553)) { + lean_ctor_release(x_553, 0); + lean_ctor_release(x_553, 1); + x_568 = x_553; } else { - lean_dec_ref(x_535); - x_550 = lean_box(0); + lean_dec_ref(x_553); + x_568 = lean_box(0); } -if (lean_is_scalar(x_550)) { - x_551 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_568)) { + x_569 = lean_alloc_ctor(1, 2, 0); } else { - x_551 = x_550; + x_569 = x_568; } -lean_ctor_set(x_551, 0, x_548); -lean_ctor_set(x_551, 1, x_549); -return x_551; +lean_ctor_set(x_569, 0, x_566); +lean_ctor_set(x_569, 1, x_567); +return x_569; } } else { -lean_object* x_552; double x_553; double x_554; lean_object* x_555; -x_552 = lean_box(0); -x_553 = lean_unbox_float(x_512); -lean_dec(x_512); -x_554 = lean_unbox_float(x_513); -lean_dec(x_513); -x_555 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_500, x_511, x_1, x_514, x_553, x_554, x_5, x_552, x_510, x_509, x_11, x_12, x_13, x_14, x_505); -return x_555; -} -} -else -{ -lean_object* x_556; double x_557; double x_558; lean_object* x_559; -x_556 = lean_box(0); -x_557 = lean_unbox_float(x_512); -lean_dec(x_512); -x_558 = lean_unbox_float(x_513); -lean_dec(x_513); -x_559 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_500, x_511, x_1, x_514, x_557, x_558, x_5, x_556, x_510, x_509, x_11, x_12, x_13, x_14, x_505); -return x_559; +lean_object* x_570; double x_571; double x_572; lean_object* x_573; +x_570 = lean_box(0); +x_571 = lean_unbox_float(x_528); +lean_dec(x_528); +x_572 = lean_unbox_float(x_529); +lean_dec(x_529); +x_573 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_516, x_527, x_531, x_571, x_572, x_5, x_570, x_526, x_525, x_11, x_12, x_13, x_14, x_521); +return x_573; } } } } else { -lean_object* x_630; lean_object* x_631; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; -x_708 = lean_io_get_num_heartbeats(x_19); -x_709 = lean_ctor_get(x_708, 0); -lean_inc(x_709); -x_710 = lean_ctor_get(x_708, 1); -lean_inc(x_710); -lean_dec(x_708); +lean_object* x_654; lean_object* x_655; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; +x_740 = lean_io_get_num_heartbeats(x_19); +x_741 = lean_ctor_get(x_740, 0); +lean_inc(x_741); +x_742 = lean_ctor_get(x_740, 1); +lean_inc(x_742); +lean_dec(x_740); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_21); -lean_inc(x_501); -x_711 = lean_apply_7(x_7, x_501, x_21, x_11, x_12, x_13, x_14, x_710); -if (lean_obj_tag(x_711) == 0) +lean_inc(x_517); +x_743 = lean_apply_7(x_7, x_517, x_21, x_11, x_12, x_13, x_14, x_742); +if (lean_obj_tag(x_743) == 0) { -lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; lean_object* x_723; uint8_t x_724; lean_object* x_725; double x_726; double x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; -lean_dec(x_501); +lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; uint8_t x_756; lean_object* x_757; double x_758; double x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; +lean_dec(x_517); lean_dec(x_21); -x_712 = lean_ctor_get(x_711, 0); -lean_inc(x_712); -x_713 = lean_ctor_get(x_712, 0); -lean_inc(x_713); -x_714 = lean_ctor_get(x_711, 1); -lean_inc(x_714); -lean_dec(x_711); -x_715 = lean_ctor_get(x_712, 1); -lean_inc(x_715); -if (lean_is_exclusive(x_712)) { - lean_ctor_release(x_712, 0); - lean_ctor_release(x_712, 1); - x_716 = x_712; +x_744 = lean_ctor_get(x_743, 0); +lean_inc(x_744); +x_745 = lean_ctor_get(x_744, 0); +lean_inc(x_745); +x_746 = lean_ctor_get(x_743, 1); +lean_inc(x_746); +lean_dec(x_743); +x_747 = lean_ctor_get(x_744, 1); +lean_inc(x_747); +if (lean_is_exclusive(x_744)) { + lean_ctor_release(x_744, 0); + lean_ctor_release(x_744, 1); + x_748 = x_744; } else { - lean_dec_ref(x_712); - x_716 = lean_box(0); + lean_dec_ref(x_744); + x_748 = lean_box(0); } -x_717 = lean_ctor_get(x_713, 0); -lean_inc(x_717); -x_718 = lean_ctor_get(x_713, 1); -lean_inc(x_718); -if (lean_is_exclusive(x_713)) { - lean_ctor_release(x_713, 0); - lean_ctor_release(x_713, 1); - x_719 = x_713; +x_749 = lean_ctor_get(x_745, 0); +lean_inc(x_749); +x_750 = lean_ctor_get(x_745, 1); +lean_inc(x_750); +if (lean_is_exclusive(x_745)) { + lean_ctor_release(x_745, 0); + lean_ctor_release(x_745, 1); + x_751 = x_745; } else { - lean_dec_ref(x_713); - x_719 = lean_box(0); + lean_dec_ref(x_745); + x_751 = lean_box(0); } -x_720 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_720, 0, x_717); -x_721 = lean_io_get_num_heartbeats(x_714); -x_722 = lean_ctor_get(x_721, 0); -lean_inc(x_722); -x_723 = lean_ctor_get(x_721, 1); -lean_inc(x_723); -lean_dec(x_721); -x_724 = 0; -x_725 = lean_unsigned_to_nat(0u); -x_726 = l_Float_ofScientific(x_709, x_724, x_725); -lean_dec(x_709); -x_727 = l_Float_ofScientific(x_722, x_724, x_725); -lean_dec(x_722); -x_728 = lean_box_float(x_726); -x_729 = lean_box_float(x_727); -if (lean_is_scalar(x_719)) { - x_730 = lean_alloc_ctor(0, 2, 0); +x_752 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_752, 0, x_749); +x_753 = lean_io_get_num_heartbeats(x_746); +x_754 = lean_ctor_get(x_753, 0); +lean_inc(x_754); +x_755 = lean_ctor_get(x_753, 1); +lean_inc(x_755); +lean_dec(x_753); +x_756 = 0; +x_757 = lean_unsigned_to_nat(0u); +x_758 = l_Float_ofScientific(x_741, x_756, x_757); +lean_dec(x_741); +x_759 = l_Float_ofScientific(x_754, x_756, x_757); +lean_dec(x_754); +x_760 = lean_box_float(x_758); +x_761 = lean_box_float(x_759); +if (lean_is_scalar(x_751)) { + x_762 = lean_alloc_ctor(0, 2, 0); } else { - x_730 = x_719; + x_762 = x_751; } -lean_ctor_set(x_730, 0, x_728); -lean_ctor_set(x_730, 1, x_729); -if (lean_is_scalar(x_716)) { - x_731 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_762, 0, x_760); +lean_ctor_set(x_762, 1, x_761); +if (lean_is_scalar(x_748)) { + x_763 = lean_alloc_ctor(0, 2, 0); } else { - x_731 = x_716; + x_763 = x_748; } -lean_ctor_set(x_731, 0, x_720); -lean_ctor_set(x_731, 1, x_730); -x_732 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_732, 0, x_731); -lean_ctor_set(x_732, 1, x_718); -lean_ctor_set(x_17, 1, x_715); -lean_ctor_set(x_17, 0, x_732); -x_630 = x_17; -x_631 = x_723; -goto block_707; -} -else -{ -lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; uint8_t x_741; lean_object* x_742; double x_743; double x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; -x_733 = lean_ctor_get(x_711, 0); -lean_inc(x_733); -x_734 = lean_ctor_get(x_711, 1); -lean_inc(x_734); -if (lean_is_exclusive(x_711)) { - lean_ctor_release(x_711, 0); - lean_ctor_release(x_711, 1); - x_735 = x_711; -} else { - lean_dec_ref(x_711); - x_735 = lean_box(0); -} -x_736 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_736, 0, x_733); -x_737 = lean_io_get_num_heartbeats(x_734); -x_738 = lean_ctor_get(x_737, 0); -lean_inc(x_738); -x_739 = lean_ctor_get(x_737, 1); -lean_inc(x_739); -if (lean_is_exclusive(x_737)) { - lean_ctor_release(x_737, 0); - lean_ctor_release(x_737, 1); - x_740 = x_737; -} else { - lean_dec_ref(x_737); - x_740 = lean_box(0); -} -x_741 = 0; -x_742 = lean_unsigned_to_nat(0u); -x_743 = l_Float_ofScientific(x_709, x_741, x_742); -lean_dec(x_709); -x_744 = l_Float_ofScientific(x_738, x_741, x_742); -lean_dec(x_738); -x_745 = lean_box_float(x_743); -x_746 = lean_box_float(x_744); -x_747 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_747, 0, x_745); -lean_ctor_set(x_747, 1, x_746); +lean_ctor_set(x_763, 0, x_752); +lean_ctor_set(x_763, 1, x_762); +x_764 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_764, 0, x_763); +lean_ctor_set(x_764, 1, x_750); lean_ctor_set(x_17, 1, x_747); -lean_ctor_set(x_17, 0, x_736); -if (lean_is_scalar(x_740)) { - x_748 = lean_alloc_ctor(0, 2, 0); -} else { - x_748 = x_740; -} -lean_ctor_set(x_748, 0, x_17); -lean_ctor_set(x_748, 1, x_501); -if (lean_is_scalar(x_735)) { - x_749 = lean_alloc_ctor(0, 2, 0); -} else { - x_749 = x_735; - lean_ctor_set_tag(x_749, 0); -} -lean_ctor_set(x_749, 0, x_748); -lean_ctor_set(x_749, 1, x_21); -x_630 = x_749; -x_631 = x_739; -goto block_707; -} -block_707: -{ -lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; uint8_t x_640; lean_object* x_687; uint8_t x_688; -x_632 = lean_ctor_get(x_630, 0); -lean_inc(x_632); -x_633 = lean_ctor_get(x_632, 0); -lean_inc(x_633); -x_634 = lean_ctor_get(x_633, 1); -lean_inc(x_634); -x_635 = lean_ctor_get(x_630, 1); -lean_inc(x_635); -lean_dec(x_630); -x_636 = lean_ctor_get(x_632, 1); -lean_inc(x_636); -lean_dec(x_632); -x_637 = lean_ctor_get(x_633, 0); -lean_inc(x_637); -lean_dec(x_633); -x_638 = lean_ctor_get(x_634, 0); -lean_inc(x_638); -x_639 = lean_ctor_get(x_634, 1); -lean_inc(x_639); -lean_dec(x_634); -x_687 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__2; -x_688 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_687); -if (x_688 == 0) -{ -uint8_t x_689; -x_689 = 0; -x_640 = x_689; -goto block_686; +lean_ctor_set(x_17, 0, x_764); +x_654 = x_17; +x_655 = x_755; +goto block_739; } else { -double x_690; double x_691; double x_692; -x_690 = lean_unbox_float(x_639); -x_691 = lean_unbox_float(x_638); -x_692 = lean_float_sub(x_690, x_691); -if (x_503 == 0) +lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; uint8_t x_773; lean_object* x_774; double x_775; double x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; +x_765 = lean_ctor_get(x_743, 0); +lean_inc(x_765); +x_766 = lean_ctor_get(x_743, 1); +lean_inc(x_766); +if (lean_is_exclusive(x_743)) { + lean_ctor_release(x_743, 0); + lean_ctor_release(x_743, 1); + x_767 = x_743; +} else { + lean_dec_ref(x_743); + x_767 = lean_box(0); +} +x_768 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_768, 0, x_765); +x_769 = lean_io_get_num_heartbeats(x_766); +x_770 = lean_ctor_get(x_769, 0); +lean_inc(x_770); +x_771 = lean_ctor_get(x_769, 1); +lean_inc(x_771); +if (lean_is_exclusive(x_769)) { + lean_ctor_release(x_769, 0); + lean_ctor_release(x_769, 1); + x_772 = x_769; +} else { + lean_dec_ref(x_769); + x_772 = lean_box(0); +} +x_773 = 0; +x_774 = lean_unsigned_to_nat(0u); +x_775 = l_Float_ofScientific(x_741, x_773, x_774); +lean_dec(x_741); +x_776 = l_Float_ofScientific(x_770, x_773, x_774); +lean_dec(x_770); +x_777 = lean_box_float(x_775); +x_778 = lean_box_float(x_776); +x_779 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_779, 0, x_777); +lean_ctor_set(x_779, 1, x_778); +lean_ctor_set(x_17, 1, x_779); +lean_ctor_set(x_17, 0, x_768); +if (lean_is_scalar(x_772)) { + x_780 = lean_alloc_ctor(0, 2, 0); +} else { + x_780 = x_772; +} +lean_ctor_set(x_780, 0, x_17); +lean_ctor_set(x_780, 1, x_517); +if (lean_is_scalar(x_767)) { + x_781 = lean_alloc_ctor(0, 2, 0); +} else { + x_781 = x_767; + lean_ctor_set_tag(x_781, 0); +} +lean_ctor_set(x_781, 0, x_780); +lean_ctor_set(x_781, 1, x_21); +x_654 = x_781; +x_655 = x_771; +goto block_739; +} +block_739: { -lean_object* x_693; lean_object* x_694; uint8_t x_695; lean_object* x_696; double x_697; double x_698; double x_699; uint8_t x_700; -x_693 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; -x_694 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_693); -x_695 = 0; -x_696 = lean_unsigned_to_nat(0u); -x_697 = l_Float_ofScientific(x_694, x_695, x_696); -lean_dec(x_694); -x_698 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__4; -x_699 = lean_float_div(x_697, x_698); -x_700 = lean_float_decLt(x_699, x_692); -x_640 = x_700; -goto block_686; -} -else -{ -lean_object* x_701; lean_object* x_702; uint8_t x_703; lean_object* x_704; double x_705; uint8_t x_706; -x_701 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; -x_702 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_701); -x_703 = 0; -x_704 = lean_unsigned_to_nat(0u); -x_705 = l_Float_ofScientific(x_702, x_703, x_704); -lean_dec(x_702); -x_706 = lean_float_decLt(x_705, x_692); -x_640 = x_706; -goto block_686; -} -} -block_686: +lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; uint8_t x_665; uint8_t x_666; +x_656 = lean_ctor_get(x_654, 0); +lean_inc(x_656); +x_657 = lean_ctor_get(x_656, 0); +lean_inc(x_657); +x_658 = lean_ctor_get(x_657, 1); +lean_inc(x_658); +x_659 = lean_ctor_get(x_654, 1); +lean_inc(x_659); +lean_dec(x_654); +x_660 = lean_ctor_get(x_656, 1); +lean_inc(x_660); +lean_dec(x_656); +x_661 = lean_ctor_get(x_657, 0); +lean_inc(x_661); +lean_dec(x_657); +x_662 = lean_ctor_get(x_658, 0); +lean_inc(x_662); +x_663 = lean_ctor_get(x_658, 1); +lean_inc(x_663); +lean_dec(x_658); +x_664 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__2; +x_665 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_664); +if (x_665 == 0) { if (x_6 == 0) { -if (x_640 == 0) +uint8_t x_709; +x_709 = 0; +x_666 = x_709; +goto block_708; +} +else { -lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; uint64_t x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; -lean_dec(x_639); -lean_dec(x_638); +lean_object* x_710; double x_711; double x_712; lean_object* x_713; +x_710 = lean_box(0); +x_711 = lean_unbox_float(x_662); +lean_dec(x_662); +x_712 = lean_unbox_float(x_663); +lean_dec(x_663); +x_713 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_516, x_661, x_665, x_711, x_712, x_5, x_710, x_660, x_659, x_11, x_12, x_13, x_14, x_655); +return x_713; +} +} +else +{ +double x_714; double x_715; double x_716; +x_714 = lean_unbox_float(x_663); +x_715 = lean_unbox_float(x_662); +x_716 = lean_float_sub(x_714, x_715); +if (x_519 == 0) +{ +if (x_6 == 0) +{ +lean_object* x_717; lean_object* x_718; uint8_t x_719; lean_object* x_720; double x_721; double x_722; double x_723; uint8_t x_724; +x_717 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; +x_718 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_717); +x_719 = 0; +x_720 = lean_unsigned_to_nat(0u); +x_721 = l_Float_ofScientific(x_718, x_719, x_720); +lean_dec(x_718); +x_722 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__4; +x_723 = lean_float_div(x_721, x_722); +x_724 = lean_float_decLt(x_723, x_716); +x_666 = x_724; +goto block_708; +} +else +{ +lean_object* x_725; double x_726; double x_727; lean_object* x_728; +x_725 = lean_box(0); +x_726 = lean_unbox_float(x_662); +lean_dec(x_662); +x_727 = lean_unbox_float(x_663); +lean_dec(x_663); +x_728 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_516, x_661, x_665, x_726, x_727, x_5, x_725, x_660, x_659, x_11, x_12, x_13, x_14, x_655); +return x_728; +} +} +else +{ +if (x_6 == 0) +{ +lean_object* x_729; lean_object* x_730; uint8_t x_731; lean_object* x_732; double x_733; uint8_t x_734; +x_729 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; +x_730 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_729); +x_731 = 0; +x_732 = lean_unsigned_to_nat(0u); +x_733 = l_Float_ofScientific(x_730, x_731, x_732); +lean_dec(x_730); +x_734 = lean_float_decLt(x_733, x_716); +x_666 = x_734; +goto block_708; +} +else +{ +lean_object* x_735; double x_736; double x_737; lean_object* x_738; +x_735 = lean_box(0); +x_736 = lean_unbox_float(x_662); +lean_dec(x_662); +x_737 = lean_unbox_float(x_663); +lean_dec(x_663); +x_738 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_516, x_661, x_665, x_736, x_737, x_5, x_735, x_660, x_659, x_11, x_12, x_13, x_14, x_655); +return x_738; +} +} +} +block_708: +{ +if (x_666 == 0) +{ +lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; uint64_t x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; +lean_dec(x_663); +lean_dec(x_662); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_641 = lean_st_ref_take(x_14, x_631); -x_642 = lean_ctor_get(x_641, 0); -lean_inc(x_642); -x_643 = lean_ctor_get(x_642, 3); -lean_inc(x_643); -x_644 = lean_ctor_get(x_641, 1); -lean_inc(x_644); -lean_dec(x_641); -x_645 = lean_ctor_get(x_642, 0); -lean_inc(x_645); -x_646 = lean_ctor_get(x_642, 1); -lean_inc(x_646); -x_647 = lean_ctor_get(x_642, 2); -lean_inc(x_647); -x_648 = lean_ctor_get(x_642, 4); -lean_inc(x_648); -x_649 = lean_ctor_get(x_642, 5); -lean_inc(x_649); -x_650 = lean_ctor_get(x_642, 6); -lean_inc(x_650); -x_651 = lean_ctor_get(x_642, 7); -lean_inc(x_651); -if (lean_is_exclusive(x_642)) { - lean_ctor_release(x_642, 0); - lean_ctor_release(x_642, 1); - lean_ctor_release(x_642, 2); - lean_ctor_release(x_642, 3); - lean_ctor_release(x_642, 4); - lean_ctor_release(x_642, 5); - lean_ctor_release(x_642, 6); - lean_ctor_release(x_642, 7); - x_652 = x_642; +x_667 = lean_st_ref_take(x_14, x_655); +x_668 = lean_ctor_get(x_667, 0); +lean_inc(x_668); +x_669 = lean_ctor_get(x_668, 3); +lean_inc(x_669); +x_670 = lean_ctor_get(x_667, 1); +lean_inc(x_670); +lean_dec(x_667); +x_671 = lean_ctor_get(x_668, 0); +lean_inc(x_671); +x_672 = lean_ctor_get(x_668, 1); +lean_inc(x_672); +x_673 = lean_ctor_get(x_668, 2); +lean_inc(x_673); +x_674 = lean_ctor_get(x_668, 4); +lean_inc(x_674); +x_675 = lean_ctor_get(x_668, 5); +lean_inc(x_675); +x_676 = lean_ctor_get(x_668, 6); +lean_inc(x_676); +x_677 = lean_ctor_get(x_668, 7); +lean_inc(x_677); +if (lean_is_exclusive(x_668)) { + lean_ctor_release(x_668, 0); + lean_ctor_release(x_668, 1); + lean_ctor_release(x_668, 2); + lean_ctor_release(x_668, 3); + lean_ctor_release(x_668, 4); + lean_ctor_release(x_668, 5); + lean_ctor_release(x_668, 6); + lean_ctor_release(x_668, 7); + x_678 = x_668; } else { - lean_dec_ref(x_642); - x_652 = lean_box(0); + lean_dec_ref(x_668); + x_678 = lean_box(0); } -x_653 = lean_ctor_get_uint64(x_643, sizeof(void*)*1); -x_654 = lean_ctor_get(x_643, 0); -lean_inc(x_654); -if (lean_is_exclusive(x_643)) { - lean_ctor_release(x_643, 0); - x_655 = x_643; +x_679 = lean_ctor_get_uint64(x_669, sizeof(void*)*1); +x_680 = lean_ctor_get(x_669, 0); +lean_inc(x_680); +if (lean_is_exclusive(x_669)) { + lean_ctor_release(x_669, 0); + x_681 = x_669; } else { - lean_dec_ref(x_643); - x_655 = lean_box(0); + lean_dec_ref(x_669); + x_681 = lean_box(0); } -x_656 = l_Lean_PersistentArray_append___rarg(x_500, x_654); -lean_dec(x_654); -if (lean_is_scalar(x_655)) { - x_657 = lean_alloc_ctor(0, 1, 8); +x_682 = l_Lean_PersistentArray_append___rarg(x_516, x_680); +lean_dec(x_680); +if (lean_is_scalar(x_681)) { + x_683 = lean_alloc_ctor(0, 1, 8); } else { - x_657 = x_655; + x_683 = x_681; } -lean_ctor_set(x_657, 0, x_656); -lean_ctor_set_uint64(x_657, sizeof(void*)*1, x_653); -if (lean_is_scalar(x_652)) { - x_658 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_683, 0, x_682); +lean_ctor_set_uint64(x_683, sizeof(void*)*1, x_679); +if (lean_is_scalar(x_678)) { + x_684 = lean_alloc_ctor(0, 8, 0); } else { - x_658 = x_652; + x_684 = x_678; } -lean_ctor_set(x_658, 0, x_645); -lean_ctor_set(x_658, 1, x_646); -lean_ctor_set(x_658, 2, x_647); -lean_ctor_set(x_658, 3, x_657); -lean_ctor_set(x_658, 4, x_648); -lean_ctor_set(x_658, 5, x_649); -lean_ctor_set(x_658, 6, x_650); -lean_ctor_set(x_658, 7, x_651); -x_659 = lean_st_ref_set(x_14, x_658, x_644); -x_660 = lean_ctor_get(x_659, 1); -lean_inc(x_660); -lean_dec(x_659); -x_661 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_buildInductionCase___spec__10(x_637, x_636, x_635, x_11, x_12, x_13, x_14, x_660); +lean_ctor_set(x_684, 0, x_671); +lean_ctor_set(x_684, 1, x_672); +lean_ctor_set(x_684, 2, x_673); +lean_ctor_set(x_684, 3, x_683); +lean_ctor_set(x_684, 4, x_674); +lean_ctor_set(x_684, 5, x_675); +lean_ctor_set(x_684, 6, x_676); +lean_ctor_set(x_684, 7, x_677); +x_685 = lean_st_ref_set(x_14, x_684, x_670); +x_686 = lean_ctor_get(x_685, 1); +lean_inc(x_686); +lean_dec(x_685); +x_687 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_buildInductionCase___spec__10(x_661, x_660, x_659, x_11, x_12, x_13, x_14, x_686); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); -lean_dec(x_637); -if (lean_obj_tag(x_661) == 0) +lean_dec(x_661); +if (lean_obj_tag(x_687) == 0) { -lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; -x_662 = lean_ctor_get(x_661, 0); -lean_inc(x_662); -x_663 = lean_ctor_get(x_662, 0); -lean_inc(x_663); -x_664 = lean_ctor_get(x_661, 1); -lean_inc(x_664); -if (lean_is_exclusive(x_661)) { - lean_ctor_release(x_661, 0); - lean_ctor_release(x_661, 1); - x_665 = x_661; +lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; +x_688 = lean_ctor_get(x_687, 0); +lean_inc(x_688); +x_689 = lean_ctor_get(x_688, 0); +lean_inc(x_689); +x_690 = lean_ctor_get(x_687, 1); +lean_inc(x_690); +if (lean_is_exclusive(x_687)) { + lean_ctor_release(x_687, 0); + lean_ctor_release(x_687, 1); + x_691 = x_687; } else { - lean_dec_ref(x_661); - x_665 = lean_box(0); + lean_dec_ref(x_687); + x_691 = lean_box(0); } -x_666 = lean_ctor_get(x_662, 1); -lean_inc(x_666); -if (lean_is_exclusive(x_662)) { - lean_ctor_release(x_662, 0); - lean_ctor_release(x_662, 1); - x_667 = x_662; +x_692 = lean_ctor_get(x_688, 1); +lean_inc(x_692); +if (lean_is_exclusive(x_688)) { + lean_ctor_release(x_688, 0); + lean_ctor_release(x_688, 1); + x_693 = x_688; } else { - lean_dec_ref(x_662); - x_667 = lean_box(0); + lean_dec_ref(x_688); + x_693 = lean_box(0); } -x_668 = lean_ctor_get(x_663, 0); -lean_inc(x_668); -x_669 = lean_ctor_get(x_663, 1); -lean_inc(x_669); -if (lean_is_exclusive(x_663)) { - lean_ctor_release(x_663, 0); - lean_ctor_release(x_663, 1); - x_670 = x_663; +x_694 = lean_ctor_get(x_689, 0); +lean_inc(x_694); +x_695 = lean_ctor_get(x_689, 1); +lean_inc(x_695); +if (lean_is_exclusive(x_689)) { + lean_ctor_release(x_689, 0); + lean_ctor_release(x_689, 1); + x_696 = x_689; } else { - lean_dec_ref(x_663); - x_670 = lean_box(0); + lean_dec_ref(x_689); + x_696 = lean_box(0); } -if (lean_is_scalar(x_670)) { - x_671 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_696)) { + x_697 = lean_alloc_ctor(0, 2, 0); } else { - x_671 = x_670; + x_697 = x_696; } -lean_ctor_set(x_671, 0, x_668); -lean_ctor_set(x_671, 1, x_669); -if (lean_is_scalar(x_667)) { - x_672 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_697, 0, x_694); +lean_ctor_set(x_697, 1, x_695); +if (lean_is_scalar(x_693)) { + x_698 = lean_alloc_ctor(0, 2, 0); } else { - x_672 = x_667; + x_698 = x_693; } -lean_ctor_set(x_672, 0, x_671); -lean_ctor_set(x_672, 1, x_666); -if (lean_is_scalar(x_665)) { - x_673 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_698, 0, x_697); +lean_ctor_set(x_698, 1, x_692); +if (lean_is_scalar(x_691)) { + x_699 = lean_alloc_ctor(0, 2, 0); } else { - x_673 = x_665; + x_699 = x_691; } -lean_ctor_set(x_673, 0, x_672); -lean_ctor_set(x_673, 1, x_664); -return x_673; +lean_ctor_set(x_699, 0, x_698); +lean_ctor_set(x_699, 1, x_690); +return x_699; } else { -lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; -x_674 = lean_ctor_get(x_661, 0); -lean_inc(x_674); -x_675 = lean_ctor_get(x_661, 1); -lean_inc(x_675); -if (lean_is_exclusive(x_661)) { - lean_ctor_release(x_661, 0); - lean_ctor_release(x_661, 1); - x_676 = x_661; +lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; +x_700 = lean_ctor_get(x_687, 0); +lean_inc(x_700); +x_701 = lean_ctor_get(x_687, 1); +lean_inc(x_701); +if (lean_is_exclusive(x_687)) { + lean_ctor_release(x_687, 0); + lean_ctor_release(x_687, 1); + x_702 = x_687; } else { - lean_dec_ref(x_661); - x_676 = lean_box(0); + lean_dec_ref(x_687); + x_702 = lean_box(0); } -if (lean_is_scalar(x_676)) { - x_677 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_702)) { + x_703 = lean_alloc_ctor(1, 2, 0); } else { - x_677 = x_676; + x_703 = x_702; } -lean_ctor_set(x_677, 0, x_674); -lean_ctor_set(x_677, 1, x_675); -return x_677; +lean_ctor_set(x_703, 0, x_700); +lean_ctor_set(x_703, 1, x_701); +return x_703; } } else { -lean_object* x_678; double x_679; double x_680; lean_object* x_681; -x_678 = lean_box(0); -x_679 = lean_unbox_float(x_638); -lean_dec(x_638); -x_680 = lean_unbox_float(x_639); -lean_dec(x_639); -x_681 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_500, x_637, x_1, x_640, x_679, x_680, x_5, x_678, x_636, x_635, x_11, x_12, x_13, x_14, x_631); -return x_681; -} -} -else -{ -lean_object* x_682; double x_683; double x_684; lean_object* x_685; -x_682 = lean_box(0); -x_683 = lean_unbox_float(x_638); -lean_dec(x_638); -x_684 = lean_unbox_float(x_639); -lean_dec(x_639); -x_685 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_500, x_637, x_1, x_640, x_683, x_684, x_5, x_682, x_636, x_635, x_11, x_12, x_13, x_14, x_631); -return x_685; +lean_object* x_704; double x_705; double x_706; lean_object* x_707; +x_704 = lean_box(0); +x_705 = lean_unbox_float(x_662); +lean_dec(x_662); +x_706 = lean_unbox_float(x_663); +lean_dec(x_663); +x_707 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_516, x_661, x_665, x_705, x_706, x_5, x_704, x_660, x_659, x_11, x_12, x_13, x_14, x_655); +return x_707; } } } @@ -24572,888 +24700,944 @@ return x_685; } else { -lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; uint8_t x_755; -x_750 = lean_ctor_get(x_17, 1); -lean_inc(x_750); +lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; uint8_t x_787; +x_782 = lean_ctor_get(x_17, 1); +lean_inc(x_782); lean_dec(x_17); -x_751 = lean_ctor_get(x_18, 0); -lean_inc(x_751); -x_752 = lean_ctor_get(x_18, 1); -lean_inc(x_752); +x_783 = lean_ctor_get(x_18, 0); +lean_inc(x_783); +x_784 = lean_ctor_get(x_18, 1); +lean_inc(x_784); if (lean_is_exclusive(x_18)) { lean_ctor_release(x_18, 0); lean_ctor_release(x_18, 1); - x_753 = x_18; + x_785 = x_18; } else { lean_dec_ref(x_18); - x_753 = lean_box(0); + x_785 = lean_box(0); } -x_754 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__1; -x_755 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_754); -if (x_755 == 0) +x_786 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__1; +x_787 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_786); +if (x_787 == 0) { -lean_object* x_756; lean_object* x_757; lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; -x_834 = lean_io_mono_nanos_now(x_19); -x_835 = lean_ctor_get(x_834, 0); -lean_inc(x_835); -x_836 = lean_ctor_get(x_834, 1); -lean_inc(x_836); -lean_dec(x_834); +lean_object* x_788; lean_object* x_789; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; +x_874 = lean_io_mono_nanos_now(x_19); +x_875 = lean_ctor_get(x_874, 0); +lean_inc(x_875); +x_876 = lean_ctor_get(x_874, 1); +lean_inc(x_876); +lean_dec(x_874); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); -lean_inc(x_750); -lean_inc(x_752); -x_837 = lean_apply_7(x_7, x_752, x_750, x_11, x_12, x_13, x_14, x_836); -if (lean_obj_tag(x_837) == 0) +lean_inc(x_782); +lean_inc(x_784); +x_877 = lean_apply_7(x_7, x_784, x_782, x_11, x_12, x_13, x_14, x_876); +if (lean_obj_tag(x_877) == 0) { -lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; uint8_t x_850; lean_object* x_851; double x_852; double x_853; double x_854; double x_855; double x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; -lean_dec(x_752); -lean_dec(x_750); -x_838 = lean_ctor_get(x_837, 0); -lean_inc(x_838); -x_839 = lean_ctor_get(x_838, 0); -lean_inc(x_839); -x_840 = lean_ctor_get(x_837, 1); -lean_inc(x_840); -lean_dec(x_837); -x_841 = lean_ctor_get(x_838, 1); -lean_inc(x_841); -if (lean_is_exclusive(x_838)) { - lean_ctor_release(x_838, 0); - lean_ctor_release(x_838, 1); - x_842 = x_838; +lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; uint8_t x_890; lean_object* x_891; double x_892; double x_893; double x_894; double x_895; double x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; +lean_dec(x_784); +lean_dec(x_782); +x_878 = lean_ctor_get(x_877, 0); +lean_inc(x_878); +x_879 = lean_ctor_get(x_878, 0); +lean_inc(x_879); +x_880 = lean_ctor_get(x_877, 1); +lean_inc(x_880); +lean_dec(x_877); +x_881 = lean_ctor_get(x_878, 1); +lean_inc(x_881); +if (lean_is_exclusive(x_878)) { + lean_ctor_release(x_878, 0); + lean_ctor_release(x_878, 1); + x_882 = x_878; } else { - lean_dec_ref(x_838); - x_842 = lean_box(0); + lean_dec_ref(x_878); + x_882 = lean_box(0); } -x_843 = lean_ctor_get(x_839, 0); -lean_inc(x_843); -x_844 = lean_ctor_get(x_839, 1); -lean_inc(x_844); -if (lean_is_exclusive(x_839)) { - lean_ctor_release(x_839, 0); - lean_ctor_release(x_839, 1); - x_845 = x_839; +x_883 = lean_ctor_get(x_879, 0); +lean_inc(x_883); +x_884 = lean_ctor_get(x_879, 1); +lean_inc(x_884); +if (lean_is_exclusive(x_879)) { + lean_ctor_release(x_879, 0); + lean_ctor_release(x_879, 1); + x_885 = x_879; } else { - lean_dec_ref(x_839); - x_845 = lean_box(0); + lean_dec_ref(x_879); + x_885 = lean_box(0); } -x_846 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_846, 0, x_843); -x_847 = lean_io_mono_nanos_now(x_840); -x_848 = lean_ctor_get(x_847, 0); -lean_inc(x_848); -x_849 = lean_ctor_get(x_847, 1); -lean_inc(x_849); -lean_dec(x_847); -x_850 = 0; -x_851 = lean_unsigned_to_nat(0u); -x_852 = l_Float_ofScientific(x_835, x_850, x_851); -lean_dec(x_835); -x_853 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; -x_854 = lean_float_div(x_852, x_853); -x_855 = l_Float_ofScientific(x_848, x_850, x_851); -lean_dec(x_848); -x_856 = lean_float_div(x_855, x_853); -x_857 = lean_box_float(x_854); -x_858 = lean_box_float(x_856); -if (lean_is_scalar(x_845)) { - x_859 = lean_alloc_ctor(0, 2, 0); -} else { - x_859 = x_845; -} -lean_ctor_set(x_859, 0, x_857); -lean_ctor_set(x_859, 1, x_858); -if (lean_is_scalar(x_842)) { - x_860 = lean_alloc_ctor(0, 2, 0); -} else { - x_860 = x_842; -} -lean_ctor_set(x_860, 0, x_846); -lean_ctor_set(x_860, 1, x_859); -if (lean_is_scalar(x_753)) { - x_861 = lean_alloc_ctor(0, 2, 0); -} else { - x_861 = x_753; -} -lean_ctor_set(x_861, 0, x_860); -lean_ctor_set(x_861, 1, x_844); -x_862 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_862, 0, x_861); -lean_ctor_set(x_862, 1, x_841); -x_756 = x_862; -x_757 = x_849; -goto block_833; -} -else -{ -lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; uint8_t x_871; lean_object* x_872; double x_873; double x_874; double x_875; double x_876; double x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; -x_863 = lean_ctor_get(x_837, 0); -lean_inc(x_863); -x_864 = lean_ctor_get(x_837, 1); -lean_inc(x_864); -if (lean_is_exclusive(x_837)) { - lean_ctor_release(x_837, 0); - lean_ctor_release(x_837, 1); - x_865 = x_837; -} else { - lean_dec_ref(x_837); - x_865 = lean_box(0); -} -x_866 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_866, 0, x_863); -x_867 = lean_io_mono_nanos_now(x_864); -x_868 = lean_ctor_get(x_867, 0); -lean_inc(x_868); -x_869 = lean_ctor_get(x_867, 1); -lean_inc(x_869); -if (lean_is_exclusive(x_867)) { - lean_ctor_release(x_867, 0); - lean_ctor_release(x_867, 1); - x_870 = x_867; -} else { - lean_dec_ref(x_867); - x_870 = lean_box(0); -} -x_871 = 0; -x_872 = lean_unsigned_to_nat(0u); -x_873 = l_Float_ofScientific(x_835, x_871, x_872); -lean_dec(x_835); -x_874 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; -x_875 = lean_float_div(x_873, x_874); -x_876 = l_Float_ofScientific(x_868, x_871, x_872); -lean_dec(x_868); -x_877 = lean_float_div(x_876, x_874); -x_878 = lean_box_float(x_875); -x_879 = lean_box_float(x_877); -if (lean_is_scalar(x_753)) { - x_880 = lean_alloc_ctor(0, 2, 0); -} else { - x_880 = x_753; -} -lean_ctor_set(x_880, 0, x_878); -lean_ctor_set(x_880, 1, x_879); -x_881 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_881, 0, x_866); -lean_ctor_set(x_881, 1, x_880); -if (lean_is_scalar(x_870)) { - x_882 = lean_alloc_ctor(0, 2, 0); -} else { - x_882 = x_870; -} -lean_ctor_set(x_882, 0, x_881); -lean_ctor_set(x_882, 1, x_752); -if (lean_is_scalar(x_865)) { - x_883 = lean_alloc_ctor(0, 2, 0); -} else { - x_883 = x_865; - lean_ctor_set_tag(x_883, 0); -} -lean_ctor_set(x_883, 0, x_882); -lean_ctor_set(x_883, 1, x_750); -x_756 = x_883; -x_757 = x_869; -goto block_833; -} -block_833: -{ -lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; uint8_t x_766; lean_object* x_813; uint8_t x_814; -x_758 = lean_ctor_get(x_756, 0); -lean_inc(x_758); -x_759 = lean_ctor_get(x_758, 0); -lean_inc(x_759); -x_760 = lean_ctor_get(x_759, 1); -lean_inc(x_760); -x_761 = lean_ctor_get(x_756, 1); -lean_inc(x_761); -lean_dec(x_756); -x_762 = lean_ctor_get(x_758, 1); -lean_inc(x_762); -lean_dec(x_758); -x_763 = lean_ctor_get(x_759, 0); -lean_inc(x_763); -lean_dec(x_759); -x_764 = lean_ctor_get(x_760, 0); -lean_inc(x_764); -x_765 = lean_ctor_get(x_760, 1); -lean_inc(x_765); -lean_dec(x_760); -x_813 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__2; -x_814 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_813); -if (x_814 == 0) -{ -uint8_t x_815; -x_815 = 0; -x_766 = x_815; -goto block_812; -} -else -{ -double x_816; double x_817; double x_818; -x_816 = lean_unbox_float(x_765); -x_817 = lean_unbox_float(x_764); -x_818 = lean_float_sub(x_816, x_817); -if (x_755 == 0) -{ -lean_object* x_819; lean_object* x_820; uint8_t x_821; lean_object* x_822; double x_823; double x_824; double x_825; uint8_t x_826; -x_819 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; -x_820 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_819); -x_821 = 0; -x_822 = lean_unsigned_to_nat(0u); -x_823 = l_Float_ofScientific(x_820, x_821, x_822); -lean_dec(x_820); -x_824 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__4; -x_825 = lean_float_div(x_823, x_824); -x_826 = lean_float_decLt(x_825, x_818); -x_766 = x_826; -goto block_812; -} -else -{ -lean_object* x_827; lean_object* x_828; uint8_t x_829; lean_object* x_830; double x_831; uint8_t x_832; -x_827 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; -x_828 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_827); -x_829 = 0; -x_830 = lean_unsigned_to_nat(0u); -x_831 = l_Float_ofScientific(x_828, x_829, x_830); -lean_dec(x_828); -x_832 = lean_float_decLt(x_831, x_818); -x_766 = x_832; -goto block_812; -} -} -block_812: -{ -if (x_6 == 0) -{ -if (x_766 == 0) -{ -lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; uint64_t x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; -lean_dec(x_765); -lean_dec(x_764); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -x_767 = lean_st_ref_take(x_14, x_757); -x_768 = lean_ctor_get(x_767, 0); -lean_inc(x_768); -x_769 = lean_ctor_get(x_768, 3); -lean_inc(x_769); -x_770 = lean_ctor_get(x_767, 1); -lean_inc(x_770); -lean_dec(x_767); -x_771 = lean_ctor_get(x_768, 0); -lean_inc(x_771); -x_772 = lean_ctor_get(x_768, 1); -lean_inc(x_772); -x_773 = lean_ctor_get(x_768, 2); -lean_inc(x_773); -x_774 = lean_ctor_get(x_768, 4); -lean_inc(x_774); -x_775 = lean_ctor_get(x_768, 5); -lean_inc(x_775); -x_776 = lean_ctor_get(x_768, 6); -lean_inc(x_776); -x_777 = lean_ctor_get(x_768, 7); -lean_inc(x_777); -if (lean_is_exclusive(x_768)) { - lean_ctor_release(x_768, 0); - lean_ctor_release(x_768, 1); - lean_ctor_release(x_768, 2); - lean_ctor_release(x_768, 3); - lean_ctor_release(x_768, 4); - lean_ctor_release(x_768, 5); - lean_ctor_release(x_768, 6); - lean_ctor_release(x_768, 7); - x_778 = x_768; -} else { - lean_dec_ref(x_768); - x_778 = lean_box(0); -} -x_779 = lean_ctor_get_uint64(x_769, sizeof(void*)*1); -x_780 = lean_ctor_get(x_769, 0); -lean_inc(x_780); -if (lean_is_exclusive(x_769)) { - lean_ctor_release(x_769, 0); - x_781 = x_769; -} else { - lean_dec_ref(x_769); - x_781 = lean_box(0); -} -x_782 = l_Lean_PersistentArray_append___rarg(x_751, x_780); -lean_dec(x_780); -if (lean_is_scalar(x_781)) { - x_783 = lean_alloc_ctor(0, 1, 8); -} else { - x_783 = x_781; -} -lean_ctor_set(x_783, 0, x_782); -lean_ctor_set_uint64(x_783, sizeof(void*)*1, x_779); -if (lean_is_scalar(x_778)) { - x_784 = lean_alloc_ctor(0, 8, 0); -} else { - x_784 = x_778; -} -lean_ctor_set(x_784, 0, x_771); -lean_ctor_set(x_784, 1, x_772); -lean_ctor_set(x_784, 2, x_773); -lean_ctor_set(x_784, 3, x_783); -lean_ctor_set(x_784, 4, x_774); -lean_ctor_set(x_784, 5, x_775); -lean_ctor_set(x_784, 6, x_776); -lean_ctor_set(x_784, 7, x_777); -x_785 = lean_st_ref_set(x_14, x_784, x_770); -x_786 = lean_ctor_get(x_785, 1); -lean_inc(x_786); -lean_dec(x_785); -x_787 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_buildInductionCase___spec__10(x_763, x_762, x_761, x_11, x_12, x_13, x_14, x_786); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_763); -if (lean_obj_tag(x_787) == 0) -{ -lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; -x_788 = lean_ctor_get(x_787, 0); -lean_inc(x_788); -x_789 = lean_ctor_get(x_788, 0); -lean_inc(x_789); -x_790 = lean_ctor_get(x_787, 1); -lean_inc(x_790); -if (lean_is_exclusive(x_787)) { - lean_ctor_release(x_787, 0); - lean_ctor_release(x_787, 1); - x_791 = x_787; -} else { - lean_dec_ref(x_787); - x_791 = lean_box(0); -} -x_792 = lean_ctor_get(x_788, 1); -lean_inc(x_792); -if (lean_is_exclusive(x_788)) { - lean_ctor_release(x_788, 0); - lean_ctor_release(x_788, 1); - x_793 = x_788; -} else { - lean_dec_ref(x_788); - x_793 = lean_box(0); -} -x_794 = lean_ctor_get(x_789, 0); -lean_inc(x_794); -x_795 = lean_ctor_get(x_789, 1); -lean_inc(x_795); -if (lean_is_exclusive(x_789)) { - lean_ctor_release(x_789, 0); - lean_ctor_release(x_789, 1); - x_796 = x_789; -} else { - lean_dec_ref(x_789); - x_796 = lean_box(0); -} -if (lean_is_scalar(x_796)) { - x_797 = lean_alloc_ctor(0, 2, 0); -} else { - x_797 = x_796; -} -lean_ctor_set(x_797, 0, x_794); -lean_ctor_set(x_797, 1, x_795); -if (lean_is_scalar(x_793)) { - x_798 = lean_alloc_ctor(0, 2, 0); -} else { - x_798 = x_793; -} -lean_ctor_set(x_798, 0, x_797); -lean_ctor_set(x_798, 1, x_792); -if (lean_is_scalar(x_791)) { - x_799 = lean_alloc_ctor(0, 2, 0); -} else { - x_799 = x_791; -} -lean_ctor_set(x_799, 0, x_798); -lean_ctor_set(x_799, 1, x_790); -return x_799; -} -else -{ -lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; -x_800 = lean_ctor_get(x_787, 0); -lean_inc(x_800); -x_801 = lean_ctor_get(x_787, 1); -lean_inc(x_801); -if (lean_is_exclusive(x_787)) { - lean_ctor_release(x_787, 0); - lean_ctor_release(x_787, 1); - x_802 = x_787; -} else { - lean_dec_ref(x_787); - x_802 = lean_box(0); -} -if (lean_is_scalar(x_802)) { - x_803 = lean_alloc_ctor(1, 2, 0); -} else { - x_803 = x_802; -} -lean_ctor_set(x_803, 0, x_800); -lean_ctor_set(x_803, 1, x_801); -return x_803; -} -} -else -{ -lean_object* x_804; double x_805; double x_806; lean_object* x_807; -x_804 = lean_box(0); -x_805 = lean_unbox_float(x_764); -lean_dec(x_764); -x_806 = lean_unbox_float(x_765); -lean_dec(x_765); -x_807 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_751, x_763, x_1, x_766, x_805, x_806, x_5, x_804, x_762, x_761, x_11, x_12, x_13, x_14, x_757); -return x_807; -} -} -else -{ -lean_object* x_808; double x_809; double x_810; lean_object* x_811; -x_808 = lean_box(0); -x_809 = lean_unbox_float(x_764); -lean_dec(x_764); -x_810 = lean_unbox_float(x_765); -lean_dec(x_765); -x_811 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_751, x_763, x_1, x_766, x_809, x_810, x_5, x_808, x_762, x_761, x_11, x_12, x_13, x_14, x_757); -return x_811; -} -} -} -} -else -{ -lean_object* x_884; lean_object* x_885; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; -x_962 = lean_io_get_num_heartbeats(x_19); -x_963 = lean_ctor_get(x_962, 0); -lean_inc(x_963); -x_964 = lean_ctor_get(x_962, 1); -lean_inc(x_964); -lean_dec(x_962); -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_750); -lean_inc(x_752); -x_965 = lean_apply_7(x_7, x_752, x_750, x_11, x_12, x_13, x_14, x_964); -if (lean_obj_tag(x_965) == 0) -{ -lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; uint8_t x_978; lean_object* x_979; double x_980; double x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; -lean_dec(x_752); -lean_dec(x_750); -x_966 = lean_ctor_get(x_965, 0); -lean_inc(x_966); -x_967 = lean_ctor_get(x_966, 0); -lean_inc(x_967); -x_968 = lean_ctor_get(x_965, 1); -lean_inc(x_968); -lean_dec(x_965); -x_969 = lean_ctor_get(x_966, 1); -lean_inc(x_969); -if (lean_is_exclusive(x_966)) { - lean_ctor_release(x_966, 0); - lean_ctor_release(x_966, 1); - x_970 = x_966; -} else { - lean_dec_ref(x_966); - x_970 = lean_box(0); -} -x_971 = lean_ctor_get(x_967, 0); -lean_inc(x_971); -x_972 = lean_ctor_get(x_967, 1); -lean_inc(x_972); -if (lean_is_exclusive(x_967)) { - lean_ctor_release(x_967, 0); - lean_ctor_release(x_967, 1); - x_973 = x_967; -} else { - lean_dec_ref(x_967); - x_973 = lean_box(0); -} -x_974 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_974, 0, x_971); -x_975 = lean_io_get_num_heartbeats(x_968); -x_976 = lean_ctor_get(x_975, 0); -lean_inc(x_976); -x_977 = lean_ctor_get(x_975, 1); -lean_inc(x_977); -lean_dec(x_975); -x_978 = 0; -x_979 = lean_unsigned_to_nat(0u); -x_980 = l_Float_ofScientific(x_963, x_978, x_979); -lean_dec(x_963); -x_981 = l_Float_ofScientific(x_976, x_978, x_979); -lean_dec(x_976); -x_982 = lean_box_float(x_980); -x_983 = lean_box_float(x_981); -if (lean_is_scalar(x_973)) { - x_984 = lean_alloc_ctor(0, 2, 0); -} else { - x_984 = x_973; -} -lean_ctor_set(x_984, 0, x_982); -lean_ctor_set(x_984, 1, x_983); -if (lean_is_scalar(x_970)) { - x_985 = lean_alloc_ctor(0, 2, 0); -} else { - x_985 = x_970; -} -lean_ctor_set(x_985, 0, x_974); -lean_ctor_set(x_985, 1, x_984); -if (lean_is_scalar(x_753)) { - x_986 = lean_alloc_ctor(0, 2, 0); -} else { - x_986 = x_753; -} -lean_ctor_set(x_986, 0, x_985); -lean_ctor_set(x_986, 1, x_972); -x_987 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_987, 0, x_986); -lean_ctor_set(x_987, 1, x_969); -x_884 = x_987; -x_885 = x_977; -goto block_961; -} -else -{ -lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; uint8_t x_996; lean_object* x_997; double x_998; double x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; -x_988 = lean_ctor_get(x_965, 0); -lean_inc(x_988); -x_989 = lean_ctor_get(x_965, 1); -lean_inc(x_989); -if (lean_is_exclusive(x_965)) { - lean_ctor_release(x_965, 0); - lean_ctor_release(x_965, 1); - x_990 = x_965; -} else { - lean_dec_ref(x_965); - x_990 = lean_box(0); -} -x_991 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_991, 0, x_988); -x_992 = lean_io_get_num_heartbeats(x_989); -x_993 = lean_ctor_get(x_992, 0); -lean_inc(x_993); -x_994 = lean_ctor_get(x_992, 1); -lean_inc(x_994); -if (lean_is_exclusive(x_992)) { - lean_ctor_release(x_992, 0); - lean_ctor_release(x_992, 1); - x_995 = x_992; -} else { - lean_dec_ref(x_992); - x_995 = lean_box(0); -} -x_996 = 0; -x_997 = lean_unsigned_to_nat(0u); -x_998 = l_Float_ofScientific(x_963, x_996, x_997); -lean_dec(x_963); -x_999 = l_Float_ofScientific(x_993, x_996, x_997); -lean_dec(x_993); -x_1000 = lean_box_float(x_998); -x_1001 = lean_box_float(x_999); -if (lean_is_scalar(x_753)) { - x_1002 = lean_alloc_ctor(0, 2, 0); -} else { - x_1002 = x_753; -} -lean_ctor_set(x_1002, 0, x_1000); -lean_ctor_set(x_1002, 1, x_1001); -x_1003 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1003, 0, x_991); -lean_ctor_set(x_1003, 1, x_1002); -if (lean_is_scalar(x_995)) { - x_1004 = lean_alloc_ctor(0, 2, 0); -} else { - x_1004 = x_995; -} -lean_ctor_set(x_1004, 0, x_1003); -lean_ctor_set(x_1004, 1, x_752); -if (lean_is_scalar(x_990)) { - x_1005 = lean_alloc_ctor(0, 2, 0); -} else { - x_1005 = x_990; - lean_ctor_set_tag(x_1005, 0); -} -lean_ctor_set(x_1005, 0, x_1004); -lean_ctor_set(x_1005, 1, x_750); -x_884 = x_1005; -x_885 = x_994; -goto block_961; -} -block_961: -{ -lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; uint8_t x_894; lean_object* x_941; uint8_t x_942; -x_886 = lean_ctor_get(x_884, 0); -lean_inc(x_886); -x_887 = lean_ctor_get(x_886, 0); -lean_inc(x_887); -x_888 = lean_ctor_get(x_887, 1); +x_886 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_886, 0, x_883); +x_887 = lean_io_mono_nanos_now(x_880); +x_888 = lean_ctor_get(x_887, 0); lean_inc(x_888); -x_889 = lean_ctor_get(x_884, 1); +x_889 = lean_ctor_get(x_887, 1); lean_inc(x_889); -lean_dec(x_884); -x_890 = lean_ctor_get(x_886, 1); -lean_inc(x_890); -lean_dec(x_886); -x_891 = lean_ctor_get(x_887, 0); -lean_inc(x_891); lean_dec(x_887); -x_892 = lean_ctor_get(x_888, 0); -lean_inc(x_892); -x_893 = lean_ctor_get(x_888, 1); -lean_inc(x_893); +x_890 = 0; +x_891 = lean_unsigned_to_nat(0u); +x_892 = l_Float_ofScientific(x_875, x_890, x_891); +lean_dec(x_875); +x_893 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; +x_894 = lean_float_div(x_892, x_893); +x_895 = l_Float_ofScientific(x_888, x_890, x_891); lean_dec(x_888); -x_941 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__2; -x_942 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_941); -if (x_942 == 0) -{ -uint8_t x_943; -x_943 = 0; -x_894 = x_943; -goto block_940; +x_896 = lean_float_div(x_895, x_893); +x_897 = lean_box_float(x_894); +x_898 = lean_box_float(x_896); +if (lean_is_scalar(x_885)) { + x_899 = lean_alloc_ctor(0, 2, 0); +} else { + x_899 = x_885; +} +lean_ctor_set(x_899, 0, x_897); +lean_ctor_set(x_899, 1, x_898); +if (lean_is_scalar(x_882)) { + x_900 = lean_alloc_ctor(0, 2, 0); +} else { + x_900 = x_882; +} +lean_ctor_set(x_900, 0, x_886); +lean_ctor_set(x_900, 1, x_899); +if (lean_is_scalar(x_785)) { + x_901 = lean_alloc_ctor(0, 2, 0); +} else { + x_901 = x_785; +} +lean_ctor_set(x_901, 0, x_900); +lean_ctor_set(x_901, 1, x_884); +x_902 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_902, 0, x_901); +lean_ctor_set(x_902, 1, x_881); +x_788 = x_902; +x_789 = x_889; +goto block_873; } else { -double x_944; double x_945; double x_946; -x_944 = lean_unbox_float(x_893); -x_945 = lean_unbox_float(x_892); -x_946 = lean_float_sub(x_944, x_945); -if (x_755 == 0) +lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; uint8_t x_911; lean_object* x_912; double x_913; double x_914; double x_915; double x_916; double x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; +x_903 = lean_ctor_get(x_877, 0); +lean_inc(x_903); +x_904 = lean_ctor_get(x_877, 1); +lean_inc(x_904); +if (lean_is_exclusive(x_877)) { + lean_ctor_release(x_877, 0); + lean_ctor_release(x_877, 1); + x_905 = x_877; +} else { + lean_dec_ref(x_877); + x_905 = lean_box(0); +} +x_906 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_906, 0, x_903); +x_907 = lean_io_mono_nanos_now(x_904); +x_908 = lean_ctor_get(x_907, 0); +lean_inc(x_908); +x_909 = lean_ctor_get(x_907, 1); +lean_inc(x_909); +if (lean_is_exclusive(x_907)) { + lean_ctor_release(x_907, 0); + lean_ctor_release(x_907, 1); + x_910 = x_907; +} else { + lean_dec_ref(x_907); + x_910 = lean_box(0); +} +x_911 = 0; +x_912 = lean_unsigned_to_nat(0u); +x_913 = l_Float_ofScientific(x_875, x_911, x_912); +lean_dec(x_875); +x_914 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__5; +x_915 = lean_float_div(x_913, x_914); +x_916 = l_Float_ofScientific(x_908, x_911, x_912); +lean_dec(x_908); +x_917 = lean_float_div(x_916, x_914); +x_918 = lean_box_float(x_915); +x_919 = lean_box_float(x_917); +if (lean_is_scalar(x_785)) { + x_920 = lean_alloc_ctor(0, 2, 0); +} else { + x_920 = x_785; +} +lean_ctor_set(x_920, 0, x_918); +lean_ctor_set(x_920, 1, x_919); +x_921 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_921, 0, x_906); +lean_ctor_set(x_921, 1, x_920); +if (lean_is_scalar(x_910)) { + x_922 = lean_alloc_ctor(0, 2, 0); +} else { + x_922 = x_910; +} +lean_ctor_set(x_922, 0, x_921); +lean_ctor_set(x_922, 1, x_784); +if (lean_is_scalar(x_905)) { + x_923 = lean_alloc_ctor(0, 2, 0); +} else { + x_923 = x_905; + lean_ctor_set_tag(x_923, 0); +} +lean_ctor_set(x_923, 0, x_922); +lean_ctor_set(x_923, 1, x_782); +x_788 = x_923; +x_789 = x_909; +goto block_873; +} +block_873: { -lean_object* x_947; lean_object* x_948; uint8_t x_949; lean_object* x_950; double x_951; double x_952; double x_953; uint8_t x_954; -x_947 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; -x_948 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_947); -x_949 = 0; -x_950 = lean_unsigned_to_nat(0u); -x_951 = l_Float_ofScientific(x_948, x_949, x_950); -lean_dec(x_948); -x_952 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__4; -x_953 = lean_float_div(x_951, x_952); -x_954 = lean_float_decLt(x_953, x_946); -x_894 = x_954; -goto block_940; -} -else -{ -lean_object* x_955; lean_object* x_956; uint8_t x_957; lean_object* x_958; double x_959; uint8_t x_960; -x_955 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; -x_956 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_955); -x_957 = 0; -x_958 = lean_unsigned_to_nat(0u); -x_959 = l_Float_ofScientific(x_956, x_957, x_958); -lean_dec(x_956); -x_960 = lean_float_decLt(x_959, x_946); -x_894 = x_960; -goto block_940; -} -} -block_940: +lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; uint8_t x_799; uint8_t x_800; +x_790 = lean_ctor_get(x_788, 0); +lean_inc(x_790); +x_791 = lean_ctor_get(x_790, 0); +lean_inc(x_791); +x_792 = lean_ctor_get(x_791, 1); +lean_inc(x_792); +x_793 = lean_ctor_get(x_788, 1); +lean_inc(x_793); +lean_dec(x_788); +x_794 = lean_ctor_get(x_790, 1); +lean_inc(x_794); +lean_dec(x_790); +x_795 = lean_ctor_get(x_791, 0); +lean_inc(x_795); +lean_dec(x_791); +x_796 = lean_ctor_get(x_792, 0); +lean_inc(x_796); +x_797 = lean_ctor_get(x_792, 1); +lean_inc(x_797); +lean_dec(x_792); +x_798 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__2; +x_799 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_798); +if (x_799 == 0) { if (x_6 == 0) { -if (x_894 == 0) +uint8_t x_843; +x_843 = 0; +x_800 = x_843; +goto block_842; +} +else { -lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; uint64_t x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; -lean_dec(x_893); -lean_dec(x_892); +lean_object* x_844; double x_845; double x_846; lean_object* x_847; +x_844 = lean_box(0); +x_845 = lean_unbox_float(x_796); +lean_dec(x_796); +x_846 = lean_unbox_float(x_797); +lean_dec(x_797); +x_847 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_783, x_795, x_799, x_845, x_846, x_5, x_844, x_794, x_793, x_11, x_12, x_13, x_14, x_789); +return x_847; +} +} +else +{ +double x_848; double x_849; double x_850; +x_848 = lean_unbox_float(x_797); +x_849 = lean_unbox_float(x_796); +x_850 = lean_float_sub(x_848, x_849); +if (x_787 == 0) +{ +if (x_6 == 0) +{ +lean_object* x_851; lean_object* x_852; uint8_t x_853; lean_object* x_854; double x_855; double x_856; double x_857; uint8_t x_858; +x_851 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; +x_852 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_851); +x_853 = 0; +x_854 = lean_unsigned_to_nat(0u); +x_855 = l_Float_ofScientific(x_852, x_853, x_854); +lean_dec(x_852); +x_856 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__4; +x_857 = lean_float_div(x_855, x_856); +x_858 = lean_float_decLt(x_857, x_850); +x_800 = x_858; +goto block_842; +} +else +{ +lean_object* x_859; double x_860; double x_861; lean_object* x_862; +x_859 = lean_box(0); +x_860 = lean_unbox_float(x_796); +lean_dec(x_796); +x_861 = lean_unbox_float(x_797); +lean_dec(x_797); +x_862 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_783, x_795, x_799, x_860, x_861, x_5, x_859, x_794, x_793, x_11, x_12, x_13, x_14, x_789); +return x_862; +} +} +else +{ +if (x_6 == 0) +{ +lean_object* x_863; lean_object* x_864; uint8_t x_865; lean_object* x_866; double x_867; uint8_t x_868; +x_863 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; +x_864 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_863); +x_865 = 0; +x_866 = lean_unsigned_to_nat(0u); +x_867 = l_Float_ofScientific(x_864, x_865, x_866); +lean_dec(x_864); +x_868 = lean_float_decLt(x_867, x_850); +x_800 = x_868; +goto block_842; +} +else +{ +lean_object* x_869; double x_870; double x_871; lean_object* x_872; +x_869 = lean_box(0); +x_870 = lean_unbox_float(x_796); +lean_dec(x_796); +x_871 = lean_unbox_float(x_797); +lean_dec(x_797); +x_872 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_783, x_795, x_799, x_870, x_871, x_5, x_869, x_794, x_793, x_11, x_12, x_13, x_14, x_789); +return x_872; +} +} +} +block_842: +{ +if (x_800 == 0) +{ +lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; uint64_t x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; +lean_dec(x_797); +lean_dec(x_796); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_895 = lean_st_ref_take(x_14, x_885); -x_896 = lean_ctor_get(x_895, 0); -lean_inc(x_896); -x_897 = lean_ctor_get(x_896, 3); -lean_inc(x_897); -x_898 = lean_ctor_get(x_895, 1); -lean_inc(x_898); -lean_dec(x_895); -x_899 = lean_ctor_get(x_896, 0); -lean_inc(x_899); -x_900 = lean_ctor_get(x_896, 1); -lean_inc(x_900); -x_901 = lean_ctor_get(x_896, 2); -lean_inc(x_901); -x_902 = lean_ctor_get(x_896, 4); -lean_inc(x_902); -x_903 = lean_ctor_get(x_896, 5); -lean_inc(x_903); -x_904 = lean_ctor_get(x_896, 6); -lean_inc(x_904); -x_905 = lean_ctor_get(x_896, 7); -lean_inc(x_905); -if (lean_is_exclusive(x_896)) { - lean_ctor_release(x_896, 0); - lean_ctor_release(x_896, 1); - lean_ctor_release(x_896, 2); - lean_ctor_release(x_896, 3); - lean_ctor_release(x_896, 4); - lean_ctor_release(x_896, 5); - lean_ctor_release(x_896, 6); - lean_ctor_release(x_896, 7); - x_906 = x_896; +x_801 = lean_st_ref_take(x_14, x_789); +x_802 = lean_ctor_get(x_801, 0); +lean_inc(x_802); +x_803 = lean_ctor_get(x_802, 3); +lean_inc(x_803); +x_804 = lean_ctor_get(x_801, 1); +lean_inc(x_804); +lean_dec(x_801); +x_805 = lean_ctor_get(x_802, 0); +lean_inc(x_805); +x_806 = lean_ctor_get(x_802, 1); +lean_inc(x_806); +x_807 = lean_ctor_get(x_802, 2); +lean_inc(x_807); +x_808 = lean_ctor_get(x_802, 4); +lean_inc(x_808); +x_809 = lean_ctor_get(x_802, 5); +lean_inc(x_809); +x_810 = lean_ctor_get(x_802, 6); +lean_inc(x_810); +x_811 = lean_ctor_get(x_802, 7); +lean_inc(x_811); +if (lean_is_exclusive(x_802)) { + lean_ctor_release(x_802, 0); + lean_ctor_release(x_802, 1); + lean_ctor_release(x_802, 2); + lean_ctor_release(x_802, 3); + lean_ctor_release(x_802, 4); + lean_ctor_release(x_802, 5); + lean_ctor_release(x_802, 6); + lean_ctor_release(x_802, 7); + x_812 = x_802; } else { - lean_dec_ref(x_896); - x_906 = lean_box(0); + lean_dec_ref(x_802); + x_812 = lean_box(0); } -x_907 = lean_ctor_get_uint64(x_897, sizeof(void*)*1); -x_908 = lean_ctor_get(x_897, 0); -lean_inc(x_908); -if (lean_is_exclusive(x_897)) { - lean_ctor_release(x_897, 0); - x_909 = x_897; +x_813 = lean_ctor_get_uint64(x_803, sizeof(void*)*1); +x_814 = lean_ctor_get(x_803, 0); +lean_inc(x_814); +if (lean_is_exclusive(x_803)) { + lean_ctor_release(x_803, 0); + x_815 = x_803; } else { - lean_dec_ref(x_897); - x_909 = lean_box(0); + lean_dec_ref(x_803); + x_815 = lean_box(0); } -x_910 = l_Lean_PersistentArray_append___rarg(x_751, x_908); -lean_dec(x_908); -if (lean_is_scalar(x_909)) { - x_911 = lean_alloc_ctor(0, 1, 8); +x_816 = l_Lean_PersistentArray_append___rarg(x_783, x_814); +lean_dec(x_814); +if (lean_is_scalar(x_815)) { + x_817 = lean_alloc_ctor(0, 1, 8); } else { - x_911 = x_909; + x_817 = x_815; } -lean_ctor_set(x_911, 0, x_910); -lean_ctor_set_uint64(x_911, sizeof(void*)*1, x_907); -if (lean_is_scalar(x_906)) { - x_912 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_817, 0, x_816); +lean_ctor_set_uint64(x_817, sizeof(void*)*1, x_813); +if (lean_is_scalar(x_812)) { + x_818 = lean_alloc_ctor(0, 8, 0); } else { - x_912 = x_906; + x_818 = x_812; } -lean_ctor_set(x_912, 0, x_899); -lean_ctor_set(x_912, 1, x_900); -lean_ctor_set(x_912, 2, x_901); -lean_ctor_set(x_912, 3, x_911); -lean_ctor_set(x_912, 4, x_902); -lean_ctor_set(x_912, 5, x_903); -lean_ctor_set(x_912, 6, x_904); -lean_ctor_set(x_912, 7, x_905); -x_913 = lean_st_ref_set(x_14, x_912, x_898); -x_914 = lean_ctor_get(x_913, 1); -lean_inc(x_914); -lean_dec(x_913); -x_915 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_buildInductionCase___spec__10(x_891, x_890, x_889, x_11, x_12, x_13, x_14, x_914); +lean_ctor_set(x_818, 0, x_805); +lean_ctor_set(x_818, 1, x_806); +lean_ctor_set(x_818, 2, x_807); +lean_ctor_set(x_818, 3, x_817); +lean_ctor_set(x_818, 4, x_808); +lean_ctor_set(x_818, 5, x_809); +lean_ctor_set(x_818, 6, x_810); +lean_ctor_set(x_818, 7, x_811); +x_819 = lean_st_ref_set(x_14, x_818, x_804); +x_820 = lean_ctor_get(x_819, 1); +lean_inc(x_820); +lean_dec(x_819); +x_821 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_buildInductionCase___spec__10(x_795, x_794, x_793, x_11, x_12, x_13, x_14, x_820); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); -lean_dec(x_891); -if (lean_obj_tag(x_915) == 0) +lean_dec(x_795); +if (lean_obj_tag(x_821) == 0) { -lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; -x_916 = lean_ctor_get(x_915, 0); -lean_inc(x_916); -x_917 = lean_ctor_get(x_916, 0); -lean_inc(x_917); -x_918 = lean_ctor_get(x_915, 1); -lean_inc(x_918); -if (lean_is_exclusive(x_915)) { - lean_ctor_release(x_915, 0); - lean_ctor_release(x_915, 1); - x_919 = x_915; +lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; +x_822 = lean_ctor_get(x_821, 0); +lean_inc(x_822); +x_823 = lean_ctor_get(x_822, 0); +lean_inc(x_823); +x_824 = lean_ctor_get(x_821, 1); +lean_inc(x_824); +if (lean_is_exclusive(x_821)) { + lean_ctor_release(x_821, 0); + lean_ctor_release(x_821, 1); + x_825 = x_821; } else { - lean_dec_ref(x_915); - x_919 = lean_box(0); + lean_dec_ref(x_821); + x_825 = lean_box(0); } -x_920 = lean_ctor_get(x_916, 1); -lean_inc(x_920); -if (lean_is_exclusive(x_916)) { - lean_ctor_release(x_916, 0); - lean_ctor_release(x_916, 1); - x_921 = x_916; +x_826 = lean_ctor_get(x_822, 1); +lean_inc(x_826); +if (lean_is_exclusive(x_822)) { + lean_ctor_release(x_822, 0); + lean_ctor_release(x_822, 1); + x_827 = x_822; } else { - lean_dec_ref(x_916); - x_921 = lean_box(0); + lean_dec_ref(x_822); + x_827 = lean_box(0); } -x_922 = lean_ctor_get(x_917, 0); -lean_inc(x_922); -x_923 = lean_ctor_get(x_917, 1); -lean_inc(x_923); -if (lean_is_exclusive(x_917)) { - lean_ctor_release(x_917, 0); - lean_ctor_release(x_917, 1); - x_924 = x_917; +x_828 = lean_ctor_get(x_823, 0); +lean_inc(x_828); +x_829 = lean_ctor_get(x_823, 1); +lean_inc(x_829); +if (lean_is_exclusive(x_823)) { + lean_ctor_release(x_823, 0); + lean_ctor_release(x_823, 1); + x_830 = x_823; } else { - lean_dec_ref(x_917); - x_924 = lean_box(0); + lean_dec_ref(x_823); + x_830 = lean_box(0); } -if (lean_is_scalar(x_924)) { - x_925 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_830)) { + x_831 = lean_alloc_ctor(0, 2, 0); } else { - x_925 = x_924; + x_831 = x_830; } -lean_ctor_set(x_925, 0, x_922); -lean_ctor_set(x_925, 1, x_923); -if (lean_is_scalar(x_921)) { - x_926 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_831, 0, x_828); +lean_ctor_set(x_831, 1, x_829); +if (lean_is_scalar(x_827)) { + x_832 = lean_alloc_ctor(0, 2, 0); } else { - x_926 = x_921; + x_832 = x_827; } -lean_ctor_set(x_926, 0, x_925); -lean_ctor_set(x_926, 1, x_920); -if (lean_is_scalar(x_919)) { - x_927 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_832, 0, x_831); +lean_ctor_set(x_832, 1, x_826); +if (lean_is_scalar(x_825)) { + x_833 = lean_alloc_ctor(0, 2, 0); } else { - x_927 = x_919; + x_833 = x_825; } -lean_ctor_set(x_927, 0, x_926); -lean_ctor_set(x_927, 1, x_918); -return x_927; +lean_ctor_set(x_833, 0, x_832); +lean_ctor_set(x_833, 1, x_824); +return x_833; } else { -lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; -x_928 = lean_ctor_get(x_915, 0); +lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; +x_834 = lean_ctor_get(x_821, 0); +lean_inc(x_834); +x_835 = lean_ctor_get(x_821, 1); +lean_inc(x_835); +if (lean_is_exclusive(x_821)) { + lean_ctor_release(x_821, 0); + lean_ctor_release(x_821, 1); + x_836 = x_821; +} else { + lean_dec_ref(x_821); + x_836 = lean_box(0); +} +if (lean_is_scalar(x_836)) { + x_837 = lean_alloc_ctor(1, 2, 0); +} else { + x_837 = x_836; +} +lean_ctor_set(x_837, 0, x_834); +lean_ctor_set(x_837, 1, x_835); +return x_837; +} +} +else +{ +lean_object* x_838; double x_839; double x_840; lean_object* x_841; +x_838 = lean_box(0); +x_839 = lean_unbox_float(x_796); +lean_dec(x_796); +x_840 = lean_unbox_float(x_797); +lean_dec(x_797); +x_841 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_783, x_795, x_799, x_839, x_840, x_5, x_838, x_794, x_793, x_11, x_12, x_13, x_14, x_789); +return x_841; +} +} +} +} +else +{ +lean_object* x_924; lean_object* x_925; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; +x_1010 = lean_io_get_num_heartbeats(x_19); +x_1011 = lean_ctor_get(x_1010, 0); +lean_inc(x_1011); +x_1012 = lean_ctor_get(x_1010, 1); +lean_inc(x_1012); +lean_dec(x_1010); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_782); +lean_inc(x_784); +x_1013 = lean_apply_7(x_7, x_784, x_782, x_11, x_12, x_13, x_14, x_1012); +if (lean_obj_tag(x_1013) == 0) +{ +lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; uint8_t x_1026; lean_object* x_1027; double x_1028; double x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; +lean_dec(x_784); +lean_dec(x_782); +x_1014 = lean_ctor_get(x_1013, 0); +lean_inc(x_1014); +x_1015 = lean_ctor_get(x_1014, 0); +lean_inc(x_1015); +x_1016 = lean_ctor_get(x_1013, 1); +lean_inc(x_1016); +lean_dec(x_1013); +x_1017 = lean_ctor_get(x_1014, 1); +lean_inc(x_1017); +if (lean_is_exclusive(x_1014)) { + lean_ctor_release(x_1014, 0); + lean_ctor_release(x_1014, 1); + x_1018 = x_1014; +} else { + lean_dec_ref(x_1014); + x_1018 = lean_box(0); +} +x_1019 = lean_ctor_get(x_1015, 0); +lean_inc(x_1019); +x_1020 = lean_ctor_get(x_1015, 1); +lean_inc(x_1020); +if (lean_is_exclusive(x_1015)) { + lean_ctor_release(x_1015, 0); + lean_ctor_release(x_1015, 1); + x_1021 = x_1015; +} else { + lean_dec_ref(x_1015); + x_1021 = lean_box(0); +} +x_1022 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1022, 0, x_1019); +x_1023 = lean_io_get_num_heartbeats(x_1016); +x_1024 = lean_ctor_get(x_1023, 0); +lean_inc(x_1024); +x_1025 = lean_ctor_get(x_1023, 1); +lean_inc(x_1025); +lean_dec(x_1023); +x_1026 = 0; +x_1027 = lean_unsigned_to_nat(0u); +x_1028 = l_Float_ofScientific(x_1011, x_1026, x_1027); +lean_dec(x_1011); +x_1029 = l_Float_ofScientific(x_1024, x_1026, x_1027); +lean_dec(x_1024); +x_1030 = lean_box_float(x_1028); +x_1031 = lean_box_float(x_1029); +if (lean_is_scalar(x_1021)) { + x_1032 = lean_alloc_ctor(0, 2, 0); +} else { + x_1032 = x_1021; +} +lean_ctor_set(x_1032, 0, x_1030); +lean_ctor_set(x_1032, 1, x_1031); +if (lean_is_scalar(x_1018)) { + x_1033 = lean_alloc_ctor(0, 2, 0); +} else { + x_1033 = x_1018; +} +lean_ctor_set(x_1033, 0, x_1022); +lean_ctor_set(x_1033, 1, x_1032); +if (lean_is_scalar(x_785)) { + x_1034 = lean_alloc_ctor(0, 2, 0); +} else { + x_1034 = x_785; +} +lean_ctor_set(x_1034, 0, x_1033); +lean_ctor_set(x_1034, 1, x_1020); +x_1035 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1035, 0, x_1034); +lean_ctor_set(x_1035, 1, x_1017); +x_924 = x_1035; +x_925 = x_1025; +goto block_1009; +} +else +{ +lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; uint8_t x_1044; lean_object* x_1045; double x_1046; double x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; +x_1036 = lean_ctor_get(x_1013, 0); +lean_inc(x_1036); +x_1037 = lean_ctor_get(x_1013, 1); +lean_inc(x_1037); +if (lean_is_exclusive(x_1013)) { + lean_ctor_release(x_1013, 0); + lean_ctor_release(x_1013, 1); + x_1038 = x_1013; +} else { + lean_dec_ref(x_1013); + x_1038 = lean_box(0); +} +x_1039 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1039, 0, x_1036); +x_1040 = lean_io_get_num_heartbeats(x_1037); +x_1041 = lean_ctor_get(x_1040, 0); +lean_inc(x_1041); +x_1042 = lean_ctor_get(x_1040, 1); +lean_inc(x_1042); +if (lean_is_exclusive(x_1040)) { + lean_ctor_release(x_1040, 0); + lean_ctor_release(x_1040, 1); + x_1043 = x_1040; +} else { + lean_dec_ref(x_1040); + x_1043 = lean_box(0); +} +x_1044 = 0; +x_1045 = lean_unsigned_to_nat(0u); +x_1046 = l_Float_ofScientific(x_1011, x_1044, x_1045); +lean_dec(x_1011); +x_1047 = l_Float_ofScientific(x_1041, x_1044, x_1045); +lean_dec(x_1041); +x_1048 = lean_box_float(x_1046); +x_1049 = lean_box_float(x_1047); +if (lean_is_scalar(x_785)) { + x_1050 = lean_alloc_ctor(0, 2, 0); +} else { + x_1050 = x_785; +} +lean_ctor_set(x_1050, 0, x_1048); +lean_ctor_set(x_1050, 1, x_1049); +x_1051 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1051, 0, x_1039); +lean_ctor_set(x_1051, 1, x_1050); +if (lean_is_scalar(x_1043)) { + x_1052 = lean_alloc_ctor(0, 2, 0); +} else { + x_1052 = x_1043; +} +lean_ctor_set(x_1052, 0, x_1051); +lean_ctor_set(x_1052, 1, x_784); +if (lean_is_scalar(x_1038)) { + x_1053 = lean_alloc_ctor(0, 2, 0); +} else { + x_1053 = x_1038; + lean_ctor_set_tag(x_1053, 0); +} +lean_ctor_set(x_1053, 0, x_1052); +lean_ctor_set(x_1053, 1, x_782); +x_924 = x_1053; +x_925 = x_1042; +goto block_1009; +} +block_1009: +{ +lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; uint8_t x_935; uint8_t x_936; +x_926 = lean_ctor_get(x_924, 0); +lean_inc(x_926); +x_927 = lean_ctor_get(x_926, 0); +lean_inc(x_927); +x_928 = lean_ctor_get(x_927, 1); lean_inc(x_928); -x_929 = lean_ctor_get(x_915, 1); +x_929 = lean_ctor_get(x_924, 1); lean_inc(x_929); -if (lean_is_exclusive(x_915)) { - lean_ctor_release(x_915, 0); - lean_ctor_release(x_915, 1); - x_930 = x_915; -} else { - lean_dec_ref(x_915); - x_930 = lean_box(0); +lean_dec(x_924); +x_930 = lean_ctor_get(x_926, 1); +lean_inc(x_930); +lean_dec(x_926); +x_931 = lean_ctor_get(x_927, 0); +lean_inc(x_931); +lean_dec(x_927); +x_932 = lean_ctor_get(x_928, 0); +lean_inc(x_932); +x_933 = lean_ctor_get(x_928, 1); +lean_inc(x_933); +lean_dec(x_928); +x_934 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__2; +x_935 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_934); +if (x_935 == 0) +{ +if (x_6 == 0) +{ +uint8_t x_979; +x_979 = 0; +x_936 = x_979; +goto block_978; } -if (lean_is_scalar(x_930)) { - x_931 = lean_alloc_ctor(1, 2, 0); -} else { - x_931 = x_930; -} -lean_ctor_set(x_931, 0, x_928); -lean_ctor_set(x_931, 1, x_929); -return x_931; +else +{ +lean_object* x_980; double x_981; double x_982; lean_object* x_983; +x_980 = lean_box(0); +x_981 = lean_unbox_float(x_932); +lean_dec(x_932); +x_982 = lean_unbox_float(x_933); +lean_dec(x_933); +x_983 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_783, x_931, x_935, x_981, x_982, x_5, x_980, x_930, x_929, x_11, x_12, x_13, x_14, x_925); +return x_983; } } else { -lean_object* x_932; double x_933; double x_934; lean_object* x_935; -x_932 = lean_box(0); -x_933 = lean_unbox_float(x_892); -lean_dec(x_892); -x_934 = lean_unbox_float(x_893); -lean_dec(x_893); -x_935 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_751, x_891, x_1, x_894, x_933, x_934, x_5, x_932, x_890, x_889, x_11, x_12, x_13, x_14, x_885); -return x_935; +double x_984; double x_985; double x_986; +x_984 = lean_unbox_float(x_933); +x_985 = lean_unbox_float(x_932); +x_986 = lean_float_sub(x_984, x_985); +if (x_787 == 0) +{ +if (x_6 == 0) +{ +lean_object* x_987; lean_object* x_988; uint8_t x_989; lean_object* x_990; double x_991; double x_992; double x_993; uint8_t x_994; +x_987 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; +x_988 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_987); +x_989 = 0; +x_990 = lean_unsigned_to_nat(0u); +x_991 = l_Float_ofScientific(x_988, x_989, x_990); +lean_dec(x_988); +x_992 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__4; +x_993 = lean_float_div(x_991, x_992); +x_994 = lean_float_decLt(x_993, x_986); +x_936 = x_994; +goto block_978; +} +else +{ +lean_object* x_995; double x_996; double x_997; lean_object* x_998; +x_995 = lean_box(0); +x_996 = lean_unbox_float(x_932); +lean_dec(x_932); +x_997 = lean_unbox_float(x_933); +lean_dec(x_933); +x_998 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_783, x_931, x_935, x_996, x_997, x_5, x_995, x_930, x_929, x_11, x_12, x_13, x_14, x_925); +return x_998; } } else { -lean_object* x_936; double x_937; double x_938; lean_object* x_939; -x_936 = lean_box(0); -x_937 = lean_unbox_float(x_892); -lean_dec(x_892); -x_938 = lean_unbox_float(x_893); -lean_dec(x_893); -x_939 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_751, x_891, x_1, x_894, x_937, x_938, x_5, x_936, x_890, x_889, x_11, x_12, x_13, x_14, x_885); -return x_939; +if (x_6 == 0) +{ +lean_object* x_999; lean_object* x_1000; uint8_t x_1001; lean_object* x_1002; double x_1003; uint8_t x_1004; +x_999 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__3; +x_1000 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_999); +x_1001 = 0; +x_1002 = lean_unsigned_to_nat(0u); +x_1003 = l_Float_ofScientific(x_1000, x_1001, x_1002); +lean_dec(x_1000); +x_1004 = lean_float_decLt(x_1003, x_986); +x_936 = x_1004; +goto block_978; +} +else +{ +lean_object* x_1005; double x_1006; double x_1007; lean_object* x_1008; +x_1005 = lean_box(0); +x_1006 = lean_unbox_float(x_932); +lean_dec(x_932); +x_1007 = lean_unbox_float(x_933); +lean_dec(x_933); +x_1008 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_783, x_931, x_935, x_1006, x_1007, x_5, x_1005, x_930, x_929, x_11, x_12, x_13, x_14, x_925); +return x_1008; +} +} +} +block_978: +{ +if (x_936 == 0) +{ +lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; uint64_t x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; +lean_dec(x_933); +lean_dec(x_932); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +x_937 = lean_st_ref_take(x_14, x_925); +x_938 = lean_ctor_get(x_937, 0); +lean_inc(x_938); +x_939 = lean_ctor_get(x_938, 3); +lean_inc(x_939); +x_940 = lean_ctor_get(x_937, 1); +lean_inc(x_940); +lean_dec(x_937); +x_941 = lean_ctor_get(x_938, 0); +lean_inc(x_941); +x_942 = lean_ctor_get(x_938, 1); +lean_inc(x_942); +x_943 = lean_ctor_get(x_938, 2); +lean_inc(x_943); +x_944 = lean_ctor_get(x_938, 4); +lean_inc(x_944); +x_945 = lean_ctor_get(x_938, 5); +lean_inc(x_945); +x_946 = lean_ctor_get(x_938, 6); +lean_inc(x_946); +x_947 = lean_ctor_get(x_938, 7); +lean_inc(x_947); +if (lean_is_exclusive(x_938)) { + lean_ctor_release(x_938, 0); + lean_ctor_release(x_938, 1); + lean_ctor_release(x_938, 2); + lean_ctor_release(x_938, 3); + lean_ctor_release(x_938, 4); + lean_ctor_release(x_938, 5); + lean_ctor_release(x_938, 6); + lean_ctor_release(x_938, 7); + x_948 = x_938; +} else { + lean_dec_ref(x_938); + x_948 = lean_box(0); +} +x_949 = lean_ctor_get_uint64(x_939, sizeof(void*)*1); +x_950 = lean_ctor_get(x_939, 0); +lean_inc(x_950); +if (lean_is_exclusive(x_939)) { + lean_ctor_release(x_939, 0); + x_951 = x_939; +} else { + lean_dec_ref(x_939); + x_951 = lean_box(0); +} +x_952 = l_Lean_PersistentArray_append___rarg(x_783, x_950); +lean_dec(x_950); +if (lean_is_scalar(x_951)) { + x_953 = lean_alloc_ctor(0, 1, 8); +} else { + x_953 = x_951; +} +lean_ctor_set(x_953, 0, x_952); +lean_ctor_set_uint64(x_953, sizeof(void*)*1, x_949); +if (lean_is_scalar(x_948)) { + x_954 = lean_alloc_ctor(0, 8, 0); +} else { + x_954 = x_948; +} +lean_ctor_set(x_954, 0, x_941); +lean_ctor_set(x_954, 1, x_942); +lean_ctor_set(x_954, 2, x_943); +lean_ctor_set(x_954, 3, x_953); +lean_ctor_set(x_954, 4, x_944); +lean_ctor_set(x_954, 5, x_945); +lean_ctor_set(x_954, 6, x_946); +lean_ctor_set(x_954, 7, x_947); +x_955 = lean_st_ref_set(x_14, x_954, x_940); +x_956 = lean_ctor_get(x_955, 1); +lean_inc(x_956); +lean_dec(x_955); +x_957 = l_MonadExcept_ofExcept___at_Lean_Tactic_FunInd_buildInductionCase___spec__10(x_931, x_930, x_929, x_11, x_12, x_13, x_14, x_956); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_931); +if (lean_obj_tag(x_957) == 0) +{ +lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; +x_958 = lean_ctor_get(x_957, 0); +lean_inc(x_958); +x_959 = lean_ctor_get(x_958, 0); +lean_inc(x_959); +x_960 = lean_ctor_get(x_957, 1); +lean_inc(x_960); +if (lean_is_exclusive(x_957)) { + lean_ctor_release(x_957, 0); + lean_ctor_release(x_957, 1); + x_961 = x_957; +} else { + lean_dec_ref(x_957); + x_961 = lean_box(0); +} +x_962 = lean_ctor_get(x_958, 1); +lean_inc(x_962); +if (lean_is_exclusive(x_958)) { + lean_ctor_release(x_958, 0); + lean_ctor_release(x_958, 1); + x_963 = x_958; +} else { + lean_dec_ref(x_958); + x_963 = lean_box(0); +} +x_964 = lean_ctor_get(x_959, 0); +lean_inc(x_964); +x_965 = lean_ctor_get(x_959, 1); +lean_inc(x_965); +if (lean_is_exclusive(x_959)) { + lean_ctor_release(x_959, 0); + lean_ctor_release(x_959, 1); + x_966 = x_959; +} else { + lean_dec_ref(x_959); + x_966 = lean_box(0); +} +if (lean_is_scalar(x_966)) { + x_967 = lean_alloc_ctor(0, 2, 0); +} else { + x_967 = x_966; +} +lean_ctor_set(x_967, 0, x_964); +lean_ctor_set(x_967, 1, x_965); +if (lean_is_scalar(x_963)) { + x_968 = lean_alloc_ctor(0, 2, 0); +} else { + x_968 = x_963; +} +lean_ctor_set(x_968, 0, x_967); +lean_ctor_set(x_968, 1, x_962); +if (lean_is_scalar(x_961)) { + x_969 = lean_alloc_ctor(0, 2, 0); +} else { + x_969 = x_961; +} +lean_ctor_set(x_969, 0, x_968); +lean_ctor_set(x_969, 1, x_960); +return x_969; +} +else +{ +lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; +x_970 = lean_ctor_get(x_957, 0); +lean_inc(x_970); +x_971 = lean_ctor_get(x_957, 1); +lean_inc(x_971); +if (lean_is_exclusive(x_957)) { + lean_ctor_release(x_957, 0); + lean_ctor_release(x_957, 1); + x_972 = x_957; +} else { + lean_dec_ref(x_957); + x_972 = lean_box(0); +} +if (lean_is_scalar(x_972)) { + x_973 = lean_alloc_ctor(1, 2, 0); +} else { + x_973 = x_972; +} +lean_ctor_set(x_973, 0, x_970); +lean_ctor_set(x_973, 1, x_971); +return x_973; +} +} +else +{ +lean_object* x_974; double x_975; double x_976; lean_object* x_977; +x_974 = lean_box(0); +x_975 = lean_unbox_float(x_932); +lean_dec(x_932); +x_976 = lean_unbox_float(x_933); +lean_dec(x_933); +x_977 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_2, x_3, x_4, x_783, x_931, x_935, x_975, x_976, x_5, x_974, x_930, x_929, x_11, x_12, x_13, x_14, x_925); +return x_977; } } } @@ -26369,25 +26553,23 @@ lean_object* x_14 = _args[13]; lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; _start: { -uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; -x_19 = lean_unbox(x_2); +uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; +x_18 = lean_unbox(x_2); lean_dec(x_2); -x_20 = lean_unbox(x_8); +x_19 = lean_unbox(x_7); +lean_dec(x_7); +x_20 = lean_unbox_float(x_8); lean_dec(x_8); x_21 = lean_unbox_float(x_9); lean_dec(x_9); -x_22 = lean_unbox_float(x_10); -lean_dec(x_10); -x_23 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__2(x_1, x_19, x_3, x_4, x_5, x_6, x_7, x_20, x_21, x_22, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -lean_dec(x_17); -lean_dec(x_15); +x_22 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__2(x_1, x_18, x_3, x_4, x_5, x_6, x_19, x_20, x_21, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +lean_dec(x_16); lean_dec(x_14); -lean_dec(x_7); +lean_dec(x_13); lean_dec(x_6); -return x_23; +return x_22; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3___boxed(lean_object** _args) { @@ -26408,22 +26590,20 @@ lean_object* x_14 = _args[13]; lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; _start: { -uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; -x_19 = lean_unbox(x_2); +uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; +x_18 = lean_unbox(x_2); lean_dec(x_2); -x_20 = lean_unbox(x_7); +x_19 = lean_unbox(x_6); +lean_dec(x_6); +x_20 = lean_unbox_float(x_7); lean_dec(x_7); x_21 = lean_unbox_float(x_8); lean_dec(x_8); -x_22 = lean_unbox_float(x_9); -lean_dec(x_9); -x_23 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_1, x_19, x_3, x_4, x_5, x_6, x_20, x_21, x_22, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -lean_dec(x_11); -lean_dec(x_6); -return x_23; +x_22 = l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__3(x_1, x_18, x_3, x_4, x_5, x_19, x_20, x_21, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +lean_dec(x_10); +return x_22; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Tactic_FunInd_buildInductionCase___spec__7___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { @@ -52606,7 +52786,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Tactic_FunInd_buildInductionBody___lambda__18___closed__1; x_2 = l_Lean_Tactic_FunInd_buildInductionBody___lambda__18___closed__2; -x_3 = lean_unsigned_to_nat(1724u); +x_3 = lean_unsigned_to_nat(1728u); x_4 = lean_unsigned_to_nat(17u); x_5 = l_Lean_Tactic_FunInd_buildInductionBody___lambda__18___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -78714,8 +78894,6 @@ lean_mark_persistent(l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lea l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Tactic_FunInd_foldAndCollect___spec__32___closed__3 = _init_l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Tactic_FunInd_foldAndCollect___spec__32___closed__3(); lean_mark_persistent(l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Tactic_FunInd_foldAndCollect___spec__32___closed__3); l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2___closed__1(); -l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2___closed__2(); -lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__2___closed__2); l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3___closed__1); l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Grind/Preprocessor.c b/stage0/stdlib/Lean/Meta/Tactic/Grind/Preprocessor.c index 98cb5ef049..3c0cc8eac1 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Grind/Preprocessor.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Grind/Preprocessor.c @@ -36,7 +36,7 @@ lean_object* lean_mk_array(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkFreshId___at_Lean_Meta_Grind_Preprocessor_introNext___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Grind_Preprocessor_instInhabitedState___closed__7; static lean_object* l_Lean_Meta_Grind_Preprocessor_PreM_run___rarg___closed__9; -static lean_object* l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__5; +static uint32_t l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__5; lean_object* l_Lean_MVarId_getTag(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Grind_Preprocessor_applyCases_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__2; @@ -51,6 +51,7 @@ lean_object* l_Lean_Meta_getSimpCongrTheorems___rarg(lean_object*, lean_object*) static lean_object* l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__7; LEAN_EXPORT lean_object* l_ReaderT_bind___at_Lean_Meta_Grind_Preprocessor_introNext___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Grind_Preprocessor_simp___boxed(lean_object*); +static lean_object* l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__13; LEAN_EXPORT lean_object* l_Lean_Meta_Grind_Preprocessor_introNext___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Grind_Preprocessor_PreM_run___rarg___closed__4; lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); @@ -60,6 +61,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Grind_Preprocessor_introNext(lean_object*, lean_object* lean_st_ref_take(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Grind_Preprocessor_simp___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Grind_Preprocessor_loop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint64_t lean_uint64_of_nat(lean_object*); lean_object* l_Lean_Meta_Simp_SimprocExtension_getSimprocs(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Grind_Preprocessor_introNext___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_getType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -82,7 +84,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Grind_Preprocessor_pushResult___boxed(lean_ lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withMVarContextImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); lean_object* l_Lean_Meta_Grind_isGrindCasesTarget(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__3; +static uint64_t l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__3; lean_object* l_ShareCommon_mkStateImpl(lean_object*); lean_object* l_Lean_FVarId_getType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkFreshId___at_Lean_Meta_Grind_Preprocessor_introNext___spec__4___rarg(lean_object*, lean_object*); @@ -97,6 +99,7 @@ LEAN_EXPORT lean_object* l_Lean_mkFreshId___at_Lean_Meta_Grind_Preprocessor_intr lean_object* l_Lean_LocalContext_mkLocalDecl(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t); extern lean_object* l_Lean_Meta_Grind_grindNormSimprocExt; LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Meta_Grind_Preprocessor_applyCases_x3f___spec__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__14; static lean_object* l_Lean_Meta_Grind_main___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_Grind_Preprocessor_simp(lean_object*); lean_object* l_Lean_Meta_SimpExtension_getTheorems(lean_object*, lean_object*, lean_object*, lean_object*); @@ -124,6 +127,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Grind_Preprocessor_applyInjection_x3f(lean_ static lean_object* l_Lean_Meta_Grind_Preprocessor_PreM_run___rarg___closed__7; lean_object* l_Lean_MVarId_transformTarget(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn(lean_object*); +uint32_t lean_uint32_of_nat(lean_object*); static lean_object* l_Lean_Meta_Grind_main___closed__5; lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); lean_object* l_List_reverse___rarg(lean_object*); @@ -232,28 +236,46 @@ lean_ctor_set_uint8(x_5, 17, x_1); return x_5; } } -static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__3() { +static uint64_t _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__3() { _start: { -uint64_t x_1; lean_object* x_2; lean_object* x_3; -x_1 = 0; -x_2 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__2; -x_3 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set_uint64(x_3, sizeof(void*)*1, x_1); -return x_3; +lean_object* x_1; uint64_t x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_uint64_of_nat(x_1); +return x_2; } } static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__4() { _start: { +lean_object* x_1; uint64_t x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__2; +x_2 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__3; +x_3 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint64(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static uint32_t _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__5() { +_start: +{ +lean_object* x_1; uint32_t x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_uint32_of_nat(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__6() { +_start: +{ lean_object* x_1; lean_object* x_2; x_1 = lean_unsigned_to_nat(0u); x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__5() { +static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -263,29 +285,29 @@ x_3 = l_Nat_nextPowerOfTwo_go(x_1, x_2, lean_box(0)); return x_3; } } -static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__6() { +static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__5; +x_2 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__7; x_3 = lean_mk_array(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__7() { +static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_unsigned_to_nat(0u); -x_2 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__6; +x_2 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__8; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__8() { +static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__10() { _start: { lean_object* x_1; @@ -293,23 +315,23 @@ x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); return x_1; } } -static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__9() { +static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__8; +x_1 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__10; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__10() { +static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__12() { _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = 1; -x_2 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__7; -x_3 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__9; +x_2 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__9; +x_3 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__11; x_4 = lean_alloc_ctor(0, 2, 1); lean_ctor_set(x_4, 0, x_2); lean_ctor_set(x_4, 1, x_3); @@ -317,38 +339,38 @@ lean_ctor_set_uint8(x_4, sizeof(void*)*2, x_1); return x_4; } } -static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__11() { +static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__13() { _start: { -uint32_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; lean_object* x_9; -x_1 = 0; -x_2 = lean_box(0); -x_3 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__1; -x_4 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__3; -x_5 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__4; -x_6 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__10; +lean_object* x_1; lean_object* x_2; lean_object* x_3; uint32_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; lean_object* x_9; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__1; +x_3 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__4; +x_4 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__5; +x_5 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__6; +x_6 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__12; x_7 = lean_unsigned_to_nat(0u); x_8 = 0; x_9 = lean_alloc_ctor(0, 7, 9); -lean_ctor_set(x_9, 0, x_3); -lean_ctor_set(x_9, 1, x_4); -lean_ctor_set(x_9, 2, x_4); +lean_ctor_set(x_9, 0, x_2); +lean_ctor_set(x_9, 1, x_3); +lean_ctor_set(x_9, 2, x_3); lean_ctor_set(x_9, 3, x_5); lean_ctor_set(x_9, 4, x_6); -lean_ctor_set(x_9, 5, x_2); +lean_ctor_set(x_9, 5, x_1); lean_ctor_set(x_9, 6, x_7); -lean_ctor_set_uint32(x_9, sizeof(void*)*7, x_1); -lean_ctor_set_uint32(x_9, sizeof(void*)*7 + 4, x_1); +lean_ctor_set_uint32(x_9, sizeof(void*)*7, x_4); +lean_ctor_set_uint32(x_9, sizeof(void*)*7 + 4, x_4); lean_ctor_set_uint8(x_9, sizeof(void*)*7 + 8, x_8); return x_9; } } -static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__12() { +static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__11; -x_2 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__4; +x_1 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__13; +x_2 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__6; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -359,7 +381,7 @@ static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext() _start: { lean_object* x_1; -x_1 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__12; +x_1 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__14; return x_1; } } @@ -367,7 +389,7 @@ static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedState___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__9; +x_1 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__11; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -379,7 +401,7 @@ static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedState___cl _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__4; +x_1 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__6; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -399,7 +421,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; size_t x_4; lean_object* x_5; x_1 = l_Lean_Meta_Grind_Preprocessor_instInhabitedState___closed__2; -x_2 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__4; +x_2 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__6; x_3 = lean_unsigned_to_nat(0u); x_4 = l_Lean_Meta_Grind_Preprocessor_instInhabitedState___closed__3; x_5 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); @@ -415,7 +437,7 @@ static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedState___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__9; +x_1 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__11; x_2 = l_Lean_Meta_Grind_Preprocessor_instInhabitedState___closed__4; x_3 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_3, 0, x_1); @@ -547,7 +569,7 @@ static lean_object* _init_l_Lean_Meta_Grind_Preprocessor_PreM_run___rarg___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__9; +x_1 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__11; x_2 = l_Lean_Meta_Grind_Preprocessor_PreM_run___rarg___closed__6; x_3 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_3, 0, x_1); @@ -4575,7 +4597,7 @@ static lean_object* _init_l_Lean_Meta_Grind_main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__7; +x_1 = l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__9; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); @@ -5071,11 +5093,9 @@ lean_mark_persistent(l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___close l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__2 = _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__2(); lean_mark_persistent(l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__2); l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__3 = _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__3(); -lean_mark_persistent(l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__3); l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__4 = _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__4(); lean_mark_persistent(l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__4); l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__5 = _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__5(); -lean_mark_persistent(l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__5); l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__6 = _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__6(); lean_mark_persistent(l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__6); l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__7 = _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__7(); @@ -5090,6 +5110,10 @@ l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__11 = _init_l_Lean_ lean_mark_persistent(l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__11); l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__12 = _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__12(); lean_mark_persistent(l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__12); +l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__13 = _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__13(); +lean_mark_persistent(l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__13); +l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__14 = _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__14(); +lean_mark_persistent(l_Lean_Meta_Grind_Preprocessor_instInhabitedContext___closed__14); l_Lean_Meta_Grind_Preprocessor_instInhabitedContext = _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedContext(); lean_mark_persistent(l_Lean_Meta_Grind_Preprocessor_instInhabitedContext); l_Lean_Meta_Grind_Preprocessor_instInhabitedState___closed__1 = _init_l_Lean_Meta_Grind_Preprocessor_instInhabitedState___closed__1(); diff --git a/stage0/stdlib/Lean/Meta/Tactic/LibrarySearch.c b/stage0/stdlib/Lean/Meta/Tactic/LibrarySearch.c index 1ffa90ed68..dc0f3cee62 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/LibrarySearch.c +++ b/stage0/stdlib/Lean/Meta/Tactic/LibrarySearch.c @@ -19,7 +19,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_tryOnEach___lambda__1___boxed static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_4____closed__18; static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_4____closed__5; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchEmoji___rarg___boxed(lean_object*); -extern lean_object* l_Lean_profiler; static double l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2___closed__1; lean_object* lean_mk_empty_array_with_capacity(lean_object*); static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_4____closed__19; @@ -100,7 +99,7 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_int LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_LibrarySearch_solveByElim___lambda__3___closed__2; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_interleaveWith___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_4____closed__13; lean_object* lean_st_ref_take(lean_object*, lean_object*); lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Meta_processPostponed___spec__2___rarg(lean_object*, lean_object*); @@ -111,7 +110,7 @@ static lean_object* l_Lean_Meta_LibrarySearch_solveByElim___closed__3; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Meta_LibrarySearch_tryOnEach___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_addImport___lambda__1___closed__1; static lean_object* l_Lean_Meta_LibrarySearch_instOrdDeclMod___closed__1; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_LibrarySearch_droppedKeys___closed__8; lean_object* lean_nat_div(lean_object*, lean_object*); lean_object* l_Lean_MVarId_getType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -167,7 +166,6 @@ uint8_t l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_emoji___rarg___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_addImport(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_trace_profiler_threshold; -static lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2___closed__2; lean_object* l_Lean_Meta_saveState___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_LibrarySearch_librarySearchSymm___spec__1(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_mkHeartbeatCheck___elambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -200,7 +198,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_solveByElim___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_DeclMod_noConfusion___rarg___lambda__1___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearchLemma___lambda__1___closed__10; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_LibrarySearch_solveByElim___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -301,7 +299,7 @@ static lean_object* l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_Lib lean_object* l_Lean_profileitM___at_Lean_Meta_synthInstance_x3f___spec__6___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); double lean_float_sub(double, double); static lean_object* l_Lean_Meta_LibrarySearch_droppedKeys___closed__5; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* _init_l_Lean_Meta_LibrarySearch_initFn____x40_Lean_Meta_Tactic_LibrarySearch___hyg_4____closed__1() { _start: { @@ -5009,69 +5007,36 @@ x_3 = l_Float_ofScientific(x_1, x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2___closed__2() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2___closed__1; +x_17 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_3); +lean_ctor_set_float(x_17, sizeof(void*)*2, x_16); +lean_ctor_set_float(x_17, sizeof(void*)*2 + 8, x_16); +lean_ctor_set_uint8(x_17, sizeof(void*)*2 + 16, x_2); +x_18 = lean_box(0); +x_19 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__1(x_4, x_5, x_10, x_6, x_17, x_18, x_11, x_12, x_13, x_14, x_15); +return x_19; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { -_start: +else { -double x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_18 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_18, 0, x_1); -lean_ctor_set(x_18, 1, x_3); -lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); -lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); -lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); -x_19 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2___closed__2; -x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_19); -if (x_20 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_21; lean_object* x_22; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); x_21 = lean_box(0); -x_22 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_18, x_21, x_12, x_13, x_14, x_15, x_16); +x_22 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15); return x_22; } -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_18); -x_23 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_3); -lean_ctor_set_float(x_23, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); -x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_23, x_24, x_12, x_13, x_14, x_15, x_16); -return x_25; -} -} -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_18); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16); -return x_28; -} } } static lean_object* _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__1() { @@ -5091,46 +5056,46 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 5); -lean_inc(x_17); -lean_inc(x_15); +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 5); +lean_inc(x_16); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_18 = lean_apply_6(x_10, x_5, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_18) == 0) +x_17 = lean_apply_6(x_9, x_5, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_14, x_15, x_20); -lean_dec(x_15); -lean_dec(x_13); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_13, x_14, x_19); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_21; +return x_20; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_14, x_15, x_22); -lean_dec(x_15); -lean_dec(x_13); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } } } @@ -5194,253 +5159,253 @@ x_17 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lea x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_17); if (x_18 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_109 = lean_io_mono_nanos_now(x_16); -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_109, 1); -lean_inc(x_111); -lean_dec(x_109); +lean_object* x_19; lean_object* x_20; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_113 = lean_io_mono_nanos_now(x_16); +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +lean_dec(x_113); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_112 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_111); -if (lean_obj_tag(x_112) == 0) +x_116 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_115); +if (lean_obj_tag(x_116) == 0) { -uint8_t x_113; -x_113 = !lean_is_exclusive(x_112); -if (x_113 == 0) +uint8_t x_117; +x_117 = !lean_is_exclusive(x_116); +if (x_117 == 0) { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_114 = lean_ctor_get(x_112, 0); -x_115 = lean_ctor_get(x_112, 1); -x_116 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_116, 0, x_114); -x_117 = lean_io_mono_nanos_now(x_115); -x_118 = !lean_is_exclusive(x_117); -if (x_118 == 0) +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_118 = lean_ctor_get(x_116, 0); +x_119 = lean_ctor_get(x_116, 1); +x_120 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_120, 0, x_118); +x_121 = lean_io_mono_nanos_now(x_119); +x_122 = !lean_is_exclusive(x_121); +if (x_122 == 0) { -lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_122; double x_123; double x_124; double x_125; double x_126; double x_127; lean_object* x_128; lean_object* x_129; -x_119 = lean_ctor_get(x_117, 0); -x_120 = lean_ctor_get(x_117, 1); -x_121 = 0; -x_122 = lean_unsigned_to_nat(0u); -x_123 = l_Float_ofScientific(x_110, x_121, x_122); -lean_dec(x_110); -x_124 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__5; -x_125 = lean_float_div(x_123, x_124); -x_126 = l_Float_ofScientific(x_119, x_121, x_122); -lean_dec(x_119); -x_127 = lean_float_div(x_126, x_124); -x_128 = lean_box_float(x_125); -x_129 = lean_box_float(x_127); -lean_ctor_set(x_117, 1, x_129); -lean_ctor_set(x_117, 0, x_128); -lean_ctor_set(x_112, 1, x_117); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_120; -goto block_108; +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; double x_130; double x_131; lean_object* x_132; lean_object* x_133; +x_123 = lean_ctor_get(x_121, 0); +x_124 = lean_ctor_get(x_121, 1); +x_125 = 0; +x_126 = lean_unsigned_to_nat(0u); +x_127 = l_Float_ofScientific(x_114, x_125, x_126); +lean_dec(x_114); +x_128 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__5; +x_129 = lean_float_div(x_127, x_128); +x_130 = l_Float_ofScientific(x_123, x_125, x_126); +lean_dec(x_123); +x_131 = lean_float_div(x_130, x_128); +x_132 = lean_box_float(x_129); +x_133 = lean_box_float(x_131); +lean_ctor_set(x_121, 1, x_133); +lean_ctor_set(x_121, 0, x_132); +lean_ctor_set(x_116, 1, x_121); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_124; +goto block_112; } else { -lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; double x_134; double x_135; double x_136; double x_137; double x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_130 = lean_ctor_get(x_117, 0); -x_131 = lean_ctor_get(x_117, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_117); -x_132 = 0; -x_133 = lean_unsigned_to_nat(0u); -x_134 = l_Float_ofScientific(x_110, x_132, x_133); -lean_dec(x_110); -x_135 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__5; -x_136 = lean_float_div(x_134, x_135); -x_137 = l_Float_ofScientific(x_130, x_132, x_133); -lean_dec(x_130); -x_138 = lean_float_div(x_137, x_135); -x_139 = lean_box_float(x_136); -x_140 = lean_box_float(x_138); -x_141 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -lean_ctor_set(x_112, 1, x_141); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_131; -goto block_108; +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_134 = lean_ctor_get(x_121, 0); +x_135 = lean_ctor_get(x_121, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_121); +x_136 = 0; +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Float_ofScientific(x_114, x_136, x_137); +lean_dec(x_114); +x_139 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__5; +x_140 = lean_float_div(x_138, x_139); +x_141 = l_Float_ofScientific(x_134, x_136, x_137); +lean_dec(x_134); +x_142 = lean_float_div(x_141, x_139); +x_143 = lean_box_float(x_140); +x_144 = lean_box_float(x_142); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_116, 1, x_145); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_135; +goto block_112; } } else { -lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_142 = lean_ctor_get(x_112, 0); -x_143 = lean_ctor_get(x_112, 1); -lean_inc(x_143); -lean_inc(x_142); -lean_dec(x_112); -x_144 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_144, 0, x_142); -x_145 = lean_io_mono_nanos_now(x_143); -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; lean_object* x_154; double x_155; double x_156; double x_157; double x_158; double x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_146 = lean_ctor_get(x_116, 0); +x_147 = lean_ctor_get(x_116, 1); lean_inc(x_147); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - lean_ctor_release(x_145, 1); - x_148 = x_145; +lean_inc(x_146); +lean_dec(x_116); +x_148 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_148, 0, x_146); +x_149 = lean_io_mono_nanos_now(x_147); +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + lean_ctor_release(x_149, 1); + x_152 = x_149; } else { - lean_dec_ref(x_145); - x_148 = lean_box(0); + lean_dec_ref(x_149); + x_152 = lean_box(0); } -x_149 = 0; -x_150 = lean_unsigned_to_nat(0u); -x_151 = l_Float_ofScientific(x_110, x_149, x_150); -lean_dec(x_110); -x_152 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__5; -x_153 = lean_float_div(x_151, x_152); -x_154 = l_Float_ofScientific(x_146, x_149, x_150); -lean_dec(x_146); -x_155 = lean_float_div(x_154, x_152); -x_156 = lean_box_float(x_153); -x_157 = lean_box_float(x_155); -if (lean_is_scalar(x_148)) { - x_158 = lean_alloc_ctor(0, 2, 0); +x_153 = 0; +x_154 = lean_unsigned_to_nat(0u); +x_155 = l_Float_ofScientific(x_114, x_153, x_154); +lean_dec(x_114); +x_156 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__5; +x_157 = lean_float_div(x_155, x_156); +x_158 = l_Float_ofScientific(x_150, x_153, x_154); +lean_dec(x_150); +x_159 = lean_float_div(x_158, x_156); +x_160 = lean_box_float(x_157); +x_161 = lean_box_float(x_159); +if (lean_is_scalar(x_152)) { + x_162 = lean_alloc_ctor(0, 2, 0); } else { - x_158 = x_148; + x_162 = x_152; } -lean_ctor_set(x_158, 0, x_156); -lean_ctor_set(x_158, 1, x_157); -x_159 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_159, 0, x_144); -lean_ctor_set(x_159, 1, x_158); -x_19 = x_159; -x_20 = x_147; -goto block_108; +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_161); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_148); +lean_ctor_set(x_163, 1, x_162); +x_19 = x_163; +x_20 = x_151; +goto block_112; } } else { -uint8_t x_160; -x_160 = !lean_is_exclusive(x_112); -if (x_160 == 0) +uint8_t x_164; +x_164 = !lean_is_exclusive(x_116); +if (x_164 == 0) { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_161 = lean_ctor_get(x_112, 0); -x_162 = lean_ctor_get(x_112, 1); -x_163 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_163, 0, x_161); -x_164 = lean_io_mono_nanos_now(x_162); -x_165 = !lean_is_exclusive(x_164); -if (x_165 == 0) +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; +x_165 = lean_ctor_get(x_116, 0); +x_166 = lean_ctor_get(x_116, 1); +x_167 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_167, 0, x_165); +x_168 = lean_io_mono_nanos_now(x_166); +x_169 = !lean_is_exclusive(x_168); +if (x_169 == 0) { -lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; double x_170; double x_171; double x_172; double x_173; double x_174; lean_object* x_175; lean_object* x_176; -x_166 = lean_ctor_get(x_164, 0); -x_167 = lean_ctor_get(x_164, 1); -x_168 = 0; -x_169 = lean_unsigned_to_nat(0u); -x_170 = l_Float_ofScientific(x_110, x_168, x_169); -lean_dec(x_110); -x_171 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__5; -x_172 = lean_float_div(x_170, x_171); -x_173 = l_Float_ofScientific(x_166, x_168, x_169); -lean_dec(x_166); -x_174 = lean_float_div(x_173, x_171); -x_175 = lean_box_float(x_172); -x_176 = lean_box_float(x_174); -lean_ctor_set(x_164, 1, x_176); -lean_ctor_set(x_164, 0, x_175); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_164); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_167; -goto block_108; +lean_object* x_170; lean_object* x_171; uint8_t x_172; lean_object* x_173; double x_174; double x_175; double x_176; double x_177; double x_178; lean_object* x_179; lean_object* x_180; +x_170 = lean_ctor_get(x_168, 0); +x_171 = lean_ctor_get(x_168, 1); +x_172 = 0; +x_173 = lean_unsigned_to_nat(0u); +x_174 = l_Float_ofScientific(x_114, x_172, x_173); +lean_dec(x_114); +x_175 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__5; +x_176 = lean_float_div(x_174, x_175); +x_177 = l_Float_ofScientific(x_170, x_172, x_173); +lean_dec(x_170); +x_178 = lean_float_div(x_177, x_175); +x_179 = lean_box_float(x_176); +x_180 = lean_box_float(x_178); +lean_ctor_set(x_168, 1, x_180); +lean_ctor_set(x_168, 0, x_179); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_168); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_171; +goto block_112; } else { -lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_object* x_180; double x_181; double x_182; double x_183; double x_184; double x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_177 = lean_ctor_get(x_164, 0); -x_178 = lean_ctor_get(x_164, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_164); -x_179 = 0; -x_180 = lean_unsigned_to_nat(0u); -x_181 = l_Float_ofScientific(x_110, x_179, x_180); -lean_dec(x_110); -x_182 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__5; -x_183 = lean_float_div(x_181, x_182); -x_184 = l_Float_ofScientific(x_177, x_179, x_180); -lean_dec(x_177); -x_185 = lean_float_div(x_184, x_182); -x_186 = lean_box_float(x_183); -x_187 = lean_box_float(x_185); -x_188 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_188); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_178; -goto block_108; +lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_181 = lean_ctor_get(x_168, 0); +x_182 = lean_ctor_get(x_168, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_168); +x_183 = 0; +x_184 = lean_unsigned_to_nat(0u); +x_185 = l_Float_ofScientific(x_114, x_183, x_184); +lean_dec(x_114); +x_186 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__5; +x_187 = lean_float_div(x_185, x_186); +x_188 = l_Float_ofScientific(x_181, x_183, x_184); +lean_dec(x_181); +x_189 = lean_float_div(x_188, x_186); +x_190 = lean_box_float(x_187); +x_191 = lean_box_float(x_189); +x_192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_192); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_182; +goto block_112; } } else { -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_189 = lean_ctor_get(x_112, 0); -x_190 = lean_ctor_get(x_112, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_112); -x_191 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_191, 0, x_189); -x_192 = lean_io_mono_nanos_now(x_190); -x_193 = lean_ctor_get(x_192, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; lean_object* x_201; double x_202; double x_203; double x_204; double x_205; double x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_193 = lean_ctor_get(x_116, 0); +x_194 = lean_ctor_get(x_116, 1); lean_inc(x_194); -if (lean_is_exclusive(x_192)) { - lean_ctor_release(x_192, 0); - lean_ctor_release(x_192, 1); - x_195 = x_192; +lean_inc(x_193); +lean_dec(x_116); +x_195 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_195, 0, x_193); +x_196 = lean_io_mono_nanos_now(x_194); +x_197 = lean_ctor_get(x_196, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_196, 1); +lean_inc(x_198); +if (lean_is_exclusive(x_196)) { + lean_ctor_release(x_196, 0); + lean_ctor_release(x_196, 1); + x_199 = x_196; } else { - lean_dec_ref(x_192); - x_195 = lean_box(0); + lean_dec_ref(x_196); + x_199 = lean_box(0); } -x_196 = 0; -x_197 = lean_unsigned_to_nat(0u); -x_198 = l_Float_ofScientific(x_110, x_196, x_197); -lean_dec(x_110); -x_199 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__5; -x_200 = lean_float_div(x_198, x_199); -x_201 = l_Float_ofScientific(x_193, x_196, x_197); -lean_dec(x_193); -x_202 = lean_float_div(x_201, x_199); -x_203 = lean_box_float(x_200); -x_204 = lean_box_float(x_202); -if (lean_is_scalar(x_195)) { - x_205 = lean_alloc_ctor(0, 2, 0); +x_200 = 0; +x_201 = lean_unsigned_to_nat(0u); +x_202 = l_Float_ofScientific(x_114, x_200, x_201); +lean_dec(x_114); +x_203 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__5; +x_204 = lean_float_div(x_202, x_203); +x_205 = l_Float_ofScientific(x_197, x_200, x_201); +lean_dec(x_197); +x_206 = lean_float_div(x_205, x_203); +x_207 = lean_box_float(x_204); +x_208 = lean_box_float(x_206); +if (lean_is_scalar(x_199)) { + x_209 = lean_alloc_ctor(0, 2, 0); } else { - x_205 = x_195; + x_209 = x_199; } -lean_ctor_set(x_205, 0, x_203); -lean_ctor_set(x_205, 1, x_204); -x_206 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_206, 0, x_191); -lean_ctor_set(x_206, 1, x_205); -x_19 = x_206; -x_20 = x_194; -goto block_108; +lean_ctor_set(x_209, 0, x_207); +lean_ctor_set(x_209, 1, x_208); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_195); +lean_ctor_set(x_210, 1, x_209); +x_19 = x_210; +x_20 = x_198; +goto block_112; } } -block_108: +block_112: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_94; uint8_t x_95; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); x_22 = lean_ctor_get(x_19, 0); @@ -5451,17 +5416,33 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_21, 1); lean_inc(x_24); lean_dec(x_21); -x_94 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__2; -x_95 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_94); -if (x_95 == 0) +x_25 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__2; +x_26 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_25); +if (x_26 == 0) { -uint8_t x_96; -x_96 = 0; -x_25 = x_96; -goto block_93; +if (x_6 == 0) +{ +uint8_t x_92; +x_92 = 0; +x_27 = x_92; +goto block_91; } else { +lean_object* x_93; double x_94; double x_95; lean_object* x_96; +x_93 = lean_box(0); +x_94 = lean_unbox_float(x_23); +lean_dec(x_23); +x_95 = lean_unbox_float(x_24); +lean_dec(x_24); +x_96 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_94, x_95, x_5, x_93, x_9, x_10, x_11, x_12, x_20); +return x_96; +} +} +else +{ +if (x_6 == 0) +{ double x_97; double x_98; double x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; double x_104; double x_105; double x_106; uint8_t x_107; x_97 = lean_unbox_float(x_24); x_98 = lean_unbox_float(x_23); @@ -5475,859 +5456,871 @@ lean_dec(x_101); x_105 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__4; x_106 = lean_float_div(x_104, x_105); x_107 = lean_float_decLt(x_106, x_99); -x_25 = x_107; -goto block_93; +x_27 = x_107; +goto block_91; } -block_93: +else { -if (x_6 == 0) +lean_object* x_108; double x_109; double x_110; lean_object* x_111; +x_108 = lean_box(0); +x_109 = lean_unbox_float(x_23); +lean_dec(x_23); +x_110 = lean_unbox_float(x_24); +lean_dec(x_24); +x_111 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_109, x_110, x_5, x_108, x_9, x_10, x_11, x_12, x_20); +return x_111; +} +} +block_91: { -if (x_25 == 0) +if (x_27 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_24); lean_dec(x_23); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_26 = lean_st_ref_take(x_12, x_20); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -x_29 = lean_ctor_get(x_26, 1); +x_28 = lean_st_ref_take(x_12, x_20); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -lean_dec(x_26); -x_30 = !lean_is_exclusive(x_27); -if (x_30 == 0) -{ -lean_object* x_31; uint8_t x_32; -x_31 = lean_ctor_get(x_27, 3); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_28); +x_30 = lean_ctor_get(x_29, 3); +lean_inc(x_30); +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = !lean_is_exclusive(x_29); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_33 = lean_ctor_get(x_28, 0); -x_34 = l_Lean_PersistentArray_append___rarg(x_15, x_33); +lean_object* x_33; uint8_t x_34; +x_33 = lean_ctor_get(x_29, 3); lean_dec(x_33); -lean_ctor_set(x_28, 0, x_34); -x_35 = lean_st_ref_set(x_12, x_27, x_29); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); +x_34 = !lean_is_exclusive(x_30); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_ctor_get(x_30, 0); +x_36 = l_Lean_PersistentArray_append___rarg(x_15, x_35); lean_dec(x_35); -x_37 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__3(x_22, x_9, x_10, x_11, x_12, x_36); +lean_ctor_set(x_30, 0, x_36); +x_37 = lean_st_ref_set(x_12, x_29, x_31); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +x_39 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__3(x_22, x_9, x_10, x_11, x_12, x_38); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_37) == 0) +if (lean_obj_tag(x_39) == 0) { -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -return x_37; +return x_39; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_ctor_get(x_37, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_37); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_39); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } else { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_37); -if (x_42 == 0) +uint8_t x_44; +x_44 = !lean_is_exclusive(x_39); +if (x_44 == 0) { -return x_37; +return x_39; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_37, 0); -x_44 = lean_ctor_get(x_37, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_37); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_39, 0); +x_46 = lean_ctor_get(x_39, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_39); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } } else { -uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_47 = lean_ctor_get(x_28, 0); -lean_inc(x_47); -lean_dec(x_28); -x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_47); -lean_dec(x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); -lean_ctor_set(x_27, 3, x_49); -x_50 = lean_st_ref_set(x_12, x_27, x_29); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -lean_dec(x_50); -x_52 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__3(x_22, x_9, x_10, x_11, x_12, x_51); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_22); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); +uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_49 = lean_ctor_get(x_30, 0); +lean_inc(x_49); +lean_dec(x_30); +x_50 = l_Lean_PersistentArray_append___rarg(x_15, x_49); +lean_dec(x_49); +x_51 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); +lean_ctor_set(x_29, 3, x_51); +x_52 = lean_st_ref_set(x_12, x_29, x_31); +x_53 = lean_ctor_get(x_52, 1); lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_55 = x_52; +lean_dec(x_52); +x_54 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__3(x_22, x_9, x_10, x_11, x_12, x_53); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_22); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; } else { - lean_dec_ref(x_52); - x_55 = lean_box(0); + lean_dec_ref(x_54); + x_57 = lean_box(0); } -if (lean_is_scalar(x_55)) { - x_56 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_57)) { + x_58 = lean_alloc_ctor(0, 2, 0); } else { - x_56 = x_55; + x_58 = x_57; } -lean_ctor_set(x_56, 0, x_53); -lean_ctor_set(x_56, 1, x_54); -return x_56; +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_56); +return x_58; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_52, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_52, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_59 = x_52; +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_54, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_54, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_61 = x_54; } else { - lean_dec_ref(x_52); - x_59 = lean_box(0); + lean_dec_ref(x_54); + x_61 = lean_box(0); } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(1, 2, 0); } else { - x_60 = x_59; + x_62 = x_61; } -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_58); -return x_60; +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; } } } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_61 = lean_ctor_get(x_27, 0); -x_62 = lean_ctor_get(x_27, 1); -x_63 = lean_ctor_get(x_27, 2); -x_64 = lean_ctor_get(x_27, 4); -x_65 = lean_ctor_get(x_27, 5); -x_66 = lean_ctor_get(x_27, 6); -x_67 = lean_ctor_get(x_27, 7); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_63 = lean_ctor_get(x_29, 0); +x_64 = lean_ctor_get(x_29, 1); +x_65 = lean_ctor_get(x_29, 2); +x_66 = lean_ctor_get(x_29, 4); +x_67 = lean_ctor_get(x_29, 5); +x_68 = lean_ctor_get(x_29, 6); +x_69 = lean_ctor_get(x_29, 7); +lean_inc(x_69); +lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_27); -x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_69 = lean_ctor_get(x_28, 0); -lean_inc(x_69); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - x_70 = x_28; +lean_dec(x_29); +x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_71 = lean_ctor_get(x_30, 0); +lean_inc(x_71); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + x_72 = x_30; } else { - lean_dec_ref(x_28); - x_70 = lean_box(0); + lean_dec_ref(x_30); + x_72 = lean_box(0); } -x_71 = l_Lean_PersistentArray_append___rarg(x_15, x_69); -lean_dec(x_69); -if (lean_is_scalar(x_70)) { - x_72 = lean_alloc_ctor(0, 1, 8); +x_73 = l_Lean_PersistentArray_append___rarg(x_15, x_71); +lean_dec(x_71); +if (lean_is_scalar(x_72)) { + x_74 = lean_alloc_ctor(0, 1, 8); } else { - x_72 = x_70; + x_74 = x_72; } -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); -x_73 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_73, 0, x_61); -lean_ctor_set(x_73, 1, x_62); -lean_ctor_set(x_73, 2, x_63); -lean_ctor_set(x_73, 3, x_72); -lean_ctor_set(x_73, 4, x_64); -lean_ctor_set(x_73, 5, x_65); -lean_ctor_set(x_73, 6, x_66); -lean_ctor_set(x_73, 7, x_67); -x_74 = lean_st_ref_set(x_12, x_73, x_29); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_76 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__3(x_22, x_9, x_10, x_11, x_12, x_75); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); +x_75 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_64); +lean_ctor_set(x_75, 2, x_65); +lean_ctor_set(x_75, 3, x_74); +lean_ctor_set(x_75, 4, x_66); +lean_ctor_set(x_75, 5, x_67); +lean_ctor_set(x_75, 6, x_68); +lean_ctor_set(x_75, 7, x_69); +x_76 = lean_st_ref_set(x_12, x_75, x_31); +x_77 = lean_ctor_get(x_76, 1); +lean_inc(x_77); +lean_dec(x_76); +x_78 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__3(x_22, x_9, x_10, x_11, x_12, x_77); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_76) == 0) +if (lean_obj_tag(x_78) == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_76, 0); -lean_inc(x_77); -x_78 = lean_ctor_get(x_76, 1); -lean_inc(x_78); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_79 = x_76; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_81 = x_78; } else { - lean_dec_ref(x_76); - x_79 = lean_box(0); + lean_dec_ref(x_78); + x_81 = lean_box(0); } -if (lean_is_scalar(x_79)) { - x_80 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(0, 2, 0); } else { - x_80 = x_79; + x_82 = x_81; } -lean_ctor_set(x_80, 0, x_77); -lean_ctor_set(x_80, 1, x_78); -return x_80; +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_80); +return x_82; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_81 = lean_ctor_get(x_76, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_76, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_83 = x_76; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_83 = lean_ctor_get(x_78, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_78, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_85 = x_78; } else { - lean_dec_ref(x_76); - x_83 = lean_box(0); + lean_dec_ref(x_78); + x_85 = lean_box(0); } -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); } else { - x_84 = x_83; + x_86 = x_85; } -lean_ctor_set(x_84, 0, x_81); -lean_ctor_set(x_84, 1, x_82); -return x_84; +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; } } } else { -lean_object* x_85; double x_86; double x_87; lean_object* x_88; -x_85 = lean_box(0); -x_86 = lean_unbox_float(x_23); +lean_object* x_87; double x_88; double x_89; lean_object* x_90; +x_87 = lean_box(0); +x_88 = lean_unbox_float(x_23); lean_dec(x_23); -x_87 = lean_unbox_float(x_24); +x_89 = lean_unbox_float(x_24); lean_dec(x_24); -x_88 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_86, x_87, x_5, x_85, x_9, x_10, x_11, x_12, x_20); -return x_88; -} -} -else -{ -lean_object* x_89; double x_90; double x_91; lean_object* x_92; -x_89 = lean_box(0); -x_90 = lean_unbox_float(x_23); -lean_dec(x_23); -x_91 = lean_unbox_float(x_24); -lean_dec(x_24); -x_92 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_20); -return x_92; +x_90 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_20); +return x_90; } } } } else { -lean_object* x_207; lean_object* x_208; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_16); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_211; lean_object* x_212; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_16); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_207 = x_336; -x_208 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_211 = x_344; +x_212 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_207 = x_374; -x_208 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_282; uint8_t x_283; -x_209 = lean_ctor_get(x_207, 1); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 0); -lean_inc(x_210); -lean_dec(x_207); -x_211 = lean_ctor_get(x_209, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 1); -lean_inc(x_212); -lean_dec(x_209); -x_282 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_213 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_212); -x_286 = lean_unbox_float(x_211); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_213 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_211 = x_382; +x_212 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; uint8_t x_219; +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 0); +lean_inc(x_214); +lean_dec(x_211); +x_215 = lean_ctor_get(x_213, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 1); +lean_inc(x_216); +lean_dec(x_213); +x_217 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__2; +x_218 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_217); +if (x_218 == 0) { if (x_6 == 0) { -if (x_213 == 0) +uint8_t x_284; +x_284 = 0; +x_219 = x_284; +goto block_283; +} +else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; -lean_dec(x_212); -lean_dec(x_211); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_215); +lean_dec(x_215); +x_287 = lean_unbox_float(x_216); +lean_dec(x_216); +x_288 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_212); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_216); +x_290 = lean_unbox_float(x_215); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_219 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_215); +lean_dec(x_215); +x_300 = lean_unbox_float(x_216); +lean_dec(x_216); +x_301 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_212); +return x_301; +} +} +block_283: +{ +if (x_219 == 0) +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; +lean_dec(x_216); +lean_dec(x_215); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_214 = lean_st_ref_take(x_12, x_208); -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_215, 3); -lean_inc(x_216); -x_217 = lean_ctor_get(x_214, 1); -lean_inc(x_217); -lean_dec(x_214); -x_218 = !lean_is_exclusive(x_215); -if (x_218 == 0) +x_220 = lean_st_ref_take(x_12, x_212); +x_221 = lean_ctor_get(x_220, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_221, 3); +lean_inc(x_222); +x_223 = lean_ctor_get(x_220, 1); +lean_inc(x_223); +lean_dec(x_220); +x_224 = !lean_is_exclusive(x_221); +if (x_224 == 0) { -lean_object* x_219; uint8_t x_220; -x_219 = lean_ctor_get(x_215, 3); -lean_dec(x_219); -x_220 = !lean_is_exclusive(x_216); -if (x_220 == 0) -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_221 = lean_ctor_get(x_216, 0); -x_222 = l_Lean_PersistentArray_append___rarg(x_15, x_221); -lean_dec(x_221); -lean_ctor_set(x_216, 0, x_222); -x_223 = lean_st_ref_set(x_12, x_215, x_217); -x_224 = lean_ctor_get(x_223, 1); -lean_inc(x_224); -lean_dec(x_223); -x_225 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__3(x_210, x_9, x_10, x_11, x_12, x_224); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_225) == 0) -{ -uint8_t x_226; -x_226 = !lean_is_exclusive(x_225); +lean_object* x_225; uint8_t x_226; +x_225 = lean_ctor_get(x_221, 3); +lean_dec(x_225); +x_226 = !lean_is_exclusive(x_222); if (x_226 == 0) { -return x_225; -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; -x_227 = lean_ctor_get(x_225, 0); -x_228 = lean_ctor_get(x_225, 1); -lean_inc(x_228); -lean_inc(x_227); -lean_dec(x_225); -x_229 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_229, 0, x_227); -lean_ctor_set(x_229, 1, x_228); -return x_229; -} -} -else -{ -uint8_t x_230; -x_230 = !lean_is_exclusive(x_225); -if (x_230 == 0) -{ -return x_225; -} -else -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_225, 0); -x_232 = lean_ctor_get(x_225, 1); -lean_inc(x_232); -lean_inc(x_231); -lean_dec(x_225); -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_231); -lean_ctor_set(x_233, 1, x_232); -return x_233; -} -} -} -else -{ -uint64_t x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_234 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_235 = lean_ctor_get(x_216, 0); -lean_inc(x_235); -lean_dec(x_216); -x_236 = l_Lean_PersistentArray_append___rarg(x_15, x_235); -lean_dec(x_235); -x_237 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_237, 0, x_236); -lean_ctor_set_uint64(x_237, sizeof(void*)*1, x_234); -lean_ctor_set(x_215, 3, x_237); -x_238 = lean_st_ref_set(x_12, x_215, x_217); -x_239 = lean_ctor_get(x_238, 1); -lean_inc(x_239); -lean_dec(x_238); -x_240 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__3(x_210, x_9, x_10, x_11, x_12, x_239); +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_227 = lean_ctor_get(x_222, 0); +x_228 = l_Lean_PersistentArray_append___rarg(x_15, x_227); +lean_dec(x_227); +lean_ctor_set(x_222, 0, x_228); +x_229 = lean_st_ref_set(x_12, x_221, x_223); +x_230 = lean_ctor_get(x_229, 1); +lean_inc(x_230); +lean_dec(x_229); +x_231 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__3(x_214, x_9, x_10, x_11, x_12, x_230); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_240) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_231) == 0) { -lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; -x_241 = lean_ctor_get(x_240, 0); +uint8_t x_232; +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +return x_231; +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_231, 0); +x_234 = lean_ctor_get(x_231, 1); +lean_inc(x_234); +lean_inc(x_233); +lean_dec(x_231); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +return x_235; +} +} +else +{ +uint8_t x_236; +x_236 = !lean_is_exclusive(x_231); +if (x_236 == 0) +{ +return x_231; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_231, 0); +x_238 = lean_ctor_get(x_231, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_231); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} +} +} +else +{ +uint64_t x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_240 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_241 = lean_ctor_get(x_222, 0); lean_inc(x_241); -x_242 = lean_ctor_get(x_240, 1); -lean_inc(x_242); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_243 = x_240; -} else { - lean_dec_ref(x_240); - x_243 = lean_box(0); -} -if (lean_is_scalar(x_243)) { - x_244 = lean_alloc_ctor(0, 2, 0); -} else { - x_244 = x_243; -} -lean_ctor_set(x_244, 0, x_241); -lean_ctor_set(x_244, 1, x_242); -return x_244; -} -else -{ -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_245 = lean_ctor_get(x_240, 0); +lean_dec(x_222); +x_242 = l_Lean_PersistentArray_append___rarg(x_15, x_241); +lean_dec(x_241); +x_243 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set_uint64(x_243, sizeof(void*)*1, x_240); +lean_ctor_set(x_221, 3, x_243); +x_244 = lean_st_ref_set(x_12, x_221, x_223); +x_245 = lean_ctor_get(x_244, 1); lean_inc(x_245); -x_246 = lean_ctor_get(x_240, 1); -lean_inc(x_246); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_247 = x_240; -} else { - lean_dec_ref(x_240); - x_247 = lean_box(0); -} -if (lean_is_scalar(x_247)) { - x_248 = lean_alloc_ctor(1, 2, 0); -} else { - x_248 = x_247; -} -lean_ctor_set(x_248, 0, x_245); -lean_ctor_set(x_248, 1, x_246); -return x_248; -} -} -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_249 = lean_ctor_get(x_215, 0); -x_250 = lean_ctor_get(x_215, 1); -x_251 = lean_ctor_get(x_215, 2); -x_252 = lean_ctor_get(x_215, 4); -x_253 = lean_ctor_get(x_215, 5); -x_254 = lean_ctor_get(x_215, 6); -x_255 = lean_ctor_get(x_215, 7); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_dec(x_215); -x_256 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_257 = lean_ctor_get(x_216, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_216)) { - lean_ctor_release(x_216, 0); - x_258 = x_216; -} else { - lean_dec_ref(x_216); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_15, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_261, 0, x_249); -lean_ctor_set(x_261, 1, x_250); -lean_ctor_set(x_261, 2, x_251); -lean_ctor_set(x_261, 3, x_260); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_255); -x_262 = lean_st_ref_set(x_12, x_261, x_217); -x_263 = lean_ctor_get(x_262, 1); -lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__3(x_210, x_9, x_10, x_11, x_12, x_263); +lean_dec(x_244); +x_246 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__3(x_214, x_9, x_10, x_11, x_12, x_245); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_246) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_247 = lean_ctor_get(x_246, 0); +lean_inc(x_247); +x_248 = lean_ctor_get(x_246, 1); +lean_inc(x_248); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_249 = x_246; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_246); + x_249 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_249)) { + x_250 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_250 = x_249; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_250, 0, x_247); +lean_ctor_set(x_250, 1, x_248); +return x_250; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_251 = lean_ctor_get(x_246, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_246, 1); +lean_inc(x_252); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_253 = x_246; +} else { + lean_dec_ref(x_246); + x_253 = lean_box(0); +} +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(1, 2, 0); +} else { + x_254 = x_253; +} +lean_ctor_set(x_254, 0, x_251); +lean_ctor_set(x_254, 1, x_252); +return x_254; +} +} +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_255 = lean_ctor_get(x_221, 0); +x_256 = lean_ctor_get(x_221, 1); +x_257 = lean_ctor_get(x_221, 2); +x_258 = lean_ctor_get(x_221, 4); +x_259 = lean_ctor_get(x_221, 5); +x_260 = lean_ctor_get(x_221, 6); +x_261 = lean_ctor_get(x_221, 7); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_221); +x_262 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_263 = lean_ctor_get(x_222, 0); +lean_inc(x_263); +if (lean_is_exclusive(x_222)) { + lean_ctor_release(x_222, 0); + x_264 = x_222; +} else { + lean_dec_ref(x_222); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_15, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_267, 0, x_255); +lean_ctor_set(x_267, 1, x_256); +lean_ctor_set(x_267, 2, x_257); +lean_ctor_set(x_267, 3, x_266); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_261); +x_268 = lean_st_ref_set(x_12, x_267, x_223); +x_269 = lean_ctor_get(x_268, 1); lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__3(x_214, x_9, x_10, x_11, x_12, x_269); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_214); +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_272 = x_271; + x_274 = x_273; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; +} else { + lean_dec_ref(x_270); + x_277 = lean_box(0); +} +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); +} else { + x_278 = x_277; +} +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_211); -lean_dec(x_211); -x_275 = lean_unbox_float(x_212); -lean_dec(x_212); -x_276 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_274, x_275, x_5, x_273, x_9, x_10, x_11, x_12, x_208); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_211); -lean_dec(x_211); -x_279 = lean_unbox_float(x_212); -lean_dec(x_212); -x_280 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_278, x_279, x_5, x_277, x_9, x_10, x_11, x_12, x_208); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_215); +lean_dec(x_215); +x_281 = lean_unbox_float(x_216); +lean_dec(x_216); +x_282 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_212); +return x_282; } } } @@ -6784,43 +6777,41 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_8); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); lean_dec(x_8); x_19 = lean_unbox_float(x_9); lean_dec(x_9); -x_20 = lean_unbox_float(x_10); -lean_dec(x_10); -x_21 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_18, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_15); -lean_dec(x_13); +x_20 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2(x_1, x_16, x_3, x_4, x_5, x_6, x_17, x_18, x_19, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_14); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_21; +return x_20; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_7); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); lean_dec(x_7); x_19 = lean_unbox_float(x_8); lean_dec(x_8); -x_20 = lean_unbox_float(x_9); -lean_dec(x_9); -x_21 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_11); -lean_dec(x_6); -return x_21; +x_20 = l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3(x_1, x_16, x_3, x_4, x_5, x_17, x_18, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +return x_20; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -7261,8 +7252,6 @@ lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at_Lean_Meta_LibrarySearch_t l_Lean_Meta_LibrarySearch_tryOnEach___closed__1 = _init_l_Lean_Meta_LibrarySearch_tryOnEach___closed__1(); lean_mark_persistent(l_Lean_Meta_LibrarySearch_tryOnEach___closed__1); l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2___closed__1(); -l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2___closed__2 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2___closed__2(); -lean_mark_persistent(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__2___closed__2); l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__1); l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at___private_Lean_Meta_Tactic_LibrarySearch_0__Lean_Meta_LibrarySearch_librarySearch_x27___spec__2___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/UInt.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/UInt.c index 64c2de9558..6a7431de1b 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/UInt.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/BuiltinSimprocs/UInt.c @@ -16,6 +16,7 @@ extern "C" { static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__182; static lean_object* l_UInt16_reduceOfNat___closed__1; LEAN_EXPORT lean_object* l_UInt16_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9191____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13788_(lean_object*); LEAN_EXPORT lean_object* l_UInt32_reduceSub___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_UInt64_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12031____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__78; @@ -177,11 +178,13 @@ LEAN_EXPORT lean_object* l_UInt16_fromExpr___boxed(lean_object*, lean_object*, l static lean_object* l_UInt64_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12031____lambda__1___closed__2; LEAN_EXPORT lean_object* l_UInt16_reduceBNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9191____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__438; +static lean_object* l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13788____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__352; LEAN_EXPORT lean_object* l_UInt64_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12031____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_UInt8_reduceOfNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8998____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__231; uint64_t lean_uint64_of_nat(lean_object*); +lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceGT_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9998_(lean_object*); static lean_object* l___regBuiltin_UInt16_reduceGT_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9996____closed__1; uint8_t lean_uint16_dec_lt(uint16_t, uint16_t); @@ -218,6 +221,7 @@ static lean_object* l___regBuiltin_UInt32_reduceEq_declare__1____x40_Lean_Meta_T LEAN_EXPORT lean_object* l_UInt8_reduceOfNatCore___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_UInt32_reduceNe_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10611__11530____closed__3; static lean_object* l_UInt8_reduceToNat___closed__1; +static lean_object* l_USize_fromExpr___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceEq_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771__8652_(lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceMul_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9765_(lean_object*); static lean_object* l___regBuiltin_UInt8_reduceAdd_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8305____closed__2; @@ -227,6 +231,7 @@ static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt____ LEAN_EXPORT lean_object* l_UInt32_reduceLT___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceLT_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9920_(lean_object*); static lean_object* l___regBuiltin_UInt32_reduceNe_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10611__11530____closed__7; +uint8_t l_Lean_Expr_isApp(lean_object*); static lean_object* l___regBuiltin_UInt16_reduceMul_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9763____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__444; static lean_object* l___regBuiltin_UInt8_reduceMul_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8343____closed__5; @@ -339,6 +344,7 @@ static lean_object* l___regBuiltin_UInt8_reduceNe_declare__1____x40_Lean_Meta_Ta static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__361; static lean_object* l___regBuiltin_UInt16_reduceBNe_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9191__10187____closed__11; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__191; +static lean_object* l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__1; LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceEq_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10611__11492_(lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_UInt64_isValue_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12031__13446_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__57; @@ -376,6 +382,7 @@ static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt____ static lean_object* l___regBuiltin_UInt16_reduceSub_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9801____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__348; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__339; +LEAN_EXPORT lean_object* l_USize_reduceToNat___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_uint8_add(uint8_t, uint8_t); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__327; static lean_object* l___regBuiltin_UInt32_reduceNe_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10611__11530____closed__12; @@ -385,6 +392,7 @@ lean_object* l_Lean_Meta_Simp_evalPropStep(lean_object*, uint8_t, lean_object*, static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__69; static lean_object* l___regBuiltin_UInt64_reduceBNe_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12031__13027____closed__3; static lean_object* l___regBuiltin_UInt32_reduceOfNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11836____closed__3; +static lean_object* l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__3; static lean_object* l___regBuiltin_UInt64_reduceLT_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12758____closed__1; LEAN_EXPORT lean_object* l_UInt64_reduceMul(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_UInt16_reduceBEq_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9191__10149____closed__13; @@ -416,6 +424,7 @@ uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); static lean_object* l___regBuiltin_UInt8_reduceEq_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771__8652____closed__20; LEAN_EXPORT lean_object* l_UInt8_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBEq_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12031__12991_(lean_object*); +lean_object* l_Lean_Expr_cleanupAnnotations(lean_object*); static lean_object* l___regBuiltin_UInt64_reduceGE_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12875____closed__1; LEAN_EXPORT lean_object* l_UInt16_reduceMod(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_UInt64_reduceBNe_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12031__13027____closed__6; @@ -435,6 +444,7 @@ static lean_object* l___regBuiltin_UInt8_isValue_declare__1____x40_Lean_Meta_Tac static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__173; LEAN_EXPORT lean_object* l_UInt64_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12031____boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__190; +static lean_object* l_USize_fromExpr___closed__2; LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceGE_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12877_(lean_object*); static lean_object* l___regBuiltin_UInt16_reduceSub_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9803____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__487; @@ -449,6 +459,7 @@ LEAN_EXPORT lean_object* l_UInt32_reduceBEq____x40_Lean_Meta_Tactic_Simp_Builtin static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__473; LEAN_EXPORT lean_object* l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9191____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_UInt32_reduceLT___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_USize_reduceToNat___closed__3; static lean_object* l_commandDeclare__uint__simprocs_____closed__1; static lean_object* l___regBuiltin_UInt64_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13372____closed__3; LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceMod_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8459_(lean_object*); @@ -468,6 +479,7 @@ LEAN_EXPORT lean_object* l_UInt64_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinS static lean_object* l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10611____lambda__1___closed__3; LEAN_EXPORT lean_object* l_UInt8_reduceEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_UInt64_reduceBNe_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12031__13027____closed__8; +static lean_object* l_USize_reduceToNat___closed__1; LEAN_EXPORT lean_object* l_UInt64_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12031____boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_UInt8_reduceOfNat___closed__1; lean_object* l_Lean_Level_ofNat(lean_object*); @@ -529,6 +541,7 @@ LEAN_EXPORT lean_object* l_UInt8_reduceLT___boxed(lean_object*, lean_object*, le static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__463; LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceMod_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8461_(lean_object*); lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_USize_reduceToNat___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_UInt16_reduceGT___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_UInt16_reduceEq_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9191__10072____closed__11; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__407; @@ -546,6 +559,7 @@ LEAN_EXPORT lean_object* l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinS LEAN_EXPORT lean_object* l_UInt32_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10611____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceGE_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8617_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__64; +size_t lean_usize_of_nat(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__13; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__131; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__241; @@ -656,6 +670,7 @@ LEAN_EXPORT lean_object* l_UInt64_reduceOfNatCore___boxed(lean_object*, lean_obj static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__324; static lean_object* l___regBuiltin_UInt8_reduceNe_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771__8690____closed__2; LEAN_EXPORT lean_object* l_UInt8_reduceLE___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__5; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__118; LEAN_EXPORT lean_object* l_UInt8_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_UInt16_isValue_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9191__10606____closed__9; @@ -719,6 +734,7 @@ LEAN_EXPORT lean_object* l_UInt32_reduceOfNatCore___lambda__1(lean_object*, lean static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__437; LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceBEq_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9191__10153_(lean_object*); static lean_object* l___regBuiltin_UInt8_reduceBEq_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771__8729____closed__3; +lean_object* l_Lean_Expr_appArg(lean_object*, lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__439; LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceBNe_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12031__13029_(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__242; @@ -769,6 +785,7 @@ LEAN_EXPORT lean_object* l_UInt64_reduceOfNat___lambda__1(lean_object*, lean_obj LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceAdd_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11145_(lean_object*); static lean_object* l___regBuiltin_UInt8_reduceBNe_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771__8767____closed__6; LEAN_EXPORT lean_object* l_UInt8_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_mkDecideProof(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_UInt16_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9191____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__214; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__349; @@ -779,6 +796,7 @@ static lean_object* l___regBuiltin_UInt64_reduceLE_declare__1____x40_Lean_Meta_T static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__265; static lean_object* l___regBuiltin_UInt8_reduceOfNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8996____closed__3; static lean_object* l___regBuiltin_UInt64_reduceLE_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12795____closed__4; +lean_object* l_Lean_Expr_appFnCleanup(lean_object*, lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__284; static lean_object* l___regBuiltin_UInt8_isValue_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771__9186____closed__10; LEAN_EXPORT lean_object* l_UInt8_reduceSub___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -806,6 +824,7 @@ static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt____ static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__263; LEAN_EXPORT lean_object* l_UInt32_reduceLE___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_UInt64_reduceMul_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12603____closed__1; +static lean_object* l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__2; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__157; LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceMod_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11297_(lean_object*); static lean_object* l___regBuiltin_UInt8_reduceDiv_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8419____closed__5; @@ -837,7 +856,9 @@ static lean_object* l_UInt32_fromExpr___closed__1; static lean_object* l___regBuiltin_UInt8_reduceBEq_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771__8729____closed__7; static lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11722____closed__1; static lean_object* l___regBuiltin_UInt64_reduceBNe_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12031__13027____closed__7; +static lean_object* l_USize_reduceToNat___lambda__1___closed__3; static lean_object* l___regBuiltin_UInt8_reduceBEq_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771__8729____closed__5; +LEAN_EXPORT lean_object* l_USize_reduceToNat___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_UInt16_reduceGT_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9994____closed__2; LEAN_EXPORT lean_object* l_UInt64_reduceDiv(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_UInt64_reduceGE___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1043,6 +1064,7 @@ static lean_object* l___regBuiltin_UInt8_reduceOfNatCore_declare__1____x40_Lean_ static lean_object* l___regBuiltin_UInt64_reduceBEq_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12031__12989____closed__10; static lean_object* l___regBuiltin_UInt16_reduceEq_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9191__10072____closed__5; uint64_t lean_uint64_sub(uint64_t, uint64_t); +LEAN_EXPORT lean_object* l_USize_reduceToNat___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_UInt64_reduceSub_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12641____closed__4; static lean_object* l___regBuiltin_UInt64_reduceEq_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12031__12912____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__5; @@ -1055,6 +1077,7 @@ static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt____ static lean_object* l___regBuiltin_UInt64_isValue_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12031__13446____closed__1; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__134; static lean_object* l___regBuiltin_UInt32_reduceMul_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11183____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13790_(lean_object*); static lean_object* l___regBuiltin_UInt32_reduceLE_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11375____closed__4; static lean_object* l___regBuiltin_UInt8_reduceMul_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8343____closed__3; static lean_object* l___regBuiltin_UInt32_isValue_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10611__12026____closed__7; @@ -1137,6 +1160,7 @@ static lean_object* l___regBuiltin_UInt8_reduceNe_declare__1____x40_Lean_Meta_Ta LEAN_EXPORT lean_object* l_UInt32_reduceAdd(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__279; LEAN_EXPORT lean_object* l_UInt64_reduceNe____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12031_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_USize_reduceToNat___lambda__1___closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__156; LEAN_EXPORT lean_object* l___regBuiltin_UInt16_isValue_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9191__10608_(lean_object*); static lean_object* l___regBuiltin_UInt16_reduceEq_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9191__10072____closed__7; @@ -1185,6 +1209,7 @@ static lean_object* l___regBuiltin_UInt8_reduceSub_declare__1____x40_Lean_Meta_T LEAN_EXPORT lean_object* l_UInt8_reduceGE___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_UInt8_reduceLE___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_UInt16_reduceOfNatCore_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10302____closed__5; +lean_object* l_Lean_Meta_mkLT(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_UInt16_reduceLE_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9957____closed__1; static lean_object* l___regBuiltin_UInt8_reduceLT_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8496____closed__3; static lean_object* l___regBuiltin_UInt32_reduceBEq_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10611__11569____closed__13; @@ -1229,12 +1254,14 @@ static lean_object* l___regBuiltin_UInt8_reduceNe_declare__1____x40_Lean_Meta_Ta uint16_t lean_uint16_add(uint16_t, uint16_t); LEAN_EXPORT lean_object* l_UInt8_reduceMod___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_UInt64_reduceDiv_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12679____closed__4; +static lean_object* l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__4; static lean_object* l___regBuiltin_UInt16_reduceAdd_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9725____closed__8; LEAN_EXPORT lean_object* l_UInt32_reduceToNat___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_UInt16_reduceBEq_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9191__10149____closed__1; static lean_object* l___regBuiltin_UInt32_reduceLT_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11336____closed__4; LEAN_EXPORT lean_object* l_UInt64_reduceMul___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_UInt8_isValue_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771__9188_(lean_object*); +uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* l___regBuiltin_UInt8_reduceBNe_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771__8767____closed__5; static lean_object* l___regBuiltin_UInt32_isValue_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10611__12026____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__16; @@ -1244,6 +1271,7 @@ static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt____ static lean_object* l___regBuiltin_UInt64_reduceMod_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12717____closed__1; lean_object* l_Lean_mkRawNatLit(lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__323; +LEAN_EXPORT lean_object* l_USize_reduceToNat___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_uint32_dec_eq(uint32_t, uint32_t); static lean_object* l___regBuiltin_UInt8_reduceBEq_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771__8729____closed__9; static lean_object* l___regBuiltin_UInt64_reduceEq_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12031__12912____closed__2; @@ -1305,6 +1333,7 @@ LEAN_EXPORT lean_object* l_UInt8_reduceGT___lambda__1___boxed(lean_object*, lean LEAN_EXPORT lean_object* l_UInt16_reduceMod___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_UInt8_reduceToNat(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_UInt64_fromExpr___closed__2; +uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__10; LEAN_EXPORT lean_object* l_UInt8_reduceMod(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_UInt16_reduceBoolPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9191_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1332,6 +1361,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceBEq_declare__1____x40_Lean_ static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__213; static lean_object* l___regBuiltin_UInt32_isValue_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10611__12026____closed__3; LEAN_EXPORT lean_object* l_UInt16_reduceSub___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_USize_fromExpr___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_UInt32_reduceToNat___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceMul_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12607_(lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_UInt64_reduceOfNatCore_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13142_(lean_object*); @@ -1389,6 +1419,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceOfNatCore_declare__1____x40 static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__170; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__223; LEAN_EXPORT lean_object* l_UInt8_reduceMul(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_instantiateMVarsIfMVarApp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_UInt32_reduceOfNatCore___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_UInt16_reduceMod___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceGE_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11457_(lean_object*); @@ -1399,8 +1430,10 @@ static lean_object* l___regBuiltin_UInt32_reduceBEq_declare__1____x40_Lean_Meta_ static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__172; LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceEq_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9191__10076_(lean_object*); LEAN_EXPORT lean_object* l_UInt16_reduceMod___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_USize_reduceToNat(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_UInt8_isValue____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_UInt16_reduceMul_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9763_(lean_object*); +static lean_object* l_USize_reduceToNat___lambda__1___closed__2; static lean_object* l___regBuiltin_UInt8_reduceOfNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8996____closed__5; static lean_object* l___regBuiltin_UInt16_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10532____closed__5; static lean_object* l_UInt8_reduceBin____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771____lambda__1___closed__7; @@ -1454,6 +1487,7 @@ static lean_object* l___regBuiltin_UInt32_reduceBNe_declare__1____x40_Lean_Meta_ static lean_object* l___regBuiltin_UInt32_reduceAdd_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11145____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__75; static lean_object* l___regBuiltin_UInt32_reduceBNe_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_10611__11607____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786_(lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_UInt8_reduceAdd_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8307_(lean_object*); lean_object* lean_uint8_to_nat(uint8_t); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__147; @@ -1641,11 +1675,13 @@ static lean_object* l___regBuiltin_UInt8_reduceGE_declare__1____x40_Lean_Meta_Ta static lean_object* l___regBuiltin_UInt32_reduceDiv_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11259____closed__3; static lean_object* l___regBuiltin_UInt8_reduceBNe_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771__8767____closed__9; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__8; +LEAN_EXPORT lean_object* l_USize_reduceToNat___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__336; LEAN_EXPORT lean_object* l___regBuiltin_UInt32_reduceLE_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_11379_(lean_object*); static lean_object* l___regBuiltin_UInt64_isValue_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12031__13446____closed__4; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__431; static lean_object* l___regBuiltin_UInt8_isValue_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771__9188____closed__1; +LEAN_EXPORT lean_object* l_USize_fromExpr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_UInt64_reduceEq_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12031__12912____closed__9; static lean_object* l___regBuiltin_UInt16_isValue_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9191__10606____closed__4; LEAN_EXPORT lean_object* l_UInt64_reduceToNat___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1700,6 +1736,7 @@ static lean_object* l___regBuiltin_UInt32_isValue_declare__1____x40_Lean_Meta_Ta static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__41; LEAN_EXPORT lean_object* l_UInt16_reduceLE___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_UInt64_reduceBEq_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12031__12989____closed__11; +static lean_object* l_USize_reduceToNat___closed__2; static lean_object* l___regBuiltin_UInt64_reduceLT_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12756____closed__3; static lean_object* l___regBuiltin_UInt8_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9112____closed__1; LEAN_EXPORT lean_object* l_UInt8_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1730,6 +1767,7 @@ LEAN_EXPORT lean_object* l_UInt8_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinS static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__177; static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__70; LEAN_EXPORT lean_object* l_UInt16_reduceBEq____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_9191____boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_USize_reduceToNat___lambda__1___closed__1; LEAN_EXPORT lean_object* l_UInt64_reduceToNat___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__225; LEAN_EXPORT lean_object* l_UInt16_reduceLT___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -37861,6 +37899,700 @@ x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); return x_6; } } +static lean_object* _init_l_USize_fromExpr___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("USize", 5, 5); +return x_1; +} +} +static lean_object* _init_l_USize_fromExpr___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_USize_fromExpr___closed__1; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_USize_fromExpr(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; +x_10 = l_USize_fromExpr___closed__2; +x_11 = l_Lean_Meta_getOfNatValue_x3f(x_1, x_10, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +if (lean_obj_tag(x_12) == 0) +{ +uint8_t x_13; +x_13 = !lean_is_exclusive(x_11); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_11, 0); +lean_dec(x_14); +x_15 = lean_box(0); +lean_ctor_set(x_11, 0, x_15); +return x_11; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_11, 1); +lean_inc(x_16); +lean_dec(x_11); +x_17 = lean_box(0); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_17); +lean_ctor_set(x_18, 1, x_16); +return x_18; +} +} +else +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_12); +if (x_19 == 0) +{ +uint8_t x_20; +x_20 = !lean_is_exclusive(x_11); +if (x_20 == 0) +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; size_t x_24; lean_object* x_25; +x_21 = lean_ctor_get(x_12, 0); +x_22 = lean_ctor_get(x_11, 0); +lean_dec(x_22); +x_23 = lean_ctor_get(x_21, 0); +lean_inc(x_23); +lean_dec(x_21); +x_24 = lean_usize_of_nat(x_23); +lean_dec(x_23); +x_25 = lean_box_usize(x_24); +lean_ctor_set(x_12, 0, x_25); +return x_11; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; size_t x_29; lean_object* x_30; lean_object* x_31; +x_26 = lean_ctor_get(x_12, 0); +x_27 = lean_ctor_get(x_11, 1); +lean_inc(x_27); +lean_dec(x_11); +x_28 = lean_ctor_get(x_26, 0); +lean_inc(x_28); +lean_dec(x_26); +x_29 = lean_usize_of_nat(x_28); +lean_dec(x_28); +x_30 = lean_box_usize(x_29); +lean_ctor_set(x_12, 0, x_30); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_12); +lean_ctor_set(x_31, 1, x_27); +return x_31; +} +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; size_t x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_32 = lean_ctor_get(x_12, 0); +lean_inc(x_32); +lean_dec(x_12); +x_33 = lean_ctor_get(x_11, 1); +lean_inc(x_33); +if (lean_is_exclusive(x_11)) { + lean_ctor_release(x_11, 0); + lean_ctor_release(x_11, 1); + x_34 = x_11; +} else { + lean_dec_ref(x_11); + x_34 = lean_box(0); +} +x_35 = lean_ctor_get(x_32, 0); +lean_inc(x_35); +lean_dec(x_32); +x_36 = lean_usize_of_nat(x_35); +lean_dec(x_35); +x_37 = lean_box_usize(x_36); +x_38 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_38, 0, x_37); +if (lean_is_scalar(x_34)) { + x_39 = lean_alloc_ctor(0, 2, 0); +} else { + x_39 = x_34; +} +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_39, 1, x_33); +return x_39; +} +} +} +else +{ +uint8_t x_40; +x_40 = !lean_is_exclusive(x_11); +if (x_40 == 0) +{ +return x_11; +} +else +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_11, 0); +x_42 = lean_ctor_get(x_11, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_11); +x_43 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; +} +} +} +} +LEAN_EXPORT lean_object* l_USize_fromExpr___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_USize_fromExpr(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_10; +} +} +static lean_object* _init_l_USize_reduceToNat___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_cstr_to_nat("4294967296"); +x_2 = l_Lean_mkNatLit(x_1); +return x_2; +} +} +static lean_object* _init_l_USize_reduceToNat___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("toNat_ofNat_of_lt_32", 20, 20); +return x_1; +} +} +static lean_object* _init_l_USize_reduceToNat___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_USize_fromExpr___closed__1; +x_2 = l_USize_reduceToNat___lambda__1___closed__2; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_USize_reduceToNat___lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_USize_reduceToNat___lambda__1___closed__3; +x_3 = l_Lean_Expr_const___override(x_2, x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_USize_reduceToNat___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = l_Lean_mkNatLit(x_1); +x_12 = l_USize_reduceToNat___lambda__1___closed__1; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_11); +x_13 = l_Lean_Meta_mkLT(x_11, x_12, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_13, 1); +lean_inc(x_15); +lean_dec(x_13); +x_16 = l_Lean_Meta_mkDecideProof(x_14, x_6, x_7, x_8, x_9, x_15); +if (lean_obj_tag(x_16) == 0) +{ +uint8_t x_17; +x_17 = !lean_is_exclusive(x_16); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; +x_18 = lean_ctor_get(x_16, 0); +x_19 = l_USize_reduceToNat___lambda__1___closed__4; +lean_inc(x_11); +x_20 = l_Lean_mkAppB(x_19, x_11, x_18); +x_21 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_21, 0, x_20); +x_22 = 1; +x_23 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_23, 0, x_11); +lean_ctor_set(x_23, 1, x_21); +lean_ctor_set_uint8(x_23, sizeof(void*)*2, x_22); +x_24 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_16, 0, x_24); +return x_16; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_25 = lean_ctor_get(x_16, 0); +x_26 = lean_ctor_get(x_16, 1); +lean_inc(x_26); +lean_inc(x_25); +lean_dec(x_16); +x_27 = l_USize_reduceToNat___lambda__1___closed__4; +lean_inc(x_11); +x_28 = l_Lean_mkAppB(x_27, x_11, x_25); +x_29 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_29, 0, x_28); +x_30 = 1; +x_31 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_31, 0, x_11); +lean_ctor_set(x_31, 1, x_29); +lean_ctor_set_uint8(x_31, sizeof(void*)*2, x_30); +x_32 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_32, 0, x_31); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_33, 1, x_26); +return x_33; +} +} +else +{ +uint8_t x_34; +lean_dec(x_11); +x_34 = !lean_is_exclusive(x_16); +if (x_34 == 0) +{ +return x_16; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_16, 0); +x_36 = lean_ctor_get(x_16, 1); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_16); +x_37 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_37, 0, x_35); +lean_ctor_set(x_37, 1, x_36); +return x_37; +} +} +} +else +{ +uint8_t x_38; +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_38 = !lean_is_exclusive(x_13); +if (x_38 == 0) +{ +return x_13; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_13, 0); +x_40 = lean_ctor_get(x_13, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_13); +x_41 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +return x_41; +} +} +} +} +LEAN_EXPORT lean_object* l_USize_reduceToNat___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; +x_10 = l_USize_fromExpr___closed__2; +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_11 = l_Lean_Meta_getOfNatValue_x3f(x_1, x_10, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +if (lean_obj_tag(x_12) == 0) +{ +uint8_t x_13; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_13 = !lean_is_exclusive(x_11); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_11, 0); +lean_dec(x_14); +x_15 = l_UInt8_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771____lambda__1___closed__1; +lean_ctor_set(x_11, 0, x_15); +return x_11; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_11, 1); +lean_inc(x_16); +lean_dec(x_11); +x_17 = l_UInt8_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771____lambda__1___closed__1; +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_17); +lean_ctor_set(x_18, 1, x_16); +return x_18; +} +} +else +{ +lean_object* x_19; uint8_t x_20; +x_19 = lean_ctor_get(x_12, 0); +lean_inc(x_19); +lean_dec(x_12); +x_20 = !lean_is_exclusive(x_11); +if (x_20 == 0) +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; +x_21 = lean_ctor_get(x_11, 1); +x_22 = lean_ctor_get(x_11, 0); +lean_dec(x_22); +x_23 = lean_ctor_get(x_19, 0); +lean_inc(x_23); +lean_dec(x_19); +x_24 = lean_cstr_to_nat("4294967296"); +x_25 = lean_nat_dec_lt(x_23, x_24); +if (x_25 == 0) +{ +lean_object* x_26; +lean_dec(x_23); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_26 = l_UInt8_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771____lambda__1___closed__1; +lean_ctor_set(x_11, 0, x_26); +return x_11; +} +else +{ +lean_object* x_27; lean_object* x_28; +lean_free_object(x_11); +x_27 = lean_box(0); +x_28 = l_USize_reduceToNat___lambda__1(x_23, x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_21); +return x_28; +} +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; +x_29 = lean_ctor_get(x_11, 1); +lean_inc(x_29); +lean_dec(x_11); +x_30 = lean_ctor_get(x_19, 0); +lean_inc(x_30); +lean_dec(x_19); +x_31 = lean_cstr_to_nat("4294967296"); +x_32 = lean_nat_dec_lt(x_30, x_31); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; +lean_dec(x_30); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_33 = l_UInt8_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771____lambda__1___closed__1; +x_34 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_34, 1, x_29); +return x_34; +} +else +{ +lean_object* x_35; lean_object* x_36; +x_35 = lean_box(0); +x_36 = l_USize_reduceToNat___lambda__1(x_30, x_35, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_29); +return x_36; +} +} +} +} +else +{ +uint8_t x_37; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_37 = !lean_is_exclusive(x_11); +if (x_37 == 0) +{ +return x_11; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_11, 0); +x_39 = lean_ctor_get(x_11, 1); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_11); +x_40 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_39); +return x_40; +} +} +} +} +LEAN_EXPORT lean_object* l_USize_reduceToNat___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; +x_10 = l_UInt8_reduceBinPred____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_7771____lambda__1___closed__1; +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_9); +return x_11; +} +} +static lean_object* _init_l_USize_reduceToNat___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_USize_reduceToNat___lambda__2___boxed), 9, 0); +return x_1; +} +} +static lean_object* _init_l_USize_reduceToNat___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_USize_reduceToNat___lambda__3___boxed), 9, 0); +return x_1; +} +} +static lean_object* _init_l_USize_reduceToNat___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_USize_fromExpr___closed__1; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__5; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_USize_reduceToNat(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_10 = l_Lean_Meta_instantiateMVarsIfMVarApp(x_1, x_5, x_6, x_7, x_8, x_9); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec(x_10); +x_13 = l_USize_reduceToNat___closed__1; +x_14 = l_USize_reduceToNat___closed__2; +x_15 = l_Lean_Expr_cleanupAnnotations(x_11); +x_16 = l_Lean_Expr_isApp(x_15); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; +lean_dec(x_15); +x_17 = lean_box(0); +x_18 = lean_apply_9(x_14, x_17, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_12); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; +x_19 = l_Lean_Expr_appArg(x_15, lean_box(0)); +x_20 = l_Lean_Expr_appFnCleanup(x_15, lean_box(0)); +x_21 = l_USize_reduceToNat___closed__3; +x_22 = l_Lean_Expr_isConstOf(x_20, x_21); +lean_dec(x_20); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; +lean_dec(x_19); +x_23 = lean_box(0); +x_24 = lean_apply_9(x_14, x_23, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_12); +return x_24; +} +else +{ +lean_object* x_25; +x_25 = lean_apply_9(x_13, x_19, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_12); +return x_25; +} +} +} +} +LEAN_EXPORT lean_object* l_USize_reduceToNat___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l_USize_reduceToNat___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_11; +} +} +LEAN_EXPORT lean_object* l_USize_reduceToNat___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_USize_reduceToNat___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_10; +} +} +LEAN_EXPORT lean_object* l_USize_reduceToNat___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_USize_reduceToNat___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_10; +} +} +static lean_object* _init_l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_USize_fromExpr___closed__1; +x_2 = l___aux__Lean__Meta__Tactic__Simp__BuiltinSimprocs__UInt______macroRules__commandDeclare__uint__simprocs____1___closed__476; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_USize_reduceToNat___closed__3; +x_2 = lean_unsigned_to_nat(1u); +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__2; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8305____closed__4; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__3; +x_2 = lean_array_mk(x_1); +return x_2; +} +} +static lean_object* _init_l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_USize_reduceToNat), 9, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__1; +x_3 = l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__4; +x_4 = l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__5; +x_5 = l_Lean_Meta_Simp_registerBuiltinSimproc(x_2, x_3, x_4, x_1); +return x_5; +} +} +static lean_object* _init_l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13788____closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__5; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13788_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8307____closed__2; +x_3 = l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__1; +x_4 = 1; +x_5 = l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13788____closed__1; +x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); +return x_6; +} +} +LEAN_EXPORT lean_object* l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13790_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; +x_2 = l___regBuiltin_UInt8_reduceAdd_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_8309____closed__1; +x_3 = l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__1; +x_4 = 1; +x_5 = l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13788____closed__1; +x_6 = l_Lean_Meta_Simp_addSimprocBuiltinAttrCore(x_2, x_3, x_4, x_5, x_1); +return x_6; +} +} lean_object* initialize_Lean_Meta_LitValues(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Meta_Tactic_Simp_BuiltinSimprocs_Nat(uint8_t builtin, lean_object*); static bool _G_initialized = false; @@ -40706,6 +41438,45 @@ lean_mark_persistent(l___regBuiltin_UInt64_isValue_declare__1____x40_Lean_Meta_T if (builtin) {res = l___regBuiltin_UInt64_isValue_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_12031__13448_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +}l_USize_fromExpr___closed__1 = _init_l_USize_fromExpr___closed__1(); +lean_mark_persistent(l_USize_fromExpr___closed__1); +l_USize_fromExpr___closed__2 = _init_l_USize_fromExpr___closed__2(); +lean_mark_persistent(l_USize_fromExpr___closed__2); +l_USize_reduceToNat___lambda__1___closed__1 = _init_l_USize_reduceToNat___lambda__1___closed__1(); +lean_mark_persistent(l_USize_reduceToNat___lambda__1___closed__1); +l_USize_reduceToNat___lambda__1___closed__2 = _init_l_USize_reduceToNat___lambda__1___closed__2(); +lean_mark_persistent(l_USize_reduceToNat___lambda__1___closed__2); +l_USize_reduceToNat___lambda__1___closed__3 = _init_l_USize_reduceToNat___lambda__1___closed__3(); +lean_mark_persistent(l_USize_reduceToNat___lambda__1___closed__3); +l_USize_reduceToNat___lambda__1___closed__4 = _init_l_USize_reduceToNat___lambda__1___closed__4(); +lean_mark_persistent(l_USize_reduceToNat___lambda__1___closed__4); +l_USize_reduceToNat___closed__1 = _init_l_USize_reduceToNat___closed__1(); +lean_mark_persistent(l_USize_reduceToNat___closed__1); +l_USize_reduceToNat___closed__2 = _init_l_USize_reduceToNat___closed__2(); +lean_mark_persistent(l_USize_reduceToNat___closed__2); +l_USize_reduceToNat___closed__3 = _init_l_USize_reduceToNat___closed__3(); +lean_mark_persistent(l_USize_reduceToNat___closed__3); +l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__1 = _init_l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__1(); +lean_mark_persistent(l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__1); +l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__2 = _init_l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__2(); +lean_mark_persistent(l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__2); +l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__3 = _init_l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__3(); +lean_mark_persistent(l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__3); +l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__4 = _init_l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__4(); +lean_mark_persistent(l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__4); +l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__5 = _init_l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__5(); +lean_mark_persistent(l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786____closed__5); +if (builtin) {res = l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13786_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13788____closed__1 = _init_l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13788____closed__1(); +lean_mark_persistent(l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13788____closed__1); +if (builtin) {res = l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13788_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +}if (builtin) {res = l___regBuiltin_USize_reduceToNat_declare__1____x40_Lean_Meta_Tactic_Simp_BuiltinSimprocs_UInt___hyg_13790_(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 diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c index bdc40c119e..4efb9fd54d 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c @@ -11927,7 +11927,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Meta_Simp_simpProj___lambda__1___closed__1; x_2 = l_Lean_Meta_Simp_simpProj___lambda__1___closed__2; -x_3 = lean_unsigned_to_nat(1735u); +x_3 = lean_unsigned_to_nat(1739u); x_4 = lean_unsigned_to_nat(18u); x_5 = l_Lean_Meta_Simp_simpProj___lambda__1___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -13813,7 +13813,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Meta_Simp_simpProj___lambda__1___closed__1; x_2 = l_Lean_Meta_Simp_simpArrow___lambda__1___closed__1; -x_3 = lean_unsigned_to_nat(1761u); +x_3 = lean_unsigned_to_nat(1765u); x_4 = lean_unsigned_to_nat(24u); x_5 = l_Lean_Meta_Simp_simpArrow___lambda__1___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c index 40885b4f88..24b99736fe 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c @@ -35,7 +35,6 @@ LEAN_EXPORT lean_object* l_Lean_MVarId_isAssignable___at___private_Lean_Meta_Tac LEAN_EXPORT lean_object* l_Lean_Meta_Simp_simpGround___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Simp_synthesizeArgs___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Simp_simpUsingDecide___lambda__1___closed__13; -extern lean_object* l_Lean_profiler; LEAN_EXPORT lean_object* l_Lean_Meta_getMatcherInfo_x3f___at_Lean_Meta_Simp_simpMatch___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Simp_discharge_x3f_x27___closed__6; LEAN_EXPORT lean_object* l_Lean_Meta_Simp_dischargeRfl___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -312,7 +311,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Simp_postDefault___lambda__2(lean_object*, lean_object* lean_st_ref_get(lean_object*, lean_object*); static lean_object* l_Lean_Meta_Simp_simpUsingDecide___lambda__1___closed__5; LEAN_EXPORT lean_object* l_Lean_Meta_withNewMCtxDepth___at_Lean_Meta_Simp_tryTheoremWithExtraArgs_x3f___spec__1(lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Simp_postDefault___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_ppSimpTheorem___at___private_Lean_Meta_Tactic_Simp_Rewrite_0__Lean_Meta_Simp_tryTheoremCore_go___spec__1___closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_Simp_dischargeDefault_x3f___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -326,7 +325,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Simp_rewrite_x3f_diagnoseWhenNoIndex(lean_o lean_object* l_ReaderT_instApplicativeOfMonad___rarg(lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_Simp_DischargeResult_ofNat(lean_object*); static lean_object* l___private_Lean_Meta_Tactic_Simp_Rewrite_0__Lean_Meta_Simp_tryTheoremCore___closed__2; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Simp_seval___closed__7; static lean_object* l_Lean_getConstInfo___at_Lean_Meta_Simp_discharge_x3f_x27___spec__3___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Simp_Rewrite_0__Lean_Meta_Simp_dischargeUsingAssumption_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -406,7 +405,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Simp_simpGround___lambda__3(lean_object*, l LEAN_EXPORT lean_object* l_Lean_PersistentArray_findSomeRevMAux___at___private_Lean_Meta_Tactic_Simp_Rewrite_0__Lean_Meta_Simp_dischargeUsingAssumption_x3f___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_isAssignable___at___private_Lean_Meta_Tactic_Simp_Rewrite_0__Lean_Meta_Simp_tryTheoremCore_go___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Simp_simpUsingDecide___lambda__1___closed__10; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Simp_mkDefaultMethods___closed__3; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Tactic_Simp_Rewrite_0__Lean_Meta_Simp_tryTheoremCore_go___lambda__7___closed__1; @@ -441,7 +440,7 @@ static lean_object* l_Lean_Meta_Simp_postSEval___closed__2; LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Meta_Simp_simpMatchDiscrs_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); double l_Float_ofScientific(lean_object*, uint8_t, lean_object*); extern lean_object* l_Lean_crossEmoji; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Simp_rewrite_x3f_diagnoseWhenNoIndex_unsafe__1___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Meta_ppOrigin___at_Lean_Meta_Simp_discharge_x3f_x27___spec__1___closed__6; static lean_object* l_Lean_Meta_ppOrigin___at_Lean_Meta_Simp_discharge_x3f_x27___spec__1___closed__1; @@ -623,7 +622,6 @@ LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_Meta_Simp_discharge_x3 LEAN_EXPORT lean_object* l_Lean_Meta_Simp_mkMethods___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Simp_simpGround___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Simp_Rewrite_0__Lean_Meta_Simp_tryTheoremCore_go___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__2___closed__2; LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at_Lean_Meta_Simp_dischargeEqnThmHypothesis_x3f___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Meta_Simp_rewritePre___spec__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_Simp_mkMethods___boxed(lean_object*, lean_object*, lean_object*); @@ -2178,69 +2176,36 @@ x_3 = l_Float_ofScientific(x_1, x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__2___closed__2() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__2___closed__1; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_19); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_19); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); +x_21 = lean_box(0); +x_22 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +return x_22; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { -_start: +else { -double x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; -x_20 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_21 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_21, 0, x_1); -lean_ctor_set(x_21, 1, x_3); -lean_ctor_set_float(x_21, sizeof(void*)*2, x_20); -lean_ctor_set_float(x_21, sizeof(void*)*2 + 8, x_20); -lean_ctor_set_uint8(x_21, sizeof(void*)*2 + 16, x_2); -x_22 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__2___closed__2; -x_23 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_22); -if (x_23 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_24; lean_object* x_25; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_23, 0, x_1); +lean_ctor_set(x_23, 1, x_3); +lean_ctor_set_float(x_23, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__1(x_4, x_5, x_11, x_6, x_21, x_24, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +x_25 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__1(x_4, x_5, x_10, x_6, x_23, x_24, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); return x_25; } -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_21); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); -return x_28; -} -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -lean_dec(x_21); -x_29 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_29, 0, x_1); -lean_ctor_set(x_29, 1, x_3); -lean_ctor_set_float(x_29, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_29, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_29, sizeof(void*)*2 + 16, x_2); -x_30 = lean_box(0); -x_31 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__1(x_4, x_5, x_11, x_6, x_29, x_30, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); -return x_31; -} } } static lean_object* _init_l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3___closed__1() { @@ -2260,55 +2225,55 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { _start: { -lean_object* x_20; lean_object* x_21; -x_20 = lean_ctor_get(x_17, 5); -lean_inc(x_20); -lean_inc(x_18); +lean_object* x_19; lean_object* x_20; +x_19 = lean_ctor_get(x_16, 5); +lean_inc(x_19); lean_inc(x_17); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_21 = lean_apply_9(x_10, x_5, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); -if (lean_obj_tag(x_21) == 0) +x_20 = lean_apply_9(x_9, x_5, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +if (lean_obj_tag(x_20) == 0) { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_21, 0); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_20, 1); lean_inc(x_22); -x_23 = lean_ctor_get(x_21, 1); -lean_inc(x_23); -lean_dec(x_21); -x_24 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__2(x_1, x_2, x_3, x_4, x_20, x_5, x_6, x_7, x_8, x_9, x_22, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_23); -lean_dec(x_18); -lean_dec(x_16); +lean_dec(x_20); +x_23 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__2(x_1, x_2, x_3, x_4, x_19, x_5, x_6, x_7, x_8, x_21, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_22); +lean_dec(x_17); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_21, 1); -lean_inc(x_25); -lean_dec(x_21); -x_26 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3___closed__2; -x_27 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__2(x_1, x_2, x_3, x_4, x_20, x_5, x_6, x_7, x_8, x_9, x_26, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_25); -lean_dec(x_18); -lean_dec(x_16); +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_20, 1); +lean_inc(x_24); +lean_dec(x_20); +x_25 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3___closed__2; +x_26 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__2(x_1, x_2, x_3, x_4, x_19, x_5, x_6, x_7, x_8, x_25, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_24); +lean_dec(x_17); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_27; +return x_26; } } } @@ -2372,13 +2337,13 @@ x_20 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___la x_21 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_20); if (x_21 == 0) { -lean_object* x_22; lean_object* x_23; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; -x_118 = lean_io_mono_nanos_now(x_19); -x_119 = lean_ctor_get(x_118, 0); -lean_inc(x_119); -x_120 = lean_ctor_get(x_118, 1); -lean_inc(x_120); -lean_dec(x_118); +lean_object* x_22; lean_object* x_23; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; +x_126 = lean_io_mono_nanos_now(x_19); +x_127 = lean_ctor_get(x_126, 0); +lean_inc(x_127); +x_128 = lean_ctor_get(x_126, 1); +lean_inc(x_128); +lean_dec(x_126); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); @@ -2386,242 +2351,242 @@ lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_121 = lean_apply_8(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_120); -if (lean_obj_tag(x_121) == 0) +x_129 = lean_apply_8(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_128); +if (lean_obj_tag(x_129) == 0) { -uint8_t x_122; -x_122 = !lean_is_exclusive(x_121); -if (x_122 == 0) +uint8_t x_130; +x_130 = !lean_is_exclusive(x_129); +if (x_130 == 0) { -lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; uint8_t x_127; -x_123 = lean_ctor_get(x_121, 0); -x_124 = lean_ctor_get(x_121, 1); -x_125 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_125, 0, x_123); -x_126 = lean_io_mono_nanos_now(x_124); -x_127 = !lean_is_exclusive(x_126); -if (x_127 == 0) +lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; uint8_t x_135; +x_131 = lean_ctor_get(x_129, 0); +x_132 = lean_ctor_get(x_129, 1); +x_133 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_133, 0, x_131); +x_134 = lean_io_mono_nanos_now(x_132); +x_135 = !lean_is_exclusive(x_134); +if (x_135 == 0) { -lean_object* x_128; lean_object* x_129; uint8_t x_130; lean_object* x_131; double x_132; double x_133; double x_134; double x_135; double x_136; lean_object* x_137; lean_object* x_138; -x_128 = lean_ctor_get(x_126, 0); -x_129 = lean_ctor_get(x_126, 1); -x_130 = 0; -x_131 = lean_unsigned_to_nat(0u); -x_132 = l_Float_ofScientific(x_119, x_130, x_131); -lean_dec(x_119); -x_133 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; -x_134 = lean_float_div(x_132, x_133); -x_135 = l_Float_ofScientific(x_128, x_130, x_131); -lean_dec(x_128); -x_136 = lean_float_div(x_135, x_133); -x_137 = lean_box_float(x_134); -x_138 = lean_box_float(x_136); -lean_ctor_set(x_126, 1, x_138); -lean_ctor_set(x_126, 0, x_137); -lean_ctor_set(x_121, 1, x_126); -lean_ctor_set(x_121, 0, x_125); -x_22 = x_121; -x_23 = x_129; -goto block_117; +lean_object* x_136; lean_object* x_137; uint8_t x_138; lean_object* x_139; double x_140; double x_141; double x_142; double x_143; double x_144; lean_object* x_145; lean_object* x_146; +x_136 = lean_ctor_get(x_134, 0); +x_137 = lean_ctor_get(x_134, 1); +x_138 = 0; +x_139 = lean_unsigned_to_nat(0u); +x_140 = l_Float_ofScientific(x_127, x_138, x_139); +lean_dec(x_127); +x_141 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; +x_142 = lean_float_div(x_140, x_141); +x_143 = l_Float_ofScientific(x_136, x_138, x_139); +lean_dec(x_136); +x_144 = lean_float_div(x_143, x_141); +x_145 = lean_box_float(x_142); +x_146 = lean_box_float(x_144); +lean_ctor_set(x_134, 1, x_146); +lean_ctor_set(x_134, 0, x_145); +lean_ctor_set(x_129, 1, x_134); +lean_ctor_set(x_129, 0, x_133); +x_22 = x_129; +x_23 = x_137; +goto block_125; } else { -lean_object* x_139; lean_object* x_140; uint8_t x_141; lean_object* x_142; double x_143; double x_144; double x_145; double x_146; double x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; -x_139 = lean_ctor_get(x_126, 0); -x_140 = lean_ctor_get(x_126, 1); -lean_inc(x_140); -lean_inc(x_139); -lean_dec(x_126); -x_141 = 0; -x_142 = lean_unsigned_to_nat(0u); -x_143 = l_Float_ofScientific(x_119, x_141, x_142); -lean_dec(x_119); -x_144 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; -x_145 = lean_float_div(x_143, x_144); -x_146 = l_Float_ofScientific(x_139, x_141, x_142); -lean_dec(x_139); -x_147 = lean_float_div(x_146, x_144); -x_148 = lean_box_float(x_145); -x_149 = lean_box_float(x_147); -x_150 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_150, 0, x_148); -lean_ctor_set(x_150, 1, x_149); -lean_ctor_set(x_121, 1, x_150); -lean_ctor_set(x_121, 0, x_125); -x_22 = x_121; -x_23 = x_140; -goto block_117; +lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; +x_147 = lean_ctor_get(x_134, 0); +x_148 = lean_ctor_get(x_134, 1); +lean_inc(x_148); +lean_inc(x_147); +lean_dec(x_134); +x_149 = 0; +x_150 = lean_unsigned_to_nat(0u); +x_151 = l_Float_ofScientific(x_127, x_149, x_150); +lean_dec(x_127); +x_152 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; +x_153 = lean_float_div(x_151, x_152); +x_154 = l_Float_ofScientific(x_147, x_149, x_150); +lean_dec(x_147); +x_155 = lean_float_div(x_154, x_152); +x_156 = lean_box_float(x_153); +x_157 = lean_box_float(x_155); +x_158 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_158, 0, x_156); +lean_ctor_set(x_158, 1, x_157); +lean_ctor_set(x_129, 1, x_158); +lean_ctor_set(x_129, 0, x_133); +x_22 = x_129; +x_23 = x_148; +goto block_125; } } else { -lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; uint8_t x_158; lean_object* x_159; double x_160; double x_161; double x_162; double x_163; double x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; -x_151 = lean_ctor_get(x_121, 0); -x_152 = lean_ctor_get(x_121, 1); -lean_inc(x_152); -lean_inc(x_151); -lean_dec(x_121); -x_153 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_153, 0, x_151); -x_154 = lean_io_mono_nanos_now(x_152); -x_155 = lean_ctor_get(x_154, 0); -lean_inc(x_155); -x_156 = lean_ctor_get(x_154, 1); -lean_inc(x_156); -if (lean_is_exclusive(x_154)) { - lean_ctor_release(x_154, 0); - lean_ctor_release(x_154, 1); - x_157 = x_154; +lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; uint8_t x_166; lean_object* x_167; double x_168; double x_169; double x_170; double x_171; double x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; +x_159 = lean_ctor_get(x_129, 0); +x_160 = lean_ctor_get(x_129, 1); +lean_inc(x_160); +lean_inc(x_159); +lean_dec(x_129); +x_161 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_161, 0, x_159); +x_162 = lean_io_mono_nanos_now(x_160); +x_163 = lean_ctor_get(x_162, 0); +lean_inc(x_163); +x_164 = lean_ctor_get(x_162, 1); +lean_inc(x_164); +if (lean_is_exclusive(x_162)) { + lean_ctor_release(x_162, 0); + lean_ctor_release(x_162, 1); + x_165 = x_162; } else { - lean_dec_ref(x_154); - x_157 = lean_box(0); + lean_dec_ref(x_162); + x_165 = lean_box(0); } -x_158 = 0; -x_159 = lean_unsigned_to_nat(0u); -x_160 = l_Float_ofScientific(x_119, x_158, x_159); -lean_dec(x_119); -x_161 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; -x_162 = lean_float_div(x_160, x_161); -x_163 = l_Float_ofScientific(x_155, x_158, x_159); -lean_dec(x_155); -x_164 = lean_float_div(x_163, x_161); -x_165 = lean_box_float(x_162); -x_166 = lean_box_float(x_164); -if (lean_is_scalar(x_157)) { - x_167 = lean_alloc_ctor(0, 2, 0); +x_166 = 0; +x_167 = lean_unsigned_to_nat(0u); +x_168 = l_Float_ofScientific(x_127, x_166, x_167); +lean_dec(x_127); +x_169 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; +x_170 = lean_float_div(x_168, x_169); +x_171 = l_Float_ofScientific(x_163, x_166, x_167); +lean_dec(x_163); +x_172 = lean_float_div(x_171, x_169); +x_173 = lean_box_float(x_170); +x_174 = lean_box_float(x_172); +if (lean_is_scalar(x_165)) { + x_175 = lean_alloc_ctor(0, 2, 0); } else { - x_167 = x_157; + x_175 = x_165; } -lean_ctor_set(x_167, 0, x_165); -lean_ctor_set(x_167, 1, x_166); -x_168 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_168, 0, x_153); -lean_ctor_set(x_168, 1, x_167); -x_22 = x_168; -x_23 = x_156; -goto block_117; +lean_ctor_set(x_175, 0, x_173); +lean_ctor_set(x_175, 1, x_174); +x_176 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_176, 0, x_161); +lean_ctor_set(x_176, 1, x_175); +x_22 = x_176; +x_23 = x_164; +goto block_125; } } else { -uint8_t x_169; -x_169 = !lean_is_exclusive(x_121); -if (x_169 == 0) +uint8_t x_177; +x_177 = !lean_is_exclusive(x_129); +if (x_177 == 0) { -lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; uint8_t x_174; -x_170 = lean_ctor_get(x_121, 0); -x_171 = lean_ctor_get(x_121, 1); -x_172 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_172, 0, x_170); -x_173 = lean_io_mono_nanos_now(x_171); -x_174 = !lean_is_exclusive(x_173); -if (x_174 == 0) +lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; uint8_t x_182; +x_178 = lean_ctor_get(x_129, 0); +x_179 = lean_ctor_get(x_129, 1); +x_180 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_180, 0, x_178); +x_181 = lean_io_mono_nanos_now(x_179); +x_182 = !lean_is_exclusive(x_181); +if (x_182 == 0) { -lean_object* x_175; lean_object* x_176; uint8_t x_177; lean_object* x_178; double x_179; double x_180; double x_181; double x_182; double x_183; lean_object* x_184; lean_object* x_185; -x_175 = lean_ctor_get(x_173, 0); -x_176 = lean_ctor_get(x_173, 1); -x_177 = 0; -x_178 = lean_unsigned_to_nat(0u); -x_179 = l_Float_ofScientific(x_119, x_177, x_178); -lean_dec(x_119); -x_180 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; -x_181 = lean_float_div(x_179, x_180); -x_182 = l_Float_ofScientific(x_175, x_177, x_178); -lean_dec(x_175); -x_183 = lean_float_div(x_182, x_180); -x_184 = lean_box_float(x_181); -x_185 = lean_box_float(x_183); -lean_ctor_set(x_173, 1, x_185); -lean_ctor_set(x_173, 0, x_184); -lean_ctor_set_tag(x_121, 0); -lean_ctor_set(x_121, 1, x_173); -lean_ctor_set(x_121, 0, x_172); -x_22 = x_121; -x_23 = x_176; -goto block_117; +lean_object* x_183; lean_object* x_184; uint8_t x_185; lean_object* x_186; double x_187; double x_188; double x_189; double x_190; double x_191; lean_object* x_192; lean_object* x_193; +x_183 = lean_ctor_get(x_181, 0); +x_184 = lean_ctor_get(x_181, 1); +x_185 = 0; +x_186 = lean_unsigned_to_nat(0u); +x_187 = l_Float_ofScientific(x_127, x_185, x_186); +lean_dec(x_127); +x_188 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; +x_189 = lean_float_div(x_187, x_188); +x_190 = l_Float_ofScientific(x_183, x_185, x_186); +lean_dec(x_183); +x_191 = lean_float_div(x_190, x_188); +x_192 = lean_box_float(x_189); +x_193 = lean_box_float(x_191); +lean_ctor_set(x_181, 1, x_193); +lean_ctor_set(x_181, 0, x_192); +lean_ctor_set_tag(x_129, 0); +lean_ctor_set(x_129, 1, x_181); +lean_ctor_set(x_129, 0, x_180); +x_22 = x_129; +x_23 = x_184; +goto block_125; } else { -lean_object* x_186; lean_object* x_187; uint8_t x_188; lean_object* x_189; double x_190; double x_191; double x_192; double x_193; double x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; -x_186 = lean_ctor_get(x_173, 0); -x_187 = lean_ctor_get(x_173, 1); -lean_inc(x_187); -lean_inc(x_186); -lean_dec(x_173); -x_188 = 0; -x_189 = lean_unsigned_to_nat(0u); -x_190 = l_Float_ofScientific(x_119, x_188, x_189); -lean_dec(x_119); -x_191 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; -x_192 = lean_float_div(x_190, x_191); -x_193 = l_Float_ofScientific(x_186, x_188, x_189); -lean_dec(x_186); -x_194 = lean_float_div(x_193, x_191); -x_195 = lean_box_float(x_192); -x_196 = lean_box_float(x_194); -x_197 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_197, 0, x_195); -lean_ctor_set(x_197, 1, x_196); -lean_ctor_set_tag(x_121, 0); -lean_ctor_set(x_121, 1, x_197); -lean_ctor_set(x_121, 0, x_172); -x_22 = x_121; -x_23 = x_187; -goto block_117; +lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; +x_194 = lean_ctor_get(x_181, 0); +x_195 = lean_ctor_get(x_181, 1); +lean_inc(x_195); +lean_inc(x_194); +lean_dec(x_181); +x_196 = 0; +x_197 = lean_unsigned_to_nat(0u); +x_198 = l_Float_ofScientific(x_127, x_196, x_197); +lean_dec(x_127); +x_199 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; +x_200 = lean_float_div(x_198, x_199); +x_201 = l_Float_ofScientific(x_194, x_196, x_197); +lean_dec(x_194); +x_202 = lean_float_div(x_201, x_199); +x_203 = lean_box_float(x_200); +x_204 = lean_box_float(x_202); +x_205 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_205, 0, x_203); +lean_ctor_set(x_205, 1, x_204); +lean_ctor_set_tag(x_129, 0); +lean_ctor_set(x_129, 1, x_205); +lean_ctor_set(x_129, 0, x_180); +x_22 = x_129; +x_23 = x_195; +goto block_125; } } else { -lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; uint8_t x_205; lean_object* x_206; double x_207; double x_208; double x_209; double x_210; double x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; -x_198 = lean_ctor_get(x_121, 0); -x_199 = lean_ctor_get(x_121, 1); -lean_inc(x_199); -lean_inc(x_198); -lean_dec(x_121); -x_200 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_200, 0, x_198); -x_201 = lean_io_mono_nanos_now(x_199); -x_202 = lean_ctor_get(x_201, 0); -lean_inc(x_202); -x_203 = lean_ctor_get(x_201, 1); -lean_inc(x_203); -if (lean_is_exclusive(x_201)) { - lean_ctor_release(x_201, 0); - lean_ctor_release(x_201, 1); - x_204 = x_201; +lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_214; double x_215; double x_216; double x_217; double x_218; double x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; +x_206 = lean_ctor_get(x_129, 0); +x_207 = lean_ctor_get(x_129, 1); +lean_inc(x_207); +lean_inc(x_206); +lean_dec(x_129); +x_208 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_208, 0, x_206); +x_209 = lean_io_mono_nanos_now(x_207); +x_210 = lean_ctor_get(x_209, 0); +lean_inc(x_210); +x_211 = lean_ctor_get(x_209, 1); +lean_inc(x_211); +if (lean_is_exclusive(x_209)) { + lean_ctor_release(x_209, 0); + lean_ctor_release(x_209, 1); + x_212 = x_209; } else { - lean_dec_ref(x_201); - x_204 = lean_box(0); + lean_dec_ref(x_209); + x_212 = lean_box(0); } -x_205 = 0; -x_206 = lean_unsigned_to_nat(0u); -x_207 = l_Float_ofScientific(x_119, x_205, x_206); -lean_dec(x_119); -x_208 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; -x_209 = lean_float_div(x_207, x_208); -x_210 = l_Float_ofScientific(x_202, x_205, x_206); -lean_dec(x_202); -x_211 = lean_float_div(x_210, x_208); -x_212 = lean_box_float(x_209); -x_213 = lean_box_float(x_211); -if (lean_is_scalar(x_204)) { - x_214 = lean_alloc_ctor(0, 2, 0); +x_213 = 0; +x_214 = lean_unsigned_to_nat(0u); +x_215 = l_Float_ofScientific(x_127, x_213, x_214); +lean_dec(x_127); +x_216 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; +x_217 = lean_float_div(x_215, x_216); +x_218 = l_Float_ofScientific(x_210, x_213, x_214); +lean_dec(x_210); +x_219 = lean_float_div(x_218, x_216); +x_220 = lean_box_float(x_217); +x_221 = lean_box_float(x_219); +if (lean_is_scalar(x_212)) { + x_222 = lean_alloc_ctor(0, 2, 0); } else { - x_214 = x_204; + x_222 = x_212; } -lean_ctor_set(x_214, 0, x_212); -lean_ctor_set(x_214, 1, x_213); -x_215 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_215, 0, x_200); -lean_ctor_set(x_215, 1, x_214); -x_22 = x_215; -x_23 = x_203; -goto block_117; +lean_ctor_set(x_222, 0, x_220); +lean_ctor_set(x_222, 1, x_221); +x_223 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_223, 0, x_208); +lean_ctor_set(x_223, 1, x_222); +x_22 = x_223; +x_23 = x_211; +goto block_125; } } -block_117: +block_125: { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; lean_object* x_97; uint8_t x_98; +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; uint8_t x_30; x_24 = lean_ctor_get(x_22, 1); lean_inc(x_24); x_25 = lean_ctor_get(x_22, 0); @@ -2632,14 +2597,28 @@ lean_inc(x_26); x_27 = lean_ctor_get(x_24, 1); lean_inc(x_27); lean_dec(x_24); -x_97 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__2; -x_98 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_97); -if (x_98 == 0) +x_28 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__2; +x_29 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_28); +if (x_29 == 0) { -uint8_t x_99; -x_99 = 0; -x_28 = x_99; -goto block_96; +if (x_6 == 0) +{ +uint8_t x_95; +x_95 = 0; +x_30 = x_95; +goto block_94; +} +else +{ +lean_object* x_96; double x_97; double x_98; lean_object* x_99; +x_96 = lean_box(0); +x_97 = lean_unbox_float(x_26); +lean_dec(x_26); +x_98 = lean_unbox_float(x_27); +lean_dec(x_27); +x_99 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3(x_2, x_3, x_4, x_18, x_25, x_29, x_97, x_98, x_5, x_96, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_23); +return x_99; +} } else { @@ -2649,6 +2628,8 @@ x_101 = lean_unbox_float(x_26); x_102 = lean_float_sub(x_100, x_101); if (x_21 == 0) { +if (x_6 == 0) +{ lean_object* x_103; lean_object* x_104; uint8_t x_105; lean_object* x_106; double x_107; double x_108; double x_109; uint8_t x_110; x_103 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__3; x_104 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_103); @@ -2659,62 +2640,86 @@ lean_dec(x_104); x_108 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__4; x_109 = lean_float_div(x_107, x_108); x_110 = lean_float_decLt(x_109, x_102); -x_28 = x_110; -goto block_96; +x_30 = x_110; +goto block_94; } else { -lean_object* x_111; lean_object* x_112; uint8_t x_113; lean_object* x_114; double x_115; uint8_t x_116; -x_111 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__3; -x_112 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_111); -x_113 = 0; -x_114 = lean_unsigned_to_nat(0u); -x_115 = l_Float_ofScientific(x_112, x_113, x_114); -lean_dec(x_112); -x_116 = lean_float_decLt(x_115, x_102); -x_28 = x_116; -goto block_96; +lean_object* x_111; double x_112; double x_113; lean_object* x_114; +x_111 = lean_box(0); +x_112 = lean_unbox_float(x_26); +lean_dec(x_26); +x_113 = lean_unbox_float(x_27); +lean_dec(x_27); +x_114 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3(x_2, x_3, x_4, x_18, x_25, x_29, x_112, x_113, x_5, x_111, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_23); +return x_114; } } -block_96: +else { if (x_6 == 0) { -if (x_28 == 0) +lean_object* x_115; lean_object* x_116; uint8_t x_117; lean_object* x_118; double x_119; uint8_t x_120; +x_115 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__3; +x_116 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_115); +x_117 = 0; +x_118 = lean_unsigned_to_nat(0u); +x_119 = l_Float_ofScientific(x_116, x_117, x_118); +lean_dec(x_116); +x_120 = lean_float_decLt(x_119, x_102); +x_30 = x_120; +goto block_94; +} +else { -lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; +lean_object* x_121; double x_122; double x_123; lean_object* x_124; +x_121 = lean_box(0); +x_122 = lean_unbox_float(x_26); +lean_dec(x_26); +x_123 = lean_unbox_float(x_27); +lean_dec(x_27); +x_124 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3(x_2, x_3, x_4, x_18, x_25, x_29, x_122, x_123, x_5, x_121, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_23); +return x_124; +} +} +} +block_94: +{ +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; lean_dec(x_27); lean_dec(x_26); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_29 = lean_st_ref_take(x_15, x_23); -x_30 = lean_ctor_get(x_29, 0); -lean_inc(x_30); -x_31 = lean_ctor_get(x_30, 3); -lean_inc(x_31); -x_32 = lean_ctor_get(x_29, 1); +x_31 = lean_st_ref_take(x_15, x_23); +x_32 = lean_ctor_get(x_31, 0); lean_inc(x_32); -lean_dec(x_29); -x_33 = !lean_is_exclusive(x_30); -if (x_33 == 0) -{ -lean_object* x_34; uint8_t x_35; -x_34 = lean_ctor_get(x_30, 3); -lean_dec(x_34); -x_35 = !lean_is_exclusive(x_31); +x_33 = lean_ctor_get(x_32, 3); +lean_inc(x_33); +x_34 = lean_ctor_get(x_31, 1); +lean_inc(x_34); +lean_dec(x_31); +x_35 = !lean_is_exclusive(x_32); if (x_35 == 0) { -lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_36 = lean_ctor_get(x_31, 0); -x_37 = l_Lean_PersistentArray_append___rarg(x_18, x_36); +lean_object* x_36; uint8_t x_37; +x_36 = lean_ctor_get(x_32, 3); lean_dec(x_36); -lean_ctor_set(x_31, 0, x_37); -x_38 = lean_st_ref_set(x_15, x_30, x_32); -x_39 = lean_ctor_get(x_38, 1); -lean_inc(x_39); +x_37 = !lean_is_exclusive(x_33); +if (x_37 == 0) +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_38 = lean_ctor_get(x_33, 0); +x_39 = l_Lean_PersistentArray_append___rarg(x_18, x_38); lean_dec(x_38); -x_40 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_discharge_x3f_x27___spec__9(x_25, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_39); +lean_ctor_set(x_33, 0, x_39); +x_40 = lean_st_ref_set(x_15, x_32, x_34); +x_41 = lean_ctor_get(x_40, 1); +lean_inc(x_41); +lean_dec(x_40); +x_42 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_discharge_x3f_x27___spec__9(x_25, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_41); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -2723,178 +2728,178 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_25); -if (lean_obj_tag(x_40) == 0) +if (lean_obj_tag(x_42) == 0) { -uint8_t x_41; -x_41 = !lean_is_exclusive(x_40); -if (x_41 == 0) +uint8_t x_43; +x_43 = !lean_is_exclusive(x_42); +if (x_43 == 0) { -return x_40; +return x_42; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_42 = lean_ctor_get(x_40, 0); -x_43 = lean_ctor_get(x_40, 1); -lean_inc(x_43); -lean_inc(x_42); -lean_dec(x_40); -x_44 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_44, 0, x_42); -lean_ctor_set(x_44, 1, x_43); -return x_44; +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_42, 0); +x_45 = lean_ctor_get(x_42, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_42); +x_46 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; } } else { -uint8_t x_45; -x_45 = !lean_is_exclusive(x_40); -if (x_45 == 0) +uint8_t x_47; +x_47 = !lean_is_exclusive(x_42); +if (x_47 == 0) { -return x_40; +return x_42; } else { -lean_object* x_46; lean_object* x_47; lean_object* x_48; -x_46 = lean_ctor_get(x_40, 0); -x_47 = lean_ctor_get(x_40, 1); -lean_inc(x_47); -lean_inc(x_46); -lean_dec(x_40); -x_48 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_48, 0, x_46); -lean_ctor_set(x_48, 1, x_47); -return x_48; +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_42, 0); +x_49 = lean_ctor_get(x_42, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_42); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; } } } else { -uint64_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_49 = lean_ctor_get_uint64(x_31, sizeof(void*)*1); -x_50 = lean_ctor_get(x_31, 0); -lean_inc(x_50); -lean_dec(x_31); -x_51 = l_Lean_PersistentArray_append___rarg(x_18, x_50); -lean_dec(x_50); -x_52 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set_uint64(x_52, sizeof(void*)*1, x_49); -lean_ctor_set(x_30, 3, x_52); -x_53 = lean_st_ref_set(x_15, x_30, x_32); -x_54 = lean_ctor_get(x_53, 1); -lean_inc(x_54); -lean_dec(x_53); -x_55 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_discharge_x3f_x27___spec__9(x_25, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_54); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_25); -if (lean_obj_tag(x_55) == 0) -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_56 = lean_ctor_get(x_55, 0); +uint64_t x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_51 = lean_ctor_get_uint64(x_33, sizeof(void*)*1); +x_52 = lean_ctor_get(x_33, 0); +lean_inc(x_52); +lean_dec(x_33); +x_53 = l_Lean_PersistentArray_append___rarg(x_18, x_52); +lean_dec(x_52); +x_54 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_54, 0, x_53); +lean_ctor_set_uint64(x_54, sizeof(void*)*1, x_51); +lean_ctor_set(x_32, 3, x_54); +x_55 = lean_st_ref_set(x_15, x_32, x_34); +x_56 = lean_ctor_get(x_55, 1); lean_inc(x_56); -x_57 = lean_ctor_get(x_55, 1); -lean_inc(x_57); -if (lean_is_exclusive(x_55)) { - lean_ctor_release(x_55, 0); - lean_ctor_release(x_55, 1); - x_58 = x_55; +lean_dec(x_55); +x_57 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_discharge_x3f_x27___spec__9(x_25, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_56); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_25); +if (lean_obj_tag(x_57) == 0) +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_58 = lean_ctor_get(x_57, 0); +lean_inc(x_58); +x_59 = lean_ctor_get(x_57, 1); +lean_inc(x_59); +if (lean_is_exclusive(x_57)) { + lean_ctor_release(x_57, 0); + lean_ctor_release(x_57, 1); + x_60 = x_57; } else { - lean_dec_ref(x_55); - x_58 = lean_box(0); + lean_dec_ref(x_57); + x_60 = lean_box(0); } -if (lean_is_scalar(x_58)) { - x_59 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_60)) { + x_61 = lean_alloc_ctor(0, 2, 0); } else { - x_59 = x_58; + x_61 = x_60; } -lean_ctor_set(x_59, 0, x_56); -lean_ctor_set(x_59, 1, x_57); -return x_59; +lean_ctor_set(x_61, 0, x_58); +lean_ctor_set(x_61, 1, x_59); +return x_61; } else { -lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_60 = lean_ctor_get(x_55, 0); -lean_inc(x_60); -x_61 = lean_ctor_get(x_55, 1); -lean_inc(x_61); -if (lean_is_exclusive(x_55)) { - lean_ctor_release(x_55, 0); - lean_ctor_release(x_55, 1); - x_62 = x_55; +lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_62 = lean_ctor_get(x_57, 0); +lean_inc(x_62); +x_63 = lean_ctor_get(x_57, 1); +lean_inc(x_63); +if (lean_is_exclusive(x_57)) { + lean_ctor_release(x_57, 0); + lean_ctor_release(x_57, 1); + x_64 = x_57; } else { - lean_dec_ref(x_55); - x_62 = lean_box(0); + lean_dec_ref(x_57); + x_64 = lean_box(0); } -if (lean_is_scalar(x_62)) { - x_63 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_64)) { + x_65 = lean_alloc_ctor(1, 2, 0); } else { - x_63 = x_62; + x_65 = x_64; } -lean_ctor_set(x_63, 0, x_60); -lean_ctor_set(x_63, 1, x_61); -return x_63; +lean_ctor_set(x_65, 0, x_62); +lean_ctor_set(x_65, 1, x_63); +return x_65; } } } else { -lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; uint64_t x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_64 = lean_ctor_get(x_30, 0); -x_65 = lean_ctor_get(x_30, 1); -x_66 = lean_ctor_get(x_30, 2); -x_67 = lean_ctor_get(x_30, 4); -x_68 = lean_ctor_get(x_30, 5); -x_69 = lean_ctor_get(x_30, 6); -x_70 = lean_ctor_get(x_30, 7); +lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; uint64_t x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_66 = lean_ctor_get(x_32, 0); +x_67 = lean_ctor_get(x_32, 1); +x_68 = lean_ctor_get(x_32, 2); +x_69 = lean_ctor_get(x_32, 4); +x_70 = lean_ctor_get(x_32, 5); +x_71 = lean_ctor_get(x_32, 6); +x_72 = lean_ctor_get(x_32, 7); +lean_inc(x_72); +lean_inc(x_71); lean_inc(x_70); lean_inc(x_69); lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); -lean_inc(x_65); -lean_inc(x_64); -lean_dec(x_30); -x_71 = lean_ctor_get_uint64(x_31, sizeof(void*)*1); -x_72 = lean_ctor_get(x_31, 0); -lean_inc(x_72); -if (lean_is_exclusive(x_31)) { - lean_ctor_release(x_31, 0); - x_73 = x_31; +lean_dec(x_32); +x_73 = lean_ctor_get_uint64(x_33, sizeof(void*)*1); +x_74 = lean_ctor_get(x_33, 0); +lean_inc(x_74); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + x_75 = x_33; } else { - lean_dec_ref(x_31); - x_73 = lean_box(0); + lean_dec_ref(x_33); + x_75 = lean_box(0); } -x_74 = l_Lean_PersistentArray_append___rarg(x_18, x_72); -lean_dec(x_72); -if (lean_is_scalar(x_73)) { - x_75 = lean_alloc_ctor(0, 1, 8); +x_76 = l_Lean_PersistentArray_append___rarg(x_18, x_74); +lean_dec(x_74); +if (lean_is_scalar(x_75)) { + x_77 = lean_alloc_ctor(0, 1, 8); } else { - x_75 = x_73; + x_77 = x_75; } -lean_ctor_set(x_75, 0, x_74); -lean_ctor_set_uint64(x_75, sizeof(void*)*1, x_71); -x_76 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_76, 0, x_64); -lean_ctor_set(x_76, 1, x_65); -lean_ctor_set(x_76, 2, x_66); -lean_ctor_set(x_76, 3, x_75); -lean_ctor_set(x_76, 4, x_67); -lean_ctor_set(x_76, 5, x_68); -lean_ctor_set(x_76, 6, x_69); -lean_ctor_set(x_76, 7, x_70); -x_77 = lean_st_ref_set(x_15, x_76, x_32); -x_78 = lean_ctor_get(x_77, 1); -lean_inc(x_78); -lean_dec(x_77); -x_79 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_discharge_x3f_x27___spec__9(x_25, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_78); +lean_ctor_set(x_77, 0, x_76); +lean_ctor_set_uint64(x_77, sizeof(void*)*1, x_73); +x_78 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_78, 0, x_66); +lean_ctor_set(x_78, 1, x_67); +lean_ctor_set(x_78, 2, x_68); +lean_ctor_set(x_78, 3, x_77); +lean_ctor_set(x_78, 4, x_69); +lean_ctor_set(x_78, 5, x_70); +lean_ctor_set(x_78, 6, x_71); +lean_ctor_set(x_78, 7, x_72); +x_79 = lean_st_ref_set(x_15, x_78, x_34); +x_80 = lean_ctor_get(x_79, 1); +lean_inc(x_80); +lean_dec(x_79); +x_81 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_discharge_x3f_x27___spec__9(x_25, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_80); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -2903,91 +2908,79 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_25); -if (lean_obj_tag(x_79) == 0) +if (lean_obj_tag(x_81) == 0) { -lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; -x_80 = lean_ctor_get(x_79, 0); -lean_inc(x_80); -x_81 = lean_ctor_get(x_79, 1); -lean_inc(x_81); -if (lean_is_exclusive(x_79)) { - lean_ctor_release(x_79, 0); - lean_ctor_release(x_79, 1); - x_82 = x_79; +lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; +x_82 = lean_ctor_get(x_81, 0); +lean_inc(x_82); +x_83 = lean_ctor_get(x_81, 1); +lean_inc(x_83); +if (lean_is_exclusive(x_81)) { + lean_ctor_release(x_81, 0); + lean_ctor_release(x_81, 1); + x_84 = x_81; } else { - lean_dec_ref(x_79); - x_82 = lean_box(0); + lean_dec_ref(x_81); + x_84 = lean_box(0); } -if (lean_is_scalar(x_82)) { - x_83 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_84)) { + x_85 = lean_alloc_ctor(0, 2, 0); } else { - x_83 = x_82; + x_85 = x_84; } -lean_ctor_set(x_83, 0, x_80); -lean_ctor_set(x_83, 1, x_81); -return x_83; +lean_ctor_set(x_85, 0, x_82); +lean_ctor_set(x_85, 1, x_83); +return x_85; } else { -lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; -x_84 = lean_ctor_get(x_79, 0); -lean_inc(x_84); -x_85 = lean_ctor_get(x_79, 1); -lean_inc(x_85); -if (lean_is_exclusive(x_79)) { - lean_ctor_release(x_79, 0); - lean_ctor_release(x_79, 1); - x_86 = x_79; +lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; +x_86 = lean_ctor_get(x_81, 0); +lean_inc(x_86); +x_87 = lean_ctor_get(x_81, 1); +lean_inc(x_87); +if (lean_is_exclusive(x_81)) { + lean_ctor_release(x_81, 0); + lean_ctor_release(x_81, 1); + x_88 = x_81; } else { - lean_dec_ref(x_79); - x_86 = lean_box(0); + lean_dec_ref(x_81); + x_88 = lean_box(0); } -if (lean_is_scalar(x_86)) { - x_87 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_88)) { + x_89 = lean_alloc_ctor(1, 2, 0); } else { - x_87 = x_86; + x_89 = x_88; } -lean_ctor_set(x_87, 0, x_84); -lean_ctor_set(x_87, 1, x_85); -return x_87; +lean_ctor_set(x_89, 0, x_86); +lean_ctor_set(x_89, 1, x_87); +return x_89; } } } else { -lean_object* x_88; double x_89; double x_90; lean_object* x_91; -x_88 = lean_box(0); -x_89 = lean_unbox_float(x_26); +lean_object* x_90; double x_91; double x_92; lean_object* x_93; +x_90 = lean_box(0); +x_91 = lean_unbox_float(x_26); lean_dec(x_26); -x_90 = lean_unbox_float(x_27); +x_92 = lean_unbox_float(x_27); lean_dec(x_27); -x_91 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3(x_2, x_3, x_4, x_18, x_25, x_1, x_28, x_89, x_90, x_5, x_88, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_23); -return x_91; -} -} -else -{ -lean_object* x_92; double x_93; double x_94; lean_object* x_95; -x_92 = lean_box(0); -x_93 = lean_unbox_float(x_26); -lean_dec(x_26); -x_94 = lean_unbox_float(x_27); -lean_dec(x_27); -x_95 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3(x_2, x_3, x_4, x_18, x_25, x_1, x_28, x_93, x_94, x_5, x_92, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_23); -return x_95; +x_93 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3(x_2, x_3, x_4, x_18, x_25, x_29, x_91, x_92, x_5, x_90, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_23); +return x_93; } } } } else { -lean_object* x_216; lean_object* x_217; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; -x_312 = lean_io_get_num_heartbeats(x_19); -x_313 = lean_ctor_get(x_312, 0); -lean_inc(x_313); -x_314 = lean_ctor_get(x_312, 1); -lean_inc(x_314); -lean_dec(x_312); +lean_object* x_224; lean_object* x_225; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; +x_328 = lean_io_get_num_heartbeats(x_19); +x_329 = lean_ctor_get(x_328, 0); +lean_inc(x_329); +x_330 = lean_ctor_get(x_328, 1); +lean_inc(x_330); +lean_dec(x_328); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); @@ -2995,497 +2988,428 @@ lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_315 = lean_apply_8(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_314); -if (lean_obj_tag(x_315) == 0) +x_331 = lean_apply_8(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_330); +if (lean_obj_tag(x_331) == 0) { -uint8_t x_316; -x_316 = !lean_is_exclusive(x_315); -if (x_316 == 0) +uint8_t x_332; +x_332 = !lean_is_exclusive(x_331); +if (x_332 == 0) { -lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; uint8_t x_321; -x_317 = lean_ctor_get(x_315, 0); -x_318 = lean_ctor_get(x_315, 1); -x_319 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_319, 0, x_317); -x_320 = lean_io_get_num_heartbeats(x_318); -x_321 = !lean_is_exclusive(x_320); -if (x_321 == 0) +lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; +x_333 = lean_ctor_get(x_331, 0); +x_334 = lean_ctor_get(x_331, 1); +x_335 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_335, 0, x_333); +x_336 = lean_io_get_num_heartbeats(x_334); +x_337 = !lean_is_exclusive(x_336); +if (x_337 == 0) { -lean_object* x_322; lean_object* x_323; uint8_t x_324; lean_object* x_325; double x_326; double x_327; lean_object* x_328; lean_object* x_329; -x_322 = lean_ctor_get(x_320, 0); -x_323 = lean_ctor_get(x_320, 1); -x_324 = 0; -x_325 = lean_unsigned_to_nat(0u); -x_326 = l_Float_ofScientific(x_313, x_324, x_325); -lean_dec(x_313); -x_327 = l_Float_ofScientific(x_322, x_324, x_325); -lean_dec(x_322); -x_328 = lean_box_float(x_326); -x_329 = lean_box_float(x_327); -lean_ctor_set(x_320, 1, x_329); -lean_ctor_set(x_320, 0, x_328); -lean_ctor_set(x_315, 1, x_320); -lean_ctor_set(x_315, 0, x_319); -x_216 = x_315; -x_217 = x_323; -goto block_311; +lean_object* x_338; lean_object* x_339; uint8_t x_340; lean_object* x_341; double x_342; double x_343; lean_object* x_344; lean_object* x_345; +x_338 = lean_ctor_get(x_336, 0); +x_339 = lean_ctor_get(x_336, 1); +x_340 = 0; +x_341 = lean_unsigned_to_nat(0u); +x_342 = l_Float_ofScientific(x_329, x_340, x_341); +lean_dec(x_329); +x_343 = l_Float_ofScientific(x_338, x_340, x_341); +lean_dec(x_338); +x_344 = lean_box_float(x_342); +x_345 = lean_box_float(x_343); +lean_ctor_set(x_336, 1, x_345); +lean_ctor_set(x_336, 0, x_344); +lean_ctor_set(x_331, 1, x_336); +lean_ctor_set(x_331, 0, x_335); +x_224 = x_331; +x_225 = x_339; +goto block_327; } else { -lean_object* x_330; lean_object* x_331; uint8_t x_332; lean_object* x_333; double x_334; double x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; -x_330 = lean_ctor_get(x_320, 0); -x_331 = lean_ctor_get(x_320, 1); -lean_inc(x_331); -lean_inc(x_330); -lean_dec(x_320); -x_332 = 0; -x_333 = lean_unsigned_to_nat(0u); -x_334 = l_Float_ofScientific(x_313, x_332, x_333); -lean_dec(x_313); -x_335 = l_Float_ofScientific(x_330, x_332, x_333); -lean_dec(x_330); -x_336 = lean_box_float(x_334); -x_337 = lean_box_float(x_335); -x_338 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_338, 0, x_336); -lean_ctor_set(x_338, 1, x_337); -lean_ctor_set(x_315, 1, x_338); -lean_ctor_set(x_315, 0, x_319); -x_216 = x_315; -x_217 = x_331; -goto block_311; +lean_object* x_346; lean_object* x_347; uint8_t x_348; lean_object* x_349; double x_350; double x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; +x_346 = lean_ctor_get(x_336, 0); +x_347 = lean_ctor_get(x_336, 1); +lean_inc(x_347); +lean_inc(x_346); +lean_dec(x_336); +x_348 = 0; +x_349 = lean_unsigned_to_nat(0u); +x_350 = l_Float_ofScientific(x_329, x_348, x_349); +lean_dec(x_329); +x_351 = l_Float_ofScientific(x_346, x_348, x_349); +lean_dec(x_346); +x_352 = lean_box_float(x_350); +x_353 = lean_box_float(x_351); +x_354 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_354, 0, x_352); +lean_ctor_set(x_354, 1, x_353); +lean_ctor_set(x_331, 1, x_354); +lean_ctor_set(x_331, 0, x_335); +x_224 = x_331; +x_225 = x_347; +goto block_327; } } else { -lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; uint8_t x_346; lean_object* x_347; double x_348; double x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; -x_339 = lean_ctor_get(x_315, 0); -x_340 = lean_ctor_get(x_315, 1); -lean_inc(x_340); -lean_inc(x_339); -lean_dec(x_315); -x_341 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_341, 0, x_339); -x_342 = lean_io_get_num_heartbeats(x_340); -x_343 = lean_ctor_get(x_342, 0); -lean_inc(x_343); -x_344 = lean_ctor_get(x_342, 1); -lean_inc(x_344); -if (lean_is_exclusive(x_342)) { - lean_ctor_release(x_342, 0); - lean_ctor_release(x_342, 1); - x_345 = x_342; -} else { - lean_dec_ref(x_342); - x_345 = lean_box(0); -} -x_346 = 0; -x_347 = lean_unsigned_to_nat(0u); -x_348 = l_Float_ofScientific(x_313, x_346, x_347); -lean_dec(x_313); -x_349 = l_Float_ofScientific(x_343, x_346, x_347); -lean_dec(x_343); -x_350 = lean_box_float(x_348); -x_351 = lean_box_float(x_349); -if (lean_is_scalar(x_345)) { - x_352 = lean_alloc_ctor(0, 2, 0); -} else { - x_352 = x_345; -} -lean_ctor_set(x_352, 0, x_350); -lean_ctor_set(x_352, 1, x_351); -x_353 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_353, 0, x_341); -lean_ctor_set(x_353, 1, x_352); -x_216 = x_353; -x_217 = x_344; -goto block_311; -} -} -else -{ -uint8_t x_354; -x_354 = !lean_is_exclusive(x_315); -if (x_354 == 0) -{ -lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; uint8_t x_359; -x_355 = lean_ctor_get(x_315, 0); -x_356 = lean_ctor_get(x_315, 1); -x_357 = lean_alloc_ctor(0, 1, 0); +lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; uint8_t x_362; lean_object* x_363; double x_364; double x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; +x_355 = lean_ctor_get(x_331, 0); +x_356 = lean_ctor_get(x_331, 1); +lean_inc(x_356); +lean_inc(x_355); +lean_dec(x_331); +x_357 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_357, 0, x_355); x_358 = lean_io_get_num_heartbeats(x_356); -x_359 = !lean_is_exclusive(x_358); -if (x_359 == 0) -{ -lean_object* x_360; lean_object* x_361; uint8_t x_362; lean_object* x_363; double x_364; double x_365; lean_object* x_366; lean_object* x_367; -x_360 = lean_ctor_get(x_358, 0); -x_361 = lean_ctor_get(x_358, 1); +x_359 = lean_ctor_get(x_358, 0); +lean_inc(x_359); +x_360 = lean_ctor_get(x_358, 1); +lean_inc(x_360); +if (lean_is_exclusive(x_358)) { + lean_ctor_release(x_358, 0); + lean_ctor_release(x_358, 1); + x_361 = x_358; +} else { + lean_dec_ref(x_358); + x_361 = lean_box(0); +} x_362 = 0; x_363 = lean_unsigned_to_nat(0u); -x_364 = l_Float_ofScientific(x_313, x_362, x_363); -lean_dec(x_313); -x_365 = l_Float_ofScientific(x_360, x_362, x_363); -lean_dec(x_360); +x_364 = l_Float_ofScientific(x_329, x_362, x_363); +lean_dec(x_329); +x_365 = l_Float_ofScientific(x_359, x_362, x_363); +lean_dec(x_359); x_366 = lean_box_float(x_364); x_367 = lean_box_float(x_365); -lean_ctor_set(x_358, 1, x_367); -lean_ctor_set(x_358, 0, x_366); -lean_ctor_set_tag(x_315, 0); -lean_ctor_set(x_315, 1, x_358); -lean_ctor_set(x_315, 0, x_357); -x_216 = x_315; -x_217 = x_361; -goto block_311; -} -else -{ -lean_object* x_368; lean_object* x_369; uint8_t x_370; lean_object* x_371; double x_372; double x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; -x_368 = lean_ctor_get(x_358, 0); -x_369 = lean_ctor_get(x_358, 1); -lean_inc(x_369); -lean_inc(x_368); -lean_dec(x_358); -x_370 = 0; -x_371 = lean_unsigned_to_nat(0u); -x_372 = l_Float_ofScientific(x_313, x_370, x_371); -lean_dec(x_313); -x_373 = l_Float_ofScientific(x_368, x_370, x_371); -lean_dec(x_368); -x_374 = lean_box_float(x_372); -x_375 = lean_box_float(x_373); -x_376 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_376, 0, x_374); -lean_ctor_set(x_376, 1, x_375); -lean_ctor_set_tag(x_315, 0); -lean_ctor_set(x_315, 1, x_376); -lean_ctor_set(x_315, 0, x_357); -x_216 = x_315; -x_217 = x_369; -goto block_311; -} -} -else -{ -lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; uint8_t x_384; lean_object* x_385; double x_386; double x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; -x_377 = lean_ctor_get(x_315, 0); -x_378 = lean_ctor_get(x_315, 1); -lean_inc(x_378); -lean_inc(x_377); -lean_dec(x_315); -x_379 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_379, 0, x_377); -x_380 = lean_io_get_num_heartbeats(x_378); -x_381 = lean_ctor_get(x_380, 0); -lean_inc(x_381); -x_382 = lean_ctor_get(x_380, 1); -lean_inc(x_382); -if (lean_is_exclusive(x_380)) { - lean_ctor_release(x_380, 0); - lean_ctor_release(x_380, 1); - x_383 = x_380; +if (lean_is_scalar(x_361)) { + x_368 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_380); - x_383 = lean_box(0); + x_368 = x_361; } -x_384 = 0; -x_385 = lean_unsigned_to_nat(0u); -x_386 = l_Float_ofScientific(x_313, x_384, x_385); -lean_dec(x_313); -x_387 = l_Float_ofScientific(x_381, x_384, x_385); -lean_dec(x_381); -x_388 = lean_box_float(x_386); -x_389 = lean_box_float(x_387); -if (lean_is_scalar(x_383)) { - x_390 = lean_alloc_ctor(0, 2, 0); -} else { - x_390 = x_383; +lean_ctor_set(x_368, 0, x_366); +lean_ctor_set(x_368, 1, x_367); +x_369 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_369, 0, x_357); +lean_ctor_set(x_369, 1, x_368); +x_224 = x_369; +x_225 = x_360; +goto block_327; } -lean_ctor_set(x_390, 0, x_388); -lean_ctor_set(x_390, 1, x_389); -x_391 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_391, 0, x_379); -lean_ctor_set(x_391, 1, x_390); -x_216 = x_391; -x_217 = x_382; -goto block_311; -} -} -block_311: -{ -lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; uint8_t x_222; lean_object* x_291; uint8_t x_292; -x_218 = lean_ctor_get(x_216, 1); -lean_inc(x_218); -x_219 = lean_ctor_get(x_216, 0); -lean_inc(x_219); -lean_dec(x_216); -x_220 = lean_ctor_get(x_218, 0); -lean_inc(x_220); -x_221 = lean_ctor_get(x_218, 1); -lean_inc(x_221); -lean_dec(x_218); -x_291 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__2; -x_292 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_291); -if (x_292 == 0) -{ -uint8_t x_293; -x_293 = 0; -x_222 = x_293; -goto block_290; } else { -double x_294; double x_295; double x_296; -x_294 = lean_unbox_float(x_221); -x_295 = lean_unbox_float(x_220); -x_296 = lean_float_sub(x_294, x_295); +uint8_t x_370; +x_370 = !lean_is_exclusive(x_331); +if (x_370 == 0) +{ +lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; +x_371 = lean_ctor_get(x_331, 0); +x_372 = lean_ctor_get(x_331, 1); +x_373 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_373, 0, x_371); +x_374 = lean_io_get_num_heartbeats(x_372); +x_375 = !lean_is_exclusive(x_374); +if (x_375 == 0) +{ +lean_object* x_376; lean_object* x_377; uint8_t x_378; lean_object* x_379; double x_380; double x_381; lean_object* x_382; lean_object* x_383; +x_376 = lean_ctor_get(x_374, 0); +x_377 = lean_ctor_get(x_374, 1); +x_378 = 0; +x_379 = lean_unsigned_to_nat(0u); +x_380 = l_Float_ofScientific(x_329, x_378, x_379); +lean_dec(x_329); +x_381 = l_Float_ofScientific(x_376, x_378, x_379); +lean_dec(x_376); +x_382 = lean_box_float(x_380); +x_383 = lean_box_float(x_381); +lean_ctor_set(x_374, 1, x_383); +lean_ctor_set(x_374, 0, x_382); +lean_ctor_set_tag(x_331, 0); +lean_ctor_set(x_331, 1, x_374); +lean_ctor_set(x_331, 0, x_373); +x_224 = x_331; +x_225 = x_377; +goto block_327; +} +else +{ +lean_object* x_384; lean_object* x_385; uint8_t x_386; lean_object* x_387; double x_388; double x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; +x_384 = lean_ctor_get(x_374, 0); +x_385 = lean_ctor_get(x_374, 1); +lean_inc(x_385); +lean_inc(x_384); +lean_dec(x_374); +x_386 = 0; +x_387 = lean_unsigned_to_nat(0u); +x_388 = l_Float_ofScientific(x_329, x_386, x_387); +lean_dec(x_329); +x_389 = l_Float_ofScientific(x_384, x_386, x_387); +lean_dec(x_384); +x_390 = lean_box_float(x_388); +x_391 = lean_box_float(x_389); +x_392 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_392, 0, x_390); +lean_ctor_set(x_392, 1, x_391); +lean_ctor_set_tag(x_331, 0); +lean_ctor_set(x_331, 1, x_392); +lean_ctor_set(x_331, 0, x_373); +x_224 = x_331; +x_225 = x_385; +goto block_327; +} +} +else +{ +lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; uint8_t x_400; lean_object* x_401; double x_402; double x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; +x_393 = lean_ctor_get(x_331, 0); +x_394 = lean_ctor_get(x_331, 1); +lean_inc(x_394); +lean_inc(x_393); +lean_dec(x_331); +x_395 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_395, 0, x_393); +x_396 = lean_io_get_num_heartbeats(x_394); +x_397 = lean_ctor_get(x_396, 0); +lean_inc(x_397); +x_398 = lean_ctor_get(x_396, 1); +lean_inc(x_398); +if (lean_is_exclusive(x_396)) { + lean_ctor_release(x_396, 0); + lean_ctor_release(x_396, 1); + x_399 = x_396; +} else { + lean_dec_ref(x_396); + x_399 = lean_box(0); +} +x_400 = 0; +x_401 = lean_unsigned_to_nat(0u); +x_402 = l_Float_ofScientific(x_329, x_400, x_401); +lean_dec(x_329); +x_403 = l_Float_ofScientific(x_397, x_400, x_401); +lean_dec(x_397); +x_404 = lean_box_float(x_402); +x_405 = lean_box_float(x_403); +if (lean_is_scalar(x_399)) { + x_406 = lean_alloc_ctor(0, 2, 0); +} else { + x_406 = x_399; +} +lean_ctor_set(x_406, 0, x_404); +lean_ctor_set(x_406, 1, x_405); +x_407 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_407, 0, x_395); +lean_ctor_set(x_407, 1, x_406); +x_224 = x_407; +x_225 = x_398; +goto block_327; +} +} +block_327: +{ +lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; uint8_t x_231; uint8_t x_232; +x_226 = lean_ctor_get(x_224, 1); +lean_inc(x_226); +x_227 = lean_ctor_get(x_224, 0); +lean_inc(x_227); +lean_dec(x_224); +x_228 = lean_ctor_get(x_226, 0); +lean_inc(x_228); +x_229 = lean_ctor_get(x_226, 1); +lean_inc(x_229); +lean_dec(x_226); +x_230 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__2; +x_231 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_230); +if (x_231 == 0) +{ +if (x_6 == 0) +{ +uint8_t x_297; +x_297 = 0; +x_232 = x_297; +goto block_296; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_228); +lean_dec(x_228); +x_300 = lean_unbox_float(x_229); +lean_dec(x_229); +x_301 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3(x_2, x_3, x_4, x_18, x_227, x_231, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_225); +return x_301; +} +} +else +{ +double x_302; double x_303; double x_304; +x_302 = lean_unbox_float(x_229); +x_303 = lean_unbox_float(x_228); +x_304 = lean_float_sub(x_302, x_303); if (x_21 == 0) { -lean_object* x_297; lean_object* x_298; uint8_t x_299; lean_object* x_300; double x_301; double x_302; double x_303; uint8_t x_304; -x_297 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__3; -x_298 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_297); -x_299 = 0; -x_300 = lean_unsigned_to_nat(0u); -x_301 = l_Float_ofScientific(x_298, x_299, x_300); -lean_dec(x_298); -x_302 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__4; -x_303 = lean_float_div(x_301, x_302); -x_304 = lean_float_decLt(x_303, x_296); -x_222 = x_304; -goto block_290; -} -else +if (x_6 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; uint8_t x_310; +lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; double x_311; uint8_t x_312; x_305 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__3; x_306 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_305); x_307 = 0; x_308 = lean_unsigned_to_nat(0u); x_309 = l_Float_ofScientific(x_306, x_307, x_308); lean_dec(x_306); -x_310 = lean_float_decLt(x_309, x_296); -x_222 = x_310; -goto block_290; +x_310 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__4; +x_311 = lean_float_div(x_309, x_310); +x_312 = lean_float_decLt(x_311, x_304); +x_232 = x_312; +goto block_296; +} +else +{ +lean_object* x_313; double x_314; double x_315; lean_object* x_316; +x_313 = lean_box(0); +x_314 = lean_unbox_float(x_228); +lean_dec(x_228); +x_315 = lean_unbox_float(x_229); +lean_dec(x_229); +x_316 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3(x_2, x_3, x_4, x_18, x_227, x_231, x_314, x_315, x_5, x_313, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_225); +return x_316; } } -block_290: +else { if (x_6 == 0) { -if (x_222 == 0) +lean_object* x_317; lean_object* x_318; uint8_t x_319; lean_object* x_320; double x_321; uint8_t x_322; +x_317 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__3; +x_318 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_317); +x_319 = 0; +x_320 = lean_unsigned_to_nat(0u); +x_321 = l_Float_ofScientific(x_318, x_319, x_320); +lean_dec(x_318); +x_322 = lean_float_decLt(x_321, x_304); +x_232 = x_322; +goto block_296; +} +else { -lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; uint8_t x_227; -lean_dec(x_221); -lean_dec(x_220); +lean_object* x_323; double x_324; double x_325; lean_object* x_326; +x_323 = lean_box(0); +x_324 = lean_unbox_float(x_228); +lean_dec(x_228); +x_325 = lean_unbox_float(x_229); +lean_dec(x_229); +x_326 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3(x_2, x_3, x_4, x_18, x_227, x_231, x_324, x_325, x_5, x_323, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_225); +return x_326; +} +} +} +block_296: +{ +if (x_232 == 0) +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; uint8_t x_237; +lean_dec(x_229); +lean_dec(x_228); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_223 = lean_st_ref_take(x_15, x_217); -x_224 = lean_ctor_get(x_223, 0); -lean_inc(x_224); -x_225 = lean_ctor_get(x_224, 3); -lean_inc(x_225); -x_226 = lean_ctor_get(x_223, 1); -lean_inc(x_226); -lean_dec(x_223); -x_227 = !lean_is_exclusive(x_224); -if (x_227 == 0) -{ -lean_object* x_228; uint8_t x_229; -x_228 = lean_ctor_get(x_224, 3); -lean_dec(x_228); -x_229 = !lean_is_exclusive(x_225); -if (x_229 == 0) -{ -lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; -x_230 = lean_ctor_get(x_225, 0); -x_231 = l_Lean_PersistentArray_append___rarg(x_18, x_230); -lean_dec(x_230); -lean_ctor_set(x_225, 0, x_231); -x_232 = lean_st_ref_set(x_15, x_224, x_226); -x_233 = lean_ctor_get(x_232, 1); -lean_inc(x_233); -lean_dec(x_232); -x_234 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_discharge_x3f_x27___spec__9(x_219, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_233); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_219); -if (lean_obj_tag(x_234) == 0) -{ -uint8_t x_235; -x_235 = !lean_is_exclusive(x_234); -if (x_235 == 0) -{ -return x_234; -} -else -{ -lean_object* x_236; lean_object* x_237; lean_object* x_238; -x_236 = lean_ctor_get(x_234, 0); -x_237 = lean_ctor_get(x_234, 1); -lean_inc(x_237); +x_233 = lean_st_ref_take(x_15, x_225); +x_234 = lean_ctor_get(x_233, 0); +lean_inc(x_234); +x_235 = lean_ctor_get(x_234, 3); +lean_inc(x_235); +x_236 = lean_ctor_get(x_233, 1); lean_inc(x_236); -lean_dec(x_234); -x_238 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_238, 0, x_236); -lean_ctor_set(x_238, 1, x_237); -return x_238; -} -} -else +lean_dec(x_233); +x_237 = !lean_is_exclusive(x_234); +if (x_237 == 0) { -uint8_t x_239; -x_239 = !lean_is_exclusive(x_234); +lean_object* x_238; uint8_t x_239; +x_238 = lean_ctor_get(x_234, 3); +lean_dec(x_238); +x_239 = !lean_is_exclusive(x_235); if (x_239 == 0) { -return x_234; +lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; +x_240 = lean_ctor_get(x_235, 0); +x_241 = l_Lean_PersistentArray_append___rarg(x_18, x_240); +lean_dec(x_240); +lean_ctor_set(x_235, 0, x_241); +x_242 = lean_st_ref_set(x_15, x_234, x_236); +x_243 = lean_ctor_get(x_242, 1); +lean_inc(x_243); +lean_dec(x_242); +x_244 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_discharge_x3f_x27___spec__9(x_227, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_243); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_227); +if (lean_obj_tag(x_244) == 0) +{ +uint8_t x_245; +x_245 = !lean_is_exclusive(x_244); +if (x_245 == 0) +{ +return x_244; } else { -lean_object* x_240; lean_object* x_241; lean_object* x_242; -x_240 = lean_ctor_get(x_234, 0); -x_241 = lean_ctor_get(x_234, 1); -lean_inc(x_241); -lean_inc(x_240); -lean_dec(x_234); -x_242 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_242, 0, x_240); -lean_ctor_set(x_242, 1, x_241); -return x_242; -} -} -} -else -{ -uint64_t x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; -x_243 = lean_ctor_get_uint64(x_225, sizeof(void*)*1); -x_244 = lean_ctor_get(x_225, 0); -lean_inc(x_244); -lean_dec(x_225); -x_245 = l_Lean_PersistentArray_append___rarg(x_18, x_244); +lean_object* x_246; lean_object* x_247; lean_object* x_248; +x_246 = lean_ctor_get(x_244, 0); +x_247 = lean_ctor_get(x_244, 1); +lean_inc(x_247); +lean_inc(x_246); lean_dec(x_244); -x_246 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_246, 0, x_245); -lean_ctor_set_uint64(x_246, sizeof(void*)*1, x_243); -lean_ctor_set(x_224, 3, x_246); -x_247 = lean_st_ref_set(x_15, x_224, x_226); -x_248 = lean_ctor_get(x_247, 1); -lean_inc(x_248); -lean_dec(x_247); -x_249 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_discharge_x3f_x27___spec__9(x_219, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_248); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_219); -if (lean_obj_tag(x_249) == 0) +x_248 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_248, 0, x_246); +lean_ctor_set(x_248, 1, x_247); +return x_248; +} +} +else { -lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; -x_250 = lean_ctor_get(x_249, 0); -lean_inc(x_250); -x_251 = lean_ctor_get(x_249, 1); +uint8_t x_249; +x_249 = !lean_is_exclusive(x_244); +if (x_249 == 0) +{ +return x_244; +} +else +{ +lean_object* x_250; lean_object* x_251; lean_object* x_252; +x_250 = lean_ctor_get(x_244, 0); +x_251 = lean_ctor_get(x_244, 1); lean_inc(x_251); -if (lean_is_exclusive(x_249)) { - lean_ctor_release(x_249, 0); - lean_ctor_release(x_249, 1); - x_252 = x_249; -} else { - lean_dec_ref(x_249); - x_252 = lean_box(0); +lean_inc(x_250); +lean_dec(x_244); +x_252 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_252, 0, x_250); +lean_ctor_set(x_252, 1, x_251); +return x_252; } -if (lean_is_scalar(x_252)) { - x_253 = lean_alloc_ctor(0, 2, 0); -} else { - x_253 = x_252; } -lean_ctor_set(x_253, 0, x_250); -lean_ctor_set(x_253, 1, x_251); -return x_253; } else { -lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; -x_254 = lean_ctor_get(x_249, 0); +uint64_t x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; +x_253 = lean_ctor_get_uint64(x_235, sizeof(void*)*1); +x_254 = lean_ctor_get(x_235, 0); lean_inc(x_254); -x_255 = lean_ctor_get(x_249, 1); -lean_inc(x_255); -if (lean_is_exclusive(x_249)) { - lean_ctor_release(x_249, 0); - lean_ctor_release(x_249, 1); - x_256 = x_249; -} else { - lean_dec_ref(x_249); - x_256 = lean_box(0); -} -if (lean_is_scalar(x_256)) { - x_257 = lean_alloc_ctor(1, 2, 0); -} else { - x_257 = x_256; -} -lean_ctor_set(x_257, 0, x_254); -lean_ctor_set(x_257, 1, x_255); -return x_257; -} -} -} -else -{ -lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; uint64_t x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; -x_258 = lean_ctor_get(x_224, 0); -x_259 = lean_ctor_get(x_224, 1); -x_260 = lean_ctor_get(x_224, 2); -x_261 = lean_ctor_get(x_224, 4); -x_262 = lean_ctor_get(x_224, 5); -x_263 = lean_ctor_get(x_224, 6); -x_264 = lean_ctor_get(x_224, 7); -lean_inc(x_264); -lean_inc(x_263); -lean_inc(x_262); -lean_inc(x_261); -lean_inc(x_260); -lean_inc(x_259); +lean_dec(x_235); +x_255 = l_Lean_PersistentArray_append___rarg(x_18, x_254); +lean_dec(x_254); +x_256 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_256, 0, x_255); +lean_ctor_set_uint64(x_256, sizeof(void*)*1, x_253); +lean_ctor_set(x_234, 3, x_256); +x_257 = lean_st_ref_set(x_15, x_234, x_236); +x_258 = lean_ctor_get(x_257, 1); lean_inc(x_258); -lean_dec(x_224); -x_265 = lean_ctor_get_uint64(x_225, sizeof(void*)*1); -x_266 = lean_ctor_get(x_225, 0); -lean_inc(x_266); -if (lean_is_exclusive(x_225)) { - lean_ctor_release(x_225, 0); - x_267 = x_225; -} else { - lean_dec_ref(x_225); - x_267 = lean_box(0); -} -x_268 = l_Lean_PersistentArray_append___rarg(x_18, x_266); -lean_dec(x_266); -if (lean_is_scalar(x_267)) { - x_269 = lean_alloc_ctor(0, 1, 8); -} else { - x_269 = x_267; -} -lean_ctor_set(x_269, 0, x_268); -lean_ctor_set_uint64(x_269, sizeof(void*)*1, x_265); -x_270 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_270, 0, x_258); -lean_ctor_set(x_270, 1, x_259); -lean_ctor_set(x_270, 2, x_260); -lean_ctor_set(x_270, 3, x_269); -lean_ctor_set(x_270, 4, x_261); -lean_ctor_set(x_270, 5, x_262); -lean_ctor_set(x_270, 6, x_263); -lean_ctor_set(x_270, 7, x_264); -x_271 = lean_st_ref_set(x_15, x_270, x_226); -x_272 = lean_ctor_get(x_271, 1); -lean_inc(x_272); -lean_dec(x_271); -x_273 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_discharge_x3f_x27___spec__9(x_219, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_272); +lean_dec(x_257); +x_259 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_discharge_x3f_x27___spec__9(x_227, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_258); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -3493,79 +3417,176 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_219); -if (lean_obj_tag(x_273) == 0) +lean_dec(x_227); +if (lean_obj_tag(x_259) == 0) { -lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; -x_274 = lean_ctor_get(x_273, 0); +lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; +x_260 = lean_ctor_get(x_259, 0); +lean_inc(x_260); +x_261 = lean_ctor_get(x_259, 1); +lean_inc(x_261); +if (lean_is_exclusive(x_259)) { + lean_ctor_release(x_259, 0); + lean_ctor_release(x_259, 1); + x_262 = x_259; +} else { + lean_dec_ref(x_259); + x_262 = lean_box(0); +} +if (lean_is_scalar(x_262)) { + x_263 = lean_alloc_ctor(0, 2, 0); +} else { + x_263 = x_262; +} +lean_ctor_set(x_263, 0, x_260); +lean_ctor_set(x_263, 1, x_261); +return x_263; +} +else +{ +lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; +x_264 = lean_ctor_get(x_259, 0); +lean_inc(x_264); +x_265 = lean_ctor_get(x_259, 1); +lean_inc(x_265); +if (lean_is_exclusive(x_259)) { + lean_ctor_release(x_259, 0); + lean_ctor_release(x_259, 1); + x_266 = x_259; +} else { + lean_dec_ref(x_259); + x_266 = lean_box(0); +} +if (lean_is_scalar(x_266)) { + x_267 = lean_alloc_ctor(1, 2, 0); +} else { + x_267 = x_266; +} +lean_ctor_set(x_267, 0, x_264); +lean_ctor_set(x_267, 1, x_265); +return x_267; +} +} +} +else +{ +lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; uint64_t x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; +x_268 = lean_ctor_get(x_234, 0); +x_269 = lean_ctor_get(x_234, 1); +x_270 = lean_ctor_get(x_234, 2); +x_271 = lean_ctor_get(x_234, 4); +x_272 = lean_ctor_get(x_234, 5); +x_273 = lean_ctor_get(x_234, 6); +x_274 = lean_ctor_get(x_234, 7); lean_inc(x_274); -x_275 = lean_ctor_get(x_273, 1); -lean_inc(x_275); -if (lean_is_exclusive(x_273)) { - lean_ctor_release(x_273, 0); - lean_ctor_release(x_273, 1); - x_276 = x_273; +lean_inc(x_273); +lean_inc(x_272); +lean_inc(x_271); +lean_inc(x_270); +lean_inc(x_269); +lean_inc(x_268); +lean_dec(x_234); +x_275 = lean_ctor_get_uint64(x_235, sizeof(void*)*1); +x_276 = lean_ctor_get(x_235, 0); +lean_inc(x_276); +if (lean_is_exclusive(x_235)) { + lean_ctor_release(x_235, 0); + x_277 = x_235; } else { - lean_dec_ref(x_273); - x_276 = lean_box(0); + lean_dec_ref(x_235); + x_277 = lean_box(0); } -if (lean_is_scalar(x_276)) { - x_277 = lean_alloc_ctor(0, 2, 0); +x_278 = l_Lean_PersistentArray_append___rarg(x_18, x_276); +lean_dec(x_276); +if (lean_is_scalar(x_277)) { + x_279 = lean_alloc_ctor(0, 1, 8); } else { - x_277 = x_276; + x_279 = x_277; } -lean_ctor_set(x_277, 0, x_274); -lean_ctor_set(x_277, 1, x_275); -return x_277; +lean_ctor_set(x_279, 0, x_278); +lean_ctor_set_uint64(x_279, sizeof(void*)*1, x_275); +x_280 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_280, 0, x_268); +lean_ctor_set(x_280, 1, x_269); +lean_ctor_set(x_280, 2, x_270); +lean_ctor_set(x_280, 3, x_279); +lean_ctor_set(x_280, 4, x_271); +lean_ctor_set(x_280, 5, x_272); +lean_ctor_set(x_280, 6, x_273); +lean_ctor_set(x_280, 7, x_274); +x_281 = lean_st_ref_set(x_15, x_280, x_236); +x_282 = lean_ctor_get(x_281, 1); +lean_inc(x_282); +lean_dec(x_281); +x_283 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_discharge_x3f_x27___spec__9(x_227, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_282); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_227); +if (lean_obj_tag(x_283) == 0) +{ +lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; +x_284 = lean_ctor_get(x_283, 0); +lean_inc(x_284); +x_285 = lean_ctor_get(x_283, 1); +lean_inc(x_285); +if (lean_is_exclusive(x_283)) { + lean_ctor_release(x_283, 0); + lean_ctor_release(x_283, 1); + x_286 = x_283; +} else { + lean_dec_ref(x_283); + x_286 = lean_box(0); +} +if (lean_is_scalar(x_286)) { + x_287 = lean_alloc_ctor(0, 2, 0); +} else { + x_287 = x_286; +} +lean_ctor_set(x_287, 0, x_284); +lean_ctor_set(x_287, 1, x_285); +return x_287; } else { -lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; -x_278 = lean_ctor_get(x_273, 0); -lean_inc(x_278); -x_279 = lean_ctor_get(x_273, 1); -lean_inc(x_279); -if (lean_is_exclusive(x_273)) { - lean_ctor_release(x_273, 0); - lean_ctor_release(x_273, 1); - x_280 = x_273; +lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; +x_288 = lean_ctor_get(x_283, 0); +lean_inc(x_288); +x_289 = lean_ctor_get(x_283, 1); +lean_inc(x_289); +if (lean_is_exclusive(x_283)) { + lean_ctor_release(x_283, 0); + lean_ctor_release(x_283, 1); + x_290 = x_283; } else { - lean_dec_ref(x_273); - x_280 = lean_box(0); + lean_dec_ref(x_283); + x_290 = lean_box(0); } -if (lean_is_scalar(x_280)) { - x_281 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_290)) { + x_291 = lean_alloc_ctor(1, 2, 0); } else { - x_281 = x_280; + x_291 = x_290; } -lean_ctor_set(x_281, 0, x_278); -lean_ctor_set(x_281, 1, x_279); -return x_281; +lean_ctor_set(x_291, 0, x_288); +lean_ctor_set(x_291, 1, x_289); +return x_291; } } } else { -lean_object* x_282; double x_283; double x_284; lean_object* x_285; -x_282 = lean_box(0); -x_283 = lean_unbox_float(x_220); -lean_dec(x_220); -x_284 = lean_unbox_float(x_221); -lean_dec(x_221); -x_285 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3(x_2, x_3, x_4, x_18, x_219, x_1, x_222, x_283, x_284, x_5, x_282, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_217); -return x_285; -} -} -else -{ -lean_object* x_286; double x_287; double x_288; lean_object* x_289; -x_286 = lean_box(0); -x_287 = lean_unbox_float(x_220); -lean_dec(x_220); -x_288 = lean_unbox_float(x_221); -lean_dec(x_221); -x_289 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3(x_2, x_3, x_4, x_18, x_219, x_1, x_222, x_287, x_288, x_5, x_286, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_217); -return x_289; +lean_object* x_292; double x_293; double x_294; lean_object* x_295; +x_292 = lean_box(0); +x_293 = lean_unbox_float(x_228); +lean_dec(x_228); +x_294 = lean_unbox_float(x_229); +lean_dec(x_229); +x_295 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3(x_2, x_3, x_4, x_18, x_227, x_231, x_293, x_294, x_5, x_292, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_225); +return x_295; } } } @@ -5992,28 +6013,26 @@ lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; lean_object* x_18 = _args[17]; -lean_object* x_19 = _args[18]; _start: { -uint8_t x_20; uint8_t x_21; double x_22; double x_23; lean_object* x_24; -x_20 = lean_unbox(x_2); +uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; +x_19 = lean_unbox(x_2); lean_dec(x_2); -x_21 = lean_unbox(x_8); +x_20 = lean_unbox(x_7); +lean_dec(x_7); +x_21 = lean_unbox_float(x_8); lean_dec(x_8); x_22 = lean_unbox_float(x_9); lean_dec(x_9); -x_23 = lean_unbox_float(x_10); -lean_dec(x_10); -x_24 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__2(x_1, x_20, x_3, x_4, x_5, x_6, x_7, x_21, x_22, x_23, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); -lean_dec(x_18); -lean_dec(x_16); +x_23 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__2(x_1, x_19, x_3, x_4, x_5, x_6, x_20, x_21, x_22, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +lean_dec(x_17); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_24; +return x_23; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3___boxed(lean_object** _args) { @@ -6035,22 +6054,20 @@ lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; lean_object* x_18 = _args[17]; -lean_object* x_19 = _args[18]; _start: { -uint8_t x_20; uint8_t x_21; double x_22; double x_23; lean_object* x_24; -x_20 = lean_unbox(x_2); +uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; +x_19 = lean_unbox(x_2); lean_dec(x_2); -x_21 = lean_unbox(x_7); +x_20 = lean_unbox(x_6); +lean_dec(x_6); +x_21 = lean_unbox_float(x_7); lean_dec(x_7); x_22 = lean_unbox_float(x_8); lean_dec(x_8); -x_23 = lean_unbox_float(x_9); -lean_dec(x_9); -x_24 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3(x_1, x_20, x_3, x_4, x_5, x_6, x_21, x_22, x_23, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); -lean_dec(x_11); -lean_dec(x_6); -return x_24; +x_23 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3(x_1, x_19, x_3, x_4, x_5, x_20, x_21, x_22, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +lean_dec(x_10); +return x_23; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { @@ -27206,112 +27223,87 @@ lean_dec(x_12); return x_17; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { _start: { -double x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; -x_20 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_21 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_21, 0, x_1); -lean_ctor_set(x_21, 1, x_3); -lean_ctor_set_float(x_21, sizeof(void*)*2, x_20); -lean_ctor_set_float(x_21, sizeof(void*)*2 + 8, x_20); -lean_ctor_set_uint8(x_21, sizeof(void*)*2 + 16, x_2); -x_22 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__2___closed__2; -x_23 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_22); -if (x_23 == 0) +if (x_7 == 0) { -if (x_8 == 0) +double x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__2___closed__1; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_19); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_19); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); +x_21 = lean_box(0); +x_22 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +return x_22; +} +else { -lean_object* x_24; lean_object* x_25; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_23, 0, x_1); +lean_ctor_set(x_23, 1, x_3); +lean_ctor_set_float(x_23, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_21, x_24, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +x_25 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_23, x_24, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); return x_25; } -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_21); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); -return x_28; } } -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -lean_dec(x_21); -x_29 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_29, 0, x_1); -lean_ctor_set(x_29, 1, x_3); -lean_ctor_set_float(x_29, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_29, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_29, sizeof(void*)*2 + 16, x_2); -x_30 = lean_box(0); -x_31 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_29, x_30, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); -return x_31; -} -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { _start: { -lean_object* x_20; lean_object* x_21; -x_20 = lean_ctor_get(x_17, 5); -lean_inc(x_20); -lean_inc(x_18); +lean_object* x_19; lean_object* x_20; +x_19 = lean_ctor_get(x_16, 5); +lean_inc(x_19); lean_inc(x_17); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_21 = lean_apply_9(x_10, x_5, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); -if (lean_obj_tag(x_21) == 0) +x_20 = lean_apply_9(x_9, x_5, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +if (lean_obj_tag(x_20) == 0) { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_21, 0); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_20, 1); lean_inc(x_22); -x_23 = lean_ctor_get(x_21, 1); -lean_inc(x_23); -lean_dec(x_21); -x_24 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_20, x_5, x_6, x_7, x_8, x_9, x_22, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_23); -lean_dec(x_18); -lean_dec(x_16); +lean_dec(x_20); +x_23 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_19, x_5, x_6, x_7, x_8, x_21, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_22); +lean_dec(x_17); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_21, 1); -lean_inc(x_25); -lean_dec(x_21); -x_26 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3___closed__2; -x_27 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_20, x_5, x_6, x_7, x_8, x_9, x_26, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_25); -lean_dec(x_18); -lean_dec(x_16); +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_20, 1); +lean_inc(x_24); +lean_dec(x_20); +x_25 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3___closed__2; +x_26 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_19, x_5, x_6, x_7, x_8, x_25, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_24); +lean_dec(x_17); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_27; +return x_26; } } } @@ -27329,13 +27321,13 @@ x_20 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___la x_21 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_20); if (x_21 == 0) { -lean_object* x_22; lean_object* x_23; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; -x_118 = lean_io_mono_nanos_now(x_19); -x_119 = lean_ctor_get(x_118, 0); -lean_inc(x_119); -x_120 = lean_ctor_get(x_118, 1); -lean_inc(x_120); -lean_dec(x_118); +lean_object* x_22; lean_object* x_23; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; +x_126 = lean_io_mono_nanos_now(x_19); +x_127 = lean_ctor_get(x_126, 0); +lean_inc(x_127); +x_128 = lean_ctor_get(x_126, 1); +lean_inc(x_128); +lean_dec(x_126); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); @@ -27343,242 +27335,242 @@ lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_121 = lean_apply_8(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_120); -if (lean_obj_tag(x_121) == 0) +x_129 = lean_apply_8(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_128); +if (lean_obj_tag(x_129) == 0) { -uint8_t x_122; -x_122 = !lean_is_exclusive(x_121); -if (x_122 == 0) +uint8_t x_130; +x_130 = !lean_is_exclusive(x_129); +if (x_130 == 0) { -lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; uint8_t x_127; -x_123 = lean_ctor_get(x_121, 0); -x_124 = lean_ctor_get(x_121, 1); -x_125 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_125, 0, x_123); -x_126 = lean_io_mono_nanos_now(x_124); -x_127 = !lean_is_exclusive(x_126); -if (x_127 == 0) +lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; uint8_t x_135; +x_131 = lean_ctor_get(x_129, 0); +x_132 = lean_ctor_get(x_129, 1); +x_133 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_133, 0, x_131); +x_134 = lean_io_mono_nanos_now(x_132); +x_135 = !lean_is_exclusive(x_134); +if (x_135 == 0) { -lean_object* x_128; lean_object* x_129; uint8_t x_130; lean_object* x_131; double x_132; double x_133; double x_134; double x_135; double x_136; lean_object* x_137; lean_object* x_138; -x_128 = lean_ctor_get(x_126, 0); -x_129 = lean_ctor_get(x_126, 1); -x_130 = 0; -x_131 = lean_unsigned_to_nat(0u); -x_132 = l_Float_ofScientific(x_119, x_130, x_131); -lean_dec(x_119); -x_133 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; -x_134 = lean_float_div(x_132, x_133); -x_135 = l_Float_ofScientific(x_128, x_130, x_131); -lean_dec(x_128); -x_136 = lean_float_div(x_135, x_133); -x_137 = lean_box_float(x_134); -x_138 = lean_box_float(x_136); -lean_ctor_set(x_126, 1, x_138); -lean_ctor_set(x_126, 0, x_137); -lean_ctor_set(x_121, 1, x_126); -lean_ctor_set(x_121, 0, x_125); -x_22 = x_121; -x_23 = x_129; -goto block_117; +lean_object* x_136; lean_object* x_137; uint8_t x_138; lean_object* x_139; double x_140; double x_141; double x_142; double x_143; double x_144; lean_object* x_145; lean_object* x_146; +x_136 = lean_ctor_get(x_134, 0); +x_137 = lean_ctor_get(x_134, 1); +x_138 = 0; +x_139 = lean_unsigned_to_nat(0u); +x_140 = l_Float_ofScientific(x_127, x_138, x_139); +lean_dec(x_127); +x_141 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; +x_142 = lean_float_div(x_140, x_141); +x_143 = l_Float_ofScientific(x_136, x_138, x_139); +lean_dec(x_136); +x_144 = lean_float_div(x_143, x_141); +x_145 = lean_box_float(x_142); +x_146 = lean_box_float(x_144); +lean_ctor_set(x_134, 1, x_146); +lean_ctor_set(x_134, 0, x_145); +lean_ctor_set(x_129, 1, x_134); +lean_ctor_set(x_129, 0, x_133); +x_22 = x_129; +x_23 = x_137; +goto block_125; } else { -lean_object* x_139; lean_object* x_140; uint8_t x_141; lean_object* x_142; double x_143; double x_144; double x_145; double x_146; double x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; -x_139 = lean_ctor_get(x_126, 0); -x_140 = lean_ctor_get(x_126, 1); -lean_inc(x_140); -lean_inc(x_139); -lean_dec(x_126); -x_141 = 0; -x_142 = lean_unsigned_to_nat(0u); -x_143 = l_Float_ofScientific(x_119, x_141, x_142); -lean_dec(x_119); -x_144 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; -x_145 = lean_float_div(x_143, x_144); -x_146 = l_Float_ofScientific(x_139, x_141, x_142); -lean_dec(x_139); -x_147 = lean_float_div(x_146, x_144); -x_148 = lean_box_float(x_145); -x_149 = lean_box_float(x_147); -x_150 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_150, 0, x_148); -lean_ctor_set(x_150, 1, x_149); -lean_ctor_set(x_121, 1, x_150); -lean_ctor_set(x_121, 0, x_125); -x_22 = x_121; -x_23 = x_140; -goto block_117; +lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; +x_147 = lean_ctor_get(x_134, 0); +x_148 = lean_ctor_get(x_134, 1); +lean_inc(x_148); +lean_inc(x_147); +lean_dec(x_134); +x_149 = 0; +x_150 = lean_unsigned_to_nat(0u); +x_151 = l_Float_ofScientific(x_127, x_149, x_150); +lean_dec(x_127); +x_152 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; +x_153 = lean_float_div(x_151, x_152); +x_154 = l_Float_ofScientific(x_147, x_149, x_150); +lean_dec(x_147); +x_155 = lean_float_div(x_154, x_152); +x_156 = lean_box_float(x_153); +x_157 = lean_box_float(x_155); +x_158 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_158, 0, x_156); +lean_ctor_set(x_158, 1, x_157); +lean_ctor_set(x_129, 1, x_158); +lean_ctor_set(x_129, 0, x_133); +x_22 = x_129; +x_23 = x_148; +goto block_125; } } else { -lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; uint8_t x_158; lean_object* x_159; double x_160; double x_161; double x_162; double x_163; double x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; -x_151 = lean_ctor_get(x_121, 0); -x_152 = lean_ctor_get(x_121, 1); -lean_inc(x_152); -lean_inc(x_151); -lean_dec(x_121); -x_153 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_153, 0, x_151); -x_154 = lean_io_mono_nanos_now(x_152); -x_155 = lean_ctor_get(x_154, 0); -lean_inc(x_155); -x_156 = lean_ctor_get(x_154, 1); -lean_inc(x_156); -if (lean_is_exclusive(x_154)) { - lean_ctor_release(x_154, 0); - lean_ctor_release(x_154, 1); - x_157 = x_154; +lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; uint8_t x_166; lean_object* x_167; double x_168; double x_169; double x_170; double x_171; double x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; +x_159 = lean_ctor_get(x_129, 0); +x_160 = lean_ctor_get(x_129, 1); +lean_inc(x_160); +lean_inc(x_159); +lean_dec(x_129); +x_161 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_161, 0, x_159); +x_162 = lean_io_mono_nanos_now(x_160); +x_163 = lean_ctor_get(x_162, 0); +lean_inc(x_163); +x_164 = lean_ctor_get(x_162, 1); +lean_inc(x_164); +if (lean_is_exclusive(x_162)) { + lean_ctor_release(x_162, 0); + lean_ctor_release(x_162, 1); + x_165 = x_162; } else { - lean_dec_ref(x_154); - x_157 = lean_box(0); + lean_dec_ref(x_162); + x_165 = lean_box(0); } -x_158 = 0; -x_159 = lean_unsigned_to_nat(0u); -x_160 = l_Float_ofScientific(x_119, x_158, x_159); -lean_dec(x_119); -x_161 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; -x_162 = lean_float_div(x_160, x_161); -x_163 = l_Float_ofScientific(x_155, x_158, x_159); -lean_dec(x_155); -x_164 = lean_float_div(x_163, x_161); -x_165 = lean_box_float(x_162); -x_166 = lean_box_float(x_164); -if (lean_is_scalar(x_157)) { - x_167 = lean_alloc_ctor(0, 2, 0); +x_166 = 0; +x_167 = lean_unsigned_to_nat(0u); +x_168 = l_Float_ofScientific(x_127, x_166, x_167); +lean_dec(x_127); +x_169 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; +x_170 = lean_float_div(x_168, x_169); +x_171 = l_Float_ofScientific(x_163, x_166, x_167); +lean_dec(x_163); +x_172 = lean_float_div(x_171, x_169); +x_173 = lean_box_float(x_170); +x_174 = lean_box_float(x_172); +if (lean_is_scalar(x_165)) { + x_175 = lean_alloc_ctor(0, 2, 0); } else { - x_167 = x_157; + x_175 = x_165; } -lean_ctor_set(x_167, 0, x_165); -lean_ctor_set(x_167, 1, x_166); -x_168 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_168, 0, x_153); -lean_ctor_set(x_168, 1, x_167); -x_22 = x_168; -x_23 = x_156; -goto block_117; +lean_ctor_set(x_175, 0, x_173); +lean_ctor_set(x_175, 1, x_174); +x_176 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_176, 0, x_161); +lean_ctor_set(x_176, 1, x_175); +x_22 = x_176; +x_23 = x_164; +goto block_125; } } else { -uint8_t x_169; -x_169 = !lean_is_exclusive(x_121); -if (x_169 == 0) +uint8_t x_177; +x_177 = !lean_is_exclusive(x_129); +if (x_177 == 0) { -lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; uint8_t x_174; -x_170 = lean_ctor_get(x_121, 0); -x_171 = lean_ctor_get(x_121, 1); -x_172 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_172, 0, x_170); -x_173 = lean_io_mono_nanos_now(x_171); -x_174 = !lean_is_exclusive(x_173); -if (x_174 == 0) +lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; uint8_t x_182; +x_178 = lean_ctor_get(x_129, 0); +x_179 = lean_ctor_get(x_129, 1); +x_180 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_180, 0, x_178); +x_181 = lean_io_mono_nanos_now(x_179); +x_182 = !lean_is_exclusive(x_181); +if (x_182 == 0) { -lean_object* x_175; lean_object* x_176; uint8_t x_177; lean_object* x_178; double x_179; double x_180; double x_181; double x_182; double x_183; lean_object* x_184; lean_object* x_185; -x_175 = lean_ctor_get(x_173, 0); -x_176 = lean_ctor_get(x_173, 1); -x_177 = 0; -x_178 = lean_unsigned_to_nat(0u); -x_179 = l_Float_ofScientific(x_119, x_177, x_178); -lean_dec(x_119); -x_180 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; -x_181 = lean_float_div(x_179, x_180); -x_182 = l_Float_ofScientific(x_175, x_177, x_178); -lean_dec(x_175); -x_183 = lean_float_div(x_182, x_180); -x_184 = lean_box_float(x_181); -x_185 = lean_box_float(x_183); -lean_ctor_set(x_173, 1, x_185); -lean_ctor_set(x_173, 0, x_184); -lean_ctor_set_tag(x_121, 0); -lean_ctor_set(x_121, 1, x_173); -lean_ctor_set(x_121, 0, x_172); -x_22 = x_121; -x_23 = x_176; -goto block_117; +lean_object* x_183; lean_object* x_184; uint8_t x_185; lean_object* x_186; double x_187; double x_188; double x_189; double x_190; double x_191; lean_object* x_192; lean_object* x_193; +x_183 = lean_ctor_get(x_181, 0); +x_184 = lean_ctor_get(x_181, 1); +x_185 = 0; +x_186 = lean_unsigned_to_nat(0u); +x_187 = l_Float_ofScientific(x_127, x_185, x_186); +lean_dec(x_127); +x_188 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; +x_189 = lean_float_div(x_187, x_188); +x_190 = l_Float_ofScientific(x_183, x_185, x_186); +lean_dec(x_183); +x_191 = lean_float_div(x_190, x_188); +x_192 = lean_box_float(x_189); +x_193 = lean_box_float(x_191); +lean_ctor_set(x_181, 1, x_193); +lean_ctor_set(x_181, 0, x_192); +lean_ctor_set_tag(x_129, 0); +lean_ctor_set(x_129, 1, x_181); +lean_ctor_set(x_129, 0, x_180); +x_22 = x_129; +x_23 = x_184; +goto block_125; } else { -lean_object* x_186; lean_object* x_187; uint8_t x_188; lean_object* x_189; double x_190; double x_191; double x_192; double x_193; double x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; -x_186 = lean_ctor_get(x_173, 0); -x_187 = lean_ctor_get(x_173, 1); -lean_inc(x_187); -lean_inc(x_186); -lean_dec(x_173); -x_188 = 0; -x_189 = lean_unsigned_to_nat(0u); -x_190 = l_Float_ofScientific(x_119, x_188, x_189); -lean_dec(x_119); -x_191 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; -x_192 = lean_float_div(x_190, x_191); -x_193 = l_Float_ofScientific(x_186, x_188, x_189); -lean_dec(x_186); -x_194 = lean_float_div(x_193, x_191); -x_195 = lean_box_float(x_192); -x_196 = lean_box_float(x_194); -x_197 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_197, 0, x_195); -lean_ctor_set(x_197, 1, x_196); -lean_ctor_set_tag(x_121, 0); -lean_ctor_set(x_121, 1, x_197); -lean_ctor_set(x_121, 0, x_172); -x_22 = x_121; -x_23 = x_187; -goto block_117; +lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; +x_194 = lean_ctor_get(x_181, 0); +x_195 = lean_ctor_get(x_181, 1); +lean_inc(x_195); +lean_inc(x_194); +lean_dec(x_181); +x_196 = 0; +x_197 = lean_unsigned_to_nat(0u); +x_198 = l_Float_ofScientific(x_127, x_196, x_197); +lean_dec(x_127); +x_199 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; +x_200 = lean_float_div(x_198, x_199); +x_201 = l_Float_ofScientific(x_194, x_196, x_197); +lean_dec(x_194); +x_202 = lean_float_div(x_201, x_199); +x_203 = lean_box_float(x_200); +x_204 = lean_box_float(x_202); +x_205 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_205, 0, x_203); +lean_ctor_set(x_205, 1, x_204); +lean_ctor_set_tag(x_129, 0); +lean_ctor_set(x_129, 1, x_205); +lean_ctor_set(x_129, 0, x_180); +x_22 = x_129; +x_23 = x_195; +goto block_125; } } else { -lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; uint8_t x_205; lean_object* x_206; double x_207; double x_208; double x_209; double x_210; double x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; -x_198 = lean_ctor_get(x_121, 0); -x_199 = lean_ctor_get(x_121, 1); -lean_inc(x_199); -lean_inc(x_198); -lean_dec(x_121); -x_200 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_200, 0, x_198); -x_201 = lean_io_mono_nanos_now(x_199); -x_202 = lean_ctor_get(x_201, 0); -lean_inc(x_202); -x_203 = lean_ctor_get(x_201, 1); -lean_inc(x_203); -if (lean_is_exclusive(x_201)) { - lean_ctor_release(x_201, 0); - lean_ctor_release(x_201, 1); - x_204 = x_201; +lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_214; double x_215; double x_216; double x_217; double x_218; double x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; +x_206 = lean_ctor_get(x_129, 0); +x_207 = lean_ctor_get(x_129, 1); +lean_inc(x_207); +lean_inc(x_206); +lean_dec(x_129); +x_208 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_208, 0, x_206); +x_209 = lean_io_mono_nanos_now(x_207); +x_210 = lean_ctor_get(x_209, 0); +lean_inc(x_210); +x_211 = lean_ctor_get(x_209, 1); +lean_inc(x_211); +if (lean_is_exclusive(x_209)) { + lean_ctor_release(x_209, 0); + lean_ctor_release(x_209, 1); + x_212 = x_209; } else { - lean_dec_ref(x_201); - x_204 = lean_box(0); + lean_dec_ref(x_209); + x_212 = lean_box(0); } -x_205 = 0; -x_206 = lean_unsigned_to_nat(0u); -x_207 = l_Float_ofScientific(x_119, x_205, x_206); -lean_dec(x_119); -x_208 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; -x_209 = lean_float_div(x_207, x_208); -x_210 = l_Float_ofScientific(x_202, x_205, x_206); -lean_dec(x_202); -x_211 = lean_float_div(x_210, x_208); -x_212 = lean_box_float(x_209); -x_213 = lean_box_float(x_211); -if (lean_is_scalar(x_204)) { - x_214 = lean_alloc_ctor(0, 2, 0); +x_213 = 0; +x_214 = lean_unsigned_to_nat(0u); +x_215 = l_Float_ofScientific(x_127, x_213, x_214); +lean_dec(x_127); +x_216 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__5; +x_217 = lean_float_div(x_215, x_216); +x_218 = l_Float_ofScientific(x_210, x_213, x_214); +lean_dec(x_210); +x_219 = lean_float_div(x_218, x_216); +x_220 = lean_box_float(x_217); +x_221 = lean_box_float(x_219); +if (lean_is_scalar(x_212)) { + x_222 = lean_alloc_ctor(0, 2, 0); } else { - x_214 = x_204; + x_222 = x_212; } -lean_ctor_set(x_214, 0, x_212); -lean_ctor_set(x_214, 1, x_213); -x_215 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_215, 0, x_200); -lean_ctor_set(x_215, 1, x_214); -x_22 = x_215; -x_23 = x_203; -goto block_117; +lean_ctor_set(x_222, 0, x_220); +lean_ctor_set(x_222, 1, x_221); +x_223 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_223, 0, x_208); +lean_ctor_set(x_223, 1, x_222); +x_22 = x_223; +x_23 = x_211; +goto block_125; } } -block_117: +block_125: { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; lean_object* x_97; uint8_t x_98; +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; uint8_t x_30; x_24 = lean_ctor_get(x_22, 1); lean_inc(x_24); x_25 = lean_ctor_get(x_22, 0); @@ -27589,14 +27581,28 @@ lean_inc(x_26); x_27 = lean_ctor_get(x_24, 1); lean_inc(x_27); lean_dec(x_24); -x_97 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__2; -x_98 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_97); -if (x_98 == 0) +x_28 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__2; +x_29 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_28); +if (x_29 == 0) { -uint8_t x_99; -x_99 = 0; -x_28 = x_99; -goto block_96; +if (x_6 == 0) +{ +uint8_t x_95; +x_95 = 0; +x_30 = x_95; +goto block_94; +} +else +{ +lean_object* x_96; double x_97; double x_98; lean_object* x_99; +x_96 = lean_box(0); +x_97 = lean_unbox_float(x_26); +lean_dec(x_26); +x_98 = lean_unbox_float(x_27); +lean_dec(x_27); +x_99 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_25, x_29, x_97, x_98, x_5, x_96, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_23); +return x_99; +} } else { @@ -27606,6 +27612,8 @@ x_101 = lean_unbox_float(x_26); x_102 = lean_float_sub(x_100, x_101); if (x_21 == 0) { +if (x_6 == 0) +{ lean_object* x_103; lean_object* x_104; uint8_t x_105; lean_object* x_106; double x_107; double x_108; double x_109; uint8_t x_110; x_103 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__3; x_104 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_103); @@ -27616,62 +27624,86 @@ lean_dec(x_104); x_108 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__4; x_109 = lean_float_div(x_107, x_108); x_110 = lean_float_decLt(x_109, x_102); -x_28 = x_110; -goto block_96; +x_30 = x_110; +goto block_94; } else { -lean_object* x_111; lean_object* x_112; uint8_t x_113; lean_object* x_114; double x_115; uint8_t x_116; -x_111 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__3; -x_112 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_111); -x_113 = 0; -x_114 = lean_unsigned_to_nat(0u); -x_115 = l_Float_ofScientific(x_112, x_113, x_114); -lean_dec(x_112); -x_116 = lean_float_decLt(x_115, x_102); -x_28 = x_116; -goto block_96; +lean_object* x_111; double x_112; double x_113; lean_object* x_114; +x_111 = lean_box(0); +x_112 = lean_unbox_float(x_26); +lean_dec(x_26); +x_113 = lean_unbox_float(x_27); +lean_dec(x_27); +x_114 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_25, x_29, x_112, x_113, x_5, x_111, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_23); +return x_114; } } -block_96: +else { if (x_6 == 0) { -if (x_28 == 0) +lean_object* x_115; lean_object* x_116; uint8_t x_117; lean_object* x_118; double x_119; uint8_t x_120; +x_115 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__3; +x_116 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_115); +x_117 = 0; +x_118 = lean_unsigned_to_nat(0u); +x_119 = l_Float_ofScientific(x_116, x_117, x_118); +lean_dec(x_116); +x_120 = lean_float_decLt(x_119, x_102); +x_30 = x_120; +goto block_94; +} +else { -lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; +lean_object* x_121; double x_122; double x_123; lean_object* x_124; +x_121 = lean_box(0); +x_122 = lean_unbox_float(x_26); +lean_dec(x_26); +x_123 = lean_unbox_float(x_27); +lean_dec(x_27); +x_124 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_25, x_29, x_122, x_123, x_5, x_121, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_23); +return x_124; +} +} +} +block_94: +{ +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; lean_dec(x_27); lean_dec(x_26); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_29 = lean_st_ref_take(x_15, x_23); -x_30 = lean_ctor_get(x_29, 0); -lean_inc(x_30); -x_31 = lean_ctor_get(x_30, 3); -lean_inc(x_31); -x_32 = lean_ctor_get(x_29, 1); +x_31 = lean_st_ref_take(x_15, x_23); +x_32 = lean_ctor_get(x_31, 0); lean_inc(x_32); -lean_dec(x_29); -x_33 = !lean_is_exclusive(x_30); -if (x_33 == 0) -{ -lean_object* x_34; uint8_t x_35; -x_34 = lean_ctor_get(x_30, 3); -lean_dec(x_34); -x_35 = !lean_is_exclusive(x_31); +x_33 = lean_ctor_get(x_32, 3); +lean_inc(x_33); +x_34 = lean_ctor_get(x_31, 1); +lean_inc(x_34); +lean_dec(x_31); +x_35 = !lean_is_exclusive(x_32); if (x_35 == 0) { -lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_36 = lean_ctor_get(x_31, 0); -x_37 = l_Lean_PersistentArray_append___rarg(x_18, x_36); +lean_object* x_36; uint8_t x_37; +x_36 = lean_ctor_get(x_32, 3); lean_dec(x_36); -lean_ctor_set(x_31, 0, x_37); -x_38 = lean_st_ref_set(x_15, x_30, x_32); -x_39 = lean_ctor_get(x_38, 1); -lean_inc(x_39); +x_37 = !lean_is_exclusive(x_33); +if (x_37 == 0) +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_38 = lean_ctor_get(x_33, 0); +x_39 = l_Lean_PersistentArray_append___rarg(x_18, x_38); lean_dec(x_38); -x_40 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_simpGround___spec__2(x_25, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_39); +lean_ctor_set(x_33, 0, x_39); +x_40 = lean_st_ref_set(x_15, x_32, x_34); +x_41 = lean_ctor_get(x_40, 1); +lean_inc(x_41); +lean_dec(x_40); +x_42 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_simpGround___spec__2(x_25, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_41); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -27680,178 +27712,178 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_25); -if (lean_obj_tag(x_40) == 0) +if (lean_obj_tag(x_42) == 0) { -uint8_t x_41; -x_41 = !lean_is_exclusive(x_40); -if (x_41 == 0) +uint8_t x_43; +x_43 = !lean_is_exclusive(x_42); +if (x_43 == 0) { -return x_40; +return x_42; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_42 = lean_ctor_get(x_40, 0); -x_43 = lean_ctor_get(x_40, 1); -lean_inc(x_43); -lean_inc(x_42); -lean_dec(x_40); -x_44 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_44, 0, x_42); -lean_ctor_set(x_44, 1, x_43); -return x_44; +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_42, 0); +x_45 = lean_ctor_get(x_42, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_42); +x_46 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; } } else { -uint8_t x_45; -x_45 = !lean_is_exclusive(x_40); -if (x_45 == 0) +uint8_t x_47; +x_47 = !lean_is_exclusive(x_42); +if (x_47 == 0) { -return x_40; +return x_42; } else { -lean_object* x_46; lean_object* x_47; lean_object* x_48; -x_46 = lean_ctor_get(x_40, 0); -x_47 = lean_ctor_get(x_40, 1); -lean_inc(x_47); -lean_inc(x_46); -lean_dec(x_40); -x_48 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_48, 0, x_46); -lean_ctor_set(x_48, 1, x_47); -return x_48; +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_42, 0); +x_49 = lean_ctor_get(x_42, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_42); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; } } } else { -uint64_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_49 = lean_ctor_get_uint64(x_31, sizeof(void*)*1); -x_50 = lean_ctor_get(x_31, 0); -lean_inc(x_50); -lean_dec(x_31); -x_51 = l_Lean_PersistentArray_append___rarg(x_18, x_50); -lean_dec(x_50); -x_52 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set_uint64(x_52, sizeof(void*)*1, x_49); -lean_ctor_set(x_30, 3, x_52); -x_53 = lean_st_ref_set(x_15, x_30, x_32); -x_54 = lean_ctor_get(x_53, 1); -lean_inc(x_54); -lean_dec(x_53); -x_55 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_simpGround___spec__2(x_25, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_54); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_25); -if (lean_obj_tag(x_55) == 0) -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_56 = lean_ctor_get(x_55, 0); +uint64_t x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_51 = lean_ctor_get_uint64(x_33, sizeof(void*)*1); +x_52 = lean_ctor_get(x_33, 0); +lean_inc(x_52); +lean_dec(x_33); +x_53 = l_Lean_PersistentArray_append___rarg(x_18, x_52); +lean_dec(x_52); +x_54 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_54, 0, x_53); +lean_ctor_set_uint64(x_54, sizeof(void*)*1, x_51); +lean_ctor_set(x_32, 3, x_54); +x_55 = lean_st_ref_set(x_15, x_32, x_34); +x_56 = lean_ctor_get(x_55, 1); lean_inc(x_56); -x_57 = lean_ctor_get(x_55, 1); -lean_inc(x_57); -if (lean_is_exclusive(x_55)) { - lean_ctor_release(x_55, 0); - lean_ctor_release(x_55, 1); - x_58 = x_55; +lean_dec(x_55); +x_57 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_simpGround___spec__2(x_25, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_56); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_25); +if (lean_obj_tag(x_57) == 0) +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_58 = lean_ctor_get(x_57, 0); +lean_inc(x_58); +x_59 = lean_ctor_get(x_57, 1); +lean_inc(x_59); +if (lean_is_exclusive(x_57)) { + lean_ctor_release(x_57, 0); + lean_ctor_release(x_57, 1); + x_60 = x_57; } else { - lean_dec_ref(x_55); - x_58 = lean_box(0); + lean_dec_ref(x_57); + x_60 = lean_box(0); } -if (lean_is_scalar(x_58)) { - x_59 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_60)) { + x_61 = lean_alloc_ctor(0, 2, 0); } else { - x_59 = x_58; + x_61 = x_60; } -lean_ctor_set(x_59, 0, x_56); -lean_ctor_set(x_59, 1, x_57); -return x_59; +lean_ctor_set(x_61, 0, x_58); +lean_ctor_set(x_61, 1, x_59); +return x_61; } else { -lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_60 = lean_ctor_get(x_55, 0); -lean_inc(x_60); -x_61 = lean_ctor_get(x_55, 1); -lean_inc(x_61); -if (lean_is_exclusive(x_55)) { - lean_ctor_release(x_55, 0); - lean_ctor_release(x_55, 1); - x_62 = x_55; +lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_62 = lean_ctor_get(x_57, 0); +lean_inc(x_62); +x_63 = lean_ctor_get(x_57, 1); +lean_inc(x_63); +if (lean_is_exclusive(x_57)) { + lean_ctor_release(x_57, 0); + lean_ctor_release(x_57, 1); + x_64 = x_57; } else { - lean_dec_ref(x_55); - x_62 = lean_box(0); + lean_dec_ref(x_57); + x_64 = lean_box(0); } -if (lean_is_scalar(x_62)) { - x_63 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_64)) { + x_65 = lean_alloc_ctor(1, 2, 0); } else { - x_63 = x_62; + x_65 = x_64; } -lean_ctor_set(x_63, 0, x_60); -lean_ctor_set(x_63, 1, x_61); -return x_63; +lean_ctor_set(x_65, 0, x_62); +lean_ctor_set(x_65, 1, x_63); +return x_65; } } } else { -lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; uint64_t x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_64 = lean_ctor_get(x_30, 0); -x_65 = lean_ctor_get(x_30, 1); -x_66 = lean_ctor_get(x_30, 2); -x_67 = lean_ctor_get(x_30, 4); -x_68 = lean_ctor_get(x_30, 5); -x_69 = lean_ctor_get(x_30, 6); -x_70 = lean_ctor_get(x_30, 7); +lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; uint64_t x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_66 = lean_ctor_get(x_32, 0); +x_67 = lean_ctor_get(x_32, 1); +x_68 = lean_ctor_get(x_32, 2); +x_69 = lean_ctor_get(x_32, 4); +x_70 = lean_ctor_get(x_32, 5); +x_71 = lean_ctor_get(x_32, 6); +x_72 = lean_ctor_get(x_32, 7); +lean_inc(x_72); +lean_inc(x_71); lean_inc(x_70); lean_inc(x_69); lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); -lean_inc(x_65); -lean_inc(x_64); -lean_dec(x_30); -x_71 = lean_ctor_get_uint64(x_31, sizeof(void*)*1); -x_72 = lean_ctor_get(x_31, 0); -lean_inc(x_72); -if (lean_is_exclusive(x_31)) { - lean_ctor_release(x_31, 0); - x_73 = x_31; +lean_dec(x_32); +x_73 = lean_ctor_get_uint64(x_33, sizeof(void*)*1); +x_74 = lean_ctor_get(x_33, 0); +lean_inc(x_74); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + x_75 = x_33; } else { - lean_dec_ref(x_31); - x_73 = lean_box(0); + lean_dec_ref(x_33); + x_75 = lean_box(0); } -x_74 = l_Lean_PersistentArray_append___rarg(x_18, x_72); -lean_dec(x_72); -if (lean_is_scalar(x_73)) { - x_75 = lean_alloc_ctor(0, 1, 8); +x_76 = l_Lean_PersistentArray_append___rarg(x_18, x_74); +lean_dec(x_74); +if (lean_is_scalar(x_75)) { + x_77 = lean_alloc_ctor(0, 1, 8); } else { - x_75 = x_73; + x_77 = x_75; } -lean_ctor_set(x_75, 0, x_74); -lean_ctor_set_uint64(x_75, sizeof(void*)*1, x_71); -x_76 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_76, 0, x_64); -lean_ctor_set(x_76, 1, x_65); -lean_ctor_set(x_76, 2, x_66); -lean_ctor_set(x_76, 3, x_75); -lean_ctor_set(x_76, 4, x_67); -lean_ctor_set(x_76, 5, x_68); -lean_ctor_set(x_76, 6, x_69); -lean_ctor_set(x_76, 7, x_70); -x_77 = lean_st_ref_set(x_15, x_76, x_32); -x_78 = lean_ctor_get(x_77, 1); -lean_inc(x_78); -lean_dec(x_77); -x_79 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_simpGround___spec__2(x_25, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_78); +lean_ctor_set(x_77, 0, x_76); +lean_ctor_set_uint64(x_77, sizeof(void*)*1, x_73); +x_78 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_78, 0, x_66); +lean_ctor_set(x_78, 1, x_67); +lean_ctor_set(x_78, 2, x_68); +lean_ctor_set(x_78, 3, x_77); +lean_ctor_set(x_78, 4, x_69); +lean_ctor_set(x_78, 5, x_70); +lean_ctor_set(x_78, 6, x_71); +lean_ctor_set(x_78, 7, x_72); +x_79 = lean_st_ref_set(x_15, x_78, x_34); +x_80 = lean_ctor_get(x_79, 1); +lean_inc(x_80); +lean_dec(x_79); +x_81 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_simpGround___spec__2(x_25, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_80); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -27860,91 +27892,79 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_25); -if (lean_obj_tag(x_79) == 0) +if (lean_obj_tag(x_81) == 0) { -lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; -x_80 = lean_ctor_get(x_79, 0); -lean_inc(x_80); -x_81 = lean_ctor_get(x_79, 1); -lean_inc(x_81); -if (lean_is_exclusive(x_79)) { - lean_ctor_release(x_79, 0); - lean_ctor_release(x_79, 1); - x_82 = x_79; +lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; +x_82 = lean_ctor_get(x_81, 0); +lean_inc(x_82); +x_83 = lean_ctor_get(x_81, 1); +lean_inc(x_83); +if (lean_is_exclusive(x_81)) { + lean_ctor_release(x_81, 0); + lean_ctor_release(x_81, 1); + x_84 = x_81; } else { - lean_dec_ref(x_79); - x_82 = lean_box(0); + lean_dec_ref(x_81); + x_84 = lean_box(0); } -if (lean_is_scalar(x_82)) { - x_83 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_84)) { + x_85 = lean_alloc_ctor(0, 2, 0); } else { - x_83 = x_82; + x_85 = x_84; } -lean_ctor_set(x_83, 0, x_80); -lean_ctor_set(x_83, 1, x_81); -return x_83; +lean_ctor_set(x_85, 0, x_82); +lean_ctor_set(x_85, 1, x_83); +return x_85; } else { -lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; -x_84 = lean_ctor_get(x_79, 0); -lean_inc(x_84); -x_85 = lean_ctor_get(x_79, 1); -lean_inc(x_85); -if (lean_is_exclusive(x_79)) { - lean_ctor_release(x_79, 0); - lean_ctor_release(x_79, 1); - x_86 = x_79; +lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; +x_86 = lean_ctor_get(x_81, 0); +lean_inc(x_86); +x_87 = lean_ctor_get(x_81, 1); +lean_inc(x_87); +if (lean_is_exclusive(x_81)) { + lean_ctor_release(x_81, 0); + lean_ctor_release(x_81, 1); + x_88 = x_81; } else { - lean_dec_ref(x_79); - x_86 = lean_box(0); + lean_dec_ref(x_81); + x_88 = lean_box(0); } -if (lean_is_scalar(x_86)) { - x_87 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_88)) { + x_89 = lean_alloc_ctor(1, 2, 0); } else { - x_87 = x_86; + x_89 = x_88; } -lean_ctor_set(x_87, 0, x_84); -lean_ctor_set(x_87, 1, x_85); -return x_87; +lean_ctor_set(x_89, 0, x_86); +lean_ctor_set(x_89, 1, x_87); +return x_89; } } } else { -lean_object* x_88; double x_89; double x_90; lean_object* x_91; -x_88 = lean_box(0); -x_89 = lean_unbox_float(x_26); +lean_object* x_90; double x_91; double x_92; lean_object* x_93; +x_90 = lean_box(0); +x_91 = lean_unbox_float(x_26); lean_dec(x_26); -x_90 = lean_unbox_float(x_27); +x_92 = lean_unbox_float(x_27); lean_dec(x_27); -x_91 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_25, x_1, x_28, x_89, x_90, x_5, x_88, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_23); -return x_91; -} -} -else -{ -lean_object* x_92; double x_93; double x_94; lean_object* x_95; -x_92 = lean_box(0); -x_93 = lean_unbox_float(x_26); -lean_dec(x_26); -x_94 = lean_unbox_float(x_27); -lean_dec(x_27); -x_95 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_25, x_1, x_28, x_93, x_94, x_5, x_92, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_23); -return x_95; +x_93 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_25, x_29, x_91, x_92, x_5, x_90, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_23); +return x_93; } } } } else { -lean_object* x_216; lean_object* x_217; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; -x_312 = lean_io_get_num_heartbeats(x_19); -x_313 = lean_ctor_get(x_312, 0); -lean_inc(x_313); -x_314 = lean_ctor_get(x_312, 1); -lean_inc(x_314); -lean_dec(x_312); +lean_object* x_224; lean_object* x_225; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; +x_328 = lean_io_get_num_heartbeats(x_19); +x_329 = lean_ctor_get(x_328, 0); +lean_inc(x_329); +x_330 = lean_ctor_get(x_328, 1); +lean_inc(x_330); +lean_dec(x_328); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); @@ -27952,497 +27972,428 @@ lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_315 = lean_apply_8(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_314); -if (lean_obj_tag(x_315) == 0) +x_331 = lean_apply_8(x_7, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_330); +if (lean_obj_tag(x_331) == 0) { -uint8_t x_316; -x_316 = !lean_is_exclusive(x_315); -if (x_316 == 0) +uint8_t x_332; +x_332 = !lean_is_exclusive(x_331); +if (x_332 == 0) { -lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; uint8_t x_321; -x_317 = lean_ctor_get(x_315, 0); -x_318 = lean_ctor_get(x_315, 1); -x_319 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_319, 0, x_317); -x_320 = lean_io_get_num_heartbeats(x_318); -x_321 = !lean_is_exclusive(x_320); -if (x_321 == 0) +lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; +x_333 = lean_ctor_get(x_331, 0); +x_334 = lean_ctor_get(x_331, 1); +x_335 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_335, 0, x_333); +x_336 = lean_io_get_num_heartbeats(x_334); +x_337 = !lean_is_exclusive(x_336); +if (x_337 == 0) { -lean_object* x_322; lean_object* x_323; uint8_t x_324; lean_object* x_325; double x_326; double x_327; lean_object* x_328; lean_object* x_329; -x_322 = lean_ctor_get(x_320, 0); -x_323 = lean_ctor_get(x_320, 1); -x_324 = 0; -x_325 = lean_unsigned_to_nat(0u); -x_326 = l_Float_ofScientific(x_313, x_324, x_325); -lean_dec(x_313); -x_327 = l_Float_ofScientific(x_322, x_324, x_325); -lean_dec(x_322); -x_328 = lean_box_float(x_326); -x_329 = lean_box_float(x_327); -lean_ctor_set(x_320, 1, x_329); -lean_ctor_set(x_320, 0, x_328); -lean_ctor_set(x_315, 1, x_320); -lean_ctor_set(x_315, 0, x_319); -x_216 = x_315; -x_217 = x_323; -goto block_311; +lean_object* x_338; lean_object* x_339; uint8_t x_340; lean_object* x_341; double x_342; double x_343; lean_object* x_344; lean_object* x_345; +x_338 = lean_ctor_get(x_336, 0); +x_339 = lean_ctor_get(x_336, 1); +x_340 = 0; +x_341 = lean_unsigned_to_nat(0u); +x_342 = l_Float_ofScientific(x_329, x_340, x_341); +lean_dec(x_329); +x_343 = l_Float_ofScientific(x_338, x_340, x_341); +lean_dec(x_338); +x_344 = lean_box_float(x_342); +x_345 = lean_box_float(x_343); +lean_ctor_set(x_336, 1, x_345); +lean_ctor_set(x_336, 0, x_344); +lean_ctor_set(x_331, 1, x_336); +lean_ctor_set(x_331, 0, x_335); +x_224 = x_331; +x_225 = x_339; +goto block_327; } else { -lean_object* x_330; lean_object* x_331; uint8_t x_332; lean_object* x_333; double x_334; double x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; -x_330 = lean_ctor_get(x_320, 0); -x_331 = lean_ctor_get(x_320, 1); -lean_inc(x_331); -lean_inc(x_330); -lean_dec(x_320); -x_332 = 0; -x_333 = lean_unsigned_to_nat(0u); -x_334 = l_Float_ofScientific(x_313, x_332, x_333); -lean_dec(x_313); -x_335 = l_Float_ofScientific(x_330, x_332, x_333); -lean_dec(x_330); -x_336 = lean_box_float(x_334); -x_337 = lean_box_float(x_335); -x_338 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_338, 0, x_336); -lean_ctor_set(x_338, 1, x_337); -lean_ctor_set(x_315, 1, x_338); -lean_ctor_set(x_315, 0, x_319); -x_216 = x_315; -x_217 = x_331; -goto block_311; +lean_object* x_346; lean_object* x_347; uint8_t x_348; lean_object* x_349; double x_350; double x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; +x_346 = lean_ctor_get(x_336, 0); +x_347 = lean_ctor_get(x_336, 1); +lean_inc(x_347); +lean_inc(x_346); +lean_dec(x_336); +x_348 = 0; +x_349 = lean_unsigned_to_nat(0u); +x_350 = l_Float_ofScientific(x_329, x_348, x_349); +lean_dec(x_329); +x_351 = l_Float_ofScientific(x_346, x_348, x_349); +lean_dec(x_346); +x_352 = lean_box_float(x_350); +x_353 = lean_box_float(x_351); +x_354 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_354, 0, x_352); +lean_ctor_set(x_354, 1, x_353); +lean_ctor_set(x_331, 1, x_354); +lean_ctor_set(x_331, 0, x_335); +x_224 = x_331; +x_225 = x_347; +goto block_327; } } else { -lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; uint8_t x_346; lean_object* x_347; double x_348; double x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; -x_339 = lean_ctor_get(x_315, 0); -x_340 = lean_ctor_get(x_315, 1); -lean_inc(x_340); -lean_inc(x_339); -lean_dec(x_315); -x_341 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_341, 0, x_339); -x_342 = lean_io_get_num_heartbeats(x_340); -x_343 = lean_ctor_get(x_342, 0); -lean_inc(x_343); -x_344 = lean_ctor_get(x_342, 1); -lean_inc(x_344); -if (lean_is_exclusive(x_342)) { - lean_ctor_release(x_342, 0); - lean_ctor_release(x_342, 1); - x_345 = x_342; -} else { - lean_dec_ref(x_342); - x_345 = lean_box(0); -} -x_346 = 0; -x_347 = lean_unsigned_to_nat(0u); -x_348 = l_Float_ofScientific(x_313, x_346, x_347); -lean_dec(x_313); -x_349 = l_Float_ofScientific(x_343, x_346, x_347); -lean_dec(x_343); -x_350 = lean_box_float(x_348); -x_351 = lean_box_float(x_349); -if (lean_is_scalar(x_345)) { - x_352 = lean_alloc_ctor(0, 2, 0); -} else { - x_352 = x_345; -} -lean_ctor_set(x_352, 0, x_350); -lean_ctor_set(x_352, 1, x_351); -x_353 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_353, 0, x_341); -lean_ctor_set(x_353, 1, x_352); -x_216 = x_353; -x_217 = x_344; -goto block_311; -} -} -else -{ -uint8_t x_354; -x_354 = !lean_is_exclusive(x_315); -if (x_354 == 0) -{ -lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; uint8_t x_359; -x_355 = lean_ctor_get(x_315, 0); -x_356 = lean_ctor_get(x_315, 1); -x_357 = lean_alloc_ctor(0, 1, 0); +lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; uint8_t x_362; lean_object* x_363; double x_364; double x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; +x_355 = lean_ctor_get(x_331, 0); +x_356 = lean_ctor_get(x_331, 1); +lean_inc(x_356); +lean_inc(x_355); +lean_dec(x_331); +x_357 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_357, 0, x_355); x_358 = lean_io_get_num_heartbeats(x_356); -x_359 = !lean_is_exclusive(x_358); -if (x_359 == 0) -{ -lean_object* x_360; lean_object* x_361; uint8_t x_362; lean_object* x_363; double x_364; double x_365; lean_object* x_366; lean_object* x_367; -x_360 = lean_ctor_get(x_358, 0); -x_361 = lean_ctor_get(x_358, 1); +x_359 = lean_ctor_get(x_358, 0); +lean_inc(x_359); +x_360 = lean_ctor_get(x_358, 1); +lean_inc(x_360); +if (lean_is_exclusive(x_358)) { + lean_ctor_release(x_358, 0); + lean_ctor_release(x_358, 1); + x_361 = x_358; +} else { + lean_dec_ref(x_358); + x_361 = lean_box(0); +} x_362 = 0; x_363 = lean_unsigned_to_nat(0u); -x_364 = l_Float_ofScientific(x_313, x_362, x_363); -lean_dec(x_313); -x_365 = l_Float_ofScientific(x_360, x_362, x_363); -lean_dec(x_360); +x_364 = l_Float_ofScientific(x_329, x_362, x_363); +lean_dec(x_329); +x_365 = l_Float_ofScientific(x_359, x_362, x_363); +lean_dec(x_359); x_366 = lean_box_float(x_364); x_367 = lean_box_float(x_365); -lean_ctor_set(x_358, 1, x_367); -lean_ctor_set(x_358, 0, x_366); -lean_ctor_set_tag(x_315, 0); -lean_ctor_set(x_315, 1, x_358); -lean_ctor_set(x_315, 0, x_357); -x_216 = x_315; -x_217 = x_361; -goto block_311; -} -else -{ -lean_object* x_368; lean_object* x_369; uint8_t x_370; lean_object* x_371; double x_372; double x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; -x_368 = lean_ctor_get(x_358, 0); -x_369 = lean_ctor_get(x_358, 1); -lean_inc(x_369); -lean_inc(x_368); -lean_dec(x_358); -x_370 = 0; -x_371 = lean_unsigned_to_nat(0u); -x_372 = l_Float_ofScientific(x_313, x_370, x_371); -lean_dec(x_313); -x_373 = l_Float_ofScientific(x_368, x_370, x_371); -lean_dec(x_368); -x_374 = lean_box_float(x_372); -x_375 = lean_box_float(x_373); -x_376 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_376, 0, x_374); -lean_ctor_set(x_376, 1, x_375); -lean_ctor_set_tag(x_315, 0); -lean_ctor_set(x_315, 1, x_376); -lean_ctor_set(x_315, 0, x_357); -x_216 = x_315; -x_217 = x_369; -goto block_311; -} -} -else -{ -lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; uint8_t x_384; lean_object* x_385; double x_386; double x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; -x_377 = lean_ctor_get(x_315, 0); -x_378 = lean_ctor_get(x_315, 1); -lean_inc(x_378); -lean_inc(x_377); -lean_dec(x_315); -x_379 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_379, 0, x_377); -x_380 = lean_io_get_num_heartbeats(x_378); -x_381 = lean_ctor_get(x_380, 0); -lean_inc(x_381); -x_382 = lean_ctor_get(x_380, 1); -lean_inc(x_382); -if (lean_is_exclusive(x_380)) { - lean_ctor_release(x_380, 0); - lean_ctor_release(x_380, 1); - x_383 = x_380; +if (lean_is_scalar(x_361)) { + x_368 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_380); - x_383 = lean_box(0); + x_368 = x_361; } -x_384 = 0; -x_385 = lean_unsigned_to_nat(0u); -x_386 = l_Float_ofScientific(x_313, x_384, x_385); -lean_dec(x_313); -x_387 = l_Float_ofScientific(x_381, x_384, x_385); -lean_dec(x_381); -x_388 = lean_box_float(x_386); -x_389 = lean_box_float(x_387); -if (lean_is_scalar(x_383)) { - x_390 = lean_alloc_ctor(0, 2, 0); -} else { - x_390 = x_383; +lean_ctor_set(x_368, 0, x_366); +lean_ctor_set(x_368, 1, x_367); +x_369 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_369, 0, x_357); +lean_ctor_set(x_369, 1, x_368); +x_224 = x_369; +x_225 = x_360; +goto block_327; } -lean_ctor_set(x_390, 0, x_388); -lean_ctor_set(x_390, 1, x_389); -x_391 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_391, 0, x_379); -lean_ctor_set(x_391, 1, x_390); -x_216 = x_391; -x_217 = x_382; -goto block_311; -} -} -block_311: -{ -lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; uint8_t x_222; lean_object* x_291; uint8_t x_292; -x_218 = lean_ctor_get(x_216, 1); -lean_inc(x_218); -x_219 = lean_ctor_get(x_216, 0); -lean_inc(x_219); -lean_dec(x_216); -x_220 = lean_ctor_get(x_218, 0); -lean_inc(x_220); -x_221 = lean_ctor_get(x_218, 1); -lean_inc(x_221); -lean_dec(x_218); -x_291 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__2; -x_292 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_291); -if (x_292 == 0) -{ -uint8_t x_293; -x_293 = 0; -x_222 = x_293; -goto block_290; } else { -double x_294; double x_295; double x_296; -x_294 = lean_unbox_float(x_221); -x_295 = lean_unbox_float(x_220); -x_296 = lean_float_sub(x_294, x_295); +uint8_t x_370; +x_370 = !lean_is_exclusive(x_331); +if (x_370 == 0) +{ +lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; +x_371 = lean_ctor_get(x_331, 0); +x_372 = lean_ctor_get(x_331, 1); +x_373 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_373, 0, x_371); +x_374 = lean_io_get_num_heartbeats(x_372); +x_375 = !lean_is_exclusive(x_374); +if (x_375 == 0) +{ +lean_object* x_376; lean_object* x_377; uint8_t x_378; lean_object* x_379; double x_380; double x_381; lean_object* x_382; lean_object* x_383; +x_376 = lean_ctor_get(x_374, 0); +x_377 = lean_ctor_get(x_374, 1); +x_378 = 0; +x_379 = lean_unsigned_to_nat(0u); +x_380 = l_Float_ofScientific(x_329, x_378, x_379); +lean_dec(x_329); +x_381 = l_Float_ofScientific(x_376, x_378, x_379); +lean_dec(x_376); +x_382 = lean_box_float(x_380); +x_383 = lean_box_float(x_381); +lean_ctor_set(x_374, 1, x_383); +lean_ctor_set(x_374, 0, x_382); +lean_ctor_set_tag(x_331, 0); +lean_ctor_set(x_331, 1, x_374); +lean_ctor_set(x_331, 0, x_373); +x_224 = x_331; +x_225 = x_377; +goto block_327; +} +else +{ +lean_object* x_384; lean_object* x_385; uint8_t x_386; lean_object* x_387; double x_388; double x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; +x_384 = lean_ctor_get(x_374, 0); +x_385 = lean_ctor_get(x_374, 1); +lean_inc(x_385); +lean_inc(x_384); +lean_dec(x_374); +x_386 = 0; +x_387 = lean_unsigned_to_nat(0u); +x_388 = l_Float_ofScientific(x_329, x_386, x_387); +lean_dec(x_329); +x_389 = l_Float_ofScientific(x_384, x_386, x_387); +lean_dec(x_384); +x_390 = lean_box_float(x_388); +x_391 = lean_box_float(x_389); +x_392 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_392, 0, x_390); +lean_ctor_set(x_392, 1, x_391); +lean_ctor_set_tag(x_331, 0); +lean_ctor_set(x_331, 1, x_392); +lean_ctor_set(x_331, 0, x_373); +x_224 = x_331; +x_225 = x_385; +goto block_327; +} +} +else +{ +lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; uint8_t x_400; lean_object* x_401; double x_402; double x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; +x_393 = lean_ctor_get(x_331, 0); +x_394 = lean_ctor_get(x_331, 1); +lean_inc(x_394); +lean_inc(x_393); +lean_dec(x_331); +x_395 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_395, 0, x_393); +x_396 = lean_io_get_num_heartbeats(x_394); +x_397 = lean_ctor_get(x_396, 0); +lean_inc(x_397); +x_398 = lean_ctor_get(x_396, 1); +lean_inc(x_398); +if (lean_is_exclusive(x_396)) { + lean_ctor_release(x_396, 0); + lean_ctor_release(x_396, 1); + x_399 = x_396; +} else { + lean_dec_ref(x_396); + x_399 = lean_box(0); +} +x_400 = 0; +x_401 = lean_unsigned_to_nat(0u); +x_402 = l_Float_ofScientific(x_329, x_400, x_401); +lean_dec(x_329); +x_403 = l_Float_ofScientific(x_397, x_400, x_401); +lean_dec(x_397); +x_404 = lean_box_float(x_402); +x_405 = lean_box_float(x_403); +if (lean_is_scalar(x_399)) { + x_406 = lean_alloc_ctor(0, 2, 0); +} else { + x_406 = x_399; +} +lean_ctor_set(x_406, 0, x_404); +lean_ctor_set(x_406, 1, x_405); +x_407 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_407, 0, x_395); +lean_ctor_set(x_407, 1, x_406); +x_224 = x_407; +x_225 = x_398; +goto block_327; +} +} +block_327: +{ +lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; uint8_t x_231; uint8_t x_232; +x_226 = lean_ctor_get(x_224, 1); +lean_inc(x_226); +x_227 = lean_ctor_get(x_224, 0); +lean_inc(x_227); +lean_dec(x_224); +x_228 = lean_ctor_get(x_226, 0); +lean_inc(x_228); +x_229 = lean_ctor_get(x_226, 1); +lean_inc(x_229); +lean_dec(x_226); +x_230 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__2; +x_231 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_230); +if (x_231 == 0) +{ +if (x_6 == 0) +{ +uint8_t x_297; +x_297 = 0; +x_232 = x_297; +goto block_296; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_228); +lean_dec(x_228); +x_300 = lean_unbox_float(x_229); +lean_dec(x_229); +x_301 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_227, x_231, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_225); +return x_301; +} +} +else +{ +double x_302; double x_303; double x_304; +x_302 = lean_unbox_float(x_229); +x_303 = lean_unbox_float(x_228); +x_304 = lean_float_sub(x_302, x_303); if (x_21 == 0) { -lean_object* x_297; lean_object* x_298; uint8_t x_299; lean_object* x_300; double x_301; double x_302; double x_303; uint8_t x_304; -x_297 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__3; -x_298 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_297); -x_299 = 0; -x_300 = lean_unsigned_to_nat(0u); -x_301 = l_Float_ofScientific(x_298, x_299, x_300); -lean_dec(x_298); -x_302 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__4; -x_303 = lean_float_div(x_301, x_302); -x_304 = lean_float_decLt(x_303, x_296); -x_222 = x_304; -goto block_290; -} -else +if (x_6 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; uint8_t x_310; +lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; double x_311; uint8_t x_312; x_305 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__3; x_306 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_305); x_307 = 0; x_308 = lean_unsigned_to_nat(0u); x_309 = l_Float_ofScientific(x_306, x_307, x_308); lean_dec(x_306); -x_310 = lean_float_decLt(x_309, x_296); -x_222 = x_310; -goto block_290; +x_310 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__4; +x_311 = lean_float_div(x_309, x_310); +x_312 = lean_float_decLt(x_311, x_304); +x_232 = x_312; +goto block_296; +} +else +{ +lean_object* x_313; double x_314; double x_315; lean_object* x_316; +x_313 = lean_box(0); +x_314 = lean_unbox_float(x_228); +lean_dec(x_228); +x_315 = lean_unbox_float(x_229); +lean_dec(x_229); +x_316 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_227, x_231, x_314, x_315, x_5, x_313, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_225); +return x_316; } } -block_290: +else { if (x_6 == 0) { -if (x_222 == 0) +lean_object* x_317; lean_object* x_318; uint8_t x_319; lean_object* x_320; double x_321; uint8_t x_322; +x_317 = l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__4___closed__3; +x_318 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_317); +x_319 = 0; +x_320 = lean_unsigned_to_nat(0u); +x_321 = l_Float_ofScientific(x_318, x_319, x_320); +lean_dec(x_318); +x_322 = lean_float_decLt(x_321, x_304); +x_232 = x_322; +goto block_296; +} +else { -lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; uint8_t x_227; -lean_dec(x_221); -lean_dec(x_220); +lean_object* x_323; double x_324; double x_325; lean_object* x_326; +x_323 = lean_box(0); +x_324 = lean_unbox_float(x_228); +lean_dec(x_228); +x_325 = lean_unbox_float(x_229); +lean_dec(x_229); +x_326 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_227, x_231, x_324, x_325, x_5, x_323, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_225); +return x_326; +} +} +} +block_296: +{ +if (x_232 == 0) +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; uint8_t x_237; +lean_dec(x_229); +lean_dec(x_228); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_223 = lean_st_ref_take(x_15, x_217); -x_224 = lean_ctor_get(x_223, 0); -lean_inc(x_224); -x_225 = lean_ctor_get(x_224, 3); -lean_inc(x_225); -x_226 = lean_ctor_get(x_223, 1); -lean_inc(x_226); -lean_dec(x_223); -x_227 = !lean_is_exclusive(x_224); -if (x_227 == 0) -{ -lean_object* x_228; uint8_t x_229; -x_228 = lean_ctor_get(x_224, 3); -lean_dec(x_228); -x_229 = !lean_is_exclusive(x_225); -if (x_229 == 0) -{ -lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; -x_230 = lean_ctor_get(x_225, 0); -x_231 = l_Lean_PersistentArray_append___rarg(x_18, x_230); -lean_dec(x_230); -lean_ctor_set(x_225, 0, x_231); -x_232 = lean_st_ref_set(x_15, x_224, x_226); -x_233 = lean_ctor_get(x_232, 1); -lean_inc(x_233); -lean_dec(x_232); -x_234 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_simpGround___spec__2(x_219, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_233); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_219); -if (lean_obj_tag(x_234) == 0) -{ -uint8_t x_235; -x_235 = !lean_is_exclusive(x_234); -if (x_235 == 0) -{ -return x_234; -} -else -{ -lean_object* x_236; lean_object* x_237; lean_object* x_238; -x_236 = lean_ctor_get(x_234, 0); -x_237 = lean_ctor_get(x_234, 1); -lean_inc(x_237); +x_233 = lean_st_ref_take(x_15, x_225); +x_234 = lean_ctor_get(x_233, 0); +lean_inc(x_234); +x_235 = lean_ctor_get(x_234, 3); +lean_inc(x_235); +x_236 = lean_ctor_get(x_233, 1); lean_inc(x_236); -lean_dec(x_234); -x_238 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_238, 0, x_236); -lean_ctor_set(x_238, 1, x_237); -return x_238; -} -} -else +lean_dec(x_233); +x_237 = !lean_is_exclusive(x_234); +if (x_237 == 0) { -uint8_t x_239; -x_239 = !lean_is_exclusive(x_234); +lean_object* x_238; uint8_t x_239; +x_238 = lean_ctor_get(x_234, 3); +lean_dec(x_238); +x_239 = !lean_is_exclusive(x_235); if (x_239 == 0) { -return x_234; +lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; +x_240 = lean_ctor_get(x_235, 0); +x_241 = l_Lean_PersistentArray_append___rarg(x_18, x_240); +lean_dec(x_240); +lean_ctor_set(x_235, 0, x_241); +x_242 = lean_st_ref_set(x_15, x_234, x_236); +x_243 = lean_ctor_get(x_242, 1); +lean_inc(x_243); +lean_dec(x_242); +x_244 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_simpGround___spec__2(x_227, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_243); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_227); +if (lean_obj_tag(x_244) == 0) +{ +uint8_t x_245; +x_245 = !lean_is_exclusive(x_244); +if (x_245 == 0) +{ +return x_244; } else { -lean_object* x_240; lean_object* x_241; lean_object* x_242; -x_240 = lean_ctor_get(x_234, 0); -x_241 = lean_ctor_get(x_234, 1); -lean_inc(x_241); -lean_inc(x_240); -lean_dec(x_234); -x_242 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_242, 0, x_240); -lean_ctor_set(x_242, 1, x_241); -return x_242; -} -} -} -else -{ -uint64_t x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; -x_243 = lean_ctor_get_uint64(x_225, sizeof(void*)*1); -x_244 = lean_ctor_get(x_225, 0); -lean_inc(x_244); -lean_dec(x_225); -x_245 = l_Lean_PersistentArray_append___rarg(x_18, x_244); +lean_object* x_246; lean_object* x_247; lean_object* x_248; +x_246 = lean_ctor_get(x_244, 0); +x_247 = lean_ctor_get(x_244, 1); +lean_inc(x_247); +lean_inc(x_246); lean_dec(x_244); -x_246 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_246, 0, x_245); -lean_ctor_set_uint64(x_246, sizeof(void*)*1, x_243); -lean_ctor_set(x_224, 3, x_246); -x_247 = lean_st_ref_set(x_15, x_224, x_226); -x_248 = lean_ctor_get(x_247, 1); -lean_inc(x_248); -lean_dec(x_247); -x_249 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_simpGround___spec__2(x_219, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_248); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_219); -if (lean_obj_tag(x_249) == 0) +x_248 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_248, 0, x_246); +lean_ctor_set(x_248, 1, x_247); +return x_248; +} +} +else { -lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; -x_250 = lean_ctor_get(x_249, 0); -lean_inc(x_250); -x_251 = lean_ctor_get(x_249, 1); +uint8_t x_249; +x_249 = !lean_is_exclusive(x_244); +if (x_249 == 0) +{ +return x_244; +} +else +{ +lean_object* x_250; lean_object* x_251; lean_object* x_252; +x_250 = lean_ctor_get(x_244, 0); +x_251 = lean_ctor_get(x_244, 1); lean_inc(x_251); -if (lean_is_exclusive(x_249)) { - lean_ctor_release(x_249, 0); - lean_ctor_release(x_249, 1); - x_252 = x_249; -} else { - lean_dec_ref(x_249); - x_252 = lean_box(0); +lean_inc(x_250); +lean_dec(x_244); +x_252 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_252, 0, x_250); +lean_ctor_set(x_252, 1, x_251); +return x_252; } -if (lean_is_scalar(x_252)) { - x_253 = lean_alloc_ctor(0, 2, 0); -} else { - x_253 = x_252; } -lean_ctor_set(x_253, 0, x_250); -lean_ctor_set(x_253, 1, x_251); -return x_253; } else { -lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; -x_254 = lean_ctor_get(x_249, 0); +uint64_t x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; +x_253 = lean_ctor_get_uint64(x_235, sizeof(void*)*1); +x_254 = lean_ctor_get(x_235, 0); lean_inc(x_254); -x_255 = lean_ctor_get(x_249, 1); -lean_inc(x_255); -if (lean_is_exclusive(x_249)) { - lean_ctor_release(x_249, 0); - lean_ctor_release(x_249, 1); - x_256 = x_249; -} else { - lean_dec_ref(x_249); - x_256 = lean_box(0); -} -if (lean_is_scalar(x_256)) { - x_257 = lean_alloc_ctor(1, 2, 0); -} else { - x_257 = x_256; -} -lean_ctor_set(x_257, 0, x_254); -lean_ctor_set(x_257, 1, x_255); -return x_257; -} -} -} -else -{ -lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; uint64_t x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; -x_258 = lean_ctor_get(x_224, 0); -x_259 = lean_ctor_get(x_224, 1); -x_260 = lean_ctor_get(x_224, 2); -x_261 = lean_ctor_get(x_224, 4); -x_262 = lean_ctor_get(x_224, 5); -x_263 = lean_ctor_get(x_224, 6); -x_264 = lean_ctor_get(x_224, 7); -lean_inc(x_264); -lean_inc(x_263); -lean_inc(x_262); -lean_inc(x_261); -lean_inc(x_260); -lean_inc(x_259); +lean_dec(x_235); +x_255 = l_Lean_PersistentArray_append___rarg(x_18, x_254); +lean_dec(x_254); +x_256 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_256, 0, x_255); +lean_ctor_set_uint64(x_256, sizeof(void*)*1, x_253); +lean_ctor_set(x_234, 3, x_256); +x_257 = lean_st_ref_set(x_15, x_234, x_236); +x_258 = lean_ctor_get(x_257, 1); lean_inc(x_258); -lean_dec(x_224); -x_265 = lean_ctor_get_uint64(x_225, sizeof(void*)*1); -x_266 = lean_ctor_get(x_225, 0); -lean_inc(x_266); -if (lean_is_exclusive(x_225)) { - lean_ctor_release(x_225, 0); - x_267 = x_225; -} else { - lean_dec_ref(x_225); - x_267 = lean_box(0); -} -x_268 = l_Lean_PersistentArray_append___rarg(x_18, x_266); -lean_dec(x_266); -if (lean_is_scalar(x_267)) { - x_269 = lean_alloc_ctor(0, 1, 8); -} else { - x_269 = x_267; -} -lean_ctor_set(x_269, 0, x_268); -lean_ctor_set_uint64(x_269, sizeof(void*)*1, x_265); -x_270 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_270, 0, x_258); -lean_ctor_set(x_270, 1, x_259); -lean_ctor_set(x_270, 2, x_260); -lean_ctor_set(x_270, 3, x_269); -lean_ctor_set(x_270, 4, x_261); -lean_ctor_set(x_270, 5, x_262); -lean_ctor_set(x_270, 6, x_263); -lean_ctor_set(x_270, 7, x_264); -x_271 = lean_st_ref_set(x_15, x_270, x_226); -x_272 = lean_ctor_get(x_271, 1); -lean_inc(x_272); -lean_dec(x_271); -x_273 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_simpGround___spec__2(x_219, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_272); +lean_dec(x_257); +x_259 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_simpGround___spec__2(x_227, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_258); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -28450,79 +28401,176 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_219); -if (lean_obj_tag(x_273) == 0) +lean_dec(x_227); +if (lean_obj_tag(x_259) == 0) { -lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; -x_274 = lean_ctor_get(x_273, 0); +lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; +x_260 = lean_ctor_get(x_259, 0); +lean_inc(x_260); +x_261 = lean_ctor_get(x_259, 1); +lean_inc(x_261); +if (lean_is_exclusive(x_259)) { + lean_ctor_release(x_259, 0); + lean_ctor_release(x_259, 1); + x_262 = x_259; +} else { + lean_dec_ref(x_259); + x_262 = lean_box(0); +} +if (lean_is_scalar(x_262)) { + x_263 = lean_alloc_ctor(0, 2, 0); +} else { + x_263 = x_262; +} +lean_ctor_set(x_263, 0, x_260); +lean_ctor_set(x_263, 1, x_261); +return x_263; +} +else +{ +lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; +x_264 = lean_ctor_get(x_259, 0); +lean_inc(x_264); +x_265 = lean_ctor_get(x_259, 1); +lean_inc(x_265); +if (lean_is_exclusive(x_259)) { + lean_ctor_release(x_259, 0); + lean_ctor_release(x_259, 1); + x_266 = x_259; +} else { + lean_dec_ref(x_259); + x_266 = lean_box(0); +} +if (lean_is_scalar(x_266)) { + x_267 = lean_alloc_ctor(1, 2, 0); +} else { + x_267 = x_266; +} +lean_ctor_set(x_267, 0, x_264); +lean_ctor_set(x_267, 1, x_265); +return x_267; +} +} +} +else +{ +lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; uint64_t x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; +x_268 = lean_ctor_get(x_234, 0); +x_269 = lean_ctor_get(x_234, 1); +x_270 = lean_ctor_get(x_234, 2); +x_271 = lean_ctor_get(x_234, 4); +x_272 = lean_ctor_get(x_234, 5); +x_273 = lean_ctor_get(x_234, 6); +x_274 = lean_ctor_get(x_234, 7); lean_inc(x_274); -x_275 = lean_ctor_get(x_273, 1); -lean_inc(x_275); -if (lean_is_exclusive(x_273)) { - lean_ctor_release(x_273, 0); - lean_ctor_release(x_273, 1); - x_276 = x_273; +lean_inc(x_273); +lean_inc(x_272); +lean_inc(x_271); +lean_inc(x_270); +lean_inc(x_269); +lean_inc(x_268); +lean_dec(x_234); +x_275 = lean_ctor_get_uint64(x_235, sizeof(void*)*1); +x_276 = lean_ctor_get(x_235, 0); +lean_inc(x_276); +if (lean_is_exclusive(x_235)) { + lean_ctor_release(x_235, 0); + x_277 = x_235; } else { - lean_dec_ref(x_273); - x_276 = lean_box(0); + lean_dec_ref(x_235); + x_277 = lean_box(0); } -if (lean_is_scalar(x_276)) { - x_277 = lean_alloc_ctor(0, 2, 0); +x_278 = l_Lean_PersistentArray_append___rarg(x_18, x_276); +lean_dec(x_276); +if (lean_is_scalar(x_277)) { + x_279 = lean_alloc_ctor(0, 1, 8); } else { - x_277 = x_276; + x_279 = x_277; } -lean_ctor_set(x_277, 0, x_274); -lean_ctor_set(x_277, 1, x_275); -return x_277; +lean_ctor_set(x_279, 0, x_278); +lean_ctor_set_uint64(x_279, sizeof(void*)*1, x_275); +x_280 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_280, 0, x_268); +lean_ctor_set(x_280, 1, x_269); +lean_ctor_set(x_280, 2, x_270); +lean_ctor_set(x_280, 3, x_279); +lean_ctor_set(x_280, 4, x_271); +lean_ctor_set(x_280, 5, x_272); +lean_ctor_set(x_280, 6, x_273); +lean_ctor_set(x_280, 7, x_274); +x_281 = lean_st_ref_set(x_15, x_280, x_236); +x_282 = lean_ctor_get(x_281, 1); +lean_inc(x_282); +lean_dec(x_281); +x_283 = l_MonadExcept_ofExcept___at_Lean_Meta_Simp_simpGround___spec__2(x_227, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_282); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_227); +if (lean_obj_tag(x_283) == 0) +{ +lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; +x_284 = lean_ctor_get(x_283, 0); +lean_inc(x_284); +x_285 = lean_ctor_get(x_283, 1); +lean_inc(x_285); +if (lean_is_exclusive(x_283)) { + lean_ctor_release(x_283, 0); + lean_ctor_release(x_283, 1); + x_286 = x_283; +} else { + lean_dec_ref(x_283); + x_286 = lean_box(0); +} +if (lean_is_scalar(x_286)) { + x_287 = lean_alloc_ctor(0, 2, 0); +} else { + x_287 = x_286; +} +lean_ctor_set(x_287, 0, x_284); +lean_ctor_set(x_287, 1, x_285); +return x_287; } else { -lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; -x_278 = lean_ctor_get(x_273, 0); -lean_inc(x_278); -x_279 = lean_ctor_get(x_273, 1); -lean_inc(x_279); -if (lean_is_exclusive(x_273)) { - lean_ctor_release(x_273, 0); - lean_ctor_release(x_273, 1); - x_280 = x_273; +lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; +x_288 = lean_ctor_get(x_283, 0); +lean_inc(x_288); +x_289 = lean_ctor_get(x_283, 1); +lean_inc(x_289); +if (lean_is_exclusive(x_283)) { + lean_ctor_release(x_283, 0); + lean_ctor_release(x_283, 1); + x_290 = x_283; } else { - lean_dec_ref(x_273); - x_280 = lean_box(0); + lean_dec_ref(x_283); + x_290 = lean_box(0); } -if (lean_is_scalar(x_280)) { - x_281 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_290)) { + x_291 = lean_alloc_ctor(1, 2, 0); } else { - x_281 = x_280; + x_291 = x_290; } -lean_ctor_set(x_281, 0, x_278); -lean_ctor_set(x_281, 1, x_279); -return x_281; +lean_ctor_set(x_291, 0, x_288); +lean_ctor_set(x_291, 1, x_289); +return x_291; } } } else { -lean_object* x_282; double x_283; double x_284; lean_object* x_285; -x_282 = lean_box(0); -x_283 = lean_unbox_float(x_220); -lean_dec(x_220); -x_284 = lean_unbox_float(x_221); -lean_dec(x_221); -x_285 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_219, x_1, x_222, x_283, x_284, x_5, x_282, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_217); -return x_285; -} -} -else -{ -lean_object* x_286; double x_287; double x_288; lean_object* x_289; -x_286 = lean_box(0); -x_287 = lean_unbox_float(x_220); -lean_dec(x_220); -x_288 = lean_unbox_float(x_221); -lean_dec(x_221); -x_289 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_219, x_1, x_222, x_287, x_288, x_5, x_286, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_217); -return x_289; +lean_object* x_292; double x_293; double x_294; lean_object* x_295; +x_292 = lean_box(0); +x_293 = lean_unbox_float(x_228); +lean_dec(x_228); +x_294 = lean_unbox_float(x_229); +lean_dec(x_229); +x_295 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__3(x_2, x_3, x_4, x_18, x_227, x_231, x_293, x_294, x_5, x_292, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_225); +return x_295; } } } @@ -29058,28 +29106,26 @@ lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; lean_object* x_18 = _args[17]; -lean_object* x_19 = _args[18]; _start: { -uint8_t x_20; uint8_t x_21; double x_22; double x_23; lean_object* x_24; -x_20 = lean_unbox(x_2); +uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; +x_19 = lean_unbox(x_2); lean_dec(x_2); -x_21 = lean_unbox(x_8); +x_20 = lean_unbox(x_7); +lean_dec(x_7); +x_21 = lean_unbox_float(x_8); lean_dec(x_8); x_22 = lean_unbox_float(x_9); lean_dec(x_9); -x_23 = lean_unbox_float(x_10); -lean_dec(x_10); -x_24 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__2(x_1, x_20, x_3, x_4, x_5, x_6, x_7, x_21, x_22, x_23, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); -lean_dec(x_18); -lean_dec(x_16); +x_23 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__2(x_1, x_19, x_3, x_4, x_5, x_6, x_20, x_21, x_22, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +lean_dec(x_17); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_24; +return x_23; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__3___boxed(lean_object** _args) { @@ -29101,22 +29147,20 @@ lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; lean_object* x_18 = _args[17]; -lean_object* x_19 = _args[18]; _start: { -uint8_t x_20; uint8_t x_21; double x_22; double x_23; lean_object* x_24; -x_20 = lean_unbox(x_2); +uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; +x_19 = lean_unbox(x_2); lean_dec(x_2); -x_21 = lean_unbox(x_7); +x_20 = lean_unbox(x_6); +lean_dec(x_6); +x_21 = lean_unbox_float(x_7); lean_dec(x_7); x_22 = lean_unbox_float(x_8); lean_dec(x_8); -x_23 = lean_unbox_float(x_9); -lean_dec(x_9); -x_24 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__3(x_1, x_20, x_3, x_4, x_5, x_6, x_21, x_22, x_23, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); -lean_dec(x_11); -lean_dec(x_6); -return x_24; +x_23 = l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__3(x_1, x_19, x_3, x_4, x_5, x_20, x_21, x_22, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +lean_dec(x_10); +return x_23; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_Simp_simpGround___spec__1___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { @@ -33471,8 +33515,6 @@ lean_mark_persistent(l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lea l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Meta_Simp_discharge_x3f_x27___spec__7___rarg___closed__3 = _init_l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Meta_Simp_discharge_x3f_x27___spec__7___rarg___closed__3(); lean_mark_persistent(l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Meta_Simp_discharge_x3f_x27___spec__7___rarg___closed__3); l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__2___closed__1(); -l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__2___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__2___closed__2(); -lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__2___closed__2); l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3___closed__1); l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Meta_Simp_discharge_x3f_x27___spec__6___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpTheorems.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpTheorems.c index bd0ba97fba..a6218c36ea 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpTheorems.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpTheorems.c @@ -14095,7 +14095,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Meta_SimpTheorem_getValue___closed__1; x_2 = l_Lean_Meta_SimpTheorem_getValue___closed__2; -x_3 = lean_unsigned_to_nat(1702u); +x_3 = lean_unsigned_to_nat(1706u); x_4 = lean_unsigned_to_nat(18u); x_5 = l_Lean_Meta_SimpTheorem_getValue___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/Types.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/Types.c index b2c28efe7d..63c95bc098 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/Types.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/Types.c @@ -71,6 +71,7 @@ static lean_object* l___private_Lean_Meta_Tactic_Simp_Types_0__Lean_Meta_Simp_up LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_Meta_Simp_UsedSimps_toArray___spec__3(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_Simp_tryAutoCongrTheorem_x3f___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Simp_getConfig___boxed(lean_object*); +static lean_object* l_Lean_Meta_Simp_instInhabitedContext___closed__13; LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at_Lean_Meta_Simp_UsedSimps_insert___spec__2(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Simp_removeUnnecessaryCasts_elimDummyEqRec(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Simp_withDischarger___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -175,6 +176,7 @@ static lean_object* l_Lean_addTrace___at_Lean_Meta_Simp_congrArgs___spec__2___cl LEAN_EXPORT lean_object* l_Lean_Meta_Simp_Result_mkEqSymm(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Simp_Types_0__Lean_Meta_Simp_updateArith___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getFunInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint64_t lean_uint64_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_toArray___at_Lean_Meta_Simp_UsedSimps_toArray___spec__1(lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Meta_Simp_congrArgs___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_div(lean_object*, lean_object*); @@ -241,6 +243,7 @@ lean_object* l_panic___at_Lean_Expr_appFn_x21___spec__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Simp_mkCongrSimp_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Simp_removeUnnecessaryCasts_isDummyEqRec___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_Simp_mkEqTransResultStep(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Simp_instInhabitedContext___closed__12; static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Meta_Simp_congrArgs___spec__3___closed__2; static lean_object* l___private_Lean_Meta_Tactic_Simp_Types_0__Lean_Meta_Simp_updateArith___closed__1; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Meta_Simp_tryAutoCongrTheorem_x3f___spec__2___lambda__3___boxed(lean_object**); @@ -298,7 +301,7 @@ static lean_object* l_Lean_Meta_Simp_instInhabitedMethods___lambda__2___closed__ LEAN_EXPORT lean_object* l_Lean_Meta_Simp_instInhabitedDiagnostics; static lean_object* l_Lean_Meta_Simp_removeUnnecessaryCasts_isDummyEqRec___closed__5; lean_object* l_Lean_Meta_mkCongr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Simp_instInhabitedContext___closed__5; +static uint32_t l_Lean_Meta_Simp_instInhabitedContext___closed__5; LEAN_EXPORT lean_object* l_Lean_Meta_isMatcher___at_Lean_Meta_Simp_mkCongrSimp_x3f___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Simp_recordTriedSimpTheorem(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkImpCongr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -378,6 +381,7 @@ lean_object* lean_nat_sub(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Meta_Simp_mkCongrSimp_x3f___spec__7(lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Meta_Simp_mkCongrSimp_x3f___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn(lean_object*); +uint32_t lean_uint32_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Simp_DStep_addExtraArgs___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Simp_post(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Simp_withFreshCache___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -470,7 +474,7 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Simp_UsedSimps_to static lean_object* l_Lean_Meta_Simp_instInhabitedMethods___closed__4; lean_object* l_ReaderT_instMonad___rarg(lean_object*); size_t lean_usize_land(size_t, size_t); -static lean_object* l_Lean_Meta_Simp_instInhabitedContext___closed__3; +static uint64_t l_Lean_Meta_Simp_instInhabitedContext___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_Simp_Context_setConfig(lean_object*, lean_object*); static lean_object* l_Lean_Meta_Simp_instInhabitedUsedSimps___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_Simp_removeUnnecessaryCasts___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1311,28 +1315,46 @@ lean_ctor_set_uint8(x_5, 17, x_1); return x_5; } } -static lean_object* _init_l_Lean_Meta_Simp_instInhabitedContext___closed__3() { +static uint64_t _init_l_Lean_Meta_Simp_instInhabitedContext___closed__3() { _start: { -uint64_t x_1; lean_object* x_2; lean_object* x_3; -x_1 = 0; -x_2 = l_Lean_Meta_Simp_instInhabitedContext___closed__2; -x_3 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set_uint64(x_3, sizeof(void*)*1, x_1); -return x_3; +lean_object* x_1; uint64_t x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_uint64_of_nat(x_1); +return x_2; } } static lean_object* _init_l_Lean_Meta_Simp_instInhabitedContext___closed__4() { _start: { +lean_object* x_1; uint64_t x_2; lean_object* x_3; +x_1 = l_Lean_Meta_Simp_instInhabitedContext___closed__2; +x_2 = l_Lean_Meta_Simp_instInhabitedContext___closed__3; +x_3 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint64(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static uint32_t _init_l_Lean_Meta_Simp_instInhabitedContext___closed__5() { +_start: +{ +lean_object* x_1; uint32_t x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_uint32_of_nat(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_Simp_instInhabitedContext___closed__6() { +_start: +{ lean_object* x_1; lean_object* x_2; x_1 = lean_unsigned_to_nat(0u); x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Simp_instInhabitedContext___closed__5() { +static lean_object* _init_l_Lean_Meta_Simp_instInhabitedContext___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -1342,29 +1364,29 @@ x_3 = l_Nat_nextPowerOfTwo_go(x_1, x_2, lean_box(0)); return x_3; } } -static lean_object* _init_l_Lean_Meta_Simp_instInhabitedContext___closed__6() { +static lean_object* _init_l_Lean_Meta_Simp_instInhabitedContext___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Meta_Simp_instInhabitedContext___closed__5; +x_2 = l_Lean_Meta_Simp_instInhabitedContext___closed__7; x_3 = lean_mk_array(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Meta_Simp_instInhabitedContext___closed__7() { +static lean_object* _init_l_Lean_Meta_Simp_instInhabitedContext___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_unsigned_to_nat(0u); -x_2 = l_Lean_Meta_Simp_instInhabitedContext___closed__6; +x_2 = l_Lean_Meta_Simp_instInhabitedContext___closed__8; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_Simp_instInhabitedContext___closed__8() { +static lean_object* _init_l_Lean_Meta_Simp_instInhabitedContext___closed__10() { _start: { lean_object* x_1; @@ -1372,23 +1394,23 @@ x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); return x_1; } } -static lean_object* _init_l_Lean_Meta_Simp_instInhabitedContext___closed__9() { +static lean_object* _init_l_Lean_Meta_Simp_instInhabitedContext___closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_Simp_instInhabitedContext___closed__8; +x_1 = l_Lean_Meta_Simp_instInhabitedContext___closed__10; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Simp_instInhabitedContext___closed__10() { +static lean_object* _init_l_Lean_Meta_Simp_instInhabitedContext___closed__12() { _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = 1; -x_2 = l_Lean_Meta_Simp_instInhabitedContext___closed__7; -x_3 = l_Lean_Meta_Simp_instInhabitedContext___closed__9; +x_2 = l_Lean_Meta_Simp_instInhabitedContext___closed__9; +x_3 = l_Lean_Meta_Simp_instInhabitedContext___closed__11; x_4 = lean_alloc_ctor(0, 2, 1); lean_ctor_set(x_4, 0, x_2); lean_ctor_set(x_4, 1, x_3); @@ -1396,28 +1418,28 @@ lean_ctor_set_uint8(x_4, sizeof(void*)*2, x_1); return x_4; } } -static lean_object* _init_l_Lean_Meta_Simp_instInhabitedContext___closed__11() { +static lean_object* _init_l_Lean_Meta_Simp_instInhabitedContext___closed__13() { _start: { -uint32_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; lean_object* x_9; -x_1 = 0; -x_2 = lean_box(0); -x_3 = l_Lean_Meta_Simp_instInhabitedContext___closed__1; -x_4 = l_Lean_Meta_Simp_instInhabitedContext___closed__3; -x_5 = l_Lean_Meta_Simp_instInhabitedContext___closed__4; -x_6 = l_Lean_Meta_Simp_instInhabitedContext___closed__10; +lean_object* x_1; lean_object* x_2; lean_object* x_3; uint32_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; lean_object* x_9; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_Simp_instInhabitedContext___closed__1; +x_3 = l_Lean_Meta_Simp_instInhabitedContext___closed__4; +x_4 = l_Lean_Meta_Simp_instInhabitedContext___closed__5; +x_5 = l_Lean_Meta_Simp_instInhabitedContext___closed__6; +x_6 = l_Lean_Meta_Simp_instInhabitedContext___closed__12; x_7 = lean_unsigned_to_nat(0u); x_8 = 0; x_9 = lean_alloc_ctor(0, 7, 9); -lean_ctor_set(x_9, 0, x_3); -lean_ctor_set(x_9, 1, x_4); -lean_ctor_set(x_9, 2, x_4); +lean_ctor_set(x_9, 0, x_2); +lean_ctor_set(x_9, 1, x_3); +lean_ctor_set(x_9, 2, x_3); lean_ctor_set(x_9, 3, x_5); lean_ctor_set(x_9, 4, x_6); -lean_ctor_set(x_9, 5, x_2); +lean_ctor_set(x_9, 5, x_1); lean_ctor_set(x_9, 6, x_7); -lean_ctor_set_uint32(x_9, sizeof(void*)*7, x_1); -lean_ctor_set_uint32(x_9, sizeof(void*)*7 + 4, x_1); +lean_ctor_set_uint32(x_9, sizeof(void*)*7, x_4); +lean_ctor_set_uint32(x_9, sizeof(void*)*7 + 4, x_4); lean_ctor_set_uint8(x_9, sizeof(void*)*7 + 8, x_8); return x_9; } @@ -1426,7 +1448,7 @@ static lean_object* _init_l_Lean_Meta_Simp_instInhabitedContext() { _start: { lean_object* x_1; -x_1 = l_Lean_Meta_Simp_instInhabitedContext___closed__11; +x_1 = l_Lean_Meta_Simp_instInhabitedContext___closed__13; return x_1; } } @@ -2555,7 +2577,7 @@ static lean_object* _init_l_Lean_Meta_Simp_instInhabitedUsedSimps___closed__1() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Simp_instInhabitedContext___closed__9; +x_1 = l_Lean_Meta_Simp_instInhabitedContext___closed__11; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -3888,7 +3910,7 @@ static lean_object* _init_l_Lean_Meta_Simp_instInhabitedDiagnostics___closed__1( _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_Simp_instInhabitedContext___closed__4; +x_1 = l_Lean_Meta_Simp_instInhabitedContext___closed__6; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -3908,7 +3930,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; size_t x_4; lean_object* x_5; x_1 = l_Lean_Meta_Simp_instInhabitedDiagnostics___closed__1; -x_2 = l_Lean_Meta_Simp_instInhabitedContext___closed__4; +x_2 = l_Lean_Meta_Simp_instInhabitedContext___closed__6; x_3 = lean_unsigned_to_nat(0u); x_4 = l_Lean_Meta_Simp_instInhabitedDiagnostics___closed__2; x_5 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); @@ -3924,7 +3946,7 @@ static lean_object* _init_l_Lean_Meta_Simp_instInhabitedDiagnostics___closed__4( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Simp_instInhabitedContext___closed__9; +x_1 = l_Lean_Meta_Simp_instInhabitedContext___closed__11; x_2 = l_Lean_Meta_Simp_instInhabitedDiagnostics___closed__3; x_3 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_3, 0, x_1); @@ -5643,7 +5665,7 @@ _start: lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; x_1 = lean_box(0); x_2 = 0; -x_3 = l_Lean_Meta_Simp_instInhabitedContext___closed__4; +x_3 = l_Lean_Meta_Simp_instInhabitedContext___closed__6; x_4 = lean_alloc_ctor(0, 2, 1); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_3); @@ -5663,7 +5685,7 @@ static lean_object* _init_l_Lean_Meta_Simp_instInhabitedSimprocs___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Simp_instInhabitedContext___closed__9; +x_1 = l_Lean_Meta_Simp_instInhabitedContext___closed__11; x_2 = l_Lean_PersistentHashMap_empty___at_Lean_KeyedDeclsAttribute_instInhabitedExtensionState___spec__1; x_3 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_3, 0, x_1); @@ -6759,8 +6781,8 @@ _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = 1; -x_2 = l_Lean_Meta_Simp_instInhabitedContext___closed__7; -x_3 = l_Lean_Meta_Simp_instInhabitedContext___closed__9; +x_2 = l_Lean_Meta_Simp_instInhabitedContext___closed__9; +x_3 = l_Lean_Meta_Simp_instInhabitedContext___closed__11; x_4 = lean_alloc_ctor(0, 2, 1); lean_ctor_set(x_4, 0, x_2); lean_ctor_set(x_4, 1, x_3); @@ -10749,7 +10771,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Meta_Simp_mkImpCongr___closed__1; x_2 = l_Lean_Meta_Simp_mkImpCongr___closed__2; -x_3 = lean_unsigned_to_nat(1761u); +x_3 = lean_unsigned_to_nat(1765u); x_4 = lean_unsigned_to_nat(24u); x_5 = l_Lean_Meta_Simp_mkImpCongr___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -29013,11 +29035,9 @@ lean_mark_persistent(l_Lean_Meta_Simp_instInhabitedContext___closed__1); l_Lean_Meta_Simp_instInhabitedContext___closed__2 = _init_l_Lean_Meta_Simp_instInhabitedContext___closed__2(); lean_mark_persistent(l_Lean_Meta_Simp_instInhabitedContext___closed__2); l_Lean_Meta_Simp_instInhabitedContext___closed__3 = _init_l_Lean_Meta_Simp_instInhabitedContext___closed__3(); -lean_mark_persistent(l_Lean_Meta_Simp_instInhabitedContext___closed__3); l_Lean_Meta_Simp_instInhabitedContext___closed__4 = _init_l_Lean_Meta_Simp_instInhabitedContext___closed__4(); lean_mark_persistent(l_Lean_Meta_Simp_instInhabitedContext___closed__4); l_Lean_Meta_Simp_instInhabitedContext___closed__5 = _init_l_Lean_Meta_Simp_instInhabitedContext___closed__5(); -lean_mark_persistent(l_Lean_Meta_Simp_instInhabitedContext___closed__5); l_Lean_Meta_Simp_instInhabitedContext___closed__6 = _init_l_Lean_Meta_Simp_instInhabitedContext___closed__6(); lean_mark_persistent(l_Lean_Meta_Simp_instInhabitedContext___closed__6); l_Lean_Meta_Simp_instInhabitedContext___closed__7 = _init_l_Lean_Meta_Simp_instInhabitedContext___closed__7(); @@ -29030,6 +29050,10 @@ l_Lean_Meta_Simp_instInhabitedContext___closed__10 = _init_l_Lean_Meta_Simp_inst lean_mark_persistent(l_Lean_Meta_Simp_instInhabitedContext___closed__10); l_Lean_Meta_Simp_instInhabitedContext___closed__11 = _init_l_Lean_Meta_Simp_instInhabitedContext___closed__11(); lean_mark_persistent(l_Lean_Meta_Simp_instInhabitedContext___closed__11); +l_Lean_Meta_Simp_instInhabitedContext___closed__12 = _init_l_Lean_Meta_Simp_instInhabitedContext___closed__12(); +lean_mark_persistent(l_Lean_Meta_Simp_instInhabitedContext___closed__12); +l_Lean_Meta_Simp_instInhabitedContext___closed__13 = _init_l_Lean_Meta_Simp_instInhabitedContext___closed__13(); +lean_mark_persistent(l_Lean_Meta_Simp_instInhabitedContext___closed__13); l_Lean_Meta_Simp_instInhabitedContext = _init_l_Lean_Meta_Simp_instInhabitedContext(); lean_mark_persistent(l_Lean_Meta_Simp_instInhabitedContext); l___private_Lean_Meta_Tactic_Simp_Types_0__Lean_Meta_Simp_updateArith___closed__1 = _init_l___private_Lean_Meta_Tactic_Simp_Types_0__Lean_Meta_Simp_updateArith___closed__1(); diff --git a/stage0/stdlib/Lean/Meta/Transform.c b/stage0/stdlib/Lean/Meta/Transform.c index ac9b92b972..0db97ada43 100644 --- a/stage0/stdlib/Lean/Meta/Transform.c +++ b/stage0/stdlib/Lean/Meta/Transform.c @@ -1286,7 +1286,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Core_transform_visit___rarg___lambda__2___closed__1; x_2 = l_Lean_Core_transform_visit___rarg___lambda__2___closed__2; -x_3 = lean_unsigned_to_nat(1781u); +x_3 = lean_unsigned_to_nat(1785u); x_4 = lean_unsigned_to_nat(20u); x_5 = l_Lean_Core_transform_visit___rarg___lambda__2___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -1424,7 +1424,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Core_transform_visit___rarg___lambda__2___closed__1; x_2 = l_Lean_Core_transform_visit___rarg___lambda__4___closed__1; -x_3 = lean_unsigned_to_nat(1761u); +x_3 = lean_unsigned_to_nat(1765u); x_4 = lean_unsigned_to_nat(24u); x_5 = l_Lean_Core_transform_visit___rarg___lambda__4___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -1562,7 +1562,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Core_transform_visit___rarg___lambda__2___closed__1; x_2 = l_Lean_Core_transform_visit___rarg___lambda__6___closed__1; -x_3 = lean_unsigned_to_nat(1790u); +x_3 = lean_unsigned_to_nat(1794u); x_4 = lean_unsigned_to_nat(22u); x_5 = l_Lean_Core_transform_visit___rarg___lambda__6___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -1734,7 +1734,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Core_transform_visit___rarg___lambda__2___closed__1; x_2 = l_Lean_Core_transform_visit___rarg___lambda__9___closed__1; -x_3 = lean_unsigned_to_nat(1724u); +x_3 = lean_unsigned_to_nat(1728u); x_4 = lean_unsigned_to_nat(17u); x_5 = l_Lean_Core_transform_visit___rarg___lambda__9___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -1806,7 +1806,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Core_transform_visit___rarg___lambda__2___closed__1; x_2 = l_Lean_Core_transform_visit___rarg___lambda__10___closed__1; -x_3 = lean_unsigned_to_nat(1735u); +x_3 = lean_unsigned_to_nat(1739u); x_4 = lean_unsigned_to_nat(18u); x_5 = l_Lean_Core_transform_visit___rarg___lambda__10___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); diff --git a/stage0/stdlib/Lean/Meta/WHNF.c b/stage0/stdlib/Lean/Meta/WHNF.c index d4dea7459f..c19b817632 100644 --- a/stage0/stdlib/Lean/Meta/WHNF.c +++ b/stage0/stdlib/Lean/Meta/WHNF.c @@ -32,8 +32,7 @@ lean_object* l_Nat_shiftRight___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getStuckMVar_x3f___lambda__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_cache___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_unfoldDefinition_x3f___closed__1; -extern lean_object* l_Lean_profiler; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_smartUnfoldingReduce_x3f_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_smartUnfoldingReduce_x3f_go___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -97,7 +96,6 @@ uint8_t l_Lean_Expr_isApp(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaTelescope___at_Lean_Meta_smartUnfoldingReduce_x3f_go___spec__1___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_getDelayedMVarAssignmentCore_x3f(lean_object*, lean_object*); static lean_object* l_Lean_getConstInfoCtor___at___private_Lean_Meta_WHNF_0__Lean_Meta_toCtorWhenStructure___spec__1___closed__4; -static lean_object* l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__2___closed__1; lean_object* l_Lean_RecursorVal_getMajorInduct(lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Meta_WHNF_0__Lean_Meta_toCtorWhenK___spec__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_isQuotRecStuck_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -387,7 +385,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_getFirstCtor(le lean_object* l_Lean_mkAnnotation(lean_object*, lean_object*); static lean_object* l_Lean_Meta_unfoldDefinition___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_isRecStuck_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_lengthTRAux___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_reduceBoolNativeUnsafe(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static double l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__4___closed__4; @@ -627,7 +625,7 @@ uint8_t l_Lean_Expr_hasFVar(lean_object*); static lean_object* l_Lean_Meta_reduceNat_x3f___closed__12; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_WHNF_0__Lean_Meta_matchConstAux(lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_reduceMatcher_x3f___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withNatValue___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_betaRev(lean_object*, lean_object*, uint8_t, uint8_t); @@ -729,7 +727,7 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Meta_getStuckMVa uint8_t l_Lean_isStructureLike(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_reduceBinNatOp___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_whnfEasyCases___closed__5; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_reduceBinNatOp___lambda__3___closed__11; LEAN_EXPORT lean_object* l_Lean_Meta_reduceBinNatPred___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_unfoldProjInstWhenInstances_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -39844,69 +39842,36 @@ lean_dec(x_9); return x_14; } } -static lean_object* _init_l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__2___closed__1() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = l_Lean_addTrace___at_Lean_Meta_reducePow___spec__2___closed__1; +x_17 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_3); +lean_ctor_set_float(x_17, sizeof(void*)*2, x_16); +lean_ctor_set_float(x_17, sizeof(void*)*2 + 8, x_16); +lean_ctor_set_uint8(x_17, sizeof(void*)*2 + 16, x_2); +x_18 = lean_box(0); +x_19 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_17, x_18, x_11, x_12, x_13, x_14, x_15); +return x_19; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { -_start: +else { -double x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = l_Lean_addTrace___at_Lean_Meta_reducePow___spec__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_18 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_18, 0, x_1); -lean_ctor_set(x_18, 1, x_3); -lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); -lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); -lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); -x_19 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__2___closed__1; -x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_19); -if (x_20 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_21; lean_object* x_22; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); x_21 = lean_box(0); -x_22 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_18, x_21, x_12, x_13, x_14, x_15, x_16); +x_22 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15); return x_22; } -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_18); -x_23 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_3); -lean_ctor_set_float(x_23, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); -x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_23, x_24, x_12, x_13, x_14, x_15, x_16); -return x_25; -} -} -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_18); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16); -return x_28; -} } } static lean_object* _init_l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3___closed__1() { @@ -39926,46 +39891,46 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 5); -lean_inc(x_17); -lean_inc(x_15); +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 5); +lean_inc(x_16); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_18 = lean_apply_6(x_10, x_5, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_18) == 0) +x_17 = lean_apply_6(x_9, x_5, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_14, x_15, x_20); -lean_dec(x_15); -lean_dec(x_13); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_13, x_14, x_19); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_21; +return x_20; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_14, x_15, x_22); -lean_dec(x_15); -lean_dec(x_13); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } } } @@ -40029,253 +39994,253 @@ x_17 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__4___close x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_17); if (x_18 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_109 = lean_io_mono_nanos_now(x_16); -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_109, 1); -lean_inc(x_111); -lean_dec(x_109); +lean_object* x_19; lean_object* x_20; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_113 = lean_io_mono_nanos_now(x_16); +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +lean_dec(x_113); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_112 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_111); -if (lean_obj_tag(x_112) == 0) +x_116 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_115); +if (lean_obj_tag(x_116) == 0) { -uint8_t x_113; -x_113 = !lean_is_exclusive(x_112); -if (x_113 == 0) +uint8_t x_117; +x_117 = !lean_is_exclusive(x_116); +if (x_117 == 0) { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_114 = lean_ctor_get(x_112, 0); -x_115 = lean_ctor_get(x_112, 1); -x_116 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_116, 0, x_114); -x_117 = lean_io_mono_nanos_now(x_115); -x_118 = !lean_is_exclusive(x_117); -if (x_118 == 0) +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_118 = lean_ctor_get(x_116, 0); +x_119 = lean_ctor_get(x_116, 1); +x_120 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_120, 0, x_118); +x_121 = lean_io_mono_nanos_now(x_119); +x_122 = !lean_is_exclusive(x_121); +if (x_122 == 0) { -lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_122; double x_123; double x_124; double x_125; double x_126; double x_127; lean_object* x_128; lean_object* x_129; -x_119 = lean_ctor_get(x_117, 0); -x_120 = lean_ctor_get(x_117, 1); -x_121 = 0; -x_122 = lean_unsigned_to_nat(0u); -x_123 = l_Float_ofScientific(x_110, x_121, x_122); -lean_dec(x_110); -x_124 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__4___closed__5; -x_125 = lean_float_div(x_123, x_124); -x_126 = l_Float_ofScientific(x_119, x_121, x_122); -lean_dec(x_119); -x_127 = lean_float_div(x_126, x_124); -x_128 = lean_box_float(x_125); -x_129 = lean_box_float(x_127); -lean_ctor_set(x_117, 1, x_129); -lean_ctor_set(x_117, 0, x_128); -lean_ctor_set(x_112, 1, x_117); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_120; -goto block_108; +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; double x_130; double x_131; lean_object* x_132; lean_object* x_133; +x_123 = lean_ctor_get(x_121, 0); +x_124 = lean_ctor_get(x_121, 1); +x_125 = 0; +x_126 = lean_unsigned_to_nat(0u); +x_127 = l_Float_ofScientific(x_114, x_125, x_126); +lean_dec(x_114); +x_128 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__4___closed__5; +x_129 = lean_float_div(x_127, x_128); +x_130 = l_Float_ofScientific(x_123, x_125, x_126); +lean_dec(x_123); +x_131 = lean_float_div(x_130, x_128); +x_132 = lean_box_float(x_129); +x_133 = lean_box_float(x_131); +lean_ctor_set(x_121, 1, x_133); +lean_ctor_set(x_121, 0, x_132); +lean_ctor_set(x_116, 1, x_121); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_124; +goto block_112; } else { -lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; double x_134; double x_135; double x_136; double x_137; double x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_130 = lean_ctor_get(x_117, 0); -x_131 = lean_ctor_get(x_117, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_117); -x_132 = 0; -x_133 = lean_unsigned_to_nat(0u); -x_134 = l_Float_ofScientific(x_110, x_132, x_133); -lean_dec(x_110); -x_135 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__4___closed__5; -x_136 = lean_float_div(x_134, x_135); -x_137 = l_Float_ofScientific(x_130, x_132, x_133); -lean_dec(x_130); -x_138 = lean_float_div(x_137, x_135); -x_139 = lean_box_float(x_136); -x_140 = lean_box_float(x_138); -x_141 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -lean_ctor_set(x_112, 1, x_141); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_131; -goto block_108; +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_134 = lean_ctor_get(x_121, 0); +x_135 = lean_ctor_get(x_121, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_121); +x_136 = 0; +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Float_ofScientific(x_114, x_136, x_137); +lean_dec(x_114); +x_139 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__4___closed__5; +x_140 = lean_float_div(x_138, x_139); +x_141 = l_Float_ofScientific(x_134, x_136, x_137); +lean_dec(x_134); +x_142 = lean_float_div(x_141, x_139); +x_143 = lean_box_float(x_140); +x_144 = lean_box_float(x_142); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_116, 1, x_145); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_135; +goto block_112; } } else { -lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_142 = lean_ctor_get(x_112, 0); -x_143 = lean_ctor_get(x_112, 1); -lean_inc(x_143); -lean_inc(x_142); -lean_dec(x_112); -x_144 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_144, 0, x_142); -x_145 = lean_io_mono_nanos_now(x_143); -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; lean_object* x_154; double x_155; double x_156; double x_157; double x_158; double x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_146 = lean_ctor_get(x_116, 0); +x_147 = lean_ctor_get(x_116, 1); lean_inc(x_147); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - lean_ctor_release(x_145, 1); - x_148 = x_145; +lean_inc(x_146); +lean_dec(x_116); +x_148 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_148, 0, x_146); +x_149 = lean_io_mono_nanos_now(x_147); +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + lean_ctor_release(x_149, 1); + x_152 = x_149; } else { - lean_dec_ref(x_145); - x_148 = lean_box(0); + lean_dec_ref(x_149); + x_152 = lean_box(0); } -x_149 = 0; -x_150 = lean_unsigned_to_nat(0u); -x_151 = l_Float_ofScientific(x_110, x_149, x_150); -lean_dec(x_110); -x_152 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__4___closed__5; -x_153 = lean_float_div(x_151, x_152); -x_154 = l_Float_ofScientific(x_146, x_149, x_150); -lean_dec(x_146); -x_155 = lean_float_div(x_154, x_152); -x_156 = lean_box_float(x_153); -x_157 = lean_box_float(x_155); -if (lean_is_scalar(x_148)) { - x_158 = lean_alloc_ctor(0, 2, 0); +x_153 = 0; +x_154 = lean_unsigned_to_nat(0u); +x_155 = l_Float_ofScientific(x_114, x_153, x_154); +lean_dec(x_114); +x_156 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__4___closed__5; +x_157 = lean_float_div(x_155, x_156); +x_158 = l_Float_ofScientific(x_150, x_153, x_154); +lean_dec(x_150); +x_159 = lean_float_div(x_158, x_156); +x_160 = lean_box_float(x_157); +x_161 = lean_box_float(x_159); +if (lean_is_scalar(x_152)) { + x_162 = lean_alloc_ctor(0, 2, 0); } else { - x_158 = x_148; + x_162 = x_152; } -lean_ctor_set(x_158, 0, x_156); -lean_ctor_set(x_158, 1, x_157); -x_159 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_159, 0, x_144); -lean_ctor_set(x_159, 1, x_158); -x_19 = x_159; -x_20 = x_147; -goto block_108; +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_161); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_148); +lean_ctor_set(x_163, 1, x_162); +x_19 = x_163; +x_20 = x_151; +goto block_112; } } else { -uint8_t x_160; -x_160 = !lean_is_exclusive(x_112); -if (x_160 == 0) +uint8_t x_164; +x_164 = !lean_is_exclusive(x_116); +if (x_164 == 0) { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_161 = lean_ctor_get(x_112, 0); -x_162 = lean_ctor_get(x_112, 1); -x_163 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_163, 0, x_161); -x_164 = lean_io_mono_nanos_now(x_162); -x_165 = !lean_is_exclusive(x_164); -if (x_165 == 0) +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; +x_165 = lean_ctor_get(x_116, 0); +x_166 = lean_ctor_get(x_116, 1); +x_167 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_167, 0, x_165); +x_168 = lean_io_mono_nanos_now(x_166); +x_169 = !lean_is_exclusive(x_168); +if (x_169 == 0) { -lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; double x_170; double x_171; double x_172; double x_173; double x_174; lean_object* x_175; lean_object* x_176; -x_166 = lean_ctor_get(x_164, 0); -x_167 = lean_ctor_get(x_164, 1); -x_168 = 0; -x_169 = lean_unsigned_to_nat(0u); -x_170 = l_Float_ofScientific(x_110, x_168, x_169); -lean_dec(x_110); -x_171 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__4___closed__5; -x_172 = lean_float_div(x_170, x_171); -x_173 = l_Float_ofScientific(x_166, x_168, x_169); -lean_dec(x_166); -x_174 = lean_float_div(x_173, x_171); -x_175 = lean_box_float(x_172); -x_176 = lean_box_float(x_174); -lean_ctor_set(x_164, 1, x_176); -lean_ctor_set(x_164, 0, x_175); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_164); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_167; -goto block_108; +lean_object* x_170; lean_object* x_171; uint8_t x_172; lean_object* x_173; double x_174; double x_175; double x_176; double x_177; double x_178; lean_object* x_179; lean_object* x_180; +x_170 = lean_ctor_get(x_168, 0); +x_171 = lean_ctor_get(x_168, 1); +x_172 = 0; +x_173 = lean_unsigned_to_nat(0u); +x_174 = l_Float_ofScientific(x_114, x_172, x_173); +lean_dec(x_114); +x_175 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__4___closed__5; +x_176 = lean_float_div(x_174, x_175); +x_177 = l_Float_ofScientific(x_170, x_172, x_173); +lean_dec(x_170); +x_178 = lean_float_div(x_177, x_175); +x_179 = lean_box_float(x_176); +x_180 = lean_box_float(x_178); +lean_ctor_set(x_168, 1, x_180); +lean_ctor_set(x_168, 0, x_179); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_168); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_171; +goto block_112; } else { -lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_object* x_180; double x_181; double x_182; double x_183; double x_184; double x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_177 = lean_ctor_get(x_164, 0); -x_178 = lean_ctor_get(x_164, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_164); -x_179 = 0; -x_180 = lean_unsigned_to_nat(0u); -x_181 = l_Float_ofScientific(x_110, x_179, x_180); -lean_dec(x_110); -x_182 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__4___closed__5; -x_183 = lean_float_div(x_181, x_182); -x_184 = l_Float_ofScientific(x_177, x_179, x_180); -lean_dec(x_177); -x_185 = lean_float_div(x_184, x_182); -x_186 = lean_box_float(x_183); -x_187 = lean_box_float(x_185); -x_188 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_188); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_178; -goto block_108; +lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_181 = lean_ctor_get(x_168, 0); +x_182 = lean_ctor_get(x_168, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_168); +x_183 = 0; +x_184 = lean_unsigned_to_nat(0u); +x_185 = l_Float_ofScientific(x_114, x_183, x_184); +lean_dec(x_114); +x_186 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__4___closed__5; +x_187 = lean_float_div(x_185, x_186); +x_188 = l_Float_ofScientific(x_181, x_183, x_184); +lean_dec(x_181); +x_189 = lean_float_div(x_188, x_186); +x_190 = lean_box_float(x_187); +x_191 = lean_box_float(x_189); +x_192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_192); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_182; +goto block_112; } } else { -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_189 = lean_ctor_get(x_112, 0); -x_190 = lean_ctor_get(x_112, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_112); -x_191 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_191, 0, x_189); -x_192 = lean_io_mono_nanos_now(x_190); -x_193 = lean_ctor_get(x_192, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; lean_object* x_201; double x_202; double x_203; double x_204; double x_205; double x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_193 = lean_ctor_get(x_116, 0); +x_194 = lean_ctor_get(x_116, 1); lean_inc(x_194); -if (lean_is_exclusive(x_192)) { - lean_ctor_release(x_192, 0); - lean_ctor_release(x_192, 1); - x_195 = x_192; +lean_inc(x_193); +lean_dec(x_116); +x_195 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_195, 0, x_193); +x_196 = lean_io_mono_nanos_now(x_194); +x_197 = lean_ctor_get(x_196, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_196, 1); +lean_inc(x_198); +if (lean_is_exclusive(x_196)) { + lean_ctor_release(x_196, 0); + lean_ctor_release(x_196, 1); + x_199 = x_196; } else { - lean_dec_ref(x_192); - x_195 = lean_box(0); + lean_dec_ref(x_196); + x_199 = lean_box(0); } -x_196 = 0; -x_197 = lean_unsigned_to_nat(0u); -x_198 = l_Float_ofScientific(x_110, x_196, x_197); -lean_dec(x_110); -x_199 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__4___closed__5; -x_200 = lean_float_div(x_198, x_199); -x_201 = l_Float_ofScientific(x_193, x_196, x_197); -lean_dec(x_193); -x_202 = lean_float_div(x_201, x_199); -x_203 = lean_box_float(x_200); -x_204 = lean_box_float(x_202); -if (lean_is_scalar(x_195)) { - x_205 = lean_alloc_ctor(0, 2, 0); +x_200 = 0; +x_201 = lean_unsigned_to_nat(0u); +x_202 = l_Float_ofScientific(x_114, x_200, x_201); +lean_dec(x_114); +x_203 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__4___closed__5; +x_204 = lean_float_div(x_202, x_203); +x_205 = l_Float_ofScientific(x_197, x_200, x_201); +lean_dec(x_197); +x_206 = lean_float_div(x_205, x_203); +x_207 = lean_box_float(x_204); +x_208 = lean_box_float(x_206); +if (lean_is_scalar(x_199)) { + x_209 = lean_alloc_ctor(0, 2, 0); } else { - x_205 = x_195; + x_209 = x_199; } -lean_ctor_set(x_205, 0, x_203); -lean_ctor_set(x_205, 1, x_204); -x_206 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_206, 0, x_191); -lean_ctor_set(x_206, 1, x_205); -x_19 = x_206; -x_20 = x_194; -goto block_108; +lean_ctor_set(x_209, 0, x_207); +lean_ctor_set(x_209, 1, x_208); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_195); +lean_ctor_set(x_210, 1, x_209); +x_19 = x_210; +x_20 = x_198; +goto block_112; } } -block_108: +block_112: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_94; uint8_t x_95; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); x_22 = lean_ctor_get(x_19, 0); @@ -40286,17 +40251,33 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_21, 1); lean_inc(x_24); lean_dec(x_21); -x_94 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__4___closed__2; -x_95 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_94); -if (x_95 == 0) +x_25 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__4___closed__2; +x_26 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_25); +if (x_26 == 0) { -uint8_t x_96; -x_96 = 0; -x_25 = x_96; -goto block_93; +if (x_6 == 0) +{ +uint8_t x_92; +x_92 = 0; +x_27 = x_92; +goto block_91; } else { +lean_object* x_93; double x_94; double x_95; lean_object* x_96; +x_93 = lean_box(0); +x_94 = lean_unbox_float(x_23); +lean_dec(x_23); +x_95 = lean_unbox_float(x_24); +lean_dec(x_24); +x_96 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_94, x_95, x_5, x_93, x_9, x_10, x_11, x_12, x_20); +return x_96; +} +} +else +{ +if (x_6 == 0) +{ double x_97; double x_98; double x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; double x_104; double x_105; double x_106; uint8_t x_107; x_97 = lean_unbox_float(x_24); x_98 = lean_unbox_float(x_23); @@ -40310,859 +40291,871 @@ lean_dec(x_101); x_105 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__4___closed__4; x_106 = lean_float_div(x_104, x_105); x_107 = lean_float_decLt(x_106, x_99); -x_25 = x_107; -goto block_93; +x_27 = x_107; +goto block_91; } -block_93: +else { -if (x_6 == 0) +lean_object* x_108; double x_109; double x_110; lean_object* x_111; +x_108 = lean_box(0); +x_109 = lean_unbox_float(x_23); +lean_dec(x_23); +x_110 = lean_unbox_float(x_24); +lean_dec(x_24); +x_111 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_109, x_110, x_5, x_108, x_9, x_10, x_11, x_12, x_20); +return x_111; +} +} +block_91: { -if (x_25 == 0) +if (x_27 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_24); lean_dec(x_23); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_26 = lean_st_ref_take(x_12, x_20); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -x_29 = lean_ctor_get(x_26, 1); +x_28 = lean_st_ref_take(x_12, x_20); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -lean_dec(x_26); -x_30 = !lean_is_exclusive(x_27); -if (x_30 == 0) -{ -lean_object* x_31; uint8_t x_32; -x_31 = lean_ctor_get(x_27, 3); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_28); +x_30 = lean_ctor_get(x_29, 3); +lean_inc(x_30); +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = !lean_is_exclusive(x_29); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_33 = lean_ctor_get(x_28, 0); -x_34 = l_Lean_PersistentArray_append___rarg(x_15, x_33); +lean_object* x_33; uint8_t x_34; +x_33 = lean_ctor_get(x_29, 3); lean_dec(x_33); -lean_ctor_set(x_28, 0, x_34); -x_35 = lean_st_ref_set(x_12, x_27, x_29); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); +x_34 = !lean_is_exclusive(x_30); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_ctor_get(x_30, 0); +x_36 = l_Lean_PersistentArray_append___rarg(x_15, x_35); lean_dec(x_35); -x_37 = l_MonadExcept_ofExcept___at_Lean_Meta_whnfImp___spec__2(x_22, x_9, x_10, x_11, x_12, x_36); +lean_ctor_set(x_30, 0, x_36); +x_37 = lean_st_ref_set(x_12, x_29, x_31); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +x_39 = l_MonadExcept_ofExcept___at_Lean_Meta_whnfImp___spec__2(x_22, x_9, x_10, x_11, x_12, x_38); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_37) == 0) +if (lean_obj_tag(x_39) == 0) { -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -return x_37; +return x_39; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_ctor_get(x_37, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_37); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_39); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } else { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_37); -if (x_42 == 0) +uint8_t x_44; +x_44 = !lean_is_exclusive(x_39); +if (x_44 == 0) { -return x_37; +return x_39; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_37, 0); -x_44 = lean_ctor_get(x_37, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_37); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_39, 0); +x_46 = lean_ctor_get(x_39, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_39); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } } else { -uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_47 = lean_ctor_get(x_28, 0); -lean_inc(x_47); -lean_dec(x_28); -x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_47); -lean_dec(x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); -lean_ctor_set(x_27, 3, x_49); -x_50 = lean_st_ref_set(x_12, x_27, x_29); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -lean_dec(x_50); -x_52 = l_MonadExcept_ofExcept___at_Lean_Meta_whnfImp___spec__2(x_22, x_9, x_10, x_11, x_12, x_51); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_22); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); +uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_49 = lean_ctor_get(x_30, 0); +lean_inc(x_49); +lean_dec(x_30); +x_50 = l_Lean_PersistentArray_append___rarg(x_15, x_49); +lean_dec(x_49); +x_51 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); +lean_ctor_set(x_29, 3, x_51); +x_52 = lean_st_ref_set(x_12, x_29, x_31); +x_53 = lean_ctor_get(x_52, 1); lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_55 = x_52; +lean_dec(x_52); +x_54 = l_MonadExcept_ofExcept___at_Lean_Meta_whnfImp___spec__2(x_22, x_9, x_10, x_11, x_12, x_53); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_22); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; } else { - lean_dec_ref(x_52); - x_55 = lean_box(0); + lean_dec_ref(x_54); + x_57 = lean_box(0); } -if (lean_is_scalar(x_55)) { - x_56 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_57)) { + x_58 = lean_alloc_ctor(0, 2, 0); } else { - x_56 = x_55; + x_58 = x_57; } -lean_ctor_set(x_56, 0, x_53); -lean_ctor_set(x_56, 1, x_54); -return x_56; +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_56); +return x_58; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_52, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_52, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_59 = x_52; +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_54, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_54, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_61 = x_54; } else { - lean_dec_ref(x_52); - x_59 = lean_box(0); + lean_dec_ref(x_54); + x_61 = lean_box(0); } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(1, 2, 0); } else { - x_60 = x_59; + x_62 = x_61; } -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_58); -return x_60; +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; } } } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_61 = lean_ctor_get(x_27, 0); -x_62 = lean_ctor_get(x_27, 1); -x_63 = lean_ctor_get(x_27, 2); -x_64 = lean_ctor_get(x_27, 4); -x_65 = lean_ctor_get(x_27, 5); -x_66 = lean_ctor_get(x_27, 6); -x_67 = lean_ctor_get(x_27, 7); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_63 = lean_ctor_get(x_29, 0); +x_64 = lean_ctor_get(x_29, 1); +x_65 = lean_ctor_get(x_29, 2); +x_66 = lean_ctor_get(x_29, 4); +x_67 = lean_ctor_get(x_29, 5); +x_68 = lean_ctor_get(x_29, 6); +x_69 = lean_ctor_get(x_29, 7); +lean_inc(x_69); +lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_27); -x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_69 = lean_ctor_get(x_28, 0); -lean_inc(x_69); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - x_70 = x_28; +lean_dec(x_29); +x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_71 = lean_ctor_get(x_30, 0); +lean_inc(x_71); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + x_72 = x_30; } else { - lean_dec_ref(x_28); - x_70 = lean_box(0); + lean_dec_ref(x_30); + x_72 = lean_box(0); } -x_71 = l_Lean_PersistentArray_append___rarg(x_15, x_69); -lean_dec(x_69); -if (lean_is_scalar(x_70)) { - x_72 = lean_alloc_ctor(0, 1, 8); +x_73 = l_Lean_PersistentArray_append___rarg(x_15, x_71); +lean_dec(x_71); +if (lean_is_scalar(x_72)) { + x_74 = lean_alloc_ctor(0, 1, 8); } else { - x_72 = x_70; + x_74 = x_72; } -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); -x_73 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_73, 0, x_61); -lean_ctor_set(x_73, 1, x_62); -lean_ctor_set(x_73, 2, x_63); -lean_ctor_set(x_73, 3, x_72); -lean_ctor_set(x_73, 4, x_64); -lean_ctor_set(x_73, 5, x_65); -lean_ctor_set(x_73, 6, x_66); -lean_ctor_set(x_73, 7, x_67); -x_74 = lean_st_ref_set(x_12, x_73, x_29); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_76 = l_MonadExcept_ofExcept___at_Lean_Meta_whnfImp___spec__2(x_22, x_9, x_10, x_11, x_12, x_75); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); +x_75 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_64); +lean_ctor_set(x_75, 2, x_65); +lean_ctor_set(x_75, 3, x_74); +lean_ctor_set(x_75, 4, x_66); +lean_ctor_set(x_75, 5, x_67); +lean_ctor_set(x_75, 6, x_68); +lean_ctor_set(x_75, 7, x_69); +x_76 = lean_st_ref_set(x_12, x_75, x_31); +x_77 = lean_ctor_get(x_76, 1); +lean_inc(x_77); +lean_dec(x_76); +x_78 = l_MonadExcept_ofExcept___at_Lean_Meta_whnfImp___spec__2(x_22, x_9, x_10, x_11, x_12, x_77); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_76) == 0) +if (lean_obj_tag(x_78) == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_76, 0); -lean_inc(x_77); -x_78 = lean_ctor_get(x_76, 1); -lean_inc(x_78); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_79 = x_76; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_81 = x_78; } else { - lean_dec_ref(x_76); - x_79 = lean_box(0); + lean_dec_ref(x_78); + x_81 = lean_box(0); } -if (lean_is_scalar(x_79)) { - x_80 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(0, 2, 0); } else { - x_80 = x_79; + x_82 = x_81; } -lean_ctor_set(x_80, 0, x_77); -lean_ctor_set(x_80, 1, x_78); -return x_80; +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_80); +return x_82; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_81 = lean_ctor_get(x_76, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_76, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_83 = x_76; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_83 = lean_ctor_get(x_78, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_78, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_85 = x_78; } else { - lean_dec_ref(x_76); - x_83 = lean_box(0); + lean_dec_ref(x_78); + x_85 = lean_box(0); } -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); } else { - x_84 = x_83; + x_86 = x_85; } -lean_ctor_set(x_84, 0, x_81); -lean_ctor_set(x_84, 1, x_82); -return x_84; +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; } } } else { -lean_object* x_85; double x_86; double x_87; lean_object* x_88; -x_85 = lean_box(0); -x_86 = lean_unbox_float(x_23); +lean_object* x_87; double x_88; double x_89; lean_object* x_90; +x_87 = lean_box(0); +x_88 = lean_unbox_float(x_23); lean_dec(x_23); -x_87 = lean_unbox_float(x_24); +x_89 = lean_unbox_float(x_24); lean_dec(x_24); -x_88 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_86, x_87, x_5, x_85, x_9, x_10, x_11, x_12, x_20); -return x_88; -} -} -else -{ -lean_object* x_89; double x_90; double x_91; lean_object* x_92; -x_89 = lean_box(0); -x_90 = lean_unbox_float(x_23); -lean_dec(x_23); -x_91 = lean_unbox_float(x_24); -lean_dec(x_24); -x_92 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_20); -return x_92; +x_90 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_20); +return x_90; } } } } else { -lean_object* x_207; lean_object* x_208; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_16); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_211; lean_object* x_212; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_16); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_207 = x_336; -x_208 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_211 = x_344; +x_212 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_207 = x_374; -x_208 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_282; uint8_t x_283; -x_209 = lean_ctor_get(x_207, 1); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 0); -lean_inc(x_210); -lean_dec(x_207); -x_211 = lean_ctor_get(x_209, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 1); -lean_inc(x_212); -lean_dec(x_209); -x_282 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_213 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_212); -x_286 = lean_unbox_float(x_211); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_213 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_211 = x_382; +x_212 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; uint8_t x_219; +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 0); +lean_inc(x_214); +lean_dec(x_211); +x_215 = lean_ctor_get(x_213, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 1); +lean_inc(x_216); +lean_dec(x_213); +x_217 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__4___closed__2; +x_218 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_217); +if (x_218 == 0) { if (x_6 == 0) { -if (x_213 == 0) +uint8_t x_284; +x_284 = 0; +x_219 = x_284; +goto block_283; +} +else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; -lean_dec(x_212); -lean_dec(x_211); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_215); +lean_dec(x_215); +x_287 = lean_unbox_float(x_216); +lean_dec(x_216); +x_288 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_212); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_216); +x_290 = lean_unbox_float(x_215); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_219 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_215); +lean_dec(x_215); +x_300 = lean_unbox_float(x_216); +lean_dec(x_216); +x_301 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_212); +return x_301; +} +} +block_283: +{ +if (x_219 == 0) +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; +lean_dec(x_216); +lean_dec(x_215); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_214 = lean_st_ref_take(x_12, x_208); -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_215, 3); -lean_inc(x_216); -x_217 = lean_ctor_get(x_214, 1); -lean_inc(x_217); -lean_dec(x_214); -x_218 = !lean_is_exclusive(x_215); -if (x_218 == 0) +x_220 = lean_st_ref_take(x_12, x_212); +x_221 = lean_ctor_get(x_220, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_221, 3); +lean_inc(x_222); +x_223 = lean_ctor_get(x_220, 1); +lean_inc(x_223); +lean_dec(x_220); +x_224 = !lean_is_exclusive(x_221); +if (x_224 == 0) { -lean_object* x_219; uint8_t x_220; -x_219 = lean_ctor_get(x_215, 3); -lean_dec(x_219); -x_220 = !lean_is_exclusive(x_216); -if (x_220 == 0) -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_221 = lean_ctor_get(x_216, 0); -x_222 = l_Lean_PersistentArray_append___rarg(x_15, x_221); -lean_dec(x_221); -lean_ctor_set(x_216, 0, x_222); -x_223 = lean_st_ref_set(x_12, x_215, x_217); -x_224 = lean_ctor_get(x_223, 1); -lean_inc(x_224); -lean_dec(x_223); -x_225 = l_MonadExcept_ofExcept___at_Lean_Meta_whnfImp___spec__2(x_210, x_9, x_10, x_11, x_12, x_224); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_225) == 0) -{ -uint8_t x_226; -x_226 = !lean_is_exclusive(x_225); +lean_object* x_225; uint8_t x_226; +x_225 = lean_ctor_get(x_221, 3); +lean_dec(x_225); +x_226 = !lean_is_exclusive(x_222); if (x_226 == 0) { -return x_225; -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; -x_227 = lean_ctor_get(x_225, 0); -x_228 = lean_ctor_get(x_225, 1); -lean_inc(x_228); -lean_inc(x_227); -lean_dec(x_225); -x_229 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_229, 0, x_227); -lean_ctor_set(x_229, 1, x_228); -return x_229; -} -} -else -{ -uint8_t x_230; -x_230 = !lean_is_exclusive(x_225); -if (x_230 == 0) -{ -return x_225; -} -else -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_225, 0); -x_232 = lean_ctor_get(x_225, 1); -lean_inc(x_232); -lean_inc(x_231); -lean_dec(x_225); -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_231); -lean_ctor_set(x_233, 1, x_232); -return x_233; -} -} -} -else -{ -uint64_t x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_234 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_235 = lean_ctor_get(x_216, 0); -lean_inc(x_235); -lean_dec(x_216); -x_236 = l_Lean_PersistentArray_append___rarg(x_15, x_235); -lean_dec(x_235); -x_237 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_237, 0, x_236); -lean_ctor_set_uint64(x_237, sizeof(void*)*1, x_234); -lean_ctor_set(x_215, 3, x_237); -x_238 = lean_st_ref_set(x_12, x_215, x_217); -x_239 = lean_ctor_get(x_238, 1); -lean_inc(x_239); -lean_dec(x_238); -x_240 = l_MonadExcept_ofExcept___at_Lean_Meta_whnfImp___spec__2(x_210, x_9, x_10, x_11, x_12, x_239); +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_227 = lean_ctor_get(x_222, 0); +x_228 = l_Lean_PersistentArray_append___rarg(x_15, x_227); +lean_dec(x_227); +lean_ctor_set(x_222, 0, x_228); +x_229 = lean_st_ref_set(x_12, x_221, x_223); +x_230 = lean_ctor_get(x_229, 1); +lean_inc(x_230); +lean_dec(x_229); +x_231 = l_MonadExcept_ofExcept___at_Lean_Meta_whnfImp___spec__2(x_214, x_9, x_10, x_11, x_12, x_230); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_240) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_231) == 0) { -lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; -x_241 = lean_ctor_get(x_240, 0); +uint8_t x_232; +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +return x_231; +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_231, 0); +x_234 = lean_ctor_get(x_231, 1); +lean_inc(x_234); +lean_inc(x_233); +lean_dec(x_231); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +return x_235; +} +} +else +{ +uint8_t x_236; +x_236 = !lean_is_exclusive(x_231); +if (x_236 == 0) +{ +return x_231; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_231, 0); +x_238 = lean_ctor_get(x_231, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_231); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} +} +} +else +{ +uint64_t x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_240 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_241 = lean_ctor_get(x_222, 0); lean_inc(x_241); -x_242 = lean_ctor_get(x_240, 1); -lean_inc(x_242); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_243 = x_240; -} else { - lean_dec_ref(x_240); - x_243 = lean_box(0); -} -if (lean_is_scalar(x_243)) { - x_244 = lean_alloc_ctor(0, 2, 0); -} else { - x_244 = x_243; -} -lean_ctor_set(x_244, 0, x_241); -lean_ctor_set(x_244, 1, x_242); -return x_244; -} -else -{ -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_245 = lean_ctor_get(x_240, 0); +lean_dec(x_222); +x_242 = l_Lean_PersistentArray_append___rarg(x_15, x_241); +lean_dec(x_241); +x_243 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set_uint64(x_243, sizeof(void*)*1, x_240); +lean_ctor_set(x_221, 3, x_243); +x_244 = lean_st_ref_set(x_12, x_221, x_223); +x_245 = lean_ctor_get(x_244, 1); lean_inc(x_245); -x_246 = lean_ctor_get(x_240, 1); -lean_inc(x_246); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_247 = x_240; -} else { - lean_dec_ref(x_240); - x_247 = lean_box(0); -} -if (lean_is_scalar(x_247)) { - x_248 = lean_alloc_ctor(1, 2, 0); -} else { - x_248 = x_247; -} -lean_ctor_set(x_248, 0, x_245); -lean_ctor_set(x_248, 1, x_246); -return x_248; -} -} -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_249 = lean_ctor_get(x_215, 0); -x_250 = lean_ctor_get(x_215, 1); -x_251 = lean_ctor_get(x_215, 2); -x_252 = lean_ctor_get(x_215, 4); -x_253 = lean_ctor_get(x_215, 5); -x_254 = lean_ctor_get(x_215, 6); -x_255 = lean_ctor_get(x_215, 7); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_dec(x_215); -x_256 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_257 = lean_ctor_get(x_216, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_216)) { - lean_ctor_release(x_216, 0); - x_258 = x_216; -} else { - lean_dec_ref(x_216); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_15, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_261, 0, x_249); -lean_ctor_set(x_261, 1, x_250); -lean_ctor_set(x_261, 2, x_251); -lean_ctor_set(x_261, 3, x_260); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_255); -x_262 = lean_st_ref_set(x_12, x_261, x_217); -x_263 = lean_ctor_get(x_262, 1); -lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at_Lean_Meta_whnfImp___spec__2(x_210, x_9, x_10, x_11, x_12, x_263); +lean_dec(x_244); +x_246 = l_MonadExcept_ofExcept___at_Lean_Meta_whnfImp___spec__2(x_214, x_9, x_10, x_11, x_12, x_245); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_246) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_247 = lean_ctor_get(x_246, 0); +lean_inc(x_247); +x_248 = lean_ctor_get(x_246, 1); +lean_inc(x_248); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_249 = x_246; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_246); + x_249 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_249)) { + x_250 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_250 = x_249; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_250, 0, x_247); +lean_ctor_set(x_250, 1, x_248); +return x_250; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_251 = lean_ctor_get(x_246, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_246, 1); +lean_inc(x_252); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_253 = x_246; +} else { + lean_dec_ref(x_246); + x_253 = lean_box(0); +} +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(1, 2, 0); +} else { + x_254 = x_253; +} +lean_ctor_set(x_254, 0, x_251); +lean_ctor_set(x_254, 1, x_252); +return x_254; +} +} +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_255 = lean_ctor_get(x_221, 0); +x_256 = lean_ctor_get(x_221, 1); +x_257 = lean_ctor_get(x_221, 2); +x_258 = lean_ctor_get(x_221, 4); +x_259 = lean_ctor_get(x_221, 5); +x_260 = lean_ctor_get(x_221, 6); +x_261 = lean_ctor_get(x_221, 7); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_221); +x_262 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_263 = lean_ctor_get(x_222, 0); +lean_inc(x_263); +if (lean_is_exclusive(x_222)) { + lean_ctor_release(x_222, 0); + x_264 = x_222; +} else { + lean_dec_ref(x_222); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_15, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_267, 0, x_255); +lean_ctor_set(x_267, 1, x_256); +lean_ctor_set(x_267, 2, x_257); +lean_ctor_set(x_267, 3, x_266); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_261); +x_268 = lean_st_ref_set(x_12, x_267, x_223); +x_269 = lean_ctor_get(x_268, 1); lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at_Lean_Meta_whnfImp___spec__2(x_214, x_9, x_10, x_11, x_12, x_269); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_214); +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_272 = x_271; + x_274 = x_273; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; +} else { + lean_dec_ref(x_270); + x_277 = lean_box(0); +} +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); +} else { + x_278 = x_277; +} +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_211); -lean_dec(x_211); -x_275 = lean_unbox_float(x_212); -lean_dec(x_212); -x_276 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_274, x_275, x_5, x_273, x_9, x_10, x_11, x_12, x_208); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_211); -lean_dec(x_211); -x_279 = lean_unbox_float(x_212); -lean_dec(x_212); -x_280 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_278, x_279, x_5, x_277, x_9, x_10, x_11, x_12, x_208); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_215); +lean_dec(x_215); +x_281 = lean_unbox_float(x_216); +lean_dec(x_216); +x_282 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_212); +return x_282; } } } @@ -42577,43 +42570,41 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_8); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); lean_dec(x_8); x_19 = lean_unbox_float(x_9); lean_dec(x_9); -x_20 = lean_unbox_float(x_10); -lean_dec(x_10); -x_21 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_18, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_15); -lean_dec(x_13); +x_20 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__2(x_1, x_16, x_3, x_4, x_5, x_6, x_17, x_18, x_19, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_14); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_21; +return x_20; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_7); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); lean_dec(x_7); x_19 = lean_unbox_float(x_8); lean_dec(x_8); -x_20 = lean_unbox_float(x_9); -lean_dec(x_9); -x_21 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_11); -lean_dec(x_6); -return x_21; +x_20 = l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3(x_1, x_16, x_3, x_4, x_5, x_17, x_18, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +return x_20; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -43364,8 +43355,6 @@ l_Lean_Meta_reduceNat_x3f___closed__28 = _init_l_Lean_Meta_reduceNat_x3f___close lean_mark_persistent(l_Lean_Meta_reduceNat_x3f___closed__28); l_Lean_Meta_reduceNat_x3f___closed__29 = _init_l_Lean_Meta_reduceNat_x3f___closed__29(); lean_mark_persistent(l_Lean_Meta_reduceNat_x3f___closed__29); -l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__2___closed__1(); -lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__2___closed__1); l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3___closed__1); l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at_Lean_Meta_whnfImp___spec__1___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/TopDownAnalyze.c b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/TopDownAnalyze.c index b80fe16c5d..cb9e1be270 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/TopDownAnalyze.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/TopDownAnalyze.c @@ -40,7 +40,6 @@ static lean_object* l_Lean_getPPAnalysisNoDot___closed__1; LEAN_EXPORT lean_object* l_panic___at_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyze_analyzeProj___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyze___closed__3; LEAN_EXPORT lean_object* l_panic___at_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyze_analyzeLet___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_profiler; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_canBottomUp___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_isHBinOp___lambda__1___closed__19; LEAN_EXPORT lean_object* l_Lean_pp_analyze_omitMax; @@ -98,7 +97,6 @@ static lean_object* l_Std_DHashMap_Internal_AssocList_get_x21___at_Lean_PrettyPr uint8_t l_Lean_Level_hasParam(lean_object*); size_t lean_uint64_to_usize(uint64_t); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_SubExpr_withNaryArg___at_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyzeAppStagedCore_applyFunBinderHeuristic___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__2___closed__1; LEAN_EXPORT uint8_t l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_isHBinOp(lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyzeAppStagedCore_collectHigherOrders___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); @@ -182,7 +180,7 @@ uint8_t lean_float_decLt(double, double); static lean_object* l_Lean_getPPAnalysisSkip___closed__1; static lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_47____closed__1; LEAN_EXPORT uint8_t l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_isHBinOp___lambda__2(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_instMonadReaderOfSubExprAnalyzeM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_replaceLPsWithVars___lambda__2___closed__3; static lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_447____closed__2; @@ -244,7 +242,7 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyze LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_SubExpr_withBindingBody___at_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyzeAppStagedCore_applyFunBinderHeuristic_core___spec__3___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isAtomic(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_3664_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyze_analyzeMData___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_replaceLPsWithVars___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_fieldNotationCandidate_x3f(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -607,7 +605,7 @@ uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withNewMCtxDepth___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__1(lean_object*); static lean_object* l_Std_Range_forIn_x27_loop___at_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyzeAppStagedCore_applyFunBinderHeuristic_core___spec__2___closed__2; lean_object* l_Lean_instantiateMVars___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassApp_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_inspectOutParams_inspectAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_canBottomUp___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyze_analyzeApp___closed__1; @@ -840,7 +838,7 @@ lean_object* l_Lean_Meta_setPostponed(lean_object*, lean_object*, lean_object*, uint64_t l___private_Lean_Meta_Basic_0__Lean_Meta_Config_toKey(lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyzeAppStagedCore_checkOutParams___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_isFOLike(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__4___closed__1; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyze_analyzeAppStaged___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); @@ -29683,69 +29681,36 @@ lean_dec(x_9); return x_14; } } -static lean_object* _init_l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__2___closed__1() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; +if (x_7 == 0) +{ +double x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_16 = l_Lean_addTrace___at_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_annotateBoolAt___spec__2___closed__1; +x_17 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_17, 0, x_1); +lean_ctor_set(x_17, 1, x_3); +lean_ctor_set_float(x_17, sizeof(void*)*2, x_16); +lean_ctor_set_float(x_17, sizeof(void*)*2 + 8, x_16); +lean_ctor_set_uint8(x_17, sizeof(void*)*2 + 16, x_2); +x_18 = lean_box(0); +x_19 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__1(x_4, x_5, x_10, x_6, x_17, x_18, x_11, x_12, x_13, x_14, x_15); +return x_19; } -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, double x_9, double x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { -_start: +else { -double x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = l_Lean_addTrace___at_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_annotateBoolAt___spec__2___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_18 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_18, 0, x_1); -lean_ctor_set(x_18, 1, x_3); -lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); -lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); -lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); -x_19 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__2___closed__1; -x_20 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_7, x_19); -if (x_20 == 0) -{ -if (x_8 == 0) -{ -lean_object* x_21; lean_object* x_22; -lean_dec(x_3); -lean_dec(x_1); +lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_20 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_20, 0, x_1); +lean_ctor_set(x_20, 1, x_3); +lean_ctor_set_float(x_20, sizeof(void*)*2, x_8); +lean_ctor_set_float(x_20, sizeof(void*)*2 + 8, x_9); +lean_ctor_set_uint8(x_20, sizeof(void*)*2 + 16, x_2); x_21 = lean_box(0); -x_22 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_18, x_21, x_12, x_13, x_14, x_15, x_16); +x_22 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__1(x_4, x_5, x_10, x_6, x_20, x_21, x_11, x_12, x_13, x_14, x_15); return x_22; } -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_18); -x_23 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_23, 0, x_1); -lean_ctor_set(x_23, 1, x_3); -lean_ctor_set_float(x_23, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_23, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_23, sizeof(void*)*2 + 16, x_2); -x_24 = lean_box(0); -x_25 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_23, x_24, x_12, x_13, x_14, x_15, x_16); -return x_25; -} -} -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -lean_dec(x_18); -x_26 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_26, 0, x_1); -lean_ctor_set(x_26, 1, x_3); -lean_ctor_set_float(x_26, sizeof(void*)*2, x_9); -lean_ctor_set_float(x_26, sizeof(void*)*2 + 8, x_10); -lean_ctor_set_uint8(x_26, sizeof(void*)*2 + 16, x_2); -x_27 = lean_box(0); -x_28 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__1(x_4, x_5, x_11, x_6, x_26, x_27, x_12, x_13, x_14, x_15, x_16); -return x_28; -} } } static lean_object* _init_l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3___closed__1() { @@ -29765,46 +29730,46 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, uint8_t x_7, double x_8, double x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, double x_7, double x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_14, 5); -lean_inc(x_17); -lean_inc(x_15); +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_13, 5); +lean_inc(x_16); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); +lean_inc(x_11); lean_inc(x_5); -x_18 = lean_apply_6(x_10, x_5, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_18) == 0) +x_17 = lean_apply_6(x_9, x_5, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_18, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -x_21 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_19, x_12, x_13, x_14, x_15, x_20); -lean_dec(x_15); -lean_dec(x_13); +lean_dec(x_17); +x_20 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_18, x_11, x_12, x_13, x_14, x_19); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_21; +return x_20; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_18, 1); -lean_inc(x_22); -lean_dec(x_18); -x_23 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3___closed__2; -x_24 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_17, x_5, x_6, x_7, x_8, x_9, x_23, x_12, x_13, x_14, x_15, x_22); -lean_dec(x_15); -lean_dec(x_13); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); +lean_dec(x_17); +x_22 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3___closed__2; +x_23 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_16, x_5, x_6, x_7, x_8, x_22, x_11, x_12, x_13, x_14, x_21); +lean_dec(x_14); lean_dec(x_12); +lean_dec(x_11); lean_dec(x_5); -return x_24; +return x_23; } } } @@ -29868,253 +29833,253 @@ x_17 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze__ x_18 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_17); if (x_18 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_109 = lean_io_mono_nanos_now(x_16); -x_110 = lean_ctor_get(x_109, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_109, 1); -lean_inc(x_111); -lean_dec(x_109); +lean_object* x_19; lean_object* x_20; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; +x_113 = lean_io_mono_nanos_now(x_16); +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +lean_dec(x_113); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_112 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_111); -if (lean_obj_tag(x_112) == 0) +x_116 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_115); +if (lean_obj_tag(x_116) == 0) { -uint8_t x_113; -x_113 = !lean_is_exclusive(x_112); -if (x_113 == 0) +uint8_t x_117; +x_117 = !lean_is_exclusive(x_116); +if (x_117 == 0) { -lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; -x_114 = lean_ctor_get(x_112, 0); -x_115 = lean_ctor_get(x_112, 1); -x_116 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_116, 0, x_114); -x_117 = lean_io_mono_nanos_now(x_115); -x_118 = !lean_is_exclusive(x_117); -if (x_118 == 0) +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; +x_118 = lean_ctor_get(x_116, 0); +x_119 = lean_ctor_get(x_116, 1); +x_120 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_120, 0, x_118); +x_121 = lean_io_mono_nanos_now(x_119); +x_122 = !lean_is_exclusive(x_121); +if (x_122 == 0) { -lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_122; double x_123; double x_124; double x_125; double x_126; double x_127; lean_object* x_128; lean_object* x_129; -x_119 = lean_ctor_get(x_117, 0); -x_120 = lean_ctor_get(x_117, 1); -x_121 = 0; -x_122 = lean_unsigned_to_nat(0u); -x_123 = l_Float_ofScientific(x_110, x_121, x_122); -lean_dec(x_110); -x_124 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__4___closed__5; -x_125 = lean_float_div(x_123, x_124); -x_126 = l_Float_ofScientific(x_119, x_121, x_122); -lean_dec(x_119); -x_127 = lean_float_div(x_126, x_124); -x_128 = lean_box_float(x_125); -x_129 = lean_box_float(x_127); -lean_ctor_set(x_117, 1, x_129); -lean_ctor_set(x_117, 0, x_128); -lean_ctor_set(x_112, 1, x_117); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_120; -goto block_108; +lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; double x_127; double x_128; double x_129; double x_130; double x_131; lean_object* x_132; lean_object* x_133; +x_123 = lean_ctor_get(x_121, 0); +x_124 = lean_ctor_get(x_121, 1); +x_125 = 0; +x_126 = lean_unsigned_to_nat(0u); +x_127 = l_Float_ofScientific(x_114, x_125, x_126); +lean_dec(x_114); +x_128 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__4___closed__5; +x_129 = lean_float_div(x_127, x_128); +x_130 = l_Float_ofScientific(x_123, x_125, x_126); +lean_dec(x_123); +x_131 = lean_float_div(x_130, x_128); +x_132 = lean_box_float(x_129); +x_133 = lean_box_float(x_131); +lean_ctor_set(x_121, 1, x_133); +lean_ctor_set(x_121, 0, x_132); +lean_ctor_set(x_116, 1, x_121); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_124; +goto block_112; } else { -lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; double x_134; double x_135; double x_136; double x_137; double x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_130 = lean_ctor_get(x_117, 0); -x_131 = lean_ctor_get(x_117, 1); -lean_inc(x_131); -lean_inc(x_130); -lean_dec(x_117); -x_132 = 0; -x_133 = lean_unsigned_to_nat(0u); -x_134 = l_Float_ofScientific(x_110, x_132, x_133); -lean_dec(x_110); -x_135 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__4___closed__5; -x_136 = lean_float_div(x_134, x_135); -x_137 = l_Float_ofScientific(x_130, x_132, x_133); -lean_dec(x_130); -x_138 = lean_float_div(x_137, x_135); -x_139 = lean_box_float(x_136); -x_140 = lean_box_float(x_138); -x_141 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -lean_ctor_set(x_112, 1, x_141); -lean_ctor_set(x_112, 0, x_116); -x_19 = x_112; -x_20 = x_131; -goto block_108; +lean_object* x_134; lean_object* x_135; uint8_t x_136; lean_object* x_137; double x_138; double x_139; double x_140; double x_141; double x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_134 = lean_ctor_get(x_121, 0); +x_135 = lean_ctor_get(x_121, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_121); +x_136 = 0; +x_137 = lean_unsigned_to_nat(0u); +x_138 = l_Float_ofScientific(x_114, x_136, x_137); +lean_dec(x_114); +x_139 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__4___closed__5; +x_140 = lean_float_div(x_138, x_139); +x_141 = l_Float_ofScientific(x_134, x_136, x_137); +lean_dec(x_134); +x_142 = lean_float_div(x_141, x_139); +x_143 = lean_box_float(x_140); +x_144 = lean_box_float(x_142); +x_145 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_116, 1, x_145); +lean_ctor_set(x_116, 0, x_120); +x_19 = x_116; +x_20 = x_135; +goto block_112; } } else { -lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; uint8_t x_149; lean_object* x_150; double x_151; double x_152; double x_153; double x_154; double x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -x_142 = lean_ctor_get(x_112, 0); -x_143 = lean_ctor_get(x_112, 1); -lean_inc(x_143); -lean_inc(x_142); -lean_dec(x_112); -x_144 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_144, 0, x_142); -x_145 = lean_io_mono_nanos_now(x_143); -x_146 = lean_ctor_get(x_145, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); +lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; uint8_t x_153; lean_object* x_154; double x_155; double x_156; double x_157; double x_158; double x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_146 = lean_ctor_get(x_116, 0); +x_147 = lean_ctor_get(x_116, 1); lean_inc(x_147); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - lean_ctor_release(x_145, 1); - x_148 = x_145; +lean_inc(x_146); +lean_dec(x_116); +x_148 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_148, 0, x_146); +x_149 = lean_io_mono_nanos_now(x_147); +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +if (lean_is_exclusive(x_149)) { + lean_ctor_release(x_149, 0); + lean_ctor_release(x_149, 1); + x_152 = x_149; } else { - lean_dec_ref(x_145); - x_148 = lean_box(0); + lean_dec_ref(x_149); + x_152 = lean_box(0); } -x_149 = 0; -x_150 = lean_unsigned_to_nat(0u); -x_151 = l_Float_ofScientific(x_110, x_149, x_150); -lean_dec(x_110); -x_152 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__4___closed__5; -x_153 = lean_float_div(x_151, x_152); -x_154 = l_Float_ofScientific(x_146, x_149, x_150); -lean_dec(x_146); -x_155 = lean_float_div(x_154, x_152); -x_156 = lean_box_float(x_153); -x_157 = lean_box_float(x_155); -if (lean_is_scalar(x_148)) { - x_158 = lean_alloc_ctor(0, 2, 0); +x_153 = 0; +x_154 = lean_unsigned_to_nat(0u); +x_155 = l_Float_ofScientific(x_114, x_153, x_154); +lean_dec(x_114); +x_156 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__4___closed__5; +x_157 = lean_float_div(x_155, x_156); +x_158 = l_Float_ofScientific(x_150, x_153, x_154); +lean_dec(x_150); +x_159 = lean_float_div(x_158, x_156); +x_160 = lean_box_float(x_157); +x_161 = lean_box_float(x_159); +if (lean_is_scalar(x_152)) { + x_162 = lean_alloc_ctor(0, 2, 0); } else { - x_158 = x_148; + x_162 = x_152; } -lean_ctor_set(x_158, 0, x_156); -lean_ctor_set(x_158, 1, x_157); -x_159 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_159, 0, x_144); -lean_ctor_set(x_159, 1, x_158); -x_19 = x_159; -x_20 = x_147; -goto block_108; +lean_ctor_set(x_162, 0, x_160); +lean_ctor_set(x_162, 1, x_161); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_148); +lean_ctor_set(x_163, 1, x_162); +x_19 = x_163; +x_20 = x_151; +goto block_112; } } else { -uint8_t x_160; -x_160 = !lean_is_exclusive(x_112); -if (x_160 == 0) +uint8_t x_164; +x_164 = !lean_is_exclusive(x_116); +if (x_164 == 0) { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; -x_161 = lean_ctor_get(x_112, 0); -x_162 = lean_ctor_get(x_112, 1); -x_163 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_163, 0, x_161); -x_164 = lean_io_mono_nanos_now(x_162); -x_165 = !lean_is_exclusive(x_164); -if (x_165 == 0) +lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; uint8_t x_169; +x_165 = lean_ctor_get(x_116, 0); +x_166 = lean_ctor_get(x_116, 1); +x_167 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_167, 0, x_165); +x_168 = lean_io_mono_nanos_now(x_166); +x_169 = !lean_is_exclusive(x_168); +if (x_169 == 0) { -lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; double x_170; double x_171; double x_172; double x_173; double x_174; lean_object* x_175; lean_object* x_176; -x_166 = lean_ctor_get(x_164, 0); -x_167 = lean_ctor_get(x_164, 1); -x_168 = 0; -x_169 = lean_unsigned_to_nat(0u); -x_170 = l_Float_ofScientific(x_110, x_168, x_169); -lean_dec(x_110); -x_171 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__4___closed__5; -x_172 = lean_float_div(x_170, x_171); -x_173 = l_Float_ofScientific(x_166, x_168, x_169); -lean_dec(x_166); -x_174 = lean_float_div(x_173, x_171); -x_175 = lean_box_float(x_172); -x_176 = lean_box_float(x_174); -lean_ctor_set(x_164, 1, x_176); -lean_ctor_set(x_164, 0, x_175); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_164); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_167; -goto block_108; +lean_object* x_170; lean_object* x_171; uint8_t x_172; lean_object* x_173; double x_174; double x_175; double x_176; double x_177; double x_178; lean_object* x_179; lean_object* x_180; +x_170 = lean_ctor_get(x_168, 0); +x_171 = lean_ctor_get(x_168, 1); +x_172 = 0; +x_173 = lean_unsigned_to_nat(0u); +x_174 = l_Float_ofScientific(x_114, x_172, x_173); +lean_dec(x_114); +x_175 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__4___closed__5; +x_176 = lean_float_div(x_174, x_175); +x_177 = l_Float_ofScientific(x_170, x_172, x_173); +lean_dec(x_170); +x_178 = lean_float_div(x_177, x_175); +x_179 = lean_box_float(x_176); +x_180 = lean_box_float(x_178); +lean_ctor_set(x_168, 1, x_180); +lean_ctor_set(x_168, 0, x_179); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_168); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_171; +goto block_112; } else { -lean_object* x_177; lean_object* x_178; uint8_t x_179; lean_object* x_180; double x_181; double x_182; double x_183; double x_184; double x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_177 = lean_ctor_get(x_164, 0); -x_178 = lean_ctor_get(x_164, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_164); -x_179 = 0; -x_180 = lean_unsigned_to_nat(0u); -x_181 = l_Float_ofScientific(x_110, x_179, x_180); -lean_dec(x_110); -x_182 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__4___closed__5; -x_183 = lean_float_div(x_181, x_182); -x_184 = l_Float_ofScientific(x_177, x_179, x_180); -lean_dec(x_177); -x_185 = lean_float_div(x_184, x_182); -x_186 = lean_box_float(x_183); -x_187 = lean_box_float(x_185); -x_188 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -lean_ctor_set_tag(x_112, 0); -lean_ctor_set(x_112, 1, x_188); -lean_ctor_set(x_112, 0, x_163); -x_19 = x_112; -x_20 = x_178; -goto block_108; +lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; double x_185; double x_186; double x_187; double x_188; double x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; +x_181 = lean_ctor_get(x_168, 0); +x_182 = lean_ctor_get(x_168, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_168); +x_183 = 0; +x_184 = lean_unsigned_to_nat(0u); +x_185 = l_Float_ofScientific(x_114, x_183, x_184); +lean_dec(x_114); +x_186 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__4___closed__5; +x_187 = lean_float_div(x_185, x_186); +x_188 = l_Float_ofScientific(x_181, x_183, x_184); +lean_dec(x_181); +x_189 = lean_float_div(x_188, x_186); +x_190 = lean_box_float(x_187); +x_191 = lean_box_float(x_189); +x_192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_192, 0, x_190); +lean_ctor_set(x_192, 1, x_191); +lean_ctor_set_tag(x_116, 0); +lean_ctor_set(x_116, 1, x_192); +lean_ctor_set(x_116, 0, x_167); +x_19 = x_116; +x_20 = x_182; +goto block_112; } } else { -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; lean_object* x_197; double x_198; double x_199; double x_200; double x_201; double x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_189 = lean_ctor_get(x_112, 0); -x_190 = lean_ctor_get(x_112, 1); -lean_inc(x_190); -lean_inc(x_189); -lean_dec(x_112); -x_191 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_191, 0, x_189); -x_192 = lean_io_mono_nanos_now(x_190); -x_193 = lean_ctor_get(x_192, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_192, 1); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; uint8_t x_200; lean_object* x_201; double x_202; double x_203; double x_204; double x_205; double x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_193 = lean_ctor_get(x_116, 0); +x_194 = lean_ctor_get(x_116, 1); lean_inc(x_194); -if (lean_is_exclusive(x_192)) { - lean_ctor_release(x_192, 0); - lean_ctor_release(x_192, 1); - x_195 = x_192; +lean_inc(x_193); +lean_dec(x_116); +x_195 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_195, 0, x_193); +x_196 = lean_io_mono_nanos_now(x_194); +x_197 = lean_ctor_get(x_196, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_196, 1); +lean_inc(x_198); +if (lean_is_exclusive(x_196)) { + lean_ctor_release(x_196, 0); + lean_ctor_release(x_196, 1); + x_199 = x_196; } else { - lean_dec_ref(x_192); - x_195 = lean_box(0); + lean_dec_ref(x_196); + x_199 = lean_box(0); } -x_196 = 0; -x_197 = lean_unsigned_to_nat(0u); -x_198 = l_Float_ofScientific(x_110, x_196, x_197); -lean_dec(x_110); -x_199 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__4___closed__5; -x_200 = lean_float_div(x_198, x_199); -x_201 = l_Float_ofScientific(x_193, x_196, x_197); -lean_dec(x_193); -x_202 = lean_float_div(x_201, x_199); -x_203 = lean_box_float(x_200); -x_204 = lean_box_float(x_202); -if (lean_is_scalar(x_195)) { - x_205 = lean_alloc_ctor(0, 2, 0); +x_200 = 0; +x_201 = lean_unsigned_to_nat(0u); +x_202 = l_Float_ofScientific(x_114, x_200, x_201); +lean_dec(x_114); +x_203 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__4___closed__5; +x_204 = lean_float_div(x_202, x_203); +x_205 = l_Float_ofScientific(x_197, x_200, x_201); +lean_dec(x_197); +x_206 = lean_float_div(x_205, x_203); +x_207 = lean_box_float(x_204); +x_208 = lean_box_float(x_206); +if (lean_is_scalar(x_199)) { + x_209 = lean_alloc_ctor(0, 2, 0); } else { - x_205 = x_195; + x_209 = x_199; } -lean_ctor_set(x_205, 0, x_203); -lean_ctor_set(x_205, 1, x_204); -x_206 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_206, 0, x_191); -lean_ctor_set(x_206, 1, x_205); -x_19 = x_206; -x_20 = x_194; -goto block_108; +lean_ctor_set(x_209, 0, x_207); +lean_ctor_set(x_209, 1, x_208); +x_210 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_210, 0, x_195); +lean_ctor_set(x_210, 1, x_209); +x_19 = x_210; +x_20 = x_198; +goto block_112; } } -block_108: +block_112: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_94; uint8_t x_95; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; uint8_t x_27; x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); x_22 = lean_ctor_get(x_19, 0); @@ -30125,17 +30090,33 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_21, 1); lean_inc(x_24); lean_dec(x_21); -x_94 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__4___closed__2; -x_95 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_94); -if (x_95 == 0) +x_25 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__4___closed__2; +x_26 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_25); +if (x_26 == 0) { -uint8_t x_96; -x_96 = 0; -x_25 = x_96; -goto block_93; +if (x_6 == 0) +{ +uint8_t x_92; +x_92 = 0; +x_27 = x_92; +goto block_91; } else { +lean_object* x_93; double x_94; double x_95; lean_object* x_96; +x_93 = lean_box(0); +x_94 = lean_unbox_float(x_23); +lean_dec(x_23); +x_95 = lean_unbox_float(x_24); +lean_dec(x_24); +x_96 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_94, x_95, x_5, x_93, x_9, x_10, x_11, x_12, x_20); +return x_96; +} +} +else +{ +if (x_6 == 0) +{ double x_97; double x_98; double x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; lean_object* x_103; double x_104; double x_105; double x_106; uint8_t x_107; x_97 = lean_unbox_float(x_24); x_98 = lean_unbox_float(x_23); @@ -30149,859 +30130,871 @@ lean_dec(x_101); x_105 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__4___closed__4; x_106 = lean_float_div(x_104, x_105); x_107 = lean_float_decLt(x_106, x_99); -x_25 = x_107; -goto block_93; +x_27 = x_107; +goto block_91; } -block_93: +else { -if (x_6 == 0) +lean_object* x_108; double x_109; double x_110; lean_object* x_111; +x_108 = lean_box(0); +x_109 = lean_unbox_float(x_23); +lean_dec(x_23); +x_110 = lean_unbox_float(x_24); +lean_dec(x_24); +x_111 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_109, x_110, x_5, x_108, x_9, x_10, x_11, x_12, x_20); +return x_111; +} +} +block_91: { -if (x_25 == 0) +if (x_27 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_dec(x_24); lean_dec(x_23); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_26 = lean_st_ref_take(x_12, x_20); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -x_29 = lean_ctor_get(x_26, 1); +x_28 = lean_st_ref_take(x_12, x_20); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -lean_dec(x_26); -x_30 = !lean_is_exclusive(x_27); -if (x_30 == 0) -{ -lean_object* x_31; uint8_t x_32; -x_31 = lean_ctor_get(x_27, 3); -lean_dec(x_31); -x_32 = !lean_is_exclusive(x_28); +x_30 = lean_ctor_get(x_29, 3); +lean_inc(x_30); +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = !lean_is_exclusive(x_29); if (x_32 == 0) { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_33 = lean_ctor_get(x_28, 0); -x_34 = l_Lean_PersistentArray_append___rarg(x_15, x_33); +lean_object* x_33; uint8_t x_34; +x_33 = lean_ctor_get(x_29, 3); lean_dec(x_33); -lean_ctor_set(x_28, 0, x_34); -x_35 = lean_st_ref_set(x_12, x_27, x_29); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); +x_34 = !lean_is_exclusive(x_30); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_35 = lean_ctor_get(x_30, 0); +x_36 = l_Lean_PersistentArray_append___rarg(x_15, x_35); lean_dec(x_35); -x_37 = l_MonadExcept_ofExcept___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__3(x_22, x_9, x_10, x_11, x_12, x_36); +lean_ctor_set(x_30, 0, x_36); +x_37 = lean_st_ref_set(x_12, x_29, x_31); +x_38 = lean_ctor_get(x_37, 1); +lean_inc(x_38); +lean_dec(x_37); +x_39 = l_MonadExcept_ofExcept___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__3(x_22, x_9, x_10, x_11, x_12, x_38); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_37) == 0) +if (lean_obj_tag(x_39) == 0) { -uint8_t x_38; -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +uint8_t x_40; +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) { -return x_37; +return x_39; } else { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_ctor_get(x_37, 1); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_37); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_40); -return x_41; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_39, 0); +x_42 = lean_ctor_get(x_39, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_39); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } else { -uint8_t x_42; -x_42 = !lean_is_exclusive(x_37); -if (x_42 == 0) +uint8_t x_44; +x_44 = !lean_is_exclusive(x_39); +if (x_44 == 0) { -return x_37; +return x_39; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_37, 0); -x_44 = lean_ctor_get(x_37, 1); -lean_inc(x_44); -lean_inc(x_43); -lean_dec(x_37); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_39, 0); +x_46 = lean_ctor_get(x_39, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_39); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; } } } else { -uint64_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_46 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_47 = lean_ctor_get(x_28, 0); -lean_inc(x_47); -lean_dec(x_28); -x_48 = l_Lean_PersistentArray_append___rarg(x_15, x_47); -lean_dec(x_47); -x_49 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set_uint64(x_49, sizeof(void*)*1, x_46); -lean_ctor_set(x_27, 3, x_49); -x_50 = lean_st_ref_set(x_12, x_27, x_29); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -lean_dec(x_50); -x_52 = l_MonadExcept_ofExcept___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__3(x_22, x_9, x_10, x_11, x_12, x_51); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_22); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_53 = lean_ctor_get(x_52, 0); +uint64_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_48 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_49 = lean_ctor_get(x_30, 0); +lean_inc(x_49); +lean_dec(x_30); +x_50 = l_Lean_PersistentArray_append___rarg(x_15, x_49); +lean_dec(x_49); +x_51 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set_uint64(x_51, sizeof(void*)*1, x_48); +lean_ctor_set(x_29, 3, x_51); +x_52 = lean_st_ref_set(x_12, x_29, x_31); +x_53 = lean_ctor_get(x_52, 1); lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_55 = x_52; +lean_dec(x_52); +x_54 = l_MonadExcept_ofExcept___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__3(x_22, x_9, x_10, x_11, x_12, x_53); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_22); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 0); +lean_inc(x_55); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_57 = x_54; } else { - lean_dec_ref(x_52); - x_55 = lean_box(0); + lean_dec_ref(x_54); + x_57 = lean_box(0); } -if (lean_is_scalar(x_55)) { - x_56 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_57)) { + x_58 = lean_alloc_ctor(0, 2, 0); } else { - x_56 = x_55; + x_58 = x_57; } -lean_ctor_set(x_56, 0, x_53); -lean_ctor_set(x_56, 1, x_54); -return x_56; +lean_ctor_set(x_58, 0, x_55); +lean_ctor_set(x_58, 1, x_56); +return x_58; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_57 = lean_ctor_get(x_52, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_52, 1); -lean_inc(x_58); -if (lean_is_exclusive(x_52)) { - lean_ctor_release(x_52, 0); - lean_ctor_release(x_52, 1); - x_59 = x_52; +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_59 = lean_ctor_get(x_54, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_54, 1); +lean_inc(x_60); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_61 = x_54; } else { - lean_dec_ref(x_52); - x_59 = lean_box(0); + lean_dec_ref(x_54); + x_61 = lean_box(0); } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_61)) { + x_62 = lean_alloc_ctor(1, 2, 0); } else { - x_60 = x_59; + x_62 = x_61; } -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_58); -return x_60; +lean_ctor_set(x_62, 0, x_59); +lean_ctor_set(x_62, 1, x_60); +return x_62; } } } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint64_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_61 = lean_ctor_get(x_27, 0); -x_62 = lean_ctor_get(x_27, 1); -x_63 = lean_ctor_get(x_27, 2); -x_64 = lean_ctor_get(x_27, 4); -x_65 = lean_ctor_get(x_27, 5); -x_66 = lean_ctor_get(x_27, 6); -x_67 = lean_ctor_get(x_27, 7); +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; uint64_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_63 = lean_ctor_get(x_29, 0); +x_64 = lean_ctor_get(x_29, 1); +x_65 = lean_ctor_get(x_29, 2); +x_66 = lean_ctor_get(x_29, 4); +x_67 = lean_ctor_get(x_29, 5); +x_68 = lean_ctor_get(x_29, 6); +x_69 = lean_ctor_get(x_29, 7); +lean_inc(x_69); +lean_inc(x_68); lean_inc(x_67); lean_inc(x_66); lean_inc(x_65); lean_inc(x_64); lean_inc(x_63); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_27); -x_68 = lean_ctor_get_uint64(x_28, sizeof(void*)*1); -x_69 = lean_ctor_get(x_28, 0); -lean_inc(x_69); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - x_70 = x_28; +lean_dec(x_29); +x_70 = lean_ctor_get_uint64(x_30, sizeof(void*)*1); +x_71 = lean_ctor_get(x_30, 0); +lean_inc(x_71); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + x_72 = x_30; } else { - lean_dec_ref(x_28); - x_70 = lean_box(0); + lean_dec_ref(x_30); + x_72 = lean_box(0); } -x_71 = l_Lean_PersistentArray_append___rarg(x_15, x_69); -lean_dec(x_69); -if (lean_is_scalar(x_70)) { - x_72 = lean_alloc_ctor(0, 1, 8); +x_73 = l_Lean_PersistentArray_append___rarg(x_15, x_71); +lean_dec(x_71); +if (lean_is_scalar(x_72)) { + x_74 = lean_alloc_ctor(0, 1, 8); } else { - x_72 = x_70; + x_74 = x_72; } -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set_uint64(x_72, sizeof(void*)*1, x_68); -x_73 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_73, 0, x_61); -lean_ctor_set(x_73, 1, x_62); -lean_ctor_set(x_73, 2, x_63); -lean_ctor_set(x_73, 3, x_72); -lean_ctor_set(x_73, 4, x_64); -lean_ctor_set(x_73, 5, x_65); -lean_ctor_set(x_73, 6, x_66); -lean_ctor_set(x_73, 7, x_67); -x_74 = lean_st_ref_set(x_12, x_73, x_29); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_76 = l_MonadExcept_ofExcept___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__3(x_22, x_9, x_10, x_11, x_12, x_75); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set_uint64(x_74, sizeof(void*)*1, x_70); +x_75 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_64); +lean_ctor_set(x_75, 2, x_65); +lean_ctor_set(x_75, 3, x_74); +lean_ctor_set(x_75, 4, x_66); +lean_ctor_set(x_75, 5, x_67); +lean_ctor_set(x_75, 6, x_68); +lean_ctor_set(x_75, 7, x_69); +x_76 = lean_st_ref_set(x_12, x_75, x_31); +x_77 = lean_ctor_get(x_76, 1); +lean_inc(x_77); +lean_dec(x_76); +x_78 = l_MonadExcept_ofExcept___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__3(x_22, x_9, x_10, x_11, x_12, x_77); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_22); -if (lean_obj_tag(x_76) == 0) +if (lean_obj_tag(x_78) == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_77 = lean_ctor_get(x_76, 0); -lean_inc(x_77); -x_78 = lean_ctor_get(x_76, 1); -lean_inc(x_78); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_79 = x_76; +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_81 = x_78; } else { - lean_dec_ref(x_76); - x_79 = lean_box(0); + lean_dec_ref(x_78); + x_81 = lean_box(0); } -if (lean_is_scalar(x_79)) { - x_80 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(0, 2, 0); } else { - x_80 = x_79; + x_82 = x_81; } -lean_ctor_set(x_80, 0, x_77); -lean_ctor_set(x_80, 1, x_78); -return x_80; +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_80); +return x_82; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_81 = lean_ctor_get(x_76, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_76, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_76)) { - lean_ctor_release(x_76, 0); - lean_ctor_release(x_76, 1); - x_83 = x_76; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_83 = lean_ctor_get(x_78, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_78, 1); +lean_inc(x_84); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_85 = x_78; } else { - lean_dec_ref(x_76); - x_83 = lean_box(0); + lean_dec_ref(x_78); + x_85 = lean_box(0); } -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_85)) { + x_86 = lean_alloc_ctor(1, 2, 0); } else { - x_84 = x_83; + x_86 = x_85; } -lean_ctor_set(x_84, 0, x_81); -lean_ctor_set(x_84, 1, x_82); -return x_84; +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_84); +return x_86; } } } else { -lean_object* x_85; double x_86; double x_87; lean_object* x_88; -x_85 = lean_box(0); -x_86 = lean_unbox_float(x_23); +lean_object* x_87; double x_88; double x_89; lean_object* x_90; +x_87 = lean_box(0); +x_88 = lean_unbox_float(x_23); lean_dec(x_23); -x_87 = lean_unbox_float(x_24); +x_89 = lean_unbox_float(x_24); lean_dec(x_24); -x_88 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_86, x_87, x_5, x_85, x_9, x_10, x_11, x_12, x_20); -return x_88; -} -} -else -{ -lean_object* x_89; double x_90; double x_91; lean_object* x_92; -x_89 = lean_box(0); -x_90 = lean_unbox_float(x_23); -lean_dec(x_23); -x_91 = lean_unbox_float(x_24); -lean_dec(x_24); -x_92 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_1, x_25, x_90, x_91, x_5, x_89, x_9, x_10, x_11, x_12, x_20); -return x_92; +x_90 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_22, x_26, x_88, x_89, x_5, x_87, x_9, x_10, x_11, x_12, x_20); +return x_90; } } } } else { -lean_object* x_207; lean_object* x_208; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_io_get_num_heartbeats(x_16); -x_296 = lean_ctor_get(x_295, 0); -lean_inc(x_296); -x_297 = lean_ctor_get(x_295, 1); -lean_inc(x_297); -lean_dec(x_295); +lean_object* x_211; lean_object* x_212; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; +x_303 = lean_io_get_num_heartbeats(x_16); +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_298 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_297); -if (lean_obj_tag(x_298) == 0) +x_306 = lean_apply_5(x_7, x_9, x_10, x_11, x_12, x_305); +if (lean_obj_tag(x_306) == 0) { -uint8_t x_299; -x_299 = !lean_is_exclusive(x_298); -if (x_299 == 0) +uint8_t x_307; +x_307 = !lean_is_exclusive(x_306); +if (x_307 == 0) { -lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; -x_300 = lean_ctor_get(x_298, 0); -x_301 = lean_ctor_get(x_298, 1); -x_302 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_302, 0, x_300); -x_303 = lean_io_get_num_heartbeats(x_301); -x_304 = !lean_is_exclusive(x_303); -if (x_304 == 0) +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; uint8_t x_312; +x_308 = lean_ctor_get(x_306, 0); +x_309 = lean_ctor_get(x_306, 1); +x_310 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_310, 0, x_308); +x_311 = lean_io_get_num_heartbeats(x_309); +x_312 = !lean_is_exclusive(x_311); +if (x_312 == 0) { -lean_object* x_305; lean_object* x_306; uint8_t x_307; lean_object* x_308; double x_309; double x_310; lean_object* x_311; lean_object* x_312; -x_305 = lean_ctor_get(x_303, 0); -x_306 = lean_ctor_get(x_303, 1); -x_307 = 0; -x_308 = lean_unsigned_to_nat(0u); -x_309 = l_Float_ofScientific(x_296, x_307, x_308); -lean_dec(x_296); -x_310 = l_Float_ofScientific(x_305, x_307, x_308); -lean_dec(x_305); -x_311 = lean_box_float(x_309); -x_312 = lean_box_float(x_310); -lean_ctor_set(x_303, 1, x_312); -lean_ctor_set(x_303, 0, x_311); -lean_ctor_set(x_298, 1, x_303); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_306; -goto block_294; -} -else -{ -lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_313 = lean_ctor_get(x_303, 0); -x_314 = lean_ctor_get(x_303, 1); -lean_inc(x_314); -lean_inc(x_313); -lean_dec(x_303); +lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; double x_317; double x_318; lean_object* x_319; lean_object* x_320; +x_313 = lean_ctor_get(x_311, 0); +x_314 = lean_ctor_get(x_311, 1); x_315 = 0; x_316 = lean_unsigned_to_nat(0u); -x_317 = l_Float_ofScientific(x_296, x_315, x_316); -lean_dec(x_296); +x_317 = l_Float_ofScientific(x_304, x_315, x_316); +lean_dec(x_304); x_318 = l_Float_ofScientific(x_313, x_315, x_316); lean_dec(x_313); x_319 = lean_box_float(x_317); x_320 = lean_box_float(x_318); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_319); -lean_ctor_set(x_321, 1, x_320); -lean_ctor_set(x_298, 1, x_321); -lean_ctor_set(x_298, 0, x_302); -x_207 = x_298; -x_208 = x_314; -goto block_294; -} +lean_ctor_set(x_311, 1, x_320); +lean_ctor_set(x_311, 0, x_319); +lean_ctor_set(x_306, 1, x_311); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_314; +goto block_302; } else { -lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; uint8_t x_329; lean_object* x_330; double x_331; double x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; -x_322 = lean_ctor_get(x_298, 0); -x_323 = lean_ctor_get(x_298, 1); -lean_inc(x_323); +lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; double x_325; double x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; +x_321 = lean_ctor_get(x_311, 0); +x_322 = lean_ctor_get(x_311, 1); lean_inc(x_322); -lean_dec(x_298); -x_324 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_324, 0, x_322); -x_325 = lean_io_get_num_heartbeats(x_323); -x_326 = lean_ctor_get(x_325, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_325, 1); -lean_inc(x_327); -if (lean_is_exclusive(x_325)) { - lean_ctor_release(x_325, 0); - lean_ctor_release(x_325, 1); - x_328 = x_325; -} else { - lean_dec_ref(x_325); - x_328 = lean_box(0); -} -x_329 = 0; -x_330 = lean_unsigned_to_nat(0u); -x_331 = l_Float_ofScientific(x_296, x_329, x_330); -lean_dec(x_296); -x_332 = l_Float_ofScientific(x_326, x_329, x_330); -lean_dec(x_326); -x_333 = lean_box_float(x_331); -x_334 = lean_box_float(x_332); -if (lean_is_scalar(x_328)) { - x_335 = lean_alloc_ctor(0, 2, 0); -} else { - x_335 = x_328; -} -lean_ctor_set(x_335, 0, x_333); -lean_ctor_set(x_335, 1, x_334); -x_336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_336, 0, x_324); -lean_ctor_set(x_336, 1, x_335); -x_207 = x_336; -x_208 = x_327; -goto block_294; +lean_inc(x_321); +lean_dec(x_311); +x_323 = 0; +x_324 = lean_unsigned_to_nat(0u); +x_325 = l_Float_ofScientific(x_304, x_323, x_324); +lean_dec(x_304); +x_326 = l_Float_ofScientific(x_321, x_323, x_324); +lean_dec(x_321); +x_327 = lean_box_float(x_325); +x_328 = lean_box_float(x_326); +x_329 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_329, 0, x_327); +lean_ctor_set(x_329, 1, x_328); +lean_ctor_set(x_306, 1, x_329); +lean_ctor_set(x_306, 0, x_310); +x_211 = x_306; +x_212 = x_322; +goto block_302; } } else { -uint8_t x_337; -x_337 = !lean_is_exclusive(x_298); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; uint8_t x_342; -x_338 = lean_ctor_get(x_298, 0); -x_339 = lean_ctor_get(x_298, 1); -x_340 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_340, 0, x_338); -x_341 = lean_io_get_num_heartbeats(x_339); -x_342 = !lean_is_exclusive(x_341); -if (x_342 == 0) -{ -lean_object* x_343; lean_object* x_344; uint8_t x_345; lean_object* x_346; double x_347; double x_348; lean_object* x_349; lean_object* x_350; -x_343 = lean_ctor_get(x_341, 0); -x_344 = lean_ctor_get(x_341, 1); -x_345 = 0; -x_346 = lean_unsigned_to_nat(0u); -x_347 = l_Float_ofScientific(x_296, x_345, x_346); -lean_dec(x_296); -x_348 = l_Float_ofScientific(x_343, x_345, x_346); -lean_dec(x_343); -x_349 = lean_box_float(x_347); -x_350 = lean_box_float(x_348); -lean_ctor_set(x_341, 1, x_350); -lean_ctor_set(x_341, 0, x_349); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_341); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_344; -goto block_294; +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; lean_object* x_338; double x_339; double x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_330 = lean_ctor_get(x_306, 0); +x_331 = lean_ctor_get(x_306, 1); +lean_inc(x_331); +lean_inc(x_330); +lean_dec(x_306); +x_332 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_332, 0, x_330); +x_333 = lean_io_get_num_heartbeats(x_331); +x_334 = lean_ctor_get(x_333, 0); +lean_inc(x_334); +x_335 = lean_ctor_get(x_333, 1); +lean_inc(x_335); +if (lean_is_exclusive(x_333)) { + lean_ctor_release(x_333, 0); + lean_ctor_release(x_333, 1); + x_336 = x_333; +} else { + lean_dec_ref(x_333); + x_336 = lean_box(0); +} +x_337 = 0; +x_338 = lean_unsigned_to_nat(0u); +x_339 = l_Float_ofScientific(x_304, x_337, x_338); +lean_dec(x_304); +x_340 = l_Float_ofScientific(x_334, x_337, x_338); +lean_dec(x_334); +x_341 = lean_box_float(x_339); +x_342 = lean_box_float(x_340); +if (lean_is_scalar(x_336)) { + x_343 = lean_alloc_ctor(0, 2, 0); +} else { + x_343 = x_336; +} +lean_ctor_set(x_343, 0, x_341); +lean_ctor_set(x_343, 1, x_342); +x_344 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_344, 0, x_332); +lean_ctor_set(x_344, 1, x_343); +x_211 = x_344; +x_212 = x_335; +goto block_302; +} } else { -lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; -x_351 = lean_ctor_get(x_341, 0); -x_352 = lean_ctor_get(x_341, 1); -lean_inc(x_352); -lean_inc(x_351); -lean_dec(x_341); +uint8_t x_345; +x_345 = !lean_is_exclusive(x_306); +if (x_345 == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; +x_346 = lean_ctor_get(x_306, 0); +x_347 = lean_ctor_get(x_306, 1); +x_348 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_348, 0, x_346); +x_349 = lean_io_get_num_heartbeats(x_347); +x_350 = !lean_is_exclusive(x_349); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; uint8_t x_353; lean_object* x_354; double x_355; double x_356; lean_object* x_357; lean_object* x_358; +x_351 = lean_ctor_get(x_349, 0); +x_352 = lean_ctor_get(x_349, 1); x_353 = 0; x_354 = lean_unsigned_to_nat(0u); -x_355 = l_Float_ofScientific(x_296, x_353, x_354); -lean_dec(x_296); +x_355 = l_Float_ofScientific(x_304, x_353, x_354); +lean_dec(x_304); x_356 = l_Float_ofScientific(x_351, x_353, x_354); lean_dec(x_351); x_357 = lean_box_float(x_355); x_358 = lean_box_float(x_356); -x_359 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_359, 0, x_357); -lean_ctor_set(x_359, 1, x_358); -lean_ctor_set_tag(x_298, 0); -lean_ctor_set(x_298, 1, x_359); -lean_ctor_set(x_298, 0, x_340); -x_207 = x_298; -x_208 = x_352; -goto block_294; -} +lean_ctor_set(x_349, 1, x_358); +lean_ctor_set(x_349, 0, x_357); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_349); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_352; +goto block_302; } else { -lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; uint8_t x_367; lean_object* x_368; double x_369; double x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -x_360 = lean_ctor_get(x_298, 0); -x_361 = lean_ctor_get(x_298, 1); -lean_inc(x_361); +lean_object* x_359; lean_object* x_360; uint8_t x_361; lean_object* x_362; double x_363; double x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_359 = lean_ctor_get(x_349, 0); +x_360 = lean_ctor_get(x_349, 1); lean_inc(x_360); -lean_dec(x_298); -x_362 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_362, 0, x_360); -x_363 = lean_io_get_num_heartbeats(x_361); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -if (lean_is_exclusive(x_363)) { - lean_ctor_release(x_363, 0); - lean_ctor_release(x_363, 1); - x_366 = x_363; -} else { - lean_dec_ref(x_363); - x_366 = lean_box(0); +lean_inc(x_359); +lean_dec(x_349); +x_361 = 0; +x_362 = lean_unsigned_to_nat(0u); +x_363 = l_Float_ofScientific(x_304, x_361, x_362); +lean_dec(x_304); +x_364 = l_Float_ofScientific(x_359, x_361, x_362); +lean_dec(x_359); +x_365 = lean_box_float(x_363); +x_366 = lean_box_float(x_364); +x_367 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +lean_ctor_set_tag(x_306, 0); +lean_ctor_set(x_306, 1, x_367); +lean_ctor_set(x_306, 0, x_348); +x_211 = x_306; +x_212 = x_360; +goto block_302; } -x_367 = 0; -x_368 = lean_unsigned_to_nat(0u); -x_369 = l_Float_ofScientific(x_296, x_367, x_368); -lean_dec(x_296); -x_370 = l_Float_ofScientific(x_364, x_367, x_368); -lean_dec(x_364); -x_371 = lean_box_float(x_369); -x_372 = lean_box_float(x_370); -if (lean_is_scalar(x_366)) { - x_373 = lean_alloc_ctor(0, 2, 0); -} else { - x_373 = x_366; -} -lean_ctor_set(x_373, 0, x_371); -lean_ctor_set(x_373, 1, x_372); -x_374 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_374, 0, x_362); -lean_ctor_set(x_374, 1, x_373); -x_207 = x_374; -x_208 = x_365; -goto block_294; -} -} -block_294: -{ -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; uint8_t x_213; lean_object* x_282; uint8_t x_283; -x_209 = lean_ctor_get(x_207, 1); -lean_inc(x_209); -x_210 = lean_ctor_get(x_207, 0); -lean_inc(x_210); -lean_dec(x_207); -x_211 = lean_ctor_get(x_209, 0); -lean_inc(x_211); -x_212 = lean_ctor_get(x_209, 1); -lean_inc(x_212); -lean_dec(x_209); -x_282 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__4___closed__2; -x_283 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_282); -if (x_283 == 0) -{ -uint8_t x_284; -x_284 = 0; -x_213 = x_284; -goto block_281; } else { -double x_285; double x_286; double x_287; lean_object* x_288; lean_object* x_289; uint8_t x_290; lean_object* x_291; double x_292; uint8_t x_293; -x_285 = lean_unbox_float(x_212); -x_286 = lean_unbox_float(x_211); -x_287 = lean_float_sub(x_285, x_286); -x_288 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__4___closed__3; -x_289 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_288); -x_290 = 0; -x_291 = lean_unsigned_to_nat(0u); -x_292 = l_Float_ofScientific(x_289, x_290, x_291); -lean_dec(x_289); -x_293 = lean_float_decLt(x_292, x_287); -x_213 = x_293; -goto block_281; +lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; lean_object* x_376; double x_377; double x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; +x_368 = lean_ctor_get(x_306, 0); +x_369 = lean_ctor_get(x_306, 1); +lean_inc(x_369); +lean_inc(x_368); +lean_dec(x_306); +x_370 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_370, 0, x_368); +x_371 = lean_io_get_num_heartbeats(x_369); +x_372 = lean_ctor_get(x_371, 0); +lean_inc(x_372); +x_373 = lean_ctor_get(x_371, 1); +lean_inc(x_373); +if (lean_is_exclusive(x_371)) { + lean_ctor_release(x_371, 0); + lean_ctor_release(x_371, 1); + x_374 = x_371; +} else { + lean_dec_ref(x_371); + x_374 = lean_box(0); } -block_281: +x_375 = 0; +x_376 = lean_unsigned_to_nat(0u); +x_377 = l_Float_ofScientific(x_304, x_375, x_376); +lean_dec(x_304); +x_378 = l_Float_ofScientific(x_372, x_375, x_376); +lean_dec(x_372); +x_379 = lean_box_float(x_377); +x_380 = lean_box_float(x_378); +if (lean_is_scalar(x_374)) { + x_381 = lean_alloc_ctor(0, 2, 0); +} else { + x_381 = x_374; +} +lean_ctor_set(x_381, 0, x_379); +lean_ctor_set(x_381, 1, x_380); +x_382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_382, 0, x_370); +lean_ctor_set(x_382, 1, x_381); +x_211 = x_382; +x_212 = x_373; +goto block_302; +} +} +block_302: +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; uint8_t x_219; +x_213 = lean_ctor_get(x_211, 1); +lean_inc(x_213); +x_214 = lean_ctor_get(x_211, 0); +lean_inc(x_214); +lean_dec(x_211); +x_215 = lean_ctor_get(x_213, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_213, 1); +lean_inc(x_216); +lean_dec(x_213); +x_217 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__4___closed__2; +x_218 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_217); +if (x_218 == 0) { if (x_6 == 0) { -if (x_213 == 0) +uint8_t x_284; +x_284 = 0; +x_219 = x_284; +goto block_283; +} +else { -lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; -lean_dec(x_212); -lean_dec(x_211); +lean_object* x_285; double x_286; double x_287; lean_object* x_288; +x_285 = lean_box(0); +x_286 = lean_unbox_float(x_215); +lean_dec(x_215); +x_287 = lean_unbox_float(x_216); +lean_dec(x_216); +x_288 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_286, x_287, x_5, x_285, x_9, x_10, x_11, x_12, x_212); +return x_288; +} +} +else +{ +if (x_6 == 0) +{ +double x_289; double x_290; double x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; double x_296; uint8_t x_297; +x_289 = lean_unbox_float(x_216); +x_290 = lean_unbox_float(x_215); +x_291 = lean_float_sub(x_289, x_290); +x_292 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__4___closed__3; +x_293 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_292); +x_294 = 0; +x_295 = lean_unsigned_to_nat(0u); +x_296 = l_Float_ofScientific(x_293, x_294, x_295); +lean_dec(x_293); +x_297 = lean_float_decLt(x_296, x_291); +x_219 = x_297; +goto block_283; +} +else +{ +lean_object* x_298; double x_299; double x_300; lean_object* x_301; +x_298 = lean_box(0); +x_299 = lean_unbox_float(x_215); +lean_dec(x_215); +x_300 = lean_unbox_float(x_216); +lean_dec(x_216); +x_301 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_299, x_300, x_5, x_298, x_9, x_10, x_11, x_12, x_212); +return x_301; +} +} +block_283: +{ +if (x_219 == 0) +{ +lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; uint8_t x_224; +lean_dec(x_216); +lean_dec(x_215); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_214 = lean_st_ref_take(x_12, x_208); -x_215 = lean_ctor_get(x_214, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_215, 3); -lean_inc(x_216); -x_217 = lean_ctor_get(x_214, 1); -lean_inc(x_217); -lean_dec(x_214); -x_218 = !lean_is_exclusive(x_215); -if (x_218 == 0) +x_220 = lean_st_ref_take(x_12, x_212); +x_221 = lean_ctor_get(x_220, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_221, 3); +lean_inc(x_222); +x_223 = lean_ctor_get(x_220, 1); +lean_inc(x_223); +lean_dec(x_220); +x_224 = !lean_is_exclusive(x_221); +if (x_224 == 0) { -lean_object* x_219; uint8_t x_220; -x_219 = lean_ctor_get(x_215, 3); -lean_dec(x_219); -x_220 = !lean_is_exclusive(x_216); -if (x_220 == 0) -{ -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_221 = lean_ctor_get(x_216, 0); -x_222 = l_Lean_PersistentArray_append___rarg(x_15, x_221); -lean_dec(x_221); -lean_ctor_set(x_216, 0, x_222); -x_223 = lean_st_ref_set(x_12, x_215, x_217); -x_224 = lean_ctor_get(x_223, 1); -lean_inc(x_224); -lean_dec(x_223); -x_225 = l_MonadExcept_ofExcept___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__3(x_210, x_9, x_10, x_11, x_12, x_224); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_225) == 0) -{ -uint8_t x_226; -x_226 = !lean_is_exclusive(x_225); +lean_object* x_225; uint8_t x_226; +x_225 = lean_ctor_get(x_221, 3); +lean_dec(x_225); +x_226 = !lean_is_exclusive(x_222); if (x_226 == 0) { -return x_225; -} -else -{ -lean_object* x_227; lean_object* x_228; lean_object* x_229; -x_227 = lean_ctor_get(x_225, 0); -x_228 = lean_ctor_get(x_225, 1); -lean_inc(x_228); -lean_inc(x_227); -lean_dec(x_225); -x_229 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_229, 0, x_227); -lean_ctor_set(x_229, 1, x_228); -return x_229; -} -} -else -{ -uint8_t x_230; -x_230 = !lean_is_exclusive(x_225); -if (x_230 == 0) -{ -return x_225; -} -else -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_231 = lean_ctor_get(x_225, 0); -x_232 = lean_ctor_get(x_225, 1); -lean_inc(x_232); -lean_inc(x_231); -lean_dec(x_225); -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_231); -lean_ctor_set(x_233, 1, x_232); -return x_233; -} -} -} -else -{ -uint64_t x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_234 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_235 = lean_ctor_get(x_216, 0); -lean_inc(x_235); -lean_dec(x_216); -x_236 = l_Lean_PersistentArray_append___rarg(x_15, x_235); -lean_dec(x_235); -x_237 = lean_alloc_ctor(0, 1, 8); -lean_ctor_set(x_237, 0, x_236); -lean_ctor_set_uint64(x_237, sizeof(void*)*1, x_234); -lean_ctor_set(x_215, 3, x_237); -x_238 = lean_st_ref_set(x_12, x_215, x_217); -x_239 = lean_ctor_get(x_238, 1); -lean_inc(x_239); -lean_dec(x_238); -x_240 = l_MonadExcept_ofExcept___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__3(x_210, x_9, x_10, x_11, x_12, x_239); +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_227 = lean_ctor_get(x_222, 0); +x_228 = l_Lean_PersistentArray_append___rarg(x_15, x_227); +lean_dec(x_227); +lean_ctor_set(x_222, 0, x_228); +x_229 = lean_st_ref_set(x_12, x_221, x_223); +x_230 = lean_ctor_get(x_229, 1); +lean_inc(x_230); +lean_dec(x_229); +x_231 = l_MonadExcept_ofExcept___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__3(x_214, x_9, x_10, x_11, x_12, x_230); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_240) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_231) == 0) { -lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; -x_241 = lean_ctor_get(x_240, 0); +uint8_t x_232; +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +return x_231; +} +else +{ +lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_233 = lean_ctor_get(x_231, 0); +x_234 = lean_ctor_get(x_231, 1); +lean_inc(x_234); +lean_inc(x_233); +lean_dec(x_231); +x_235 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +return x_235; +} +} +else +{ +uint8_t x_236; +x_236 = !lean_is_exclusive(x_231); +if (x_236 == 0) +{ +return x_231; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_231, 0); +x_238 = lean_ctor_get(x_231, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_231); +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_237); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} +} +} +else +{ +uint64_t x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_240 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_241 = lean_ctor_get(x_222, 0); lean_inc(x_241); -x_242 = lean_ctor_get(x_240, 1); -lean_inc(x_242); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_243 = x_240; -} else { - lean_dec_ref(x_240); - x_243 = lean_box(0); -} -if (lean_is_scalar(x_243)) { - x_244 = lean_alloc_ctor(0, 2, 0); -} else { - x_244 = x_243; -} -lean_ctor_set(x_244, 0, x_241); -lean_ctor_set(x_244, 1, x_242); -return x_244; -} -else -{ -lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_245 = lean_ctor_get(x_240, 0); +lean_dec(x_222); +x_242 = l_Lean_PersistentArray_append___rarg(x_15, x_241); +lean_dec(x_241); +x_243 = lean_alloc_ctor(0, 1, 8); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set_uint64(x_243, sizeof(void*)*1, x_240); +lean_ctor_set(x_221, 3, x_243); +x_244 = lean_st_ref_set(x_12, x_221, x_223); +x_245 = lean_ctor_get(x_244, 1); lean_inc(x_245); -x_246 = lean_ctor_get(x_240, 1); -lean_inc(x_246); -if (lean_is_exclusive(x_240)) { - lean_ctor_release(x_240, 0); - lean_ctor_release(x_240, 1); - x_247 = x_240; -} else { - lean_dec_ref(x_240); - x_247 = lean_box(0); -} -if (lean_is_scalar(x_247)) { - x_248 = lean_alloc_ctor(1, 2, 0); -} else { - x_248 = x_247; -} -lean_ctor_set(x_248, 0, x_245); -lean_ctor_set(x_248, 1, x_246); -return x_248; -} -} -} -else -{ -lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; uint64_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_249 = lean_ctor_get(x_215, 0); -x_250 = lean_ctor_get(x_215, 1); -x_251 = lean_ctor_get(x_215, 2); -x_252 = lean_ctor_get(x_215, 4); -x_253 = lean_ctor_get(x_215, 5); -x_254 = lean_ctor_get(x_215, 6); -x_255 = lean_ctor_get(x_215, 7); -lean_inc(x_255); -lean_inc(x_254); -lean_inc(x_253); -lean_inc(x_252); -lean_inc(x_251); -lean_inc(x_250); -lean_inc(x_249); -lean_dec(x_215); -x_256 = lean_ctor_get_uint64(x_216, sizeof(void*)*1); -x_257 = lean_ctor_get(x_216, 0); -lean_inc(x_257); -if (lean_is_exclusive(x_216)) { - lean_ctor_release(x_216, 0); - x_258 = x_216; -} else { - lean_dec_ref(x_216); - x_258 = lean_box(0); -} -x_259 = l_Lean_PersistentArray_append___rarg(x_15, x_257); -lean_dec(x_257); -if (lean_is_scalar(x_258)) { - x_260 = lean_alloc_ctor(0, 1, 8); -} else { - x_260 = x_258; -} -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set_uint64(x_260, sizeof(void*)*1, x_256); -x_261 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_261, 0, x_249); -lean_ctor_set(x_261, 1, x_250); -lean_ctor_set(x_261, 2, x_251); -lean_ctor_set(x_261, 3, x_260); -lean_ctor_set(x_261, 4, x_252); -lean_ctor_set(x_261, 5, x_253); -lean_ctor_set(x_261, 6, x_254); -lean_ctor_set(x_261, 7, x_255); -x_262 = lean_st_ref_set(x_12, x_261, x_217); -x_263 = lean_ctor_get(x_262, 1); -lean_inc(x_263); -lean_dec(x_262); -x_264 = l_MonadExcept_ofExcept___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__3(x_210, x_9, x_10, x_11, x_12, x_263); +lean_dec(x_244); +x_246 = l_MonadExcept_ofExcept___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__3(x_214, x_9, x_10, x_11, x_12, x_245); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); -lean_dec(x_210); -if (lean_obj_tag(x_264) == 0) +lean_dec(x_214); +if (lean_obj_tag(x_246) == 0) { -lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_247 = lean_ctor_get(x_246, 0); +lean_inc(x_247); +x_248 = lean_ctor_get(x_246, 1); +lean_inc(x_248); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_249 = x_246; } else { - lean_dec_ref(x_264); - x_267 = lean_box(0); + lean_dec_ref(x_246); + x_249 = lean_box(0); } -if (lean_is_scalar(x_267)) { - x_268 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_249)) { + x_250 = lean_alloc_ctor(0, 2, 0); } else { - x_268 = x_267; + x_250 = x_249; } -lean_ctor_set(x_268, 0, x_265); -lean_ctor_set(x_268, 1, x_266); -return x_268; +lean_ctor_set(x_250, 0, x_247); +lean_ctor_set(x_250, 1, x_248); +return x_250; } else { -lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_269 = lean_ctor_get(x_264, 0); +lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; +x_251 = lean_ctor_get(x_246, 0); +lean_inc(x_251); +x_252 = lean_ctor_get(x_246, 1); +lean_inc(x_252); +if (lean_is_exclusive(x_246)) { + lean_ctor_release(x_246, 0); + lean_ctor_release(x_246, 1); + x_253 = x_246; +} else { + lean_dec_ref(x_246); + x_253 = lean_box(0); +} +if (lean_is_scalar(x_253)) { + x_254 = lean_alloc_ctor(1, 2, 0); +} else { + x_254 = x_253; +} +lean_ctor_set(x_254, 0, x_251); +lean_ctor_set(x_254, 1, x_252); +return x_254; +} +} +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; uint64_t x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_255 = lean_ctor_get(x_221, 0); +x_256 = lean_ctor_get(x_221, 1); +x_257 = lean_ctor_get(x_221, 2); +x_258 = lean_ctor_get(x_221, 4); +x_259 = lean_ctor_get(x_221, 5); +x_260 = lean_ctor_get(x_221, 6); +x_261 = lean_ctor_get(x_221, 7); +lean_inc(x_261); +lean_inc(x_260); +lean_inc(x_259); +lean_inc(x_258); +lean_inc(x_257); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_221); +x_262 = lean_ctor_get_uint64(x_222, sizeof(void*)*1); +x_263 = lean_ctor_get(x_222, 0); +lean_inc(x_263); +if (lean_is_exclusive(x_222)) { + lean_ctor_release(x_222, 0); + x_264 = x_222; +} else { + lean_dec_ref(x_222); + x_264 = lean_box(0); +} +x_265 = l_Lean_PersistentArray_append___rarg(x_15, x_263); +lean_dec(x_263); +if (lean_is_scalar(x_264)) { + x_266 = lean_alloc_ctor(0, 1, 8); +} else { + x_266 = x_264; +} +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set_uint64(x_266, sizeof(void*)*1, x_262); +x_267 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_267, 0, x_255); +lean_ctor_set(x_267, 1, x_256); +lean_ctor_set(x_267, 2, x_257); +lean_ctor_set(x_267, 3, x_266); +lean_ctor_set(x_267, 4, x_258); +lean_ctor_set(x_267, 5, x_259); +lean_ctor_set(x_267, 6, x_260); +lean_ctor_set(x_267, 7, x_261); +x_268 = lean_st_ref_set(x_12, x_267, x_223); +x_269 = lean_ctor_get(x_268, 1); lean_inc(x_269); -x_270 = lean_ctor_get(x_264, 1); -lean_inc(x_270); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_271 = x_264; +lean_dec(x_268); +x_270 = l_MonadExcept_ofExcept___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__3(x_214, x_9, x_10, x_11, x_12, x_269); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_214); +if (lean_obj_tag(x_270) == 0) +{ +lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_271 = lean_ctor_get(x_270, 0); +lean_inc(x_271); +x_272 = lean_ctor_get(x_270, 1); +lean_inc(x_272); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_273 = x_270; } else { - lean_dec_ref(x_264); - x_271 = lean_box(0); + lean_dec_ref(x_270); + x_273 = lean_box(0); } -if (lean_is_scalar(x_271)) { - x_272 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_273)) { + x_274 = lean_alloc_ctor(0, 2, 0); } else { - x_272 = x_271; + x_274 = x_273; } -lean_ctor_set(x_272, 0, x_269); -lean_ctor_set(x_272, 1, x_270); -return x_272; +lean_ctor_set(x_274, 0, x_271); +lean_ctor_set(x_274, 1, x_272); +return x_274; +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; +x_275 = lean_ctor_get(x_270, 0); +lean_inc(x_275); +x_276 = lean_ctor_get(x_270, 1); +lean_inc(x_276); +if (lean_is_exclusive(x_270)) { + lean_ctor_release(x_270, 0); + lean_ctor_release(x_270, 1); + x_277 = x_270; +} else { + lean_dec_ref(x_270); + x_277 = lean_box(0); +} +if (lean_is_scalar(x_277)) { + x_278 = lean_alloc_ctor(1, 2, 0); +} else { + x_278 = x_277; +} +lean_ctor_set(x_278, 0, x_275); +lean_ctor_set(x_278, 1, x_276); +return x_278; } } } else { -lean_object* x_273; double x_274; double x_275; lean_object* x_276; -x_273 = lean_box(0); -x_274 = lean_unbox_float(x_211); -lean_dec(x_211); -x_275 = lean_unbox_float(x_212); -lean_dec(x_212); -x_276 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_274, x_275, x_5, x_273, x_9, x_10, x_11, x_12, x_208); -return x_276; -} -} -else -{ -lean_object* x_277; double x_278; double x_279; lean_object* x_280; -x_277 = lean_box(0); -x_278 = lean_unbox_float(x_211); -lean_dec(x_211); -x_279 = lean_unbox_float(x_212); -lean_dec(x_212); -x_280 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_210, x_1, x_213, x_278, x_279, x_5, x_277, x_9, x_10, x_11, x_12, x_208); -return x_280; +lean_object* x_279; double x_280; double x_281; lean_object* x_282; +x_279 = lean_box(0); +x_280 = lean_unbox_float(x_215); +lean_dec(x_215); +x_281 = lean_unbox_float(x_216); +lean_dec(x_216); +x_282 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3(x_2, x_3, x_4, x_15, x_214, x_218, x_280, x_281, x_5, x_279, x_9, x_10, x_11, x_12, x_212); +return x_282; } } } @@ -31786,43 +31779,41 @@ lean_dec(x_4); return x_12; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_8); +x_17 = lean_unbox(x_7); +lean_dec(x_7); +x_18 = lean_unbox_float(x_8); lean_dec(x_8); x_19 = lean_unbox_float(x_9); lean_dec(x_9); -x_20 = lean_unbox_float(x_10); -lean_dec(x_10); -x_21 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__2(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_18, x_19, x_20, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_15); -lean_dec(x_13); +x_20 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__2(x_1, x_16, x_3, x_4, x_5, x_6, x_17, x_18, x_19, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_14); lean_dec(x_12); -lean_dec(x_7); +lean_dec(x_11); lean_dec(x_6); -return x_21; +return x_20; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; -x_17 = lean_unbox(x_2); +uint8_t x_16; uint8_t x_17; double x_18; double x_19; lean_object* x_20; +x_16 = lean_unbox(x_2); lean_dec(x_2); -x_18 = lean_unbox(x_7); +x_17 = lean_unbox(x_6); +lean_dec(x_6); +x_18 = lean_unbox_float(x_7); lean_dec(x_7); x_19 = lean_unbox_float(x_8); lean_dec(x_8); -x_20 = lean_unbox_float(x_9); -lean_dec(x_9); -x_21 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3(x_1, x_17, x_3, x_4, x_5, x_6, x_18, x_19, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_11); -lean_dec(x_6); -return x_21; +x_20 = l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3(x_1, x_16, x_3, x_4, x_5, x_17, x_18, x_19, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +return x_20; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { @@ -32732,8 +32723,6 @@ l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyzeAppStagedCore_maybeSetExp lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyzeAppStagedCore_maybeSetExplicit___closed__5); l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyzeAppStagedCore_maybeSetExplicit___closed__6 = _init_l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyzeAppStagedCore_maybeSetExplicit___closed__6(); lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyzeAppStagedCore_maybeSetExplicit___closed__6); -l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__2___closed__1 = _init_l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__2___closed__1(); -lean_mark_persistent(l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__2___closed__1); l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3___closed__1 = _init_l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3___closed__1); l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3___closed__2 = _init_l_Lean_withTraceNode___at_Lean_PrettyPrinter_Delaborator_topDownAnalyze___spec__2___lambda__3___closed__2(); diff --git a/stage0/stdlib/Lean/Server/Watchdog.c b/stage0/stdlib/Lean/Server/Watchdog.c index 2f7a451cde..39e2e1d4db 100644 --- a/stage0/stdlib/Lean/Server/Watchdog.c +++ b/stage0/stdlib/Lean/Server/Watchdog.c @@ -13,6 +13,7 @@ #ifdef __cplusplus extern "C" { #endif +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handlePrepareCallHierarchy___spec__2(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_JsonNumber_fromNat(lean_object*); lean_object* l_Lean_Server_References_definitionsMatching___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -25,8 +26,8 @@ LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_findFileWorker_x3f(lean_object*, LEAN_EXPORT lean_object* l_Array_filterMapM___at_Lean_Server_Watchdog_handleCallHierarchyOutgoingCalls___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_parseParams___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at_Lean_Server_Watchdog_handleRename___spec__13___closed__2; +LEAN_EXPORT lean_object* l_Array_filterMapM___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at_Lean_Server_Watchdog_handleCallHierarchyOutgoingCalls_collapseSameOutgoingCalls___spec__2(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleRequest___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Server_Watchdog_0__Lean_Server_Watchdog_forwardMessages_loop___closed__11; static lean_object* l_IO_FS_Stream_readNotificationAs___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__2___closed__7; @@ -46,13 +47,11 @@ LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleCallHierarchyIncomingCalls static lean_object* l_IO_FS_Stream_readNotificationAs___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__2___closed__31; lean_object* l_IO_throwServerError___rarg(lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Server_References_findAt(lean_object*, lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Server_Watchdog_handleWorkspaceSymbol___spec__2(size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleCrash___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Data_Lsp_TextSync_0__Lean_Lsp_fromJsonDidSaveTextDocumentParams____x40_Lean_Data_Lsp_TextSync___hyg_752_(lean_object*); static lean_object* l_IO_FS_Stream_readNotificationAs___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__2___closed__20; -LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__2(lean_object*, lean_object*, size_t, size_t); static lean_object* l_IO_FS_Stream_readLspNotificationAs___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__1___closed__1; lean_object* l_Lean_JsonNumber_toString(lean_object*); static lean_object* l_Lean_Server_Watchdog_mkLeanServerCapabilities___closed__1; @@ -80,16 +79,19 @@ lean_object* l_IO_Mutex_new___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Loop_forIn_loop___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__5___lambda__1___closed__2; LEAN_EXPORT uint8_t l_Lean_Server_Watchdog_ImportData_update___lambda__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_ServerRequestData_trackOutboundRequest(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Server_Watchdog_handleRequest___spec__16(size_t, size_t, lean_object*); static lean_object* l_IO_FS_Stream_readNotificationAs___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__2___closed__6; static double l_Lean_Server_Watchdog_handleWorkspaceSymbol___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_parseParams___at_Lean_Server_Watchdog_handleRequest___spec__3___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Json_toStructured_x3f___at_Lean_Server_Watchdog_handleDidChange___spec__1(lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__3___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleReference(lean_object*, lean_object*, lean_object*); static lean_object* l_IO_FS_Stream_readNotificationAs___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__2___closed__13; LEAN_EXPORT lean_object* l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleRename(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Data_Lsp_Basic_0__Lean_Lsp_toJsonCancelParams____x40_Lean_Data_Lsp_Basic___hyg_86_(lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__3___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_Server_Watchdog_handleCallHierarchyIncomingCalls___spec__5___lambda__1___boxed(lean_object*, lean_object*); lean_object* l___private_Lean_Data_Lsp_Extra_0__Lean_Lsp_toJsonLeanDidOpenTextDocumentParams____x40_Lean_Data_Lsp_Extra___hyg_309_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleResponseError(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -122,6 +124,7 @@ static lean_object* l_IO_FS_Stream_readNotificationAs___at_Lean_Server_Watchdog_ static lean_object* l_Lean_Server_Watchdog_handleRequest___lambda__1___closed__2; static lean_object* l_Array_qsort_sort___at_Lean_Server_Watchdog_handleWorkspaceSymbol___spec__1___closed__1; lean_object* lean_array_push(lean_object*, lean_object*); +static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__8___closed__1; static lean_object* l_Lean_Server_Watchdog_initAndRunWatchdogAux___closed__6; static lean_object* l_Lean_Server_Watchdog_mkLeanServerCapabilities___closed__13; lean_object* l_Array_qpartition___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -167,6 +170,7 @@ static lean_object* l___private_Lean_Server_Watchdog_0__Lean_Server_Watchdog_for LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Server_Watchdog_handleCancelRequest___spec__1(lean_object*, lean_object*); lean_object* l___private_Lean_Data_Lsp_LanguageFeatures_0__Lean_Lsp_toJsonCallHierarchyOutgoingCall____x40_Lean_Data_Lsp_LanguageFeatures___hyg_7831_(lean_object*); lean_object* lean_io_getenv(lean_object*, lean_object*); +uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_159____at___private_Lean_Data_Lsp_LanguageFeatures_0__Lean_Lsp_beqCompletionItem____x40_Lean_Data_Lsp_LanguageFeatures___hyg_2489____spec__1(lean_object*, lean_object*); static lean_object* l_IO_FS_Stream_readNotificationAs___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__2___closed__24; uint8_t lean_float_decLt(double, double); lean_object* l___private_Lean_Data_Lsp_Basic_0__Lean_Lsp_toJsonLocation____x40_Lean_Data_Lsp_Basic___hyg_1080_(lean_object*); @@ -198,6 +202,7 @@ static lean_object* l_Lean_Server_Watchdog_handleNotification___closed__7; lean_object* l_Nat_nextPowerOfTwo_go(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Server_Watchdog_mkLeanServerCapabilities___closed__17; static lean_object* l_Array_groupByKey___at_Lean_Server_Watchdog_handleCallHierarchyIncomingCalls_collapseSameIncomingCalls___spec__1___closed__2; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleDidChange___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Server_Watchdog_initAndRunWatchdogAux___closed__8; LEAN_EXPORT lean_object* l___private_Lean_Server_Watchdog_0__Lean_Server_Watchdog_forwardMessages_loop___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -215,6 +220,7 @@ static lean_object* l_Lean_Server_Watchdog_handleRename___closed__1; static lean_object* l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_ImportData_update___spec__11___closed__3; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at_Lean_Server_Watchdog_handleCallHierarchyIncomingCalls_collapseSameIncomingCalls___spec__6(lean_object*, lean_object*); static lean_object* l_Lean_Server_Watchdog_mkLeanServerCapabilities___closed__11; +LEAN_EXPORT lean_object* l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_FS_Stream_readNotificationAs___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Data_Lsp_Internal_0__Lean_Lsp_fromJsonLeanImportClosureParams____x40_Lean_Data_Lsp_Internal___hyg_2083_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_findWorkerPath___lambda__1(lean_object*, lean_object*, lean_object*); @@ -286,12 +292,12 @@ LEAN_EXPORT lean_object* l___private_Lean_Server_Watchdog_0__Lean_Server_Watchdo LEAN_EXPORT lean_object* l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Server_References_empty; LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_terminateFileWorker(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_contains___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__1___boxed(lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); static lean_object* l___private_Lean_Server_Watchdog_0__Lean_Server_Watchdog_fromJsonCallHierarchyItemData____x40_Lean_Server_Watchdog___hyg_4173____closed__8; LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_updateFileWorkers___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_startLoadingReferences___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Server_Watchdog_startFileWorker___closed__9; +LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleDidChangeWatchedFiles___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Server_Watchdog_handleCallHierarchyOutgoingCalls_collapseSameOutgoingCalls___closed__1; lean_object* l___private_Lean_Data_Lsp_TextSync_0__Lean_Lsp_fromJsonDidCloseTextDocumentParams____x40_Lean_Data_Lsp_TextSync___hyg_1025_(lean_object*); static lean_object* l_Lean_Server_Watchdog_handleNotification___closed__2; @@ -326,6 +332,7 @@ static lean_object* l_Lean_Server_Watchdog_forwardRequestToWorker___closed__1; static lean_object* l_Lean_Server_Watchdog_parseParams___rarg___closed__2; static lean_object* l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_ImportData_update___spec__11___closed__4; lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_toJsonPublishDiagnosticsParams____x40_Lean_Data_Lsp_Diagnostics___hyg_2414_(lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_ins___at_Lean_Server_Watchdog_handleRename___spec__12(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Server_Watchdog_handleRequest___closed__1; static lean_object* l_Lean_Server_Watchdog_initAndRunWatchdog___closed__1; @@ -350,6 +357,7 @@ LEAN_EXPORT lean_object* l_Lean_RBNode_insert___at_Lean_Server_Watchdog_ImportDa LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand_go___at_Lean_Server_Watchdog_handleCallHierarchyOutgoingCalls_collapseSameOutgoingCalls___spec__5(lean_object*, lean_object*, lean_object*); static lean_object* l_IO_FS_Stream_readNotificationAs___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__2___closed__26; static lean_object* l_Lean_Server_Watchdog_initAndRunWatchdogAux___closed__2; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__8(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleCallHierarchyIncomingCalls_collapseSameIncomingCalls___spec__10(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_ImportData_update(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_findWorkerPath___lambda__2___boxed(lean_object*, lean_object*, lean_object*); @@ -388,8 +396,8 @@ lean_object* lean_st_mk_ref(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at_Lean_Server_Watchdog_handleRename___spec__13___boxed(lean_object*, lean_object*, lean_object*); static uint8_t l_Lean_Server_Watchdog_tryDischargeQueuedMessages___closed__3; lean_object* lean_array_to_list(lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Server_Watchdog_0__Lean_Server_Watchdog_fromJsonCallHierarchyItemData____x40_Lean_Server_Watchdog___hyg_4173_(lean_object*); -static lean_object* l_Lean_Server_Watchdog_handleDidChangeWatchedFiles___closed__1; LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleImportClosure___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Server_Watchdog_0__Lean_Server_Watchdog_callHierarchyItemOf_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_qsort_sort___at_Lean_Server_Watchdog_handleCallHierarchyOutgoingCalls___spec__5___lambda__1(lean_object*, lean_object*); @@ -417,6 +425,7 @@ LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_parseParams___at_Lean_Server_Wat lean_object* lean_get_stdin(lean_object*); static lean_object* l_Lean_Json_toStructured_x3f___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__4___closed__4; LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleCallHierarchyIncomingCalls_collapseSameIncomingCalls___lambda__1(lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__3___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_System_FilePath_addExtension(lean_object*, lean_object*); static lean_object* l_IO_FS_Stream_readNotificationAs___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__2___closed__33; lean_object* lean_get_stderr(lean_object*); @@ -517,7 +526,6 @@ static lean_object* l_Array_qsort_sort___at_Lean_Server_Watchdog_handleCallHiera static lean_object* l_Lean_Server_Watchdog_mkLeanServerCapabilities___closed__6; LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at_Lean_Server_Watchdog_handleCallHierarchyIncomingCalls_collapseSameIncomingCalls___spec__3(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleRequest(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Array_contains___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_tryWriteMessage___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_mainLoop___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Server_References_allRefs(lean_object*); @@ -566,10 +574,12 @@ LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_ServerRequestData_translateInbou LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_Server_Watchdog_handleCallHierarchyOutgoingCalls___spec__5___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Server_Watchdog_0__Lean_Server_Watchdog_forwardMessages_loop___closed__10; static lean_object* l_IO_FS_Stream_readNotificationAs___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__2___closed__54; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleRename___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Loop_forIn_loop___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__5___lambda__1___closed__1; static lean_object* l_IO_FS_Stream_readRequestAs___at_Lean_Server_Watchdog_initAndRunWatchdog___spec__2___closed__5; LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleRename___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_searchModuleNameOfFileName(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at_Lean_Server_Watchdog_handleCallHierarchyOutgoingCalls_collapseSameOutgoingCalls___spec__2___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handlePrepareRename(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleCallHierarchyOutgoingCalls___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -577,6 +587,7 @@ static lean_object* l_IO_FS_Stream_readRequestAs___at_Lean_Server_Watchdog_initA static lean_object* l_IO_FS_Stream_readNotificationAs___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__2___closed__57; LEAN_EXPORT lean_object* l_Lean_Json_toStructured_x3f___at_Lean_Server_Watchdog_handleCancelRequest___spec__2(lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_ins___at_Lean_Server_Watchdog_handleRename___spec__3(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleDidChangeWatchedFiles___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_del___at_Lean_Server_Watchdog_eraseFileWorker___spec__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Server_Watchdog_0__Lean_Server_Watchdog_forwardMessages(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleDidChange___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -587,7 +598,6 @@ LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at_Lean_Server_ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleCallHierarchyOutgoingCalls___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_groupByKey___at_Lean_Server_Watchdog_handleCallHierarchyIncomingCalls_collapseSameIncomingCalls___spec__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_tryDischargeQueuedMessages(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_ReaderT_bind___at_Lean_Server_Watchdog_FileWorker_waitForProc___spec__2(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_parseParams___at_Lean_Server_Watchdog_handleRequest___spec__14(lean_object*, lean_object*, lean_object*); @@ -605,13 +615,13 @@ LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_CrashOrigin_noConfusion___rarg__ LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_parseParams___at_Lean_Server_Watchdog_handleRequest___spec__1(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_searchPathRef; LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleImportClosure(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__5___closed__1; LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_parseParams___at_Lean_Server_Watchdog_handleRequest___spec__20(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Server_Watchdog_0__Lean_Server_Watchdog_fromJsonCallHierarchyItemData____x40_Lean_Server_Watchdog___hyg_4173____closed__9; static lean_object* l_IO_FS_Stream_readNotificationAs___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__2___closed__51; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Server_Watchdog_handleWorkspaceSymbol___spec__2___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Lsp_SemanticTokenModifier_names; LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_parseParams(lean_object*); +static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__7___closed__2; LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_tryWriteMessage___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_IO_FS_Stream_readNotificationAs___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__2___closed__21; LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_ImportData_eraseImportsOf(lean_object*, lean_object*); @@ -662,6 +672,7 @@ static lean_object* l_Lean_Server_Watchdog_mkLeanServerCapabilities___closed__4; lean_object* l_Lean_Server_foldDocumentChanges(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Json_toStructured_x3f___at_Lean_Server_Watchdog_notifyAboutStaleDependency___spec__1(lean_object*); static lean_object* l___private_Lean_Server_Watchdog_0__Lean_Server_Watchdog_forwardMessages_loop___closed__6; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_forwardRequestToWorker___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_IO_FS_Stream_readNotificationAs___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__2___closed__59; static lean_object* l_IO_FS_Stream_readRequestAs___at_Lean_Server_Watchdog_initAndRunWatchdog___spec__2___closed__8; @@ -723,6 +734,7 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_han LEAN_EXPORT lean_object* l_Lean_RBNode_findCore___at_Lean_Server_Watchdog_handleDidSave___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Server_Watchdog_initAndRunWatchdogAux___closed__16; LEAN_EXPORT lean_object* l_Array_filterMapM___at_Lean_Server_Watchdog_handleCallHierarchyOutgoingCalls___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Server_Watchdog_handleDidChangeWatchedFiles___lambda__1___closed__1; static lean_object* l_IO_FS_Stream_readNotificationAs___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__2___closed__60; LEAN_EXPORT lean_object* l_IO_FS_Stream_writeLspRequest___at_Lean_Server_Watchdog_startFileWorker___spec__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_tryDischargeQueuedMessages___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -740,6 +752,7 @@ static lean_object* l_Lean_Server_Watchdog_mainLoop___closed__1; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleCallHierarchyOutgoingCalls_collapseSameOutgoingCalls___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Server_Watchdog_initAndRunWatchdog___closed__9; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleRename___spec__14(lean_object*, lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__3___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_parseParams___at_Lean_Server_Watchdog_handleRequest___spec__17(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleCallHierarchyOutgoingCalls(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_CallHierarchyItemData_fromItem_x3f(lean_object*); @@ -773,6 +786,7 @@ static lean_object* l_Lean_Server_Watchdog_tryDischargeQueuedMessages___closed__ LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_FileWorker_killProcAndWait___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__3___at_Lean_Server_Watchdog_handleDidSave___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Json_toStructured_x3f___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__4___closed__1; +static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__7___closed__1; static lean_object* l_Lean_Server_Watchdog_handleRename___closed__2; static lean_object* l_Lean_Server_Watchdog_handleDidOpen___closed__1; static lean_object* l___private_Lean_Server_Watchdog_0__Lean_Server_Watchdog_fromJsonCallHierarchyItemData____x40_Lean_Server_Watchdog___hyg_4173____closed__7; @@ -806,6 +820,7 @@ uint8_t lean_nat_dec_le(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_Server_Watchdog_handleWorkspaceSymbol___spec__1___lambda__1___boxed(lean_object*, lean_object*); lean_object* l___private_Lean_Data_Lsp_TextSync_0__Lean_Lsp_toJsonDidChangeTextDocumentParams____x40_Lean_Data_Lsp_TextSync___hyg_531_(lean_object*); static lean_object* l_IO_FS_Stream_readNotificationAs___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__2___closed__64; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__2(lean_object*, size_t, size_t, lean_object*); static lean_object* l_IO_FS_Stream_readNotificationAs___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__2___closed__43; uint8_t lean_usize_dec_lt(size_t, size_t); static lean_object* l_Lean_Server_Watchdog_mkLeanServerCapabilities___closed__10; @@ -839,6 +854,7 @@ LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_findWorkerPath___lambda__1___box LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_startFileWorker(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleCallHierarchyOutgoingCalls_collapseSameOutgoingCalls___spec__10(lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_Server_Watchdog_mkLeanServerCapabilities___closed__2; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__7(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_erase___at_Lean_Server_Watchdog_eraseFileWorker___spec__1___boxed(lean_object*, lean_object*); lean_object* lean_io_process_child_kill(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at_Lean_Server_Watchdog_handleRename___spec__7(lean_object*, lean_object*); @@ -847,10 +863,10 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_han static lean_object* l_Lean_Server_Watchdog_handleRename___lambda__1___closed__3; LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleIleanInfoUpdate(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleCallHierarchyOutgoingCalls_collapseSameOutgoingCalls___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_erase___at_Lean_Server_Watchdog_ImportData_update___spec__3(lean_object*, lean_object*); lean_object* l___private_Lean_Data_Lsp_Basic_0__Lean_Lsp_toJsonWorkspaceEdit____x40_Lean_Data_Lsp_Basic___hyg_4404_(lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handlePrepareCallHierarchy___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_filterMapM___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleCallHierarchyIncomingCalls_collapseSameIncomingCalls___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_Server_Watchdog_handleCallHierarchyOutgoingCalls___spec__5(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SearchPath_findAllWithExt(lean_object*, lean_object*, lean_object*); @@ -32420,198 +32436,475 @@ x_4 = l_Lean_Server_Watchdog_terminateFileWorker(x_1, x_2, x_3); return x_4; } } -LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__2(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4) { +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__2(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { _start: { uint8_t x_5; -x_5 = lean_usize_dec_eq(x_3, x_4); +x_5 = lean_usize_dec_eq(x_2, x_3); if (x_5 == 0) { -lean_object* x_6; uint8_t x_7; -x_6 = lean_array_uget(x_2, x_3); -x_7 = lean_string_dec_eq(x_6, x_1); -lean_dec(x_6); -if (x_7 == 0) +lean_object* x_6; lean_object* x_7; lean_object* x_8; size_t x_9; size_t x_10; +x_6 = lean_array_uget(x_1, x_2); +x_7 = lean_ctor_get(x_6, 0); +lean_inc(x_7); +x_8 = l_System_Uri_fileUriToPath_x3f(x_7); +x_9 = 1; +x_10 = lean_usize_add(x_2, x_9); +if (lean_obj_tag(x_8) == 0) { -size_t x_8; size_t x_9; -x_8 = 1; -x_9 = lean_usize_add(x_3, x_8); -x_3 = x_9; +lean_dec(x_6); +x_2 = x_10; goto _start; } else { -uint8_t x_11; -x_11 = 1; -return x_11; +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_8, 0); +lean_inc(x_12); +lean_dec(x_8); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_6); +lean_ctor_set(x_13, 1, x_12); +x_14 = lean_array_push(x_4, x_13); +x_2 = x_10; +x_4 = x_14; +goto _start; } } else { -uint8_t x_12; -x_12 = 0; +return x_4; +} +} +} +LEAN_EXPORT lean_object* l_Array_filterMapM___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = lean_nat_dec_lt(x_2, x_3); +if (x_4 == 0) +{ +lean_object* x_5; +x_5 = l_Lean_Server_Watchdog_FileWorker_queuedMsgs___closed__1; +return x_5; +} +else +{ +lean_object* x_6; uint8_t x_7; +x_6 = lean_array_get_size(x_1); +x_7 = lean_nat_dec_le(x_3, x_6); +lean_dec(x_6); +if (x_7 == 0) +{ +lean_object* x_8; +x_8 = l_Lean_Server_Watchdog_FileWorker_queuedMsgs___closed__1; +return x_8; +} +else +{ +size_t x_9; size_t x_10; lean_object* x_11; lean_object* x_12; +x_9 = lean_usize_of_nat(x_2); +x_10 = lean_usize_of_nat(x_3); +x_11 = l_Lean_Server_Watchdog_FileWorker_queuedMsgs___closed__1; +x_12 = l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__2(x_1, x_9, x_10, x_11); return x_12; } } } -LEAN_EXPORT uint8_t l_Array_contains___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__1(lean_object* x_1, lean_object* x_2) { +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__3___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { -lean_object* x_3; lean_object* x_4; uint8_t x_5; -x_3 = lean_array_get_size(x_1); -x_4 = lean_unsigned_to_nat(0u); -x_5 = lean_nat_dec_lt(x_4, x_3); -if (x_5 == 0) +lean_object* x_7; lean_object* x_19; +x_19 = l_Lean_Server_Ilean_load(x_1, x_6); +if (lean_obj_tag(x_19) == 0) { -uint8_t x_6; -lean_dec(x_3); -x_6 = 0; -return x_6; +uint8_t x_20; lean_object* x_21; +x_20 = lean_ctor_get_uint8(x_2, sizeof(void*)*1); +x_21 = lean_box(x_20); +if (lean_obj_tag(x_21) == 1) +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_22 = lean_ctor_get(x_19, 0); +lean_inc(x_22); +x_23 = lean_ctor_get(x_19, 1); +lean_inc(x_23); +lean_dec(x_19); +x_24 = lean_st_ref_take(x_3, x_23); +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +x_26 = lean_ctor_get(x_24, 1); +lean_inc(x_26); +lean_dec(x_24); +x_27 = l_Lean_Server_References_removeIlean(x_25, x_1); +x_28 = l_Lean_Server_References_addIlean(x_27, x_1, x_22); +x_29 = lean_st_ref_set(x_3, x_28, x_26); +x_30 = !lean_is_exclusive(x_29); +if (x_30 == 0) +{ +x_7 = x_29; +goto block_18; } else { -size_t x_7; size_t x_8; uint8_t x_9; -x_7 = 0; -x_8 = lean_usize_of_nat(x_3); -lean_dec(x_3); -x_9 = l_Array_anyMUnsafe_any___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__2(x_2, x_1, x_7, x_8); -return x_9; +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_29, 0); +x_32 = lean_ctor_get(x_29, 1); +lean_inc(x_32); +lean_inc(x_31); +lean_dec(x_29); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +x_7 = x_33; +goto block_18; } } -} -LEAN_EXPORT lean_object* l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: +else { -if (lean_obj_tag(x_2) == 0) +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; uint8_t x_41; +lean_dec(x_21); +x_34 = lean_ctor_get(x_19, 0); +lean_inc(x_34); +x_35 = lean_ctor_get(x_19, 1); +lean_inc(x_35); +lean_dec(x_19); +x_36 = lean_st_ref_take(x_3, x_35); +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +x_38 = lean_ctor_get(x_36, 1); +lean_inc(x_38); +lean_dec(x_36); +x_39 = l_Lean_Server_References_addIlean(x_37, x_1, x_34); +x_40 = lean_st_ref_set(x_3, x_39, x_38); +x_41 = !lean_is_exclusive(x_40); +if (x_41 == 0) { -lean_object* x_6; lean_object* x_7; -lean_dec(x_4); +x_7 = x_40; +goto block_18; +} +else +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_42 = lean_ctor_get(x_40, 0); +x_43 = lean_ctor_get(x_40, 1); +lean_inc(x_43); +lean_inc(x_42); +lean_dec(x_40); +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_42); +lean_ctor_set(x_44, 1, x_43); +x_7 = x_44; +goto block_18; +} +} +} +else +{ +lean_object* x_45; +x_45 = lean_ctor_get(x_19, 0); +lean_inc(x_45); +if (lean_obj_tag(x_45) == 11) +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint8_t x_52; +lean_dec(x_45); +x_46 = lean_ctor_get(x_19, 1); +lean_inc(x_46); +lean_dec(x_19); +x_47 = lean_st_ref_take(x_3, x_46); +x_48 = lean_ctor_get(x_47, 0); +lean_inc(x_48); +x_49 = lean_ctor_get(x_47, 1); +lean_inc(x_49); +lean_dec(x_47); +x_50 = l_Lean_Server_References_removeIlean(x_48, x_1); lean_dec(x_1); -x_6 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_6, 0, x_3); -x_7 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_7, 0, x_6); -lean_ctor_set(x_7, 1, x_5); +x_51 = lean_st_ref_set(x_3, x_50, x_49); +x_52 = !lean_is_exclusive(x_51); +if (x_52 == 0) +{ +x_7 = x_51; +goto block_18; +} +else +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; +x_53 = lean_ctor_get(x_51, 0); +x_54 = lean_ctor_get(x_51, 1); +lean_inc(x_54); +lean_inc(x_53); +lean_dec(x_51); +x_55 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_55, 0, x_53); +lean_ctor_set(x_55, 1, x_54); +x_7 = x_55; +goto block_18; +} +} +else +{ +uint8_t x_56; +lean_dec(x_1); +x_56 = !lean_is_exclusive(x_19); +if (x_56 == 0) +{ +lean_object* x_57; +x_57 = lean_ctor_get(x_19, 0); +lean_dec(x_57); +x_7 = x_19; +goto block_18; +} +else +{ +lean_object* x_58; lean_object* x_59; +x_58 = lean_ctor_get(x_19, 1); +lean_inc(x_58); +lean_dec(x_19); +x_59 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_59, 0, x_45); +lean_ctor_set(x_59, 1, x_58); +x_7 = x_59; +goto block_18; +} +} +} +block_18: +{ +if (lean_obj_tag(x_7) == 0) +{ +uint8_t x_8; +x_8 = !lean_is_exclusive(x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_ctor_get(x_7, 0); +lean_dec(x_9); +x_10 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1; +lean_ctor_set(x_7, 0, x_10); return x_7; } else { -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_8 = lean_ctor_get(x_2, 0); -lean_inc(x_8); -x_9 = lean_ctor_get(x_2, 1); -lean_inc(x_9); -x_10 = lean_ctor_get(x_2, 3); -lean_inc(x_10); -lean_dec(x_2); -lean_inc(x_4); +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = lean_ctor_get(x_7, 1); +lean_inc(x_11); +lean_dec(x_7); +x_12 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1; +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_11); +return x_13; +} +} +else +{ +uint8_t x_14; +x_14 = !lean_is_exclusive(x_7); +if (x_14 == 0) +{ +return x_7; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_ctor_get(x_7, 0); +x_16 = lean_ctor_get(x_7, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_7); +x_17 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_16); +return x_17; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__3___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; lean_object* x_9; lean_inc(x_1); -x_11 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__3(x_1, x_8, x_3, x_4, x_5); -if (lean_obj_tag(x_11) == 0) +x_8 = l_Lean_searchModuleNameOfFileName(x_1, x_2, x_7); +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +uint8_t x_10; +lean_dec(x_1); +x_10 = !lean_is_exclusive(x_8); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_ctor_get(x_8, 0); +lean_dec(x_11); +x_12 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1; +lean_ctor_set(x_8, 0, x_12); +return x_8; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_8, 1); +lean_inc(x_13); +lean_dec(x_8); +x_14 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1; +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_13); +return x_15; +} +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +lean_dec(x_9); +x_16 = lean_ctor_get(x_8, 1); +lean_inc(x_16); +lean_dec(x_8); +x_17 = lean_box(0); +x_18 = l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__3___lambda__1(x_1, x_3, x_4, x_17, x_6, x_16); +return x_18; +} +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, size_t x_6, size_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +uint8_t x_11; +x_11 = lean_usize_dec_lt(x_7, x_6); +if (x_11 == 0) { lean_object* x_12; -x_12 = lean_ctor_get(x_11, 0); -lean_inc(x_12); -if (lean_obj_tag(x_12) == 0) +lean_dec(x_3); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_8); +lean_ctor_set(x_12, 1, x_10); +return x_12; +} +else { -uint8_t x_13; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_4); -lean_dec(x_1); -x_13 = !lean_is_exclusive(x_11); -if (x_13 == 0) +lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; +lean_dec(x_8); +x_13 = lean_array_uget(x_5, x_7); +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_ctor_get_uint8(x_14, sizeof(void*)*1); +x_16 = lean_box(x_15); +if (lean_obj_tag(x_16) == 2) { -lean_object* x_14; -x_14 = lean_ctor_get(x_11, 0); +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; size_t x_24; size_t x_25; lean_object* x_26; lean_dec(x_14); -return x_11; -} -else -{ -lean_object* x_15; lean_object* x_16; -x_15 = lean_ctor_get(x_11, 1); -lean_inc(x_15); -lean_dec(x_11); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_12); -lean_ctor_set(x_16, 1, x_15); -return x_16; -} -} -else -{ -lean_object* x_17; lean_object* x_18; -lean_dec(x_12); -x_17 = lean_ctor_get(x_11, 1); +x_17 = lean_ctor_get(x_13, 1); lean_inc(x_17); -lean_dec(x_11); -lean_inc(x_4); -lean_inc(x_1); -x_18 = l_Lean_Server_Watchdog_notifyAboutStaleDependency(x_9, x_1, x_4, x_17); -if (lean_obj_tag(x_18) == 0) -{ -lean_object* x_19; lean_object* x_20; -x_19 = lean_ctor_get(x_18, 1); +lean_dec(x_13); +x_18 = lean_st_ref_take(x_2, x_10); +x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); lean_dec(x_18); -x_20 = lean_box(0); -x_2 = x_10; -x_3 = x_20; -x_5 = x_19; +x_21 = l_Lean_Server_References_removeIlean(x_19, x_17); +lean_dec(x_17); +x_22 = lean_st_ref_set(x_2, x_21, x_20); +x_23 = lean_ctor_get(x_22, 1); +lean_inc(x_23); +lean_dec(x_22); +x_24 = 1; +x_25 = lean_usize_add(x_7, x_24); +x_26 = lean_box(0); +x_7 = x_25; +x_8 = x_26; +x_10 = x_23; goto _start; } else { -uint8_t x_22; -lean_dec(x_10); -lean_dec(x_4); -lean_dec(x_1); -x_22 = !lean_is_exclusive(x_18); -if (x_22 == 0) -{ -return x_18; -} -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_ctor_get(x_18, 0); -x_24 = lean_ctor_get(x_18, 1); -lean_inc(x_24); -lean_inc(x_23); -lean_dec(x_18); -x_25 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_25, 0, x_23); -lean_ctor_set(x_25, 1, x_24); -return x_25; -} -} -} -} -else -{ -uint8_t x_26; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_4); -lean_dec(x_1); -x_26 = !lean_is_exclusive(x_11); -if (x_26 == 0) -{ -return x_11; -} -else -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_27 = lean_ctor_get(x_11, 0); -x_28 = lean_ctor_get(x_11, 1); +lean_object* x_28; lean_object* x_29; lean_object* x_30; +lean_dec(x_16); +x_28 = lean_ctor_get(x_13, 1); lean_inc(x_28); -lean_inc(x_27); -lean_dec(x_11); -x_29 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_29, 0, x_27); -lean_ctor_set(x_29, 1, x_28); -return x_29; +lean_dec(x_13); +x_29 = lean_box(0); +lean_inc(x_3); +x_30 = l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__3___lambda__2(x_28, x_3, x_14, x_2, x_29, x_9, x_10); +lean_dec(x_14); +if (lean_obj_tag(x_30) == 0) +{ +lean_object* x_31; +x_31 = lean_ctor_get(x_30, 0); +lean_inc(x_31); +if (lean_obj_tag(x_31) == 0) +{ +uint8_t x_32; +lean_dec(x_3); +x_32 = !lean_is_exclusive(x_30); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; +x_33 = lean_ctor_get(x_30, 0); +lean_dec(x_33); +x_34 = lean_ctor_get(x_31, 0); +lean_inc(x_34); +lean_dec(x_31); +lean_ctor_set(x_30, 0, x_34); +return x_30; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_30, 1); +lean_inc(x_35); +lean_dec(x_30); +x_36 = lean_ctor_get(x_31, 0); +lean_inc(x_36); +lean_dec(x_31); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_36); +lean_ctor_set(x_37, 1, x_35); +return x_37; +} +} +else +{ +lean_object* x_38; lean_object* x_39; size_t x_40; size_t x_41; +x_38 = lean_ctor_get(x_30, 1); +lean_inc(x_38); +lean_dec(x_30); +x_39 = lean_ctor_get(x_31, 0); +lean_inc(x_39); +lean_dec(x_31); +x_40 = 1; +x_41 = lean_usize_add(x_7, x_40); +x_7 = x_41; +x_8 = x_39; +x_10 = x_38; +goto _start; +} +} +else +{ +uint8_t x_43; +lean_dec(x_3); +x_43 = !lean_is_exclusive(x_30); +if (x_43 == 0) +{ +return x_30; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_30, 0); +x_45 = lean_ctor_get(x_30, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_30); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} } } } @@ -32755,717 +33048,135 @@ return x_29; } } } -static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__5___closed__1() { +LEAN_EXPORT lean_object* l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { -lean_object* x_1; -x_1 = lean_mk_string_unchecked("ilean", 5, 5); -return x_1; -} -} -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, size_t x_7, size_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: +if (lean_obj_tag(x_2) == 0) { -lean_object* x_12; uint8_t x_30; -x_30 = lean_usize_dec_lt(x_8, x_7); -if (x_30 == 0) -{ -lean_object* x_31; -lean_dec(x_10); -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_9); -lean_ctor_set(x_31, 1, x_11); -return x_31; +lean_object* x_6; lean_object* x_7; +lean_dec(x_4); +lean_dec(x_1); +x_6 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_6, 0, x_3); +x_7 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_7, 0, x_6); +lean_ctor_set(x_7, 1, x_5); +return x_7; } else { -lean_object* x_32; lean_object* x_33; lean_object* x_34; -lean_dec(x_9); -x_32 = lean_array_uget(x_6, x_8); -x_33 = lean_ctor_get(x_32, 0); -lean_inc(x_33); -lean_inc(x_33); -x_34 = l_System_Uri_fileUriToPath_x3f(x_33); -if (lean_obj_tag(x_34) == 0) -{ -lean_object* x_35; lean_object* x_36; -lean_dec(x_33); -lean_dec(x_32); -x_35 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1; -x_36 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_36, 0, x_35); -lean_ctor_set(x_36, 1, x_11); -x_12 = x_36; -goto block_29; -} -else -{ -lean_object* x_37; lean_object* x_38; -x_37 = lean_ctor_get(x_34, 0); -lean_inc(x_37); -lean_dec(x_34); -lean_inc(x_37); -x_38 = l_System_FilePath_extension(x_37); -if (lean_obj_tag(x_38) == 0) -{ -lean_object* x_39; lean_object* x_40; -lean_dec(x_37); -lean_dec(x_33); -lean_dec(x_32); -x_39 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1; -x_40 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_40, 0, x_39); -lean_ctor_set(x_40, 1, x_11); -x_12 = x_40; -goto block_29; -} -else -{ -lean_object* x_41; lean_object* x_42; uint8_t x_43; -x_41 = lean_ctor_get(x_38, 0); -lean_inc(x_41); -lean_dec(x_38); -x_42 = l_Lean_Server_Watchdog_startFileWorker___closed__8; -x_43 = lean_string_dec_eq(x_41, x_42); -if (x_43 == 0) -{ -lean_object* x_44; uint8_t x_45; -lean_dec(x_33); -x_44 = l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__5___closed__1; -x_45 = lean_string_dec_eq(x_41, x_44); -lean_dec(x_41); -if (x_45 == 0) -{ -lean_object* x_46; lean_object* x_47; -lean_dec(x_37); -lean_dec(x_32); -x_46 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1; -x_47 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_47, 0, x_46); -lean_ctor_set(x_47, 1, x_11); -x_12 = x_47; -goto block_29; -} -else -{ -uint8_t x_48; -x_48 = lean_ctor_get_uint8(x_32, sizeof(void*)*1); -lean_dec(x_32); -switch (x_48) { -case 0: -{ -uint8_t x_49; -x_49 = l_Array_contains___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__1(x_3, x_37); -if (x_49 == 0) -{ -lean_object* x_50; lean_object* x_51; -lean_dec(x_37); -x_50 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1; -x_51 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_51, 0, x_50); -lean_ctor_set(x_51, 1, x_11); -x_12 = x_51; -goto block_29; -} -else -{ -lean_object* x_52; -x_52 = l_Lean_Server_Ilean_load(x_37, x_11); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; -x_53 = lean_ctor_get(x_52, 0); -lean_inc(x_53); -x_54 = lean_ctor_get(x_52, 1); -lean_inc(x_54); -lean_dec(x_52); -x_55 = lean_st_ref_take(x_2, x_54); -x_56 = lean_ctor_get(x_55, 0); -lean_inc(x_56); -x_57 = lean_ctor_get(x_55, 1); -lean_inc(x_57); -lean_dec(x_55); -x_58 = l_Lean_Server_References_addIlean(x_56, x_37, x_53); -x_59 = lean_st_ref_set(x_2, x_58, x_57); -x_60 = !lean_is_exclusive(x_59); -if (x_60 == 0) -{ -lean_object* x_61; lean_object* x_62; -x_61 = lean_ctor_get(x_59, 0); -lean_dec(x_61); -x_62 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1; -lean_ctor_set(x_59, 0, x_62); -x_12 = x_59; -goto block_29; -} -else -{ -lean_object* x_63; lean_object* x_64; lean_object* x_65; -x_63 = lean_ctor_get(x_59, 1); -lean_inc(x_63); -lean_dec(x_59); -x_64 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1; -x_65 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_65, 0, x_64); -lean_ctor_set(x_65, 1, x_63); -x_12 = x_65; -goto block_29; -} -} -else -{ -lean_object* x_66; -x_66 = lean_ctor_get(x_52, 0); -lean_inc(x_66); -if (lean_obj_tag(x_66) == 11) -{ -lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; uint8_t x_73; -lean_dec(x_66); -x_67 = lean_ctor_get(x_52, 1); -lean_inc(x_67); -lean_dec(x_52); -x_68 = lean_st_ref_take(x_2, x_67); -x_69 = lean_ctor_get(x_68, 0); -lean_inc(x_69); -x_70 = lean_ctor_get(x_68, 1); -lean_inc(x_70); -lean_dec(x_68); -x_71 = l_Lean_Server_References_removeIlean(x_69, x_37); -lean_dec(x_37); -x_72 = lean_st_ref_set(x_2, x_71, x_70); -x_73 = !lean_is_exclusive(x_72); -if (x_73 == 0) -{ -lean_object* x_74; lean_object* x_75; -x_74 = lean_ctor_get(x_72, 0); -lean_dec(x_74); -x_75 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1; -lean_ctor_set(x_72, 0, x_75); -x_12 = x_72; -goto block_29; -} -else -{ -lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_76 = lean_ctor_get(x_72, 1); -lean_inc(x_76); -lean_dec(x_72); -x_77 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1; -x_78 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_78, 0, x_77); -lean_ctor_set(x_78, 1, x_76); -x_12 = x_78; -goto block_29; -} -} -else -{ -uint8_t x_79; -lean_dec(x_37); -x_79 = !lean_is_exclusive(x_52); -if (x_79 == 0) -{ -lean_object* x_80; -x_80 = lean_ctor_get(x_52, 0); -lean_dec(x_80); -x_12 = x_52; -goto block_29; -} -else -{ -lean_object* x_81; lean_object* x_82; -x_81 = lean_ctor_get(x_52, 1); -lean_inc(x_81); -lean_dec(x_52); -x_82 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_82, 0, x_66); -lean_ctor_set(x_82, 1, x_81); -x_12 = x_82; -goto block_29; -} -} -} -} -} -case 1: -{ -uint8_t x_83; -x_83 = l_Array_contains___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__1(x_3, x_37); -if (x_83 == 0) -{ -lean_object* x_84; lean_object* x_85; -lean_dec(x_37); -x_84 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1; -x_85 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_85, 0, x_84); -lean_ctor_set(x_85, 1, x_11); -x_12 = x_85; -goto block_29; -} -else -{ -lean_object* x_86; -x_86 = l_Lean_Server_Ilean_load(x_37, x_11); -if (lean_obj_tag(x_86) == 0) -{ -lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_95; -x_87 = lean_ctor_get(x_86, 0); -lean_inc(x_87); -x_88 = lean_ctor_get(x_86, 1); -lean_inc(x_88); -lean_dec(x_86); -x_89 = lean_st_ref_take(x_2, x_88); -x_90 = lean_ctor_get(x_89, 0); -lean_inc(x_90); -x_91 = lean_ctor_get(x_89, 1); -lean_inc(x_91); -lean_dec(x_89); -x_92 = l_Lean_Server_References_removeIlean(x_90, x_37); -x_93 = l_Lean_Server_References_addIlean(x_92, x_37, x_87); -x_94 = lean_st_ref_set(x_2, x_93, x_91); -x_95 = !lean_is_exclusive(x_94); -if (x_95 == 0) -{ -lean_object* x_96; lean_object* x_97; -x_96 = lean_ctor_get(x_94, 0); -lean_dec(x_96); -x_97 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1; -lean_ctor_set(x_94, 0, x_97); -x_12 = x_94; -goto block_29; -} -else -{ -lean_object* x_98; lean_object* x_99; lean_object* x_100; -x_98 = lean_ctor_get(x_94, 1); -lean_inc(x_98); -lean_dec(x_94); -x_99 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1; -x_100 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_100, 0, x_99); -lean_ctor_set(x_100, 1, x_98); -x_12 = x_100; -goto block_29; -} -} -else -{ -lean_object* x_101; -x_101 = lean_ctor_get(x_86, 0); -lean_inc(x_101); -if (lean_obj_tag(x_101) == 11) -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; uint8_t x_108; -lean_dec(x_101); -x_102 = lean_ctor_get(x_86, 1); -lean_inc(x_102); -lean_dec(x_86); -x_103 = lean_st_ref_take(x_2, x_102); -x_104 = lean_ctor_get(x_103, 0); -lean_inc(x_104); -x_105 = lean_ctor_get(x_103, 1); -lean_inc(x_105); -lean_dec(x_103); -x_106 = l_Lean_Server_References_removeIlean(x_104, x_37); -lean_dec(x_37); -x_107 = lean_st_ref_set(x_2, x_106, x_105); -x_108 = !lean_is_exclusive(x_107); -if (x_108 == 0) -{ -lean_object* x_109; lean_object* x_110; -x_109 = lean_ctor_get(x_107, 0); -lean_dec(x_109); -x_110 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1; -lean_ctor_set(x_107, 0, x_110); -x_12 = x_107; -goto block_29; -} -else -{ -lean_object* x_111; lean_object* x_112; lean_object* x_113; -x_111 = lean_ctor_get(x_107, 1); -lean_inc(x_111); -lean_dec(x_107); -x_112 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1; -x_113 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_113, 0, x_112); -lean_ctor_set(x_113, 1, x_111); -x_12 = x_113; -goto block_29; -} -} -else -{ -uint8_t x_114; -lean_dec(x_37); -x_114 = !lean_is_exclusive(x_86); -if (x_114 == 0) -{ -lean_object* x_115; -x_115 = lean_ctor_get(x_86, 0); -lean_dec(x_115); -x_12 = x_86; -goto block_29; -} -else -{ -lean_object* x_116; lean_object* x_117; -x_116 = lean_ctor_get(x_86, 1); -lean_inc(x_116); -lean_dec(x_86); -x_117 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_117, 0, x_101); -lean_ctor_set(x_117, 1, x_116); -x_12 = x_117; -goto block_29; -} -} -} -} -} -default: -{ -lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; uint8_t x_123; -x_118 = lean_st_ref_take(x_2, x_11); -x_119 = lean_ctor_get(x_118, 0); -lean_inc(x_119); -x_120 = lean_ctor_get(x_118, 1); -lean_inc(x_120); -lean_dec(x_118); -x_121 = l_Lean_Server_References_removeIlean(x_119, x_37); -lean_dec(x_37); -x_122 = lean_st_ref_set(x_2, x_121, x_120); -x_123 = !lean_is_exclusive(x_122); -if (x_123 == 0) -{ -lean_object* x_124; lean_object* x_125; -x_124 = lean_ctor_get(x_122, 0); -lean_dec(x_124); -x_125 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1; -lean_ctor_set(x_122, 0, x_125); -x_12 = x_122; -goto block_29; -} -else -{ -lean_object* x_126; lean_object* x_127; lean_object* x_128; -x_126 = lean_ctor_get(x_122, 1); -lean_inc(x_126); -lean_dec(x_122); -x_127 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1; -x_128 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_128, 0, x_127); -lean_ctor_set(x_128, 1, x_126); -x_12 = x_128; -goto block_29; -} -} -} -} -} -else -{ -lean_object* x_129; lean_object* x_130; lean_object* x_131; -lean_dec(x_41); -lean_dec(x_37); -lean_dec(x_32); -x_129 = lean_ctor_get(x_1, 1); -x_130 = lean_box(0); -x_131 = l_Lean_RBNode_find___at_Lean_Server_Watchdog_ImportData_update___spec__1(x_129, x_33); -if (lean_obj_tag(x_131) == 0) -{ -lean_object* x_132; lean_object* x_133; -x_132 = lean_box(0); +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_8 = lean_ctor_get(x_2, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_2, 1); +lean_inc(x_9); +x_10 = lean_ctor_get(x_2, 3); lean_inc(x_10); -x_133 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__3(x_33, x_130, x_132, x_10, x_11); -if (lean_obj_tag(x_133) == 0) -{ -uint8_t x_134; -x_134 = !lean_is_exclusive(x_133); -if (x_134 == 0) -{ -lean_object* x_135; lean_object* x_136; -x_135 = lean_ctor_get(x_133, 0); -lean_dec(x_135); -x_136 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1; -lean_ctor_set(x_133, 0, x_136); -x_12 = x_133; -goto block_29; -} -else -{ -lean_object* x_137; lean_object* x_138; lean_object* x_139; -x_137 = lean_ctor_get(x_133, 1); -lean_inc(x_137); -lean_dec(x_133); -x_138 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1; -x_139 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_139, 0, x_138); -lean_ctor_set(x_139, 1, x_137); -x_12 = x_139; -goto block_29; -} -} -else -{ -uint8_t x_140; -x_140 = !lean_is_exclusive(x_133); -if (x_140 == 0) -{ -x_12 = x_133; -goto block_29; -} -else -{ -lean_object* x_141; lean_object* x_142; lean_object* x_143; -x_141 = lean_ctor_get(x_133, 0); -x_142 = lean_ctor_get(x_133, 1); -lean_inc(x_142); -lean_inc(x_141); -lean_dec(x_133); -x_143 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_143, 0, x_141); -lean_ctor_set(x_143, 1, x_142); -x_12 = x_143; -goto block_29; -} -} -} -else -{ -lean_object* x_144; lean_object* x_145; lean_object* x_146; -x_144 = lean_ctor_get(x_131, 0); -lean_inc(x_144); -lean_dec(x_131); -x_145 = lean_box(0); -lean_inc(x_10); -x_146 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__4(x_33, x_144, x_145, x_10, x_11); -if (lean_obj_tag(x_146) == 0) -{ -uint8_t x_147; -x_147 = !lean_is_exclusive(x_146); -if (x_147 == 0) -{ -lean_object* x_148; lean_object* x_149; -x_148 = lean_ctor_get(x_146, 0); -lean_dec(x_148); -x_149 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1; -lean_ctor_set(x_146, 0, x_149); -x_12 = x_146; -goto block_29; -} -else -{ -lean_object* x_150; lean_object* x_151; lean_object* x_152; -x_150 = lean_ctor_get(x_146, 1); -lean_inc(x_150); -lean_dec(x_146); -x_151 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1; -x_152 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_152, 0, x_151); -lean_ctor_set(x_152, 1, x_150); -x_12 = x_152; -goto block_29; -} -} -else -{ -uint8_t x_153; -x_153 = !lean_is_exclusive(x_146); -if (x_153 == 0) -{ -x_12 = x_146; -goto block_29; -} -else -{ -lean_object* x_154; lean_object* x_155; lean_object* x_156; -x_154 = lean_ctor_get(x_146, 0); -x_155 = lean_ctor_get(x_146, 1); -lean_inc(x_155); -lean_inc(x_154); -lean_dec(x_146); -x_156 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_156, 0, x_154); -lean_ctor_set(x_156, 1, x_155); -x_12 = x_156; -goto block_29; -} -} -} -} -} -} -} -block_29: +lean_dec(x_2); +lean_inc(x_4); +lean_inc(x_1); +x_11 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__5(x_1, x_8, x_3, x_4, x_5); +if (lean_obj_tag(x_11) == 0) { +lean_object* x_12; +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); if (lean_obj_tag(x_12) == 0) { -lean_object* x_13; -x_13 = lean_ctor_get(x_12, 0); -lean_inc(x_13); -if (lean_obj_tag(x_13) == 0) -{ -uint8_t x_14; +uint8_t x_13; lean_dec(x_10); -x_14 = !lean_is_exclusive(x_12); -if (x_14 == 0) +lean_dec(x_9); +lean_dec(x_4); +lean_dec(x_1); +x_13 = !lean_is_exclusive(x_11); +if (x_13 == 0) +{ +lean_object* x_14; +x_14 = lean_ctor_get(x_11, 0); +lean_dec(x_14); +return x_11; +} +else { lean_object* x_15; lean_object* x_16; -x_15 = lean_ctor_get(x_12, 0); -lean_dec(x_15); -x_16 = lean_ctor_get(x_13, 0); -lean_inc(x_16); -lean_dec(x_13); -lean_ctor_set(x_12, 0, x_16); -return x_12; +x_15 = lean_ctor_get(x_11, 1); +lean_inc(x_15); +lean_dec(x_11); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_12); +lean_ctor_set(x_16, 1, x_15); +return x_16; +} } else { -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_ctor_get(x_12, 1); +lean_object* x_17; lean_object* x_18; +lean_dec(x_12); +x_17 = lean_ctor_get(x_11, 1); lean_inc(x_17); -lean_dec(x_12); -x_18 = lean_ctor_get(x_13, 0); -lean_inc(x_18); -lean_dec(x_13); -x_19 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_19, 0, x_18); -lean_ctor_set(x_19, 1, x_17); -return x_19; -} -} -else +lean_dec(x_11); +lean_inc(x_4); +lean_inc(x_1); +x_18 = l_Lean_Server_Watchdog_notifyAboutStaleDependency(x_9, x_1, x_4, x_17); +if (lean_obj_tag(x_18) == 0) { -lean_object* x_20; lean_object* x_21; size_t x_22; size_t x_23; -x_20 = lean_ctor_get(x_12, 1); -lean_inc(x_20); -lean_dec(x_12); -x_21 = lean_ctor_get(x_13, 0); -lean_inc(x_21); -lean_dec(x_13); -x_22 = 1; -x_23 = lean_usize_add(x_8, x_22); -x_8 = x_23; -x_9 = x_21; -x_11 = x_20; +lean_object* x_19; lean_object* x_20; +x_19 = lean_ctor_get(x_18, 1); +lean_inc(x_19); +lean_dec(x_18); +x_20 = lean_box(0); +x_2 = x_10; +x_3 = x_20; +x_5 = x_19; goto _start; } -} else { -uint8_t x_25; -lean_dec(x_10); -x_25 = !lean_is_exclusive(x_12); -if (x_25 == 0) -{ -return x_12; -} -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_26 = lean_ctor_get(x_12, 0); -x_27 = lean_ctor_get(x_12, 1); -lean_inc(x_27); -lean_inc(x_26); -lean_dec(x_12); -x_28 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_28, 0, x_26); -lean_ctor_set(x_28, 1, x_27); -return x_28; -} -} -} -} -} -static lean_object* _init_l_Lean_Server_Watchdog_handleDidChangeWatchedFiles___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_searchPathRef; -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleDidChangeWatchedFiles(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_4 = lean_ctor_get(x_2, 10); -lean_inc(x_4); -x_5 = lean_st_ref_get(x_4, x_3); -lean_dec(x_4); -x_6 = lean_ctor_get(x_5, 0); -lean_inc(x_6); -x_7 = lean_ctor_get(x_5, 1); -lean_inc(x_7); -lean_dec(x_5); -x_8 = lean_ctor_get(x_2, 8); -lean_inc(x_8); -x_9 = l_Lean_Server_Watchdog_handleDidChangeWatchedFiles___closed__1; -x_10 = lean_st_ref_get(x_9, x_7); -x_11 = lean_ctor_get(x_10, 0); -lean_inc(x_11); -x_12 = lean_ctor_get(x_10, 1); -lean_inc(x_12); -lean_dec(x_10); -x_13 = l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__5___closed__1; -x_14 = l_Lean_SearchPath_findAllWithExt(x_11, x_13, x_12); -if (lean_obj_tag(x_14) == 0) -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; size_t x_18; size_t x_19; lean_object* x_20; lean_object* x_21; -x_15 = lean_ctor_get(x_14, 0); -lean_inc(x_15); -x_16 = lean_ctor_get(x_14, 1); -lean_inc(x_16); -lean_dec(x_14); -x_17 = lean_box(0); -x_18 = lean_array_size(x_1); -x_19 = 0; -x_20 = lean_box(0); -x_21 = l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__5(x_6, x_8, x_15, x_1, x_17, x_1, x_18, x_19, x_20, x_2, x_16); -lean_dec(x_15); -lean_dec(x_8); -lean_dec(x_6); -if (lean_obj_tag(x_21) == 0) -{ uint8_t x_22; -x_22 = !lean_is_exclusive(x_21); +lean_dec(x_10); +lean_dec(x_4); +lean_dec(x_1); +x_22 = !lean_is_exclusive(x_18); if (x_22 == 0) { -lean_object* x_23; -x_23 = lean_ctor_get(x_21, 0); -lean_dec(x_23); -lean_ctor_set(x_21, 0, x_20); -return x_21; +return x_18; } else { -lean_object* x_24; lean_object* x_25; -x_24 = lean_ctor_get(x_21, 1); +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_18, 0); +x_24 = lean_ctor_get(x_18, 1); lean_inc(x_24); -lean_dec(x_21); -x_25 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_25, 0, x_20); +lean_inc(x_23); +lean_dec(x_18); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); lean_ctor_set(x_25, 1, x_24); return x_25; } } +} +} else { uint8_t x_26; -x_26 = !lean_is_exclusive(x_21); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_4); +lean_dec(x_1); +x_26 = !lean_is_exclusive(x_11); if (x_26 == 0) { -return x_21; +return x_11; } else { lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_27 = lean_ctor_get(x_21, 0); -x_28 = lean_ctor_get(x_21, 1); +x_27 = lean_ctor_get(x_11, 0); +x_28 = lean_ctor_get(x_11, 1); lean_inc(x_28); lean_inc(x_27); -lean_dec(x_21); +lean_dec(x_11); x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_27); lean_ctor_set(x_29, 1, x_28); @@ -33473,75 +33184,585 @@ return x_29; } } } -else +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: { -uint8_t x_30; +uint8_t x_10; +x_10 = lean_usize_dec_lt(x_6, x_5); +if (x_10 == 0) +{ +lean_object* x_11; lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_2); -x_30 = !lean_is_exclusive(x_14); -if (x_30 == 0) -{ -return x_14; +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_7); +lean_ctor_set(x_11, 1, x_9); +return x_11; } else { -lean_object* x_31; lean_object* x_32; lean_object* x_33; -x_31 = lean_ctor_get(x_14, 0); -x_32 = lean_ctor_get(x_14, 1); -lean_inc(x_32); +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +lean_dec(x_7); +x_12 = lean_array_uget(x_4, x_6); +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +lean_dec(x_12); +x_14 = lean_ctor_get(x_2, 1); +x_15 = lean_ctor_get(x_13, 0); +lean_inc(x_15); +lean_dec(x_13); +x_16 = lean_box(0); +x_17 = l_Lean_RBNode_find___at_Lean_Server_Watchdog_ImportData_update___spec__1(x_14, x_15); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_box(0); +lean_inc(x_8); +x_19 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__4(x_15, x_16, x_18, x_8, x_9); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; size_t x_21; size_t x_22; +x_20 = lean_ctor_get(x_19, 1); +lean_inc(x_20); +lean_dec(x_19); +x_21 = 1; +x_22 = lean_usize_add(x_6, x_21); +x_6 = x_22; +x_7 = x_18; +x_9 = x_20; +goto _start; +} +else +{ +uint8_t x_24; +lean_dec(x_8); +x_24 = !lean_is_exclusive(x_19); +if (x_24 == 0) +{ +return x_19; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_19, 0); +x_26 = lean_ctor_get(x_19, 1); +lean_inc(x_26); +lean_inc(x_25); +lean_dec(x_19); +x_27 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_27, 0, x_25); +lean_ctor_set(x_27, 1, x_26); +return x_27; +} +} +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_17, 0); +lean_inc(x_28); +lean_dec(x_17); +x_29 = lean_box(0); +lean_inc(x_8); +x_30 = l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__5(x_15, x_28, x_29, x_8, x_9); +if (lean_obj_tag(x_30) == 0) +{ +lean_object* x_31; size_t x_32; size_t x_33; +x_31 = lean_ctor_get(x_30, 1); lean_inc(x_31); -lean_dec(x_14); -x_33 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_33, 0, x_31); -lean_ctor_set(x_33, 1, x_32); -return x_33; +lean_dec(x_30); +x_32 = 1; +x_33 = lean_usize_add(x_6, x_32); +x_6 = x_33; +x_7 = x_29; +x_9 = x_31; +goto _start; +} +else +{ +uint8_t x_35; +lean_dec(x_8); +x_35 = !lean_is_exclusive(x_30); +if (x_35 == 0) +{ +return x_30; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_36 = lean_ctor_get(x_30, 0); +x_37 = lean_ctor_get(x_30, 1); +lean_inc(x_37); +lean_inc(x_36); +lean_dec(x_30); +x_38 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_37); +return x_38; } } } } -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +} +} +static lean_object* _init_l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__7___closed__1() { _start: { -size_t x_5; size_t x_6; uint8_t x_7; lean_object* x_8; -x_5 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_6 = lean_unbox_usize(x_4); -lean_dec(x_4); -x_7 = l_Array_anyMUnsafe_any___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__2(x_1, x_2, x_5, x_6); -lean_dec(x_2); -lean_dec(x_1); -x_8 = lean_box(x_7); -return x_8; +lean_object* x_1; +x_1 = lean_mk_string_unchecked("ilean", 5, 5); +return x_1; } } -LEAN_EXPORT lean_object* l_Array_contains___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__7___closed__2() { _start: { -uint8_t x_3; lean_object* x_4; -x_3 = l_Array_contains___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__1(x_1, x_2); -lean_dec(x_2); -lean_dec(x_1); -x_4 = lean_box(x_3); +lean_object* x_1; lean_object* x_2; +x_1 = l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__7___closed__1; +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__7(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; +x_5 = lean_usize_dec_eq(x_2, x_3); +if (x_5 == 0) +{ +lean_object* x_6; size_t x_7; size_t x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_6 = lean_array_uget(x_1, x_2); +x_7 = 1; +x_8 = lean_usize_add(x_2, x_7); +x_9 = lean_ctor_get(x_6, 1); +lean_inc(x_9); +x_10 = l_System_FilePath_extension(x_9); +x_11 = l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__7___closed__2; +x_12 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_159____at___private_Lean_Data_Lsp_LanguageFeatures_0__Lean_Lsp_beqCompletionItem____x40_Lean_Data_Lsp_LanguageFeatures___hyg_2489____spec__1(x_10, x_11); +lean_dec(x_10); +if (x_12 == 0) +{ +lean_dec(x_6); +x_2 = x_8; +goto _start; +} +else +{ +lean_object* x_14; +x_14 = lean_array_push(x_4, x_6); +x_2 = x_8; +x_4 = x_14; +goto _start; +} +} +else +{ return x_4; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +} +static lean_object* _init_l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__8___closed__1() { _start: { -size_t x_12; size_t x_13; lean_object* x_14; -x_12 = lean_unbox_usize(x_7); -lean_dec(x_7); -x_13 = lean_unbox_usize(x_8); -lean_dec(x_8); -x_14 = l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_12, x_13, x_9, x_10, x_11); +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Server_Watchdog_startFileWorker___closed__8; +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__8(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; +x_5 = lean_usize_dec_eq(x_2, x_3); +if (x_5 == 0) +{ +lean_object* x_6; size_t x_7; size_t x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_6 = lean_array_uget(x_1, x_2); +x_7 = 1; +x_8 = lean_usize_add(x_2, x_7); +x_9 = lean_ctor_get(x_6, 1); +lean_inc(x_9); +x_10 = l_System_FilePath_extension(x_9); +x_11 = l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__8___closed__1; +x_12 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_159____at___private_Lean_Data_Lsp_LanguageFeatures_0__Lean_Lsp_beqCompletionItem____x40_Lean_Data_Lsp_LanguageFeatures___hyg_2489____spec__1(x_10, x_11); +lean_dec(x_10); +if (x_12 == 0) +{ lean_dec(x_6); +x_2 = x_8; +goto _start; +} +else +{ +lean_object* x_14; +x_14 = lean_array_push(x_4, x_6); +x_2 = x_8; +x_4 = x_14; +goto _start; +} +} +else +{ +return x_4; +} +} +} +static lean_object* _init_l_Lean_Server_Watchdog_handleDidChangeWatchedFiles___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_searchPathRef; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleDidChangeWatchedFiles___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; +x_5 = l_Array_isEmpty___rarg(x_1); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; size_t x_12; size_t x_13; lean_object* x_14; lean_object* x_15; +x_6 = lean_ctor_get(x_3, 8); +x_7 = l_Lean_Server_Watchdog_handleDidChangeWatchedFiles___lambda__1___closed__1; +x_8 = lean_st_ref_get(x_7, x_4); +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = lean_box(0); +x_12 = lean_array_size(x_1); +x_13 = 0; +x_14 = lean_box(0); +x_15 = l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__3(x_1, x_6, x_9, x_11, x_1, x_12, x_13, x_14, x_3, x_10); +if (lean_obj_tag(x_15) == 0) +{ +uint8_t x_16; +x_16 = !lean_is_exclusive(x_15); +if (x_16 == 0) +{ +lean_object* x_17; +x_17 = lean_ctor_get(x_15, 0); +lean_dec(x_17); +lean_ctor_set(x_15, 0, x_14); +return x_15; +} +else +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_15, 1); +lean_inc(x_18); +lean_dec(x_15); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_14); +lean_ctor_set(x_19, 1, x_18); +return x_19; +} +} +else +{ +uint8_t x_20; +x_20 = !lean_is_exclusive(x_15); +if (x_20 == 0) +{ +return x_15; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_15, 0); +x_22 = lean_ctor_get(x_15, 1); +lean_inc(x_22); +lean_inc(x_21); +lean_dec(x_15); +x_23 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_23, 0, x_21); +lean_ctor_set(x_23, 1, x_22); +return x_23; +} +} +} +else +{ +lean_object* x_24; lean_object* x_25; +x_24 = lean_box(0); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_4); +return x_25; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleDidChangeWatchedFiles(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; lean_object* x_9; +x_4 = lean_array_get_size(x_1); +x_5 = lean_unsigned_to_nat(0u); +x_6 = l_Array_filterMapM___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__1(x_1, x_5, x_4); +lean_dec(x_4); +x_7 = lean_array_get_size(x_6); +x_8 = lean_nat_dec_lt(x_5, x_7); +if (x_8 == 0) +{ +lean_object* x_38; +x_38 = l_Lean_Server_Watchdog_FileWorker_queuedMsgs___closed__1; +x_9 = x_38; +goto block_37; +} +else +{ +uint8_t x_39; +x_39 = lean_nat_dec_le(x_7, x_7); +if (x_39 == 0) +{ +lean_object* x_40; +x_40 = l_Lean_Server_Watchdog_FileWorker_queuedMsgs___closed__1; +x_9 = x_40; +goto block_37; +} +else +{ +size_t x_41; size_t x_42; lean_object* x_43; lean_object* x_44; +x_41 = 0; +x_42 = lean_usize_of_nat(x_7); +x_43 = l_Lean_Server_Watchdog_FileWorker_queuedMsgs___closed__1; +x_44 = l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__8(x_6, x_41, x_42, x_43); +x_9 = x_44; +goto block_37; +} +} +block_37: +{ +uint8_t x_10; lean_object* x_11; +x_10 = l_Array_isEmpty___rarg(x_9); +if (x_8 == 0) +{ +lean_object* x_30; +lean_dec(x_7); +lean_dec(x_6); +x_30 = l_Lean_Server_Watchdog_FileWorker_queuedMsgs___closed__1; +x_11 = x_30; +goto block_29; +} +else +{ +uint8_t x_31; +x_31 = lean_nat_dec_le(x_7, x_7); +if (x_31 == 0) +{ +lean_object* x_32; +lean_dec(x_7); +lean_dec(x_6); +x_32 = l_Lean_Server_Watchdog_FileWorker_queuedMsgs___closed__1; +x_11 = x_32; +goto block_29; +} +else +{ +size_t x_33; size_t x_34; lean_object* x_35; lean_object* x_36; +x_33 = 0; +x_34 = lean_usize_of_nat(x_7); +lean_dec(x_7); +x_35 = l_Lean_Server_Watchdog_FileWorker_queuedMsgs___closed__1; +x_36 = l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__7(x_6, x_33, x_34, x_35); +lean_dec(x_6); +x_11 = x_36; +goto block_29; +} +} +block_29: +{ +if (x_10 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; size_t x_17; size_t x_18; lean_object* x_19; lean_object* x_20; +x_12 = lean_ctor_get(x_2, 10); +lean_inc(x_12); +x_13 = lean_st_ref_get(x_12, x_3); +lean_dec(x_12); +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_13, 1); +lean_inc(x_15); +lean_dec(x_13); +x_16 = lean_box(0); +x_17 = lean_array_size(x_9); +x_18 = 0; +x_19 = lean_box(0); +lean_inc(x_2); +x_20 = l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__6(x_9, x_14, x_16, x_9, x_17, x_18, x_19, x_2, x_15); +lean_dec(x_14); +lean_dec(x_9); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; lean_object* x_22; +x_21 = lean_ctor_get(x_20, 1); +lean_inc(x_21); +lean_dec(x_20); +x_22 = l_Lean_Server_Watchdog_handleDidChangeWatchedFiles___lambda__1(x_11, x_19, x_2, x_21); +lean_dec(x_2); +lean_dec(x_11); +return x_22; +} +else +{ +uint8_t x_23; +lean_dec(x_11); +lean_dec(x_2); +x_23 = !lean_is_exclusive(x_20); +if (x_23 == 0) +{ +return x_20; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_20, 0); +x_25 = lean_ctor_get(x_20, 1); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_20); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; +} +} +} +else +{ +lean_object* x_27; lean_object* x_28; +lean_dec(x_9); +x_27 = lean_box(0); +x_28 = l_Lean_Server_Watchdog_handleDidChangeWatchedFiles___lambda__1(x_11, x_27, x_2, x_3); +lean_dec(x_2); +lean_dec(x_11); +return x_28; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +size_t x_5; size_t x_6; lean_object* x_7; +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_7 = l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__2(x_1, x_5, x_6, x_4); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Array_filterMapM___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Array_filterMapM___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__1(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__3___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__3___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__3___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +size_t x_11; size_t x_12; lean_object* x_13; +x_11 = lean_unbox_usize(x_6); +lean_dec(x_6); +x_12 = lean_unbox_usize(x_7); +lean_dec(x_7); +x_13 = l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__3(x_1, x_2, x_3, x_4, x_5, x_11, x_12, x_8, x_9, x_10); +lean_dec(x_9); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); lean_dec(x_1); -return x_14; +return x_13; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +size_t x_10; size_t x_11; lean_object* x_12; +x_10 = lean_unbox_usize(x_5); +lean_dec(x_5); +x_11 = lean_unbox_usize(x_6); +lean_dec(x_6); +x_12 = l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__6(x_1, x_2, x_3, x_4, x_10, x_11, x_7, x_8, x_9); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +size_t x_5; size_t x_6; lean_object* x_7; +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_7 = l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__7(x_1, x_5, x_6, x_4); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +size_t x_5; size_t x_6; lean_object* x_7; +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_7 = l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__8(x_1, x_5, x_6, x_4); +lean_dec(x_1); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleDidChangeWatchedFiles___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_Server_Watchdog_handleDidChangeWatchedFiles___lambda__1(x_1, x_2, x_3, x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_5; } } LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleDidChangeWatchedFiles___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { @@ -45835,7 +46056,7 @@ LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_startLoadingReferences___lambda_ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; -x_2 = l_Lean_Server_Watchdog_handleDidChangeWatchedFiles___closed__1; +x_2 = l_Lean_Server_Watchdog_handleDidChangeWatchedFiles___lambda__1___closed__1; x_3 = lean_st_ref_get(x_2, x_1); x_4 = !lean_is_exclusive(x_3); if (x_4 == 0) @@ -45861,7 +46082,7 @@ LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_startLoadingReferences___lambda_ _start: { lean_object* x_4; lean_object* x_5; -x_4 = l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__5___closed__1; +x_4 = l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__7___closed__1; x_5 = l_Lean_SearchPath_findAllWithExt(x_2, x_4, x_3); if (lean_obj_tag(x_5) == 0) { @@ -52988,10 +53209,14 @@ l_Lean_Server_Watchdog_handleDidChange___lambda__1___closed__2 = _init_l_Lean_Se lean_mark_persistent(l_Lean_Server_Watchdog_handleDidChange___lambda__1___closed__2); l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1 = _init_l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1(); lean_mark_persistent(l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleDidSave___spec__2___lambda__1___closed__1); -l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__5___closed__1 = _init_l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__5___closed__1(); -lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__5___closed__1); -l_Lean_Server_Watchdog_handleDidChangeWatchedFiles___closed__1 = _init_l_Lean_Server_Watchdog_handleDidChangeWatchedFiles___closed__1(); -lean_mark_persistent(l_Lean_Server_Watchdog_handleDidChangeWatchedFiles___closed__1); +l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__7___closed__1 = _init_l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__7___closed__1(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__7___closed__1); +l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__7___closed__2 = _init_l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__7___closed__2(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__7___closed__2); +l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__8___closed__1 = _init_l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__8___closed__1(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__8___closed__1); +l_Lean_Server_Watchdog_handleDidChangeWatchedFiles___lambda__1___closed__1 = _init_l_Lean_Server_Watchdog_handleDidChangeWatchedFiles___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Server_Watchdog_handleDidChangeWatchedFiles___lambda__1___closed__1); l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleCancelRequest___spec__3___closed__1 = _init_l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleCancelRequest___spec__3___closed__1(); lean_mark_persistent(l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleCancelRequest___spec__3___closed__1); l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleCancelRequest___spec__3___closed__2 = _init_l_Lean_RBNode_forIn_visit___at_Lean_Server_Watchdog_handleCancelRequest___spec__3___closed__2(); diff --git a/stage0/stdlib/Lean/Util/Trace.c b/stage0/stdlib/Lean/Util/Trace.c index 734239fafb..f34d04e9a2 100644 --- a/stage0/stdlib/Lean/Util/Trace.c +++ b/stage0/stdlib/Lean/Util/Trace.c @@ -14,7 +14,6 @@ extern "C" { #endif LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_addTraceAsMessages___spec__9___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__14; LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withStartStop___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_exceptOptionEmoji___rarg___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -25,26 +24,26 @@ static lean_object* l___private_Lean_Util_Trace_0__Lean_withStartStop___rarg___c LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at_Lean_addTraceAsMessages___spec__5___at_Lean_addTraceAsMessages___spec__6(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Util_Trace___hyg_1644_(lean_object*); lean_object* lean_format_pretty(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__10; LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Util_Trace___hyg_75_(lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_addTraceAsMessages___spec__11___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__1; LEAN_EXPORT lean_object* l_Lean_addTraceAsMessages___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_instMonadAlwaysExceptEIO___closed__1; lean_object* l_Lean_Syntax_mkNameLit(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_printTraces___spec__3___rarg___lambda__2(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_doElemTrace_x5b___x5d_______closed__22; +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__23; LEAN_EXPORT lean_object* l_Lean_addTrace___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__3___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__20; static lean_object* l_Lean_resetTraceState___rarg___lambda__1___closed__2; lean_object* l_IO_getNumHeartbeats___boxed(lean_object*); lean_object* l_instBEqOfDecidableEq___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__28; -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__7; -extern lean_object* l_Lean_profiler; LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___rarg___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__21; static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___closed__6; LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__6(lean_object*, lean_object*); @@ -54,12 +53,11 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_addTraceAsMessag static lean_object* l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276____closed__4; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_printTraces___spec__6___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_withTraceNode_x27___rarg___closed__1; -LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*); LEAN_EXPORT lean_object* l_Lean_exceptOptionEmoji(lean_object*, lean_object*); static lean_object* l_Lean_addTraceAsMessages___rarg___lambda__2___closed__4; LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__17; LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); static lean_object* l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276____closed__5; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_addTraceAsMessages___spec__11___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -71,15 +69,17 @@ static lean_object* l_Lean_initFn____x40_Lean_Util_Trace___hyg_1552____closed__1 static lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___rarg___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__10(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__27; static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__33; LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_instExceptToEmojiOption(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Util_Trace___hyg_1552_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__5(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*); double lean_float_div(double, double); lean_object* l_Lean_Elab_mkMessageCore(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at_Lean_addTraceAsMessages___spec__2___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__7; static lean_object* l___private_Lean_Util_Trace_0__Lean_withStartStop___rarg___closed__3; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_addTraceAsMessages___spec__15___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); uint64_t lean_uint64_of_nat(lean_object*); @@ -104,27 +104,28 @@ LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__8(lean_obje static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__44; lean_object* l_Lean_Syntax_getId(lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__8; +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__6; static lean_object* l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276____closed__1; +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__2; lean_object* l_Lean_PersistentArray_push___rarg(lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_printTraces___spec__5___rarg___lambda__2(lean_object*, lean_object*); -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__9; lean_object* l_Array_qpartition___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___rarg___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_addTraceAsMessages___spec__15___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__25; static lean_object* l_Lean_registerTraceClass___closed__1; lean_object* lean_mk_array(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_addTraceAsMessages___spec__12(lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__7(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__7(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__22; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_addTraceAsMessages___spec__12___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_initFn____x40_Lean_Util_Trace___hyg_1644____closed__2; -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__26; LEAN_EXPORT lean_object* l_Lean_doElemTrace_x5b___x5d____; LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_initFn____x40_Lean_Util_Trace___hyg_1552____closed__3; +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__19; LEAN_EXPORT lean_object* l_Lean_getTraces(lean_object*); LEAN_EXPORT lean_object* l_Lean_addTraceAsMessages___rarg___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__22; @@ -137,18 +138,18 @@ LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Util_Trace___hyg_1460_(lean_o LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_withTraceNode_x27___spec__3(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instMonadAlwaysExceptMonadCacheT(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__20; lean_object* l_Lean_Syntax_getPos_x3f(lean_object*, uint8_t); lean_object* lean_array_fget(lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__25; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_printTraces___spec__6___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__9; static lean_object* l_Lean_addTraceAsMessages___rarg___lambda__2___closed__2; lean_object* l_Lean_Syntax_getTailPos_x3f(lean_object*, uint8_t); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__41; static lean_object* l_Lean_doElemTrace_x5b___x5d_______closed__9; LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__6___boxed(lean_object*, lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__5; -LEAN_EXPORT lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018_; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_printTraces___spec__5(lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__5___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_setTraceState___rarg(lean_object*, lean_object*); @@ -176,7 +177,7 @@ lean_object* l_Lean_Name_mkStr5(lean_object*, lean_object*, lean_object*, lean_o LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_printTraces___spec__3(lean_object*); size_t lean_usize_of_nat(lean_object*); lean_object* l_Nat_nextPowerOfTwo_go(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_instInhabitedTraceState___closed__4; +static size_t l_Lean_instInhabitedTraceState___closed__4; static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___closed__5; LEAN_EXPORT lean_object* l_Lean_trace_profiler_useHeartbeats; LEAN_EXPORT lean_object* l_Lean_addRawTrace(lean_object*); @@ -190,7 +191,6 @@ LEAN_EXPORT lean_object* l_Lean_instInhabitedTraceState; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_addTraceAsMessages___spec__12___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_addTraceAsMessages___spec__15___rarg___closed__3; LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_addTraceAsMessages___spec__14___lambda__1___boxed(lean_object*, lean_object*); -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__23; lean_object* l_Lean_Option_register___at_Lean_initFn____x40_Lean_Util_Profile___hyg_40____spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Exception_toMessageData(lean_object*); lean_object* l_instBEqProd___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -208,7 +208,7 @@ static lean_object* l_Lean_initFn____x40_Lean_Util_Trace___hyg_1368____closed__5 LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__3___boxed(lean_object**); static lean_object* l_Lean_instInhabitedTraceElem___closed__1; LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_addTraceAsMessages___spec__8(lean_object*); -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__1; +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__16; static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__36; LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_withTraceNode_x27___spec__3___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__2; @@ -216,6 +216,7 @@ LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__13___boxed(lean_o LEAN_EXPORT lean_object* l_Lean_resetTraceState(lean_object*); static lean_object* l_Lean_instInhabitedTraceState___closed__2; static lean_object* l_Lean_initFn____x40_Lean_Util_Trace___hyg_1552____closed__5; +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__13; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Util_Trace_0__Lean_addTraceNode___spec__1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_instExceptToEmojiOption___closed__1; lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); @@ -230,6 +231,7 @@ static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doEle static lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOption___closed__2; static lean_object* l_Lean_bombEmoji___closed__1; size_t lean_usize_of_nat(lean_object*); +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__26; static lean_object* l_Lean_withTraceNode___rarg___lambda__12___closed__1; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_addTraceAsMessages___spec__12___rarg___lambda__1(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_printTraces___spec__2___rarg___lambda__2(lean_object*, lean_object*, lean_object*); @@ -237,7 +239,7 @@ static lean_object* l_Lean_initFn____x40_Lean_Util_Trace___hyg_1368____closed__1 LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_printTraces___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__5(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__5(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand_go___at_Lean_addTraceAsMessages___spec__4(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__11___boxed(lean_object**); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__29; @@ -254,6 +256,7 @@ LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__11(lean_object*, LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_withTraceNodeBefore___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__3; static lean_object* l_Lean_resetTraceState___rarg___closed__1; +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__20; LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_withTraceNode___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_resetTraceState___rarg___lambda__1___closed__3; LEAN_EXPORT lean_object* l_Lean_setTraceState___rarg___lambda__1___boxed(lean_object*, lean_object*); @@ -270,6 +273,8 @@ uint64_t lean_uint64_shift_right(uint64_t, uint64_t); lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); static lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__3___closed__1; static lean_object* l_Lean_initFn____x40_Lean_Util_Trace___hyg_1460____closed__1; +uint64_t lean_uint64_of_nat(lean_object*); +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__5; lean_object* l_Lean_Syntax_node6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_div(lean_object*, lean_object*); static lean_object* l_Array_qsort_sort___at_Lean_addTraceAsMessages___spec__14___closed__1; @@ -280,7 +285,7 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_printTraces___sp LEAN_EXPORT lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*, lean_object*); static lean_object* l_Lean_initFn____x40_Lean_Util_Trace___hyg_75____closed__3; static lean_object* l_Lean_initFn____x40_Lean_Util_Trace___hyg_1644____closed__3; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withStartStop___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___closed__10; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_addTraceAsMessages___spec__15___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -292,14 +297,14 @@ LEAN_EXPORT lean_object* l_Lean_resetTraceState___rarg___lambda__1___boxed(lean_ lean_object* l_Lean_MessageData_ofFormat(lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_addTraceAsMessages___spec__15___rarg___closed__2; lean_object* l_Lean_PersistentArray_append___rarg(lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__12; static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___closed__14; static lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__3___closed__2; LEAN_EXPORT lean_object* l_Lean_printTraces(lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__10; -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__13; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_printTraces___spec__6___rarg___lambda__2(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_setTraceState___rarg___lambda__1(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__5(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__5(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*); LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276_(lean_object*); LEAN_EXPORT lean_object* l_Lean_addTraceAsMessages___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_traceM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -322,12 +327,12 @@ lean_object* lean_st_mk_ref(lean_object*, lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__4___boxed(lean_object**); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_withTraceNodeBefore___spec__1(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__8(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__8(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_printTraces___rarg___lambda__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_to_list(lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Util_Trace_0__Lean_checkTraceOption_go(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__7(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__7(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__47; lean_object* l_Lean_Syntax_node3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__50; @@ -336,9 +341,9 @@ LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__9(lean_object*, l LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_addTraceAsMessages___spec__11___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__51; static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___closed__2; -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__2; LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__15; LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at_Lean_addTraceAsMessages___spec__2(lean_object*, lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__13; LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor(lean_object*); @@ -349,14 +354,12 @@ static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doEle LEAN_EXPORT lean_object* l_Lean_instInhabitedTraceElem; static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__11; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_withTraceNode___rarg___lambda__5___closed__1; LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_printTraces___spec__4___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__24; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_addTraceAsMessages___spec__15(lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_printTraces___spec__6(lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__11; lean_object* l_IO_print___at_IO_println___spec__1(lean_object*, lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_getD___at_Lean_addTraceAsMessages___spec__1___boxed(lean_object*, lean_object*, lean_object*); @@ -364,13 +367,11 @@ lean_object* l_instHashableProd___rarg___boxed(lean_object*, lean_object*, lean_ LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__9___boxed(lean_object**); uint8_t lean_name_eq(lean_object*, lean_object*); -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__16; lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_printTraces___spec__5___rarg___lambda__2___closed__1; LEAN_EXPORT lean_object* l_IO_println___at_Lean_printTraces___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__46; -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__19; lean_object* l_Lean_Syntax_node2(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_addTraceAsMessages___spec__9(lean_object*); @@ -382,11 +383,11 @@ lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__27; static lean_object* l_Lean_instExceptToEmojiBool___closed__1; LEAN_EXPORT lean_object* l_Lean_withTraceNode_x27___rarg___lambda__2(lean_object*); -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__27; static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__9; static lean_object* l_Lean_doElemTrace_x5b___x5d_______closed__8; LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_addTraceAsMessages___spec__15___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__11; static lean_object* l_Lean_initFn____x40_Lean_Util_Trace___hyg_1552____closed__4; LEAN_EXPORT lean_object* l_Lean_traceM___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__25; @@ -398,7 +399,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___rarg static lean_object* l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276____closed__3; static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__6; static lean_object* l_Lean_addTrace___rarg___lambda__1___closed__2; -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__8; LEAN_EXPORT uint8_t l_Array_qsort_sort___at_Lean_addTraceAsMessages___spec__14___lambda__1(lean_object*, lean_object*); lean_object* lean_register_option(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instMonadAlwaysExceptMonadCacheT___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -420,10 +420,11 @@ double l_Float_ofScientific(lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_crossEmoji; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_printTraces___spec__4___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_instInhabitedTraceState___closed__6; static lean_object* l___private_Lean_Util_Trace_0__Lean_withStartStop___rarg___closed__1; static lean_object* l_Lean_doElemTrace_x5b___x5d_______closed__21; static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__4; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__5___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_registerTraceClass___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instMonadTraceOfMonadLift___rarg___lambda__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_doElemTrace_x5b___x5d_______closed__18; @@ -437,12 +438,13 @@ LEAN_EXPORT lean_object* l_Lean_exceptEmoji___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_addTraceAsMessages___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_addTrace___rarg___lambda__1___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__4; LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_addTraceAsMessages___spec__8___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__6; LEAN_EXPORT lean_object* l_Lean_printTraces___rarg___lambda__1___boxed(lean_object*, lean_object*); static lean_object* l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276____closed__2; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___closed__11; +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__17; LEAN_EXPORT lean_object* l_Lean_getTraces___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode_x27___rarg___lambda__2___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore(lean_object*, lean_object*); @@ -454,7 +456,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___ra static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___closed__9; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_printTraces___spec__5___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__32; -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__10; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instMonadAlwaysExceptEIO(lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__7___boxed(lean_object**); @@ -467,17 +468,17 @@ static lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOption___close LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at_Lean_addTraceAsMessages___spec__7(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_addTraceAsMessages___rarg___lambda__5___closed__1; -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__12; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instMonadAlwaysExceptStateT___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_withTraceNodeBefore___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__18; static lean_object* l_Lean_doElemTrace_x5b___x5d_______closed__14; +LEAN_EXPORT lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014_; LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_withStartStop___rarg___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__6___boxed(lean_object**); -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__22; static lean_object* l_Lean_doElemTrace_x5b___x5d_______closed__20; -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__4(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__4(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_addTraceAsMessages___spec__15___rarg___lambda__1(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_printTraces___spec__2___rarg___lambda__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_printTraces___spec__3___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); @@ -485,16 +486,17 @@ LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__8___boxed(lean_ob LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_printTraces___spec__4___rarg___lambda__3(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*); lean_object* l_Lean_Syntax_node1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___closed__15; +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__21; LEAN_EXPORT lean_object* l_Lean_exceptEmoji(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Option_register___at_Lean_initFn____x40_Lean_Util_Trace___hyg_1552____spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___rarg(lean_object*, lean_object*, lean_object*, lean_object*); uint64_t l_Lean_Name_hash___override(lean_object*); LEAN_EXPORT lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__8___boxed(lean_object**); +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__14; LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_addTraceAsMessages___spec__14(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__2(lean_object*, lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__14; -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__3; uint64_t lean_uint64_xor(uint64_t, uint64_t); LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addTraceAsMessages___rarg___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -507,10 +509,9 @@ lean_object* lean_nat_mul(lean_object*, lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__43; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_addTraceAsMessages___spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___rarg___lambda__1(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__12(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__12(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*); static lean_object* l_Lean_doElemTrace_x5b___x5d_______closed__3; static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__37; -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__4; static lean_object* l_Lean_initFn____x40_Lean_Util_Trace___hyg_1460____closed__2; LEAN_EXPORT lean_object* l_Lean_trace_profiler_threshold_unitAdjusted___boxed(lean_object*); static lean_object* l_Lean_initFn____x40_Lean_Util_Trace___hyg_1644____closed__1; @@ -533,15 +534,17 @@ lean_object* lean_array_mk(lean_object*); lean_object* l_IO_monoNanosNow___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_printTraces___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_trace_profiler_threshold_unitAdjusted___closed__1; +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__8; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at_Lean_addTraceAsMessages___spec__5(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_exceptOptionEmoji___rarg(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOption_go___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledForCore(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__3; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_doElemTrace_x5b___x5d_______closed__7; -static lean_object* l_Lean_instInhabitedTraceState___closed__1; +static uint64_t l_Lean_instInhabitedTraceState___closed__1; static lean_object* l_Lean_doElemTrace_x5b___x5d_______closed__13; LEAN_EXPORT lean_object* l_Lean_trace_profiler_output_pp; LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__7___boxed(lean_object**); @@ -554,15 +557,12 @@ LEAN_EXPORT lean_object* l_Lean_trace_profiler; LEAN_EXPORT lean_object* l_Lean_addTraceAsMessages___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_PersistentArray_isEmpty___rarg(lean_object*); LEAN_EXPORT double l_Lean_trace_profiler_threshold_unitAdjusted(lean_object*); -static size_t l_Lean_instInhabitedTraceState___closed__3; -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__18; -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__5; +static lean_object* l_Lean_instInhabitedTraceState___closed__3; lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addRawTrace___rarg___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_instInhabitedTraceState___closed__5; static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__7; -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__24; LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_printTraces___spec__3___rarg___lambda__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___closed__8; LEAN_EXPORT lean_object* l_Lean_instMonadAlwaysExceptMonadCacheT___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -577,7 +577,6 @@ static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doEle lean_object* lean_string_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at_Lean_printTraces___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_trace_profiler_output; -static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3018____closed__15; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_printTraces___spec__5___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); LEAN_EXPORT lean_object* l_Lean_instExceptToEmojiBool(lean_object*); @@ -598,6 +597,7 @@ LEAN_EXPORT lean_object* l_Lean_setTraceState(lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___closed__16; LEAN_EXPORT lean_object* l_Lean_printTraces___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___auto____x40_Lean_Util_Trace___hyg_3014____closed__24; LEAN_EXPORT lean_object* l_Lean_addTrace(lean_object*); static lean_object* l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__19; uint8_t l_Std_DHashMap_Internal_AssocList_contains___at_Lean_NameSSet_insert___spec__6(lean_object*, lean_object*); @@ -666,7 +666,16 @@ x_1 = l_Lean_instInhabitedTraceElem___closed__2; return x_1; } } -static lean_object* _init_l_Lean_instInhabitedTraceState___closed__1() { +static uint64_t _init_l_Lean_instInhabitedTraceState___closed__1() { +_start: +{ +lean_object* x_1; uint64_t x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_uint64_of_nat(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_instInhabitedTraceState___closed__2() { _start: { lean_object* x_1; lean_object* x_2; @@ -675,17 +684,17 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_instInhabitedTraceState___closed__2() { +static lean_object* _init_l_Lean_instInhabitedTraceState___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_instInhabitedTraceState___closed__1; +x_1 = l_Lean_instInhabitedTraceState___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static size_t _init_l_Lean_instInhabitedTraceState___closed__3() { +static size_t _init_l_Lean_instInhabitedTraceState___closed__4() { _start: { lean_object* x_1; size_t x_2; @@ -694,14 +703,14 @@ x_2 = lean_usize_of_nat(x_1); return x_2; } } -static lean_object* _init_l_Lean_instInhabitedTraceState___closed__4() { +static lean_object* _init_l_Lean_instInhabitedTraceState___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; size_t x_4; lean_object* x_5; -x_1 = l_Lean_instInhabitedTraceState___closed__2; -x_2 = l_Lean_instInhabitedTraceState___closed__1; +x_1 = l_Lean_instInhabitedTraceState___closed__3; +x_2 = l_Lean_instInhabitedTraceState___closed__2; x_3 = lean_unsigned_to_nat(0u); -x_4 = l_Lean_instInhabitedTraceState___closed__3; +x_4 = l_Lean_instInhabitedTraceState___closed__4; x_5 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); lean_ctor_set(x_5, 0, x_1); lean_ctor_set(x_5, 1, x_2); @@ -711,12 +720,12 @@ lean_ctor_set_usize(x_5, 4, x_4); return x_5; } } -static lean_object* _init_l_Lean_instInhabitedTraceState___closed__5() { +static lean_object* _init_l_Lean_instInhabitedTraceState___closed__6() { _start: { uint64_t x_1; lean_object* x_2; lean_object* x_3; -x_1 = 0; -x_2 = l_Lean_instInhabitedTraceState___closed__4; +x_1 = l_Lean_instInhabitedTraceState___closed__1; +x_2 = l_Lean_instInhabitedTraceState___closed__5; x_3 = lean_alloc_ctor(0, 1, 8); lean_ctor_set(x_3, 0, x_2); lean_ctor_set_uint64(x_3, sizeof(void*)*1, x_1); @@ -727,7 +736,7 @@ static lean_object* _init_l_Lean_instInhabitedTraceState() { _start: { lean_object* x_1; -x_1 = l_Lean_instInhabitedTraceState___closed__5; +x_1 = l_Lean_instInhabitedTraceState___closed__6; return x_1; } } @@ -3907,125 +3916,73 @@ x_15 = lean_apply_4(x_10, lean_box(0), lean_box(0), x_13, x_14); return x_15; } } -static lean_object* _init_l_Lean_withTraceNode___rarg___lambda__5___closed__1() { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__5(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, uint8_t x_13, double x_14, double x_15, lean_object* x_16) { _start: { -lean_object* x_1; -x_1 = l_Lean_profiler; -return x_1; -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__5(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, uint8_t x_14, double x_15, double x_16, lean_object* x_17) { -_start: +if (x_13 == 0) { -double x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; -x_18 = l_Lean_addTrace___rarg___lambda__1___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_19 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_19, 0, x_1); -lean_ctor_set(x_19, 1, x_3); -lean_ctor_set_float(x_19, sizeof(void*)*2, x_18); -lean_ctor_set_float(x_19, sizeof(void*)*2 + 8, x_18); -lean_ctor_set_uint8(x_19, sizeof(void*)*2 + 16, x_2); -x_20 = l_Lean_withTraceNode___rarg___lambda__5___closed__1; -x_21 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_13, x_20); -if (x_21 == 0) -{ -if (x_14 == 0) -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; -lean_dec(x_3); -lean_dec(x_1); -x_22 = lean_ctor_get(x_4, 0); -lean_inc(x_22); -x_23 = lean_ctor_get(x_22, 1); -lean_inc(x_23); -lean_dec(x_22); -x_24 = lean_box(0); -x_25 = lean_apply_2(x_23, lean_box(0), x_24); +double x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_17 = l_Lean_addTrace___rarg___lambda__1___closed__1; +x_18 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_3); +lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); +lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); +lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); +x_19 = lean_ctor_get(x_4, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_19, 1); +lean_inc(x_20); +lean_dec(x_19); +x_21 = lean_box(0); +x_22 = lean_apply_2(x_20, lean_box(0), x_21); lean_inc(x_12); -x_26 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__4___boxed), 12, 11); -lean_closure_set(x_26, 0, x_4); -lean_closure_set(x_26, 1, x_5); -lean_closure_set(x_26, 2, x_6); -lean_closure_set(x_26, 3, x_7); -lean_closure_set(x_26, 4, x_8); -lean_closure_set(x_26, 5, x_9); -lean_closure_set(x_26, 6, x_17); -lean_closure_set(x_26, 7, x_10); -lean_closure_set(x_26, 8, x_11); -lean_closure_set(x_26, 9, x_12); -lean_closure_set(x_26, 10, x_19); -x_27 = lean_apply_4(x_12, lean_box(0), lean_box(0), x_25, x_26); -return x_27; +x_23 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__4___boxed), 12, 11); +lean_closure_set(x_23, 0, x_4); +lean_closure_set(x_23, 1, x_5); +lean_closure_set(x_23, 2, x_6); +lean_closure_set(x_23, 3, x_7); +lean_closure_set(x_23, 4, x_8); +lean_closure_set(x_23, 5, x_9); +lean_closure_set(x_23, 6, x_16); +lean_closure_set(x_23, 7, x_10); +lean_closure_set(x_23, 8, x_11); +lean_closure_set(x_23, 9, x_12); +lean_closure_set(x_23, 10, x_18); +x_24 = lean_apply_4(x_12, lean_box(0), lean_box(0), x_22, x_23); +return x_24; } else { -lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; -lean_dec(x_19); -x_28 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_28, 0, x_1); -lean_ctor_set(x_28, 1, x_3); -lean_ctor_set_float(x_28, sizeof(void*)*2, x_15); -lean_ctor_set_float(x_28, sizeof(void*)*2 + 8, x_16); -lean_ctor_set_uint8(x_28, sizeof(void*)*2 + 16, x_2); -x_29 = lean_ctor_get(x_4, 0); -lean_inc(x_29); -x_30 = lean_ctor_get(x_29, 1); -lean_inc(x_30); -lean_dec(x_29); -x_31 = lean_box(0); -x_32 = lean_apply_2(x_30, lean_box(0), x_31); +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_25 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_25, 0, x_1); +lean_ctor_set(x_25, 1, x_3); +lean_ctor_set_float(x_25, sizeof(void*)*2, x_14); +lean_ctor_set_float(x_25, sizeof(void*)*2 + 8, x_15); +lean_ctor_set_uint8(x_25, sizeof(void*)*2 + 16, x_2); +x_26 = lean_ctor_get(x_4, 0); +lean_inc(x_26); +x_27 = lean_ctor_get(x_26, 1); +lean_inc(x_27); +lean_dec(x_26); +x_28 = lean_box(0); +x_29 = lean_apply_2(x_27, lean_box(0), x_28); lean_inc(x_12); -x_33 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__4___boxed), 12, 11); -lean_closure_set(x_33, 0, x_4); -lean_closure_set(x_33, 1, x_5); -lean_closure_set(x_33, 2, x_6); -lean_closure_set(x_33, 3, x_7); -lean_closure_set(x_33, 4, x_8); -lean_closure_set(x_33, 5, x_9); -lean_closure_set(x_33, 6, x_17); -lean_closure_set(x_33, 7, x_10); -lean_closure_set(x_33, 8, x_11); -lean_closure_set(x_33, 9, x_12); -lean_closure_set(x_33, 10, x_28); -x_34 = lean_apply_4(x_12, lean_box(0), lean_box(0), x_32, x_33); -return x_34; -} -} -else -{ -lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; -lean_dec(x_19); -x_35 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_35, 0, x_1); -lean_ctor_set(x_35, 1, x_3); -lean_ctor_set_float(x_35, sizeof(void*)*2, x_15); -lean_ctor_set_float(x_35, sizeof(void*)*2 + 8, x_16); -lean_ctor_set_uint8(x_35, sizeof(void*)*2 + 16, x_2); -x_36 = lean_ctor_get(x_4, 0); -lean_inc(x_36); -x_37 = lean_ctor_get(x_36, 1); -lean_inc(x_37); -lean_dec(x_36); -x_38 = lean_box(0); -x_39 = lean_apply_2(x_37, lean_box(0), x_38); -lean_inc(x_12); -x_40 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__4___boxed), 12, 11); -lean_closure_set(x_40, 0, x_4); -lean_closure_set(x_40, 1, x_5); -lean_closure_set(x_40, 2, x_6); -lean_closure_set(x_40, 3, x_7); -lean_closure_set(x_40, 4, x_8); -lean_closure_set(x_40, 5, x_9); -lean_closure_set(x_40, 6, x_17); -lean_closure_set(x_40, 7, x_10); -lean_closure_set(x_40, 8, x_11); -lean_closure_set(x_40, 9, x_12); -lean_closure_set(x_40, 10, x_35); -x_41 = lean_apply_4(x_12, lean_box(0), lean_box(0), x_39, x_40); -return x_41; +x_30 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__4___boxed), 12, 11); +lean_closure_set(x_30, 0, x_4); +lean_closure_set(x_30, 1, x_5); +lean_closure_set(x_30, 2, x_6); +lean_closure_set(x_30, 3, x_7); +lean_closure_set(x_30, 4, x_8); +lean_closure_set(x_30, 5, x_9); +lean_closure_set(x_30, 6, x_16); +lean_closure_set(x_30, 7, x_10); +lean_closure_set(x_30, 8, x_11); +lean_closure_set(x_30, 9, x_12); +lean_closure_set(x_30, 10, x_25); +x_31 = lean_apply_4(x_12, lean_box(0), lean_box(0), x_29, x_30); +return x_31; } } } @@ -4061,73 +4018,71 @@ x_6 = lean_apply_2(x_4, lean_box(0), x_5); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__7(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, uint8_t x_13, double x_14, double x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__7(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, uint8_t x_12, double x_13, double x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_19 = lean_box(x_2); -x_20 = lean_box(x_13); +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_18 = lean_box(x_2); +x_19 = lean_box(x_12); +x_20 = lean_box_float(x_13); x_21 = lean_box_float(x_14); -x_22 = lean_box_float(x_15); lean_inc(x_11); lean_inc(x_10); lean_inc(x_4); -x_23 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__5___boxed), 17, 16); -lean_closure_set(x_23, 0, x_1); -lean_closure_set(x_23, 1, x_19); -lean_closure_set(x_23, 2, x_3); -lean_closure_set(x_23, 3, x_4); -lean_closure_set(x_23, 4, x_5); -lean_closure_set(x_23, 5, x_6); -lean_closure_set(x_23, 6, x_7); -lean_closure_set(x_23, 7, x_8); -lean_closure_set(x_23, 8, x_18); -lean_closure_set(x_23, 9, x_9); -lean_closure_set(x_23, 10, x_10); -lean_closure_set(x_23, 11, x_11); -lean_closure_set(x_23, 12, x_12); -lean_closure_set(x_23, 13, x_20); -lean_closure_set(x_23, 14, x_21); -lean_closure_set(x_23, 15, x_22); -x_24 = lean_apply_1(x_16, x_10); -x_25 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__6___boxed), 2, 1); -lean_closure_set(x_25, 0, x_4); -x_26 = lean_apply_3(x_17, lean_box(0), x_24, x_25); -x_27 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_26, x_23); -return x_27; +x_22 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__5___boxed), 16, 15); +lean_closure_set(x_22, 0, x_1); +lean_closure_set(x_22, 1, x_18); +lean_closure_set(x_22, 2, x_3); +lean_closure_set(x_22, 3, x_4); +lean_closure_set(x_22, 4, x_5); +lean_closure_set(x_22, 5, x_6); +lean_closure_set(x_22, 6, x_7); +lean_closure_set(x_22, 7, x_8); +lean_closure_set(x_22, 8, x_17); +lean_closure_set(x_22, 9, x_9); +lean_closure_set(x_22, 10, x_10); +lean_closure_set(x_22, 11, x_11); +lean_closure_set(x_22, 12, x_19); +lean_closure_set(x_22, 13, x_20); +lean_closure_set(x_22, 14, x_21); +x_23 = lean_apply_1(x_15, x_10); +x_24 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__6___boxed), 2, 1); +lean_closure_set(x_24, 0, x_4); +x_25 = lean_apply_3(x_16, lean_box(0), x_23, x_24); +x_26 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_25, x_22); +return x_26; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__8(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, uint8_t x_13, double x_14, double x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__8(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, uint8_t x_12, double x_13, double x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_19 = lean_ctor_get(x_1, 0); -lean_inc(x_19); -x_20 = lean_box(x_3); -x_21 = lean_box(x_13); +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_18 = lean_ctor_get(x_1, 0); +lean_inc(x_18); +x_19 = lean_box(x_3); +x_20 = lean_box(x_12); +x_21 = lean_box_float(x_13); x_22 = lean_box_float(x_14); -x_23 = lean_box_float(x_15); lean_inc(x_11); -x_24 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__7___boxed), 18, 17); -lean_closure_set(x_24, 0, x_2); -lean_closure_set(x_24, 1, x_20); -lean_closure_set(x_24, 2, x_4); -lean_closure_set(x_24, 3, x_5); -lean_closure_set(x_24, 4, x_6); -lean_closure_set(x_24, 5, x_1); -lean_closure_set(x_24, 6, x_7); -lean_closure_set(x_24, 7, x_8); -lean_closure_set(x_24, 8, x_9); -lean_closure_set(x_24, 9, x_10); -lean_closure_set(x_24, 10, x_11); -lean_closure_set(x_24, 11, x_12); -lean_closure_set(x_24, 12, x_21); -lean_closure_set(x_24, 13, x_22); -lean_closure_set(x_24, 14, x_23); -lean_closure_set(x_24, 15, x_16); -lean_closure_set(x_24, 16, x_17); -x_25 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_19, x_24); -return x_25; +x_23 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__7___boxed), 17, 16); +lean_closure_set(x_23, 0, x_2); +lean_closure_set(x_23, 1, x_19); +lean_closure_set(x_23, 2, x_4); +lean_closure_set(x_23, 3, x_5); +lean_closure_set(x_23, 4, x_6); +lean_closure_set(x_23, 5, x_1); +lean_closure_set(x_23, 6, x_7); +lean_closure_set(x_23, 7, x_8); +lean_closure_set(x_23, 8, x_9); +lean_closure_set(x_23, 9, x_10); +lean_closure_set(x_23, 10, x_11); +lean_closure_set(x_23, 11, x_20); +lean_closure_set(x_23, 12, x_21); +lean_closure_set(x_23, 13, x_22); +lean_closure_set(x_23, 14, x_15); +lean_closure_set(x_23, 15, x_16); +x_24 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_18, x_23); +return x_24; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__9(lean_object* x_1, lean_object* x_2) { @@ -4194,10 +4149,10 @@ x_1 = l_Lean_trace_profiler; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__12(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, uint8_t x_14, uint8_t x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__12(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, uint8_t x_14, uint8_t x_15, lean_object* x_16) { _start: { -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_41; uint8_t x_42; +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; x_17 = lean_ctor_get(x_16, 1); lean_inc(x_17); x_18 = lean_ctor_get(x_16, 0); @@ -4208,26 +4163,80 @@ lean_inc(x_19); x_20 = lean_ctor_get(x_17, 1); lean_inc(x_20); lean_dec(x_17); -x_41 = l_Lean_withTraceNode___rarg___lambda__12___closed__1; -x_42 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_11, x_41); -if (x_42 == 0) +x_21 = l_Lean_withTraceNode___rarg___lambda__12___closed__1; +x_22 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_21); +x_23 = lean_box(x_4); +x_24 = lean_box(x_22); +lean_inc(x_20); +lean_inc(x_19); +lean_inc(x_11); +lean_inc(x_18); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_7); +lean_inc(x_6); +x_25 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__8___boxed), 17, 16); +lean_closure_set(x_25, 0, x_2); +lean_closure_set(x_25, 1, x_3); +lean_closure_set(x_25, 2, x_23); +lean_closure_set(x_25, 3, x_5); +lean_closure_set(x_25, 4, x_6); +lean_closure_set(x_25, 5, x_7); +lean_closure_set(x_25, 6, x_8); +lean_closure_set(x_25, 7, x_9); +lean_closure_set(x_25, 8, x_10); +lean_closure_set(x_25, 9, x_18); +lean_closure_set(x_25, 10, x_11); +lean_closure_set(x_25, 11, x_24); +lean_closure_set(x_25, 12, x_19); +lean_closure_set(x_25, 13, x_20); +lean_closure_set(x_25, 14, x_12); +lean_closure_set(x_25, 15, x_13); +if (x_22 == 0) { -uint8_t x_43; -x_43 = 0; -x_21 = x_43; -goto block_40; +lean_dec(x_20); +lean_dec(x_19); +if (x_14 == 0) +{ +uint8_t x_38; +x_38 = 0; +x_26 = x_38; +goto block_37; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_7); +x_39 = lean_ctor_get(x_6, 0); +lean_inc(x_39); +lean_dec(x_6); +x_40 = lean_ctor_get(x_39, 1); +lean_inc(x_40); +lean_dec(x_39); +x_41 = lean_box(0); +x_42 = lean_apply_2(x_40, lean_box(0), x_41); +x_43 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_42, x_25); +return x_43; +} } else { double x_44; double x_45; double x_46; x_44 = lean_unbox_float(x_20); +lean_dec(x_20); x_45 = lean_unbox_float(x_19); +lean_dec(x_19); x_46 = lean_float_sub(x_44, x_45); if (x_15 == 0) { +if (x_14 == 0) +{ lean_object* x_47; lean_object* x_48; uint8_t x_49; lean_object* x_50; double x_51; double x_52; double x_53; uint8_t x_54; x_47 = l_Lean_trace_profiler_threshold_unitAdjusted___closed__1; -x_48 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_11, x_47); +x_48 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_47); x_49 = 0; x_50 = lean_unsigned_to_nat(0u); x_51 = l_Float_ofScientific(x_48, x_49, x_50); @@ -4235,109 +4244,101 @@ lean_dec(x_48); x_52 = l_Lean_trace_profiler_threshold_unitAdjusted___closed__2; x_53 = lean_float_div(x_51, x_52); x_54 = lean_float_decLt(x_53, x_46); -x_21 = x_54; -goto block_40; +x_26 = x_54; +goto block_37; } else { -lean_object* x_55; lean_object* x_56; uint8_t x_57; lean_object* x_58; double x_59; uint8_t x_60; -x_55 = l_Lean_trace_profiler_threshold_unitAdjusted___closed__1; -x_56 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_11, x_55); -x_57 = 0; -x_58 = lean_unsigned_to_nat(0u); -x_59 = l_Float_ofScientific(x_56, x_57, x_58); -lean_dec(x_56); -x_60 = lean_float_decLt(x_59, x_46); -x_21 = x_60; -goto block_40; +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_7); +x_55 = lean_ctor_get(x_6, 0); +lean_inc(x_55); +lean_dec(x_6); +x_56 = lean_ctor_get(x_55, 1); +lean_inc(x_56); +lean_dec(x_55); +x_57 = lean_box(0); +x_58 = lean_apply_2(x_56, lean_box(0), x_57); +x_59 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_58, x_25); +return x_59; } } -block_40: +else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_box(x_3); -x_23 = lean_box(x_21); -lean_inc(x_10); -lean_inc(x_18); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_6); -lean_inc(x_5); -x_24 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__8___boxed), 18, 17); -lean_closure_set(x_24, 0, x_1); -lean_closure_set(x_24, 1, x_2); -lean_closure_set(x_24, 2, x_22); -lean_closure_set(x_24, 3, x_4); -lean_closure_set(x_24, 4, x_5); -lean_closure_set(x_24, 5, x_6); -lean_closure_set(x_24, 6, x_7); -lean_closure_set(x_24, 7, x_8); -lean_closure_set(x_24, 8, x_9); -lean_closure_set(x_24, 9, x_18); -lean_closure_set(x_24, 10, x_10); -lean_closure_set(x_24, 11, x_11); -lean_closure_set(x_24, 12, x_23); -lean_closure_set(x_24, 13, x_19); -lean_closure_set(x_24, 14, x_20); -lean_closure_set(x_24, 15, x_12); -lean_closure_set(x_24, 16, x_13); if (x_14 == 0) { -if (x_21 == 0) -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; -lean_dec(x_24); -x_25 = lean_ctor_get(x_6, 0); -lean_inc(x_25); -lean_dec(x_6); -x_26 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__9), 2, 1); -lean_closure_set(x_26, 0, x_8); -x_27 = lean_apply_1(x_25, x_26); -lean_inc(x_10); -x_28 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__11___boxed), 5, 4); -lean_closure_set(x_28, 0, x_5); -lean_closure_set(x_28, 1, x_9); -lean_closure_set(x_28, 2, x_18); -lean_closure_set(x_28, 3, x_10); -x_29 = lean_apply_4(x_10, lean_box(0), lean_box(0), x_27, x_28); -return x_29; +lean_object* x_60; lean_object* x_61; uint8_t x_62; lean_object* x_63; double x_64; uint8_t x_65; +x_60 = l_Lean_trace_profiler_threshold_unitAdjusted___closed__1; +x_61 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_60); +x_62 = 0; +x_63 = lean_unsigned_to_nat(0u); +x_64 = l_Float_ofScientific(x_61, x_62, x_63); +lean_dec(x_61); +x_65 = lean_float_decLt(x_64, x_46); +x_26 = x_65; +goto block_37; } else { -lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_dec(x_18); +lean_dec(x_10); lean_dec(x_9); -lean_dec(x_8); +lean_dec(x_7); +x_66 = lean_ctor_get(x_6, 0); +lean_inc(x_66); lean_dec(x_6); -x_30 = lean_ctor_get(x_5, 0); -lean_inc(x_30); -lean_dec(x_5); -x_31 = lean_ctor_get(x_30, 1); -lean_inc(x_31); -lean_dec(x_30); -x_32 = lean_box(0); -x_33 = lean_apply_2(x_31, lean_box(0), x_32); -x_34 = lean_apply_4(x_10, lean_box(0), lean_box(0), x_33, x_24); -return x_34; +x_67 = lean_ctor_get(x_66, 1); +lean_inc(x_67); +lean_dec(x_66); +x_68 = lean_box(0); +x_69 = lean_apply_2(x_67, lean_box(0), x_68); +x_70 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_69, x_25); +return x_70; } } +} +block_37: +{ +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +lean_dec(x_25); +x_27 = lean_ctor_get(x_7, 0); +lean_inc(x_27); +lean_dec(x_7); +x_28 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__9), 2, 1); +lean_closure_set(x_28, 0, x_9); +x_29 = lean_apply_1(x_27, x_28); +lean_inc(x_11); +x_30 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__11___boxed), 5, 4); +lean_closure_set(x_30, 0, x_6); +lean_closure_set(x_30, 1, x_10); +lean_closure_set(x_30, 2, x_18); +lean_closure_set(x_30, 3, x_11); +x_31 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_29, x_30); +return x_31; +} else { -lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_dec(x_18); +lean_dec(x_10); lean_dec(x_9); -lean_dec(x_8); +lean_dec(x_7); +x_32 = lean_ctor_get(x_6, 0); +lean_inc(x_32); lean_dec(x_6); -x_35 = lean_ctor_get(x_5, 0); -lean_inc(x_35); -lean_dec(x_5); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); -lean_dec(x_35); -x_37 = lean_box(0); -x_38 = lean_apply_2(x_36, lean_box(0), x_37); -x_39 = lean_apply_4(x_10, lean_box(0), lean_box(0), x_38, x_24); -return x_39; +x_33 = lean_ctor_get(x_32, 1); +lean_inc(x_33); +lean_dec(x_32); +x_34 = lean_box(0); +x_35 = lean_apply_2(x_33, lean_box(0), x_34); +x_36 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_35, x_25); +return x_36; } } } @@ -4367,17 +4368,17 @@ x_26 = lean_box(x_23); lean_inc(x_2); lean_inc(x_1); x_27 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__12___boxed), 16, 15); -lean_closure_set(x_27, 0, x_6); -lean_closure_set(x_27, 1, x_7); -lean_closure_set(x_27, 2, x_24); -lean_closure_set(x_27, 3, x_9); -lean_closure_set(x_27, 4, x_1); -lean_closure_set(x_27, 5, x_10); -lean_closure_set(x_27, 6, x_11); -lean_closure_set(x_27, 7, x_16); -lean_closure_set(x_27, 8, x_12); -lean_closure_set(x_27, 9, x_2); -lean_closure_set(x_27, 10, x_5); +lean_closure_set(x_27, 0, x_5); +lean_closure_set(x_27, 1, x_6); +lean_closure_set(x_27, 2, x_7); +lean_closure_set(x_27, 3, x_24); +lean_closure_set(x_27, 4, x_9); +lean_closure_set(x_27, 5, x_1); +lean_closure_set(x_27, 6, x_10); +lean_closure_set(x_27, 7, x_11); +lean_closure_set(x_27, 8, x_16); +lean_closure_set(x_27, 9, x_12); +lean_closure_set(x_27, 10, x_2); lean_closure_set(x_27, 11, x_13); lean_closure_set(x_27, 12, x_20); lean_closure_set(x_27, 13, x_25); @@ -4607,38 +4608,20 @@ lean_dec(x_12); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__5___boxed(lean_object** _args) { -lean_object* x_1 = _args[0]; -lean_object* x_2 = _args[1]; -lean_object* x_3 = _args[2]; -lean_object* x_4 = _args[3]; -lean_object* x_5 = _args[4]; -lean_object* x_6 = _args[5]; -lean_object* x_7 = _args[6]; -lean_object* x_8 = _args[7]; -lean_object* x_9 = _args[8]; -lean_object* x_10 = _args[9]; -lean_object* x_11 = _args[10]; -lean_object* x_12 = _args[11]; -lean_object* x_13 = _args[12]; -lean_object* x_14 = _args[13]; -lean_object* x_15 = _args[14]; -lean_object* x_16 = _args[15]; -lean_object* x_17 = _args[16]; +LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; -x_18 = lean_unbox(x_2); +uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; +x_17 = lean_unbox(x_2); lean_dec(x_2); -x_19 = lean_unbox(x_14); +x_18 = lean_unbox(x_13); +lean_dec(x_13); +x_19 = lean_unbox_float(x_14); lean_dec(x_14); x_20 = lean_unbox_float(x_15); lean_dec(x_15); -x_21 = lean_unbox_float(x_16); -lean_dec(x_16); -x_22 = l_Lean_withTraceNode___rarg___lambda__5(x_1, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_19, x_20, x_21, x_17); -lean_dec(x_13); -return x_22; +x_21 = l_Lean_withTraceNode___rarg___lambda__5(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_18, x_19, x_20, x_16); +return x_21; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__6___boxed(lean_object* x_1, lean_object* x_2) { @@ -4668,20 +4651,19 @@ lean_object* x_14 = _args[13]; lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; _start: { -uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; -x_19 = lean_unbox(x_2); +uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; +x_18 = lean_unbox(x_2); lean_dec(x_2); -x_20 = lean_unbox(x_13); +x_19 = lean_unbox(x_12); +lean_dec(x_12); +x_20 = lean_unbox_float(x_13); lean_dec(x_13); x_21 = lean_unbox_float(x_14); lean_dec(x_14); -x_22 = lean_unbox_float(x_15); -lean_dec(x_15); -x_23 = l_Lean_withTraceNode___rarg___lambda__7(x_1, x_19, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_20, x_21, x_22, x_16, x_17, x_18); -return x_23; +x_22 = l_Lean_withTraceNode___rarg___lambda__7(x_1, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_19, x_20, x_21, x_15, x_16, x_17); +return x_22; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__8___boxed(lean_object** _args) { @@ -4702,21 +4684,20 @@ lean_object* x_14 = _args[13]; lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; _start: { -uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; -x_19 = lean_unbox(x_3); +uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; +x_18 = lean_unbox(x_3); lean_dec(x_3); -x_20 = lean_unbox(x_13); +x_19 = lean_unbox(x_12); +lean_dec(x_12); +x_20 = lean_unbox_float(x_13); lean_dec(x_13); x_21 = lean_unbox_float(x_14); lean_dec(x_14); -x_22 = lean_unbox_float(x_15); -lean_dec(x_15); -x_23 = l_Lean_withTraceNode___rarg___lambda__8(x_1, x_2, x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_20, x_21, x_22, x_16, x_17, x_18); -lean_dec(x_18); -return x_23; +x_22 = l_Lean_withTraceNode___rarg___lambda__8(x_1, x_2, x_18, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_19, x_20, x_21, x_15, x_16, x_17); +lean_dec(x_17); +return x_22; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { @@ -4732,13 +4713,14 @@ LEAN_EXPORT lean_object* l_Lean_withTraceNode___rarg___lambda__12___boxed(lean_o _start: { uint8_t x_17; uint8_t x_18; uint8_t x_19; lean_object* x_20; -x_17 = lean_unbox(x_3); -lean_dec(x_3); +x_17 = lean_unbox(x_4); +lean_dec(x_4); x_18 = lean_unbox(x_14); lean_dec(x_14); x_19 = lean_unbox(x_15); lean_dec(x_15); -x_20 = l_Lean_withTraceNode___rarg___lambda__12(x_1, x_2, x_17, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_18, x_19, x_16); +x_20 = l_Lean_withTraceNode___rarg___lambda__12(x_1, x_2, x_3, x_17, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_18, x_19, x_16); +lean_dec(x_1); return x_20; } } @@ -4905,187 +4887,141 @@ x_15 = lean_apply_4(x_10, lean_box(0), lean_box(0), x_13, x_14); return x_15; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, uint8_t x_14, double x_15, double x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, uint8_t x_13, double x_14, double x_15, lean_object* x_16) { _start: { -double x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; -x_18 = l_Lean_addTrace___rarg___lambda__1___closed__1; -lean_inc(x_3); -lean_inc(x_1); -x_19 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_19, 0, x_1); -lean_ctor_set(x_19, 1, x_3); -lean_ctor_set_float(x_19, sizeof(void*)*2, x_18); -lean_ctor_set_float(x_19, sizeof(void*)*2 + 8, x_18); -lean_ctor_set_uint8(x_19, sizeof(void*)*2 + 16, x_2); -x_20 = l_Lean_withTraceNode___rarg___lambda__5___closed__1; -x_21 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_13, x_20); -if (x_21 == 0) +if (x_13 == 0) { -if (x_14 == 0) -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; -lean_dec(x_3); -lean_dec(x_1); -x_22 = lean_ctor_get(x_4, 0); -lean_inc(x_22); -x_23 = lean_ctor_get(x_22, 1); -lean_inc(x_23); -lean_dec(x_22); -x_24 = lean_box(0); -x_25 = lean_apply_2(x_23, lean_box(0), x_24); +double x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_17 = l_Lean_addTrace___rarg___lambda__1___closed__1; +x_18 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_3); +lean_ctor_set_float(x_18, sizeof(void*)*2, x_17); +lean_ctor_set_float(x_18, sizeof(void*)*2 + 8, x_17); +lean_ctor_set_uint8(x_18, sizeof(void*)*2 + 16, x_2); +x_19 = lean_ctor_get(x_4, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_19, 1); +lean_inc(x_20); +lean_dec(x_19); +x_21 = lean_box(0); +x_22 = lean_apply_2(x_20, lean_box(0), x_21); lean_inc(x_12); -x_26 = lean_alloc_closure((void*)(l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__2___boxed), 12, 11); -lean_closure_set(x_26, 0, x_4); -lean_closure_set(x_26, 1, x_5); -lean_closure_set(x_26, 2, x_6); -lean_closure_set(x_26, 3, x_7); -lean_closure_set(x_26, 4, x_8); -lean_closure_set(x_26, 5, x_9); -lean_closure_set(x_26, 6, x_17); -lean_closure_set(x_26, 7, x_10); -lean_closure_set(x_26, 8, x_11); -lean_closure_set(x_26, 9, x_12); -lean_closure_set(x_26, 10, x_19); -x_27 = lean_apply_4(x_12, lean_box(0), lean_box(0), x_25, x_26); -return x_27; +x_23 = lean_alloc_closure((void*)(l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__2___boxed), 12, 11); +lean_closure_set(x_23, 0, x_4); +lean_closure_set(x_23, 1, x_5); +lean_closure_set(x_23, 2, x_6); +lean_closure_set(x_23, 3, x_7); +lean_closure_set(x_23, 4, x_8); +lean_closure_set(x_23, 5, x_9); +lean_closure_set(x_23, 6, x_16); +lean_closure_set(x_23, 7, x_10); +lean_closure_set(x_23, 8, x_11); +lean_closure_set(x_23, 9, x_12); +lean_closure_set(x_23, 10, x_18); +x_24 = lean_apply_4(x_12, lean_box(0), lean_box(0), x_22, x_23); +return x_24; } else { -lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; -lean_dec(x_19); -x_28 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_28, 0, x_1); -lean_ctor_set(x_28, 1, x_3); -lean_ctor_set_float(x_28, sizeof(void*)*2, x_15); -lean_ctor_set_float(x_28, sizeof(void*)*2 + 8, x_16); -lean_ctor_set_uint8(x_28, sizeof(void*)*2 + 16, x_2); -x_29 = lean_ctor_get(x_4, 0); -lean_inc(x_29); -x_30 = lean_ctor_get(x_29, 1); -lean_inc(x_30); -lean_dec(x_29); -x_31 = lean_box(0); -x_32 = lean_apply_2(x_30, lean_box(0), x_31); +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_25 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_25, 0, x_1); +lean_ctor_set(x_25, 1, x_3); +lean_ctor_set_float(x_25, sizeof(void*)*2, x_14); +lean_ctor_set_float(x_25, sizeof(void*)*2 + 8, x_15); +lean_ctor_set_uint8(x_25, sizeof(void*)*2 + 16, x_2); +x_26 = lean_ctor_get(x_4, 0); +lean_inc(x_26); +x_27 = lean_ctor_get(x_26, 1); +lean_inc(x_27); +lean_dec(x_26); +x_28 = lean_box(0); +x_29 = lean_apply_2(x_27, lean_box(0), x_28); lean_inc(x_12); -x_33 = lean_alloc_closure((void*)(l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__2___boxed), 12, 11); -lean_closure_set(x_33, 0, x_4); -lean_closure_set(x_33, 1, x_5); -lean_closure_set(x_33, 2, x_6); -lean_closure_set(x_33, 3, x_7); -lean_closure_set(x_33, 4, x_8); -lean_closure_set(x_33, 5, x_9); -lean_closure_set(x_33, 6, x_17); -lean_closure_set(x_33, 7, x_10); -lean_closure_set(x_33, 8, x_11); -lean_closure_set(x_33, 9, x_12); -lean_closure_set(x_33, 10, x_28); -x_34 = lean_apply_4(x_12, lean_box(0), lean_box(0), x_32, x_33); -return x_34; -} -} -else -{ -lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; -lean_dec(x_19); -x_35 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_35, 0, x_1); -lean_ctor_set(x_35, 1, x_3); -lean_ctor_set_float(x_35, sizeof(void*)*2, x_15); -lean_ctor_set_float(x_35, sizeof(void*)*2 + 8, x_16); -lean_ctor_set_uint8(x_35, sizeof(void*)*2 + 16, x_2); -x_36 = lean_ctor_get(x_4, 0); -lean_inc(x_36); -x_37 = lean_ctor_get(x_36, 1); -lean_inc(x_37); -lean_dec(x_36); -x_38 = lean_box(0); -x_39 = lean_apply_2(x_37, lean_box(0), x_38); -lean_inc(x_12); -x_40 = lean_alloc_closure((void*)(l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__2___boxed), 12, 11); -lean_closure_set(x_40, 0, x_4); -lean_closure_set(x_40, 1, x_5); -lean_closure_set(x_40, 2, x_6); -lean_closure_set(x_40, 3, x_7); -lean_closure_set(x_40, 4, x_8); -lean_closure_set(x_40, 5, x_9); -lean_closure_set(x_40, 6, x_17); -lean_closure_set(x_40, 7, x_10); -lean_closure_set(x_40, 8, x_11); -lean_closure_set(x_40, 9, x_12); -lean_closure_set(x_40, 10, x_35); -x_41 = lean_apply_4(x_12, lean_box(0), lean_box(0), x_39, x_40); -return x_41; +x_30 = lean_alloc_closure((void*)(l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__2___boxed), 12, 11); +lean_closure_set(x_30, 0, x_4); +lean_closure_set(x_30, 1, x_5); +lean_closure_set(x_30, 2, x_6); +lean_closure_set(x_30, 3, x_7); +lean_closure_set(x_30, 4, x_8); +lean_closure_set(x_30, 5, x_9); +lean_closure_set(x_30, 6, x_16); +lean_closure_set(x_30, 7, x_10); +lean_closure_set(x_30, 8, x_11); +lean_closure_set(x_30, 9, x_12); +lean_closure_set(x_30, 10, x_25); +x_31 = lean_apply_4(x_12, lean_box(0), lean_box(0), x_29, x_30); +return x_31; } } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__4(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, uint8_t x_13, double x_14, double x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__4(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, uint8_t x_12, double x_13, double x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_19 = lean_box(x_2); -x_20 = lean_box(x_13); +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_18 = lean_box(x_2); +x_19 = lean_box(x_12); +x_20 = lean_box_float(x_13); x_21 = lean_box_float(x_14); -x_22 = lean_box_float(x_15); lean_inc(x_11); lean_inc(x_10); lean_inc(x_4); -x_23 = lean_alloc_closure((void*)(l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__3___boxed), 17, 16); -lean_closure_set(x_23, 0, x_1); -lean_closure_set(x_23, 1, x_19); -lean_closure_set(x_23, 2, x_3); -lean_closure_set(x_23, 3, x_4); -lean_closure_set(x_23, 4, x_5); -lean_closure_set(x_23, 5, x_6); -lean_closure_set(x_23, 6, x_7); -lean_closure_set(x_23, 7, x_8); -lean_closure_set(x_23, 8, x_18); -lean_closure_set(x_23, 9, x_9); -lean_closure_set(x_23, 10, x_10); -lean_closure_set(x_23, 11, x_11); -lean_closure_set(x_23, 12, x_12); -lean_closure_set(x_23, 13, x_20); -lean_closure_set(x_23, 14, x_21); -lean_closure_set(x_23, 15, x_22); -x_24 = lean_apply_1(x_16, x_10); -x_25 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__6___boxed), 2, 1); -lean_closure_set(x_25, 0, x_4); -x_26 = lean_apply_3(x_17, lean_box(0), x_24, x_25); -x_27 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_26, x_23); -return x_27; +x_22 = lean_alloc_closure((void*)(l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__3___boxed), 16, 15); +lean_closure_set(x_22, 0, x_1); +lean_closure_set(x_22, 1, x_18); +lean_closure_set(x_22, 2, x_3); +lean_closure_set(x_22, 3, x_4); +lean_closure_set(x_22, 4, x_5); +lean_closure_set(x_22, 5, x_6); +lean_closure_set(x_22, 6, x_7); +lean_closure_set(x_22, 7, x_8); +lean_closure_set(x_22, 8, x_17); +lean_closure_set(x_22, 9, x_9); +lean_closure_set(x_22, 10, x_10); +lean_closure_set(x_22, 11, x_11); +lean_closure_set(x_22, 12, x_19); +lean_closure_set(x_22, 13, x_20); +lean_closure_set(x_22, 14, x_21); +x_23 = lean_apply_1(x_15, x_10); +x_24 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__6___boxed), 2, 1); +lean_closure_set(x_24, 0, x_4); +x_25 = lean_apply_3(x_16, lean_box(0), x_23, x_24); +x_26 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_25, x_22); +return x_26; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__5(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, uint8_t x_13, double x_14, double x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__5(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, uint8_t x_12, double x_13, double x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_19 = lean_ctor_get(x_1, 0); -lean_inc(x_19); -x_20 = lean_box(x_3); -x_21 = lean_box(x_13); +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_18 = lean_ctor_get(x_1, 0); +lean_inc(x_18); +x_19 = lean_box(x_3); +x_20 = lean_box(x_12); +x_21 = lean_box_float(x_13); x_22 = lean_box_float(x_14); -x_23 = lean_box_float(x_15); lean_inc(x_11); -x_24 = lean_alloc_closure((void*)(l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__4___boxed), 18, 17); -lean_closure_set(x_24, 0, x_2); -lean_closure_set(x_24, 1, x_20); -lean_closure_set(x_24, 2, x_4); -lean_closure_set(x_24, 3, x_5); -lean_closure_set(x_24, 4, x_6); -lean_closure_set(x_24, 5, x_1); -lean_closure_set(x_24, 6, x_7); -lean_closure_set(x_24, 7, x_8); -lean_closure_set(x_24, 8, x_9); -lean_closure_set(x_24, 9, x_10); -lean_closure_set(x_24, 10, x_11); -lean_closure_set(x_24, 11, x_12); -lean_closure_set(x_24, 12, x_21); -lean_closure_set(x_24, 13, x_22); -lean_closure_set(x_24, 14, x_23); -lean_closure_set(x_24, 15, x_16); -lean_closure_set(x_24, 16, x_17); -x_25 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_19, x_24); -return x_25; +x_23 = lean_alloc_closure((void*)(l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__4___boxed), 17, 16); +lean_closure_set(x_23, 0, x_2); +lean_closure_set(x_23, 1, x_19); +lean_closure_set(x_23, 2, x_4); +lean_closure_set(x_23, 3, x_5); +lean_closure_set(x_23, 4, x_6); +lean_closure_set(x_23, 5, x_1); +lean_closure_set(x_23, 6, x_7); +lean_closure_set(x_23, 7, x_8); +lean_closure_set(x_23, 8, x_9); +lean_closure_set(x_23, 9, x_10); +lean_closure_set(x_23, 10, x_11); +lean_closure_set(x_23, 11, x_20); +lean_closure_set(x_23, 12, x_21); +lean_closure_set(x_23, 13, x_22); +lean_closure_set(x_23, 14, x_15); +lean_closure_set(x_23, 15, x_16); +x_24 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_18, x_23); +return x_24; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { @@ -5100,10 +5036,10 @@ x_8 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_6, x_7); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__7(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, uint8_t x_14, uint8_t x_15, lean_object* x_16) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, uint8_t x_14, uint8_t x_15, lean_object* x_16) { _start: { -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_41; uint8_t x_42; +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; x_17 = lean_ctor_get(x_16, 1); lean_inc(x_17); x_18 = lean_ctor_get(x_16, 0); @@ -5114,26 +5050,80 @@ lean_inc(x_19); x_20 = lean_ctor_get(x_17, 1); lean_inc(x_20); lean_dec(x_17); -x_41 = l_Lean_withTraceNode___rarg___lambda__12___closed__1; -x_42 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_11, x_41); -if (x_42 == 0) +x_21 = l_Lean_withTraceNode___rarg___lambda__12___closed__1; +x_22 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_21); +x_23 = lean_box(x_4); +x_24 = lean_box(x_22); +lean_inc(x_20); +lean_inc(x_19); +lean_inc(x_11); +lean_inc(x_18); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_7); +lean_inc(x_6); +x_25 = lean_alloc_closure((void*)(l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__5___boxed), 17, 16); +lean_closure_set(x_25, 0, x_2); +lean_closure_set(x_25, 1, x_3); +lean_closure_set(x_25, 2, x_23); +lean_closure_set(x_25, 3, x_5); +lean_closure_set(x_25, 4, x_6); +lean_closure_set(x_25, 5, x_7); +lean_closure_set(x_25, 6, x_8); +lean_closure_set(x_25, 7, x_9); +lean_closure_set(x_25, 8, x_10); +lean_closure_set(x_25, 9, x_18); +lean_closure_set(x_25, 10, x_11); +lean_closure_set(x_25, 11, x_24); +lean_closure_set(x_25, 12, x_19); +lean_closure_set(x_25, 13, x_20); +lean_closure_set(x_25, 14, x_12); +lean_closure_set(x_25, 15, x_13); +if (x_22 == 0) { -uint8_t x_43; -x_43 = 0; -x_21 = x_43; -goto block_40; +lean_dec(x_20); +lean_dec(x_19); +if (x_14 == 0) +{ +uint8_t x_38; +x_38 = 0; +x_26 = x_38; +goto block_37; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_7); +x_39 = lean_ctor_get(x_6, 0); +lean_inc(x_39); +lean_dec(x_6); +x_40 = lean_ctor_get(x_39, 1); +lean_inc(x_40); +lean_dec(x_39); +x_41 = lean_box(0); +x_42 = lean_apply_2(x_40, lean_box(0), x_41); +x_43 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_42, x_25); +return x_43; +} } else { double x_44; double x_45; double x_46; x_44 = lean_unbox_float(x_20); +lean_dec(x_20); x_45 = lean_unbox_float(x_19); +lean_dec(x_19); x_46 = lean_float_sub(x_44, x_45); if (x_15 == 0) { +if (x_14 == 0) +{ lean_object* x_47; lean_object* x_48; uint8_t x_49; lean_object* x_50; double x_51; double x_52; double x_53; uint8_t x_54; x_47 = l_Lean_trace_profiler_threshold_unitAdjusted___closed__1; -x_48 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_11, x_47); +x_48 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_47); x_49 = 0; x_50 = lean_unsigned_to_nat(0u); x_51 = l_Float_ofScientific(x_48, x_49, x_50); @@ -5141,109 +5131,101 @@ lean_dec(x_48); x_52 = l_Lean_trace_profiler_threshold_unitAdjusted___closed__2; x_53 = lean_float_div(x_51, x_52); x_54 = lean_float_decLt(x_53, x_46); -x_21 = x_54; -goto block_40; +x_26 = x_54; +goto block_37; } else { -lean_object* x_55; lean_object* x_56; uint8_t x_57; lean_object* x_58; double x_59; uint8_t x_60; -x_55 = l_Lean_trace_profiler_threshold_unitAdjusted___closed__1; -x_56 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_11, x_55); -x_57 = 0; -x_58 = lean_unsigned_to_nat(0u); -x_59 = l_Float_ofScientific(x_56, x_57, x_58); -lean_dec(x_56); -x_60 = lean_float_decLt(x_59, x_46); -x_21 = x_60; -goto block_40; +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_7); +x_55 = lean_ctor_get(x_6, 0); +lean_inc(x_55); +lean_dec(x_6); +x_56 = lean_ctor_get(x_55, 1); +lean_inc(x_56); +lean_dec(x_55); +x_57 = lean_box(0); +x_58 = lean_apply_2(x_56, lean_box(0), x_57); +x_59 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_58, x_25); +return x_59; } } -block_40: +else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_box(x_3); -x_23 = lean_box(x_21); -lean_inc(x_10); -lean_inc(x_18); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_6); -lean_inc(x_5); -x_24 = lean_alloc_closure((void*)(l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__5___boxed), 18, 17); -lean_closure_set(x_24, 0, x_1); -lean_closure_set(x_24, 1, x_2); -lean_closure_set(x_24, 2, x_22); -lean_closure_set(x_24, 3, x_4); -lean_closure_set(x_24, 4, x_5); -lean_closure_set(x_24, 5, x_6); -lean_closure_set(x_24, 6, x_7); -lean_closure_set(x_24, 7, x_8); -lean_closure_set(x_24, 8, x_9); -lean_closure_set(x_24, 9, x_18); -lean_closure_set(x_24, 10, x_10); -lean_closure_set(x_24, 11, x_11); -lean_closure_set(x_24, 12, x_23); -lean_closure_set(x_24, 13, x_19); -lean_closure_set(x_24, 14, x_20); -lean_closure_set(x_24, 15, x_12); -lean_closure_set(x_24, 16, x_13); if (x_14 == 0) { -if (x_21 == 0) -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; -lean_dec(x_24); -x_25 = lean_ctor_get(x_6, 0); -lean_inc(x_25); -lean_dec(x_6); -x_26 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__9), 2, 1); -lean_closure_set(x_26, 0, x_8); -x_27 = lean_apply_1(x_25, x_26); -lean_inc(x_10); -x_28 = lean_alloc_closure((void*)(l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__6___boxed), 5, 4); -lean_closure_set(x_28, 0, x_5); -lean_closure_set(x_28, 1, x_9); -lean_closure_set(x_28, 2, x_18); -lean_closure_set(x_28, 3, x_10); -x_29 = lean_apply_4(x_10, lean_box(0), lean_box(0), x_27, x_28); -return x_29; +lean_object* x_60; lean_object* x_61; uint8_t x_62; lean_object* x_63; double x_64; uint8_t x_65; +x_60 = l_Lean_trace_profiler_threshold_unitAdjusted___closed__1; +x_61 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_60); +x_62 = 0; +x_63 = lean_unsigned_to_nat(0u); +x_64 = l_Float_ofScientific(x_61, x_62, x_63); +lean_dec(x_61); +x_65 = lean_float_decLt(x_64, x_46); +x_26 = x_65; +goto block_37; } else { -lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_dec(x_18); +lean_dec(x_10); lean_dec(x_9); -lean_dec(x_8); +lean_dec(x_7); +x_66 = lean_ctor_get(x_6, 0); +lean_inc(x_66); lean_dec(x_6); -x_30 = lean_ctor_get(x_5, 0); -lean_inc(x_30); -lean_dec(x_5); -x_31 = lean_ctor_get(x_30, 1); -lean_inc(x_31); -lean_dec(x_30); -x_32 = lean_box(0); -x_33 = lean_apply_2(x_31, lean_box(0), x_32); -x_34 = lean_apply_4(x_10, lean_box(0), lean_box(0), x_33, x_24); -return x_34; +x_67 = lean_ctor_get(x_66, 1); +lean_inc(x_67); +lean_dec(x_66); +x_68 = lean_box(0); +x_69 = lean_apply_2(x_67, lean_box(0), x_68); +x_70 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_69, x_25); +return x_70; } } +} +block_37: +{ +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +lean_dec(x_25); +x_27 = lean_ctor_get(x_7, 0); +lean_inc(x_27); +lean_dec(x_7); +x_28 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__9), 2, 1); +lean_closure_set(x_28, 0, x_9); +x_29 = lean_apply_1(x_27, x_28); +lean_inc(x_11); +x_30 = lean_alloc_closure((void*)(l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__6___boxed), 5, 4); +lean_closure_set(x_30, 0, x_6); +lean_closure_set(x_30, 1, x_10); +lean_closure_set(x_30, 2, x_18); +lean_closure_set(x_30, 3, x_11); +x_31 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_29, x_30); +return x_31; +} else { -lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_dec(x_18); +lean_dec(x_10); lean_dec(x_9); -lean_dec(x_8); +lean_dec(x_7); +x_32 = lean_ctor_get(x_6, 0); +lean_inc(x_32); lean_dec(x_6); -x_35 = lean_ctor_get(x_5, 0); -lean_inc(x_35); -lean_dec(x_5); -x_36 = lean_ctor_get(x_35, 1); -lean_inc(x_36); -lean_dec(x_35); -x_37 = lean_box(0); -x_38 = lean_apply_2(x_36, lean_box(0), x_37); -x_39 = lean_apply_4(x_10, lean_box(0), lean_box(0), x_38, x_24); -return x_39; +x_33 = lean_ctor_get(x_32, 1); +lean_inc(x_33); +lean_dec(x_32); +x_34 = lean_box(0); +x_35 = lean_apply_2(x_33, lean_box(0), x_34); +x_36 = lean_apply_4(x_11, lean_box(0), lean_box(0), x_35, x_25); +return x_36; } } } @@ -5273,17 +5255,17 @@ x_26 = lean_box(x_23); lean_inc(x_2); lean_inc(x_1); x_27 = lean_alloc_closure((void*)(l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__7___boxed), 16, 15); -lean_closure_set(x_27, 0, x_6); -lean_closure_set(x_27, 1, x_7); -lean_closure_set(x_27, 2, x_24); -lean_closure_set(x_27, 3, x_9); -lean_closure_set(x_27, 4, x_1); -lean_closure_set(x_27, 5, x_10); -lean_closure_set(x_27, 6, x_11); -lean_closure_set(x_27, 7, x_16); -lean_closure_set(x_27, 8, x_12); -lean_closure_set(x_27, 9, x_2); -lean_closure_set(x_27, 10, x_5); +lean_closure_set(x_27, 0, x_5); +lean_closure_set(x_27, 1, x_6); +lean_closure_set(x_27, 2, x_7); +lean_closure_set(x_27, 3, x_24); +lean_closure_set(x_27, 4, x_9); +lean_closure_set(x_27, 5, x_1); +lean_closure_set(x_27, 6, x_10); +lean_closure_set(x_27, 7, x_11); +lean_closure_set(x_27, 8, x_16); +lean_closure_set(x_27, 9, x_12); +lean_closure_set(x_27, 10, x_2); lean_closure_set(x_27, 11, x_13); lean_closure_set(x_27, 12, x_20); lean_closure_set(x_27, 13, x_25); @@ -5598,7 +5580,23 @@ lean_dec(x_12); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__3___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +_start: +{ +uint8_t x_17; uint8_t x_18; double x_19; double x_20; lean_object* x_21; +x_17 = lean_unbox(x_2); +lean_dec(x_2); +x_18 = lean_unbox(x_13); +lean_dec(x_13); +x_19 = lean_unbox_float(x_14); +lean_dec(x_14); +x_20 = lean_unbox_float(x_15); +lean_dec(x_15); +x_21 = l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__3(x_1, x_17, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_18, x_19, x_20, x_16); +return x_21; +} +} +LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__4___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -5621,49 +5619,14 @@ _start: uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; x_18 = lean_unbox(x_2); lean_dec(x_2); -x_19 = lean_unbox(x_14); -lean_dec(x_14); -x_20 = lean_unbox_float(x_15); -lean_dec(x_15); -x_21 = lean_unbox_float(x_16); -lean_dec(x_16); -x_22 = l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__3(x_1, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_19, x_20, x_21, x_17); -lean_dec(x_13); -return x_22; -} -} -LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__4___boxed(lean_object** _args) { -lean_object* x_1 = _args[0]; -lean_object* x_2 = _args[1]; -lean_object* x_3 = _args[2]; -lean_object* x_4 = _args[3]; -lean_object* x_5 = _args[4]; -lean_object* x_6 = _args[5]; -lean_object* x_7 = _args[6]; -lean_object* x_8 = _args[7]; -lean_object* x_9 = _args[8]; -lean_object* x_10 = _args[9]; -lean_object* x_11 = _args[10]; -lean_object* x_12 = _args[11]; -lean_object* x_13 = _args[12]; -lean_object* x_14 = _args[13]; -lean_object* x_15 = _args[14]; -lean_object* x_16 = _args[15]; -lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; -_start: -{ -uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; -x_19 = lean_unbox(x_2); -lean_dec(x_2); -x_20 = lean_unbox(x_13); +x_19 = lean_unbox(x_12); +lean_dec(x_12); +x_20 = lean_unbox_float(x_13); lean_dec(x_13); x_21 = lean_unbox_float(x_14); lean_dec(x_14); -x_22 = lean_unbox_float(x_15); -lean_dec(x_15); -x_23 = l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__4(x_1, x_19, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_20, x_21, x_22, x_16, x_17, x_18); -return x_23; +x_22 = l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__4(x_1, x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_19, x_20, x_21, x_15, x_16, x_17); +return x_22; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__5___boxed(lean_object** _args) { @@ -5684,21 +5647,20 @@ lean_object* x_14 = _args[13]; lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; _start: { -uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; -x_19 = lean_unbox(x_3); +uint8_t x_18; uint8_t x_19; double x_20; double x_21; lean_object* x_22; +x_18 = lean_unbox(x_3); lean_dec(x_3); -x_20 = lean_unbox(x_13); +x_19 = lean_unbox(x_12); +lean_dec(x_12); +x_20 = lean_unbox_float(x_13); lean_dec(x_13); x_21 = lean_unbox_float(x_14); lean_dec(x_14); -x_22 = lean_unbox_float(x_15); -lean_dec(x_15); -x_23 = l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__5(x_1, x_2, x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_20, x_21, x_22, x_16, x_17, x_18); -lean_dec(x_18); -return x_23; +x_22 = l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__5(x_1, x_2, x_18, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_19, x_20, x_21, x_15, x_16, x_17); +lean_dec(x_17); +return x_22; } } LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { @@ -5714,13 +5676,14 @@ LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec _start: { uint8_t x_17; uint8_t x_18; uint8_t x_19; lean_object* x_20; -x_17 = lean_unbox(x_3); -lean_dec(x_3); +x_17 = lean_unbox(x_4); +lean_dec(x_4); x_18 = lean_unbox(x_14); lean_dec(x_14); x_19 = lean_unbox(x_15); lean_dec(x_15); -x_20 = l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__7(x_1, x_2, x_17, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_18, x_19, x_16); +x_20 = l_Lean_withTraceNode___at_Lean_withTraceNode_x27___spec__1___rarg___lambda__7(x_1, x_2, x_3, x_17, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_18, x_19, x_16); +lean_dec(x_1); return x_20; } } @@ -5800,7 +5763,7 @@ x_14 = l_Lean_withTraceNode_x27___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x return x_14; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__1() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__1() { _start: { lean_object* x_1; @@ -5808,7 +5771,7 @@ x_1 = lean_mk_string_unchecked("Parser", 6, 6); return x_1; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__2() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__2() { _start: { lean_object* x_1; @@ -5816,7 +5779,7 @@ x_1 = lean_mk_string_unchecked("Tactic", 6, 6); return x_1; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__3() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__3() { _start: { lean_object* x_1; @@ -5824,19 +5787,19 @@ x_1 = lean_mk_string_unchecked("tacticSeq", 9, 9); return x_1; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__4() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276____closed__5; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__1; -x_3 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__2; -x_4 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__3; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__1; +x_3 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__2; +x_4 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__3; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__5() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__5() { _start: { lean_object* x_1; @@ -5844,19 +5807,19 @@ x_1 = lean_mk_string_unchecked("tacticSeq1Indented", 18, 18); return x_1; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__6() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276____closed__5; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__1; -x_3 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__2; -x_4 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__5; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__1; +x_3 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__2; +x_4 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__5; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__7() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__7() { _start: { lean_object* x_1; @@ -5864,17 +5827,17 @@ x_1 = lean_mk_string_unchecked("null", 4, 4); return x_1; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__8() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__7; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__7; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__9() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__9() { _start: { lean_object* x_1; @@ -5882,41 +5845,41 @@ x_1 = lean_mk_string_unchecked("exact", 5, 5); return x_1; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__10() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276____closed__5; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__1; -x_3 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__2; -x_4 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__9; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__1; +x_3 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__2; +x_4 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__9; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__11() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(2); -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__9; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__9; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__12() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_instInhabitedTraceState___closed__1; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__11; +x_1 = l_Lean_instInhabitedTraceState___closed__2; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__11; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__13() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__13() { _start: { lean_object* x_1; @@ -5924,7 +5887,7 @@ x_1 = lean_mk_string_unchecked("Term", 4, 4); return x_1; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__14() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__14() { _start: { lean_object* x_1; @@ -5932,19 +5895,19 @@ x_1 = lean_mk_string_unchecked("declName", 8, 8); return x_1; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__15() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276____closed__5; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__1; -x_3 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__13; -x_4 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__14; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__1; +x_3 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__13; +x_4 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__14; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__16() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__16() { _start: { lean_object* x_1; @@ -5952,35 +5915,35 @@ x_1 = lean_mk_string_unchecked("decl_name%", 10, 10); return x_1; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__17() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(2); -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__16; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__16; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__18() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_instInhabitedTraceState___closed__1; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__17; +x_1 = l_Lean_instInhabitedTraceState___closed__2; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__17; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__19() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = lean_box(2); -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__15; -x_3 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__18; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__15; +x_3 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__18; x_4 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -5988,23 +5951,23 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__20() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__12; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__19; +x_1 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__12; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__19; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__21() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = lean_box(2); -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__10; -x_3 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__20; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__10; +x_3 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__20; x_4 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -6012,23 +5975,23 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__22() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_instInhabitedTraceState___closed__1; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__21; +x_1 = l_Lean_instInhabitedTraceState___closed__2; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__21; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__23() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = lean_box(2); -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__8; -x_3 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__22; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__8; +x_3 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__22; x_4 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -6036,23 +5999,23 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__24() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_instInhabitedTraceState___closed__1; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__23; +x_1 = l_Lean_instInhabitedTraceState___closed__2; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__23; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__25() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = lean_box(2); -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__6; -x_3 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__24; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__6; +x_3 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__24; x_4 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -6060,23 +6023,23 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__26() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_instInhabitedTraceState___closed__1; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__25; +x_1 = l_Lean_instInhabitedTraceState___closed__2; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__25; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__27() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__27() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = lean_box(2); -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__4; -x_3 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__26; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__4; +x_3 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__26; x_4 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -6084,11 +6047,11 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3018_() { +static lean_object* _init_l___auto____x40_Lean_Util_Trace___hyg_3014_() { _start: { lean_object* x_1; -x_1 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__27; +x_1 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__27; return x_1; } } @@ -6729,8 +6692,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276____closed__5; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__1; -x_3 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__13; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__1; +x_3 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__13; x_4 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__1; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -6757,8 +6720,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276____closed__5; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__1; -x_3 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__13; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__1; +x_3 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__13; x_4 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__4; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -6777,8 +6740,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276____closed__5; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__1; -x_3 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__13; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__1; +x_3 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__13; x_4 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__6; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -6797,8 +6760,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276____closed__5; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__1; -x_3 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__13; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__1; +x_3 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__13; x_4 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__8; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -6825,8 +6788,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276____closed__5; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__1; -x_3 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__13; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__1; +x_3 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__13; x_4 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__11; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -6845,8 +6808,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276____closed__5; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__1; -x_3 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__13; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__1; +x_3 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__13; x_4 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__13; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -6900,8 +6863,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276____closed__5; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__1; -x_3 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__13; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__1; +x_3 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__13; x_4 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__19; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -6928,8 +6891,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276____closed__5; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__1; -x_3 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__13; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__1; +x_3 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__13; x_4 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__22; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -6948,8 +6911,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276____closed__5; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__1; -x_3 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__13; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__1; +x_3 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__13; x_4 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__24; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -6976,8 +6939,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276____closed__5; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__1; -x_3 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__13; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__1; +x_3 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__13; x_4 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__27; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -7004,8 +6967,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276____closed__5; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__1; -x_3 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__13; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__1; +x_3 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__13; x_4 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__30; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -7099,8 +7062,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276____closed__5; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__1; -x_3 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__13; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__1; +x_3 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__13; x_4 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__40; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -7178,8 +7141,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276____closed__5; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__1; -x_3 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__13; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__1; +x_3 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__13; x_4 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__48; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -7225,8 +7188,8 @@ lean_inc(x_7); x_13 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_13, 0, x_7); lean_ctor_set(x_13, 1, x_12); -x_14 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__8; -x_15 = l_Lean_instInhabitedTraceState___closed__1; +x_14 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__8; +x_15 = l_Lean_instInhabitedTraceState___closed__2; lean_inc(x_7); x_16 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_16, 0, x_7); @@ -7448,8 +7411,8 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_initFn____x40_Lean_Util_Trace___hyg_1276____closed__5; -x_2 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__1; -x_3 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__13; +x_2 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__1; +x_3 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__13; x_4 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___closed__3; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -7651,7 +7614,7 @@ lean_ctor_set(x_29, 0, x_18); lean_ctor_set(x_29, 1, x_27); lean_ctor_set(x_29, 2, x_26); lean_ctor_set(x_29, 3, x_28); -x_30 = l___auto____x40_Lean_Util_Trace___hyg_3018____closed__8; +x_30 = l___auto____x40_Lean_Util_Trace___hyg_3014____closed__8; lean_inc(x_18); x_31 = l_Lean_Syntax_node1(x_18, x_30, x_29); x_32 = l_Lean___aux__Lean__Util__Trace______macroRules__Lean__doElemTrace_x5b___x5d______1___lambda__1___closed__38; @@ -8068,135 +8031,92 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, uint8_t x_16, double x_17, double x_18, lean_object* x_19) { +LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, uint8_t x_15, double x_16, double x_17, lean_object* x_18) { _start: { -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; double x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_inc(x_2); -x_20 = lean_apply_1(x_1, x_2); -x_21 = l_Lean_stringToMessageData(x_20); -lean_dec(x_20); -x_22 = l_Lean_withTraceNodeBefore___rarg___lambda__3___closed__1; -x_23 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_23, 0, x_22); -lean_ctor_set(x_23, 1, x_21); -x_24 = l_Lean_withTraceNodeBefore___rarg___lambda__3___closed__3; +x_19 = lean_apply_1(x_1, x_2); +x_20 = l_Lean_stringToMessageData(x_19); +lean_dec(x_19); +x_21 = l_Lean_withTraceNodeBefore___rarg___lambda__3___closed__1; +x_22 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_22, 0, x_21); +lean_ctor_set(x_22, 1, x_20); +x_23 = l_Lean_withTraceNodeBefore___rarg___lambda__3___closed__3; +x_24 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_24, 0, x_22); +lean_ctor_set(x_24, 1, x_23); x_25 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_25, 0, x_23); -lean_ctor_set(x_25, 1, x_24); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_3); x_26 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_26, 1, x_3); -x_27 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_27, 0, x_26); -lean_ctor_set(x_27, 1, x_22); -x_28 = l_Lean_addTrace___rarg___lambda__1___closed__1; -lean_inc(x_6); -lean_inc(x_4); -x_29 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_29, 0, x_4); -lean_ctor_set(x_29, 1, x_6); -lean_ctor_set_float(x_29, sizeof(void*)*2, x_28); -lean_ctor_set_float(x_29, sizeof(void*)*2 + 8, x_28); -lean_ctor_set_uint8(x_29, sizeof(void*)*2 + 16, x_5); -x_30 = l_Lean_withTraceNode___rarg___lambda__5___closed__1; -x_31 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_15, x_30); -if (x_31 == 0) +lean_ctor_set(x_26, 1, x_21); +if (x_15 == 0) { -if (x_16 == 0) -{ -lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -lean_dec(x_6); -lean_dec(x_4); -x_32 = lean_ctor_get(x_7, 0); -lean_inc(x_32); -x_33 = lean_ctor_get(x_32, 1); -lean_inc(x_33); -lean_dec(x_32); -x_34 = lean_box(0); -x_35 = lean_apply_2(x_33, lean_box(0), x_34); +double x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_27 = l_Lean_addTrace___rarg___lambda__1___closed__1; +x_28 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_28, 0, x_4); +lean_ctor_set(x_28, 1, x_6); +lean_ctor_set_float(x_28, sizeof(void*)*2, x_27); +lean_ctor_set_float(x_28, sizeof(void*)*2 + 8, x_27); +lean_ctor_set_uint8(x_28, sizeof(void*)*2 + 16, x_5); +x_29 = lean_ctor_get(x_7, 0); +lean_inc(x_29); +x_30 = lean_ctor_get(x_29, 1); +lean_inc(x_30); +lean_dec(x_29); +x_31 = lean_box(0); +x_32 = lean_apply_2(x_30, lean_box(0), x_31); lean_inc(x_14); -x_36 = lean_alloc_closure((void*)(l_Lean_withTraceNodeBefore___rarg___lambda__2___boxed), 12, 11); -lean_closure_set(x_36, 0, x_7); -lean_closure_set(x_36, 1, x_8); -lean_closure_set(x_36, 2, x_9); -lean_closure_set(x_36, 3, x_10); -lean_closure_set(x_36, 4, x_11); -lean_closure_set(x_36, 5, x_12); -lean_closure_set(x_36, 6, x_27); -lean_closure_set(x_36, 7, x_13); -lean_closure_set(x_36, 8, x_2); -lean_closure_set(x_36, 9, x_14); -lean_closure_set(x_36, 10, x_29); -x_37 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_35, x_36); -return x_37; +x_33 = lean_alloc_closure((void*)(l_Lean_withTraceNodeBefore___rarg___lambda__2___boxed), 12, 11); +lean_closure_set(x_33, 0, x_7); +lean_closure_set(x_33, 1, x_8); +lean_closure_set(x_33, 2, x_9); +lean_closure_set(x_33, 3, x_10); +lean_closure_set(x_33, 4, x_11); +lean_closure_set(x_33, 5, x_12); +lean_closure_set(x_33, 6, x_26); +lean_closure_set(x_33, 7, x_13); +lean_closure_set(x_33, 8, x_2); +lean_closure_set(x_33, 9, x_14); +lean_closure_set(x_33, 10, x_28); +x_34 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_32, x_33); +return x_34; } else { -lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; -lean_dec(x_29); -x_38 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_38, 0, x_4); -lean_ctor_set(x_38, 1, x_6); -lean_ctor_set_float(x_38, sizeof(void*)*2, x_17); -lean_ctor_set_float(x_38, sizeof(void*)*2 + 8, x_18); -lean_ctor_set_uint8(x_38, sizeof(void*)*2 + 16, x_5); -x_39 = lean_ctor_get(x_7, 0); -lean_inc(x_39); -x_40 = lean_ctor_get(x_39, 1); -lean_inc(x_40); -lean_dec(x_39); -x_41 = lean_box(0); -x_42 = lean_apply_2(x_40, lean_box(0), x_41); +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_35 = lean_alloc_ctor(0, 2, 17); +lean_ctor_set(x_35, 0, x_4); +lean_ctor_set(x_35, 1, x_6); +lean_ctor_set_float(x_35, sizeof(void*)*2, x_16); +lean_ctor_set_float(x_35, sizeof(void*)*2 + 8, x_17); +lean_ctor_set_uint8(x_35, sizeof(void*)*2 + 16, x_5); +x_36 = lean_ctor_get(x_7, 0); +lean_inc(x_36); +x_37 = lean_ctor_get(x_36, 1); +lean_inc(x_37); +lean_dec(x_36); +x_38 = lean_box(0); +x_39 = lean_apply_2(x_37, lean_box(0), x_38); lean_inc(x_14); -x_43 = lean_alloc_closure((void*)(l_Lean_withTraceNodeBefore___rarg___lambda__2___boxed), 12, 11); -lean_closure_set(x_43, 0, x_7); -lean_closure_set(x_43, 1, x_8); -lean_closure_set(x_43, 2, x_9); -lean_closure_set(x_43, 3, x_10); -lean_closure_set(x_43, 4, x_11); -lean_closure_set(x_43, 5, x_12); -lean_closure_set(x_43, 6, x_27); -lean_closure_set(x_43, 7, x_13); -lean_closure_set(x_43, 8, x_2); -lean_closure_set(x_43, 9, x_14); -lean_closure_set(x_43, 10, x_38); -x_44 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_42, x_43); -return x_44; -} -} -else -{ -lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -lean_dec(x_29); -x_45 = lean_alloc_ctor(0, 2, 17); -lean_ctor_set(x_45, 0, x_4); -lean_ctor_set(x_45, 1, x_6); -lean_ctor_set_float(x_45, sizeof(void*)*2, x_17); -lean_ctor_set_float(x_45, sizeof(void*)*2 + 8, x_18); -lean_ctor_set_uint8(x_45, sizeof(void*)*2 + 16, x_5); -x_46 = lean_ctor_get(x_7, 0); -lean_inc(x_46); -x_47 = lean_ctor_get(x_46, 1); -lean_inc(x_47); -lean_dec(x_46); -x_48 = lean_box(0); -x_49 = lean_apply_2(x_47, lean_box(0), x_48); -lean_inc(x_14); -x_50 = lean_alloc_closure((void*)(l_Lean_withTraceNodeBefore___rarg___lambda__2___boxed), 12, 11); -lean_closure_set(x_50, 0, x_7); -lean_closure_set(x_50, 1, x_8); -lean_closure_set(x_50, 2, x_9); -lean_closure_set(x_50, 3, x_10); -lean_closure_set(x_50, 4, x_11); -lean_closure_set(x_50, 5, x_12); -lean_closure_set(x_50, 6, x_27); -lean_closure_set(x_50, 7, x_13); -lean_closure_set(x_50, 8, x_2); -lean_closure_set(x_50, 9, x_14); -lean_closure_set(x_50, 10, x_45); -x_51 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_49, x_50); -return x_51; +x_40 = lean_alloc_closure((void*)(l_Lean_withTraceNodeBefore___rarg___lambda__2___boxed), 12, 11); +lean_closure_set(x_40, 0, x_7); +lean_closure_set(x_40, 1, x_8); +lean_closure_set(x_40, 2, x_9); +lean_closure_set(x_40, 3, x_10); +lean_closure_set(x_40, 4, x_11); +lean_closure_set(x_40, 5, x_12); +lean_closure_set(x_40, 6, x_26); +lean_closure_set(x_40, 7, x_13); +lean_closure_set(x_40, 8, x_2); +lean_closure_set(x_40, 9, x_14); +lean_closure_set(x_40, 10, x_35); +x_41 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_39, x_40); +return x_41; } } } @@ -8212,10 +8132,10 @@ x_8 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_6, x_7); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, uint8_t x_15, uint8_t x_16, lean_object* x_17) { +LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, uint8_t x_15, uint8_t x_16, lean_object* x_17) { _start: { -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_42; uint8_t x_43; +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; x_18 = lean_ctor_get(x_17, 1); lean_inc(x_18); x_19 = lean_ctor_get(x_17, 0); @@ -8226,26 +8146,81 @@ lean_inc(x_20); x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); lean_dec(x_18); -x_42 = l_Lean_withTraceNode___rarg___lambda__12___closed__1; -x_43 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_14, x_42); -if (x_43 == 0) +x_22 = l_Lean_withTraceNode___rarg___lambda__12___closed__1; +x_23 = l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(x_1, x_22); +x_24 = lean_box(x_5); +x_25 = lean_box(x_23); +lean_inc(x_21); +lean_inc(x_20); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_11); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_19); +x_26 = lean_alloc_closure((void*)(l_Lean_withTraceNodeBefore___rarg___lambda__3___boxed), 18, 17); +lean_closure_set(x_26, 0, x_2); +lean_closure_set(x_26, 1, x_19); +lean_closure_set(x_26, 2, x_3); +lean_closure_set(x_26, 3, x_4); +lean_closure_set(x_26, 4, x_24); +lean_closure_set(x_26, 5, x_6); +lean_closure_set(x_26, 6, x_7); +lean_closure_set(x_26, 7, x_8); +lean_closure_set(x_26, 8, x_9); +lean_closure_set(x_26, 9, x_10); +lean_closure_set(x_26, 10, x_11); +lean_closure_set(x_26, 11, x_12); +lean_closure_set(x_26, 12, x_13); +lean_closure_set(x_26, 13, x_14); +lean_closure_set(x_26, 14, x_25); +lean_closure_set(x_26, 15, x_20); +lean_closure_set(x_26, 16, x_21); +if (x_23 == 0) { -uint8_t x_44; -x_44 = 0; -x_22 = x_44; -goto block_41; +lean_dec(x_21); +lean_dec(x_20); +if (x_15 == 0) +{ +uint8_t x_39; +x_39 = 0; +x_27 = x_39; +goto block_38; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +lean_dec(x_19); +lean_dec(x_13); +lean_dec(x_11); +lean_dec(x_8); +x_40 = lean_ctor_get(x_7, 0); +lean_inc(x_40); +lean_dec(x_7); +x_41 = lean_ctor_get(x_40, 1); +lean_inc(x_41); +lean_dec(x_40); +x_42 = lean_box(0); +x_43 = lean_apply_2(x_41, lean_box(0), x_42); +x_44 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_43, x_26); +return x_44; +} } else { double x_45; double x_46; double x_47; x_45 = lean_unbox_float(x_21); +lean_dec(x_21); x_46 = lean_unbox_float(x_20); +lean_dec(x_20); x_47 = lean_float_sub(x_45, x_46); if (x_16 == 0) { +if (x_15 == 0) +{ lean_object* x_48; lean_object* x_49; uint8_t x_50; lean_object* x_51; double x_52; double x_53; double x_54; uint8_t x_55; x_48 = l_Lean_trace_profiler_threshold_unitAdjusted___closed__1; -x_49 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_14, x_48); +x_49 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_48); x_50 = 0; x_51 = lean_unsigned_to_nat(0u); x_52 = l_Float_ofScientific(x_49, x_50, x_51); @@ -8253,110 +8228,101 @@ lean_dec(x_49); x_53 = l_Lean_trace_profiler_threshold_unitAdjusted___closed__2; x_54 = lean_float_div(x_52, x_53); x_55 = lean_float_decLt(x_54, x_47); -x_22 = x_55; -goto block_41; +x_27 = x_55; +goto block_38; } else { -lean_object* x_56; lean_object* x_57; uint8_t x_58; lean_object* x_59; double x_60; uint8_t x_61; -x_56 = l_Lean_trace_profiler_threshold_unitAdjusted___closed__1; -x_57 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_14, x_56); -x_58 = 0; -x_59 = lean_unsigned_to_nat(0u); -x_60 = l_Float_ofScientific(x_57, x_58, x_59); -lean_dec(x_57); -x_61 = lean_float_decLt(x_60, x_47); -x_22 = x_61; -goto block_41; +lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +lean_dec(x_19); +lean_dec(x_13); +lean_dec(x_11); +lean_dec(x_8); +x_56 = lean_ctor_get(x_7, 0); +lean_inc(x_56); +lean_dec(x_7); +x_57 = lean_ctor_get(x_56, 1); +lean_inc(x_57); +lean_dec(x_56); +x_58 = lean_box(0); +x_59 = lean_apply_2(x_57, lean_box(0), x_58); +x_60 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_59, x_26); +return x_60; } } -block_41: +else { -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_box(x_4); -x_24 = lean_box(x_22); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_10); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_19); -x_25 = lean_alloc_closure((void*)(l_Lean_withTraceNodeBefore___rarg___lambda__3___boxed), 19, 18); -lean_closure_set(x_25, 0, x_1); -lean_closure_set(x_25, 1, x_19); -lean_closure_set(x_25, 2, x_2); -lean_closure_set(x_25, 3, x_3); -lean_closure_set(x_25, 4, x_23); -lean_closure_set(x_25, 5, x_5); -lean_closure_set(x_25, 6, x_6); -lean_closure_set(x_25, 7, x_7); -lean_closure_set(x_25, 8, x_8); -lean_closure_set(x_25, 9, x_9); -lean_closure_set(x_25, 10, x_10); -lean_closure_set(x_25, 11, x_11); -lean_closure_set(x_25, 12, x_12); -lean_closure_set(x_25, 13, x_13); -lean_closure_set(x_25, 14, x_14); -lean_closure_set(x_25, 15, x_24); -lean_closure_set(x_25, 16, x_20); -lean_closure_set(x_25, 17, x_21); if (x_15 == 0) { -if (x_22 == 0) -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; -lean_dec(x_25); -x_26 = lean_ctor_get(x_7, 0); -lean_inc(x_26); -lean_dec(x_7); -x_27 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__9), 2, 1); -lean_closure_set(x_27, 0, x_10); -x_28 = lean_apply_1(x_26, x_27); -lean_inc(x_13); -x_29 = lean_alloc_closure((void*)(l_Lean_withTraceNodeBefore___rarg___lambda__4___boxed), 5, 4); -lean_closure_set(x_29, 0, x_6); -lean_closure_set(x_29, 1, x_12); -lean_closure_set(x_29, 2, x_19); -lean_closure_set(x_29, 3, x_13); -x_30 = lean_apply_4(x_13, lean_box(0), lean_box(0), x_28, x_29); -return x_30; +lean_object* x_61; lean_object* x_62; uint8_t x_63; lean_object* x_64; double x_65; uint8_t x_66; +x_61 = l_Lean_trace_profiler_threshold_unitAdjusted___closed__1; +x_62 = l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(x_1, x_61); +x_63 = 0; +x_64 = lean_unsigned_to_nat(0u); +x_65 = l_Float_ofScientific(x_62, x_63, x_64); +lean_dec(x_62); +x_66 = lean_float_decLt(x_65, x_47); +x_27 = x_66; +goto block_38; } else { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_dec(x_19); -lean_dec(x_12); -lean_dec(x_10); +lean_dec(x_13); +lean_dec(x_11); +lean_dec(x_8); +x_67 = lean_ctor_get(x_7, 0); +lean_inc(x_67); lean_dec(x_7); -x_31 = lean_ctor_get(x_6, 0); -lean_inc(x_31); -lean_dec(x_6); -x_32 = lean_ctor_get(x_31, 1); -lean_inc(x_32); -lean_dec(x_31); -x_33 = lean_box(0); -x_34 = lean_apply_2(x_32, lean_box(0), x_33); -x_35 = lean_apply_4(x_13, lean_box(0), lean_box(0), x_34, x_25); -return x_35; +x_68 = lean_ctor_get(x_67, 1); +lean_inc(x_68); +lean_dec(x_67); +x_69 = lean_box(0); +x_70 = lean_apply_2(x_68, lean_box(0), x_69); +x_71 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_70, x_26); +return x_71; } } +} +block_38: +{ +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +lean_dec(x_26); +x_28 = lean_ctor_get(x_8, 0); +lean_inc(x_28); +lean_dec(x_8); +x_29 = lean_alloc_closure((void*)(l_Lean_withTraceNode___rarg___lambda__9), 2, 1); +lean_closure_set(x_29, 0, x_11); +x_30 = lean_apply_1(x_28, x_29); +lean_inc(x_14); +x_31 = lean_alloc_closure((void*)(l_Lean_withTraceNodeBefore___rarg___lambda__4___boxed), 5, 4); +lean_closure_set(x_31, 0, x_7); +lean_closure_set(x_31, 1, x_13); +lean_closure_set(x_31, 2, x_19); +lean_closure_set(x_31, 3, x_14); +x_32 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_30, x_31); +return x_32; +} else { -lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_dec(x_19); -lean_dec(x_12); -lean_dec(x_10); +lean_dec(x_13); +lean_dec(x_11); +lean_dec(x_8); +x_33 = lean_ctor_get(x_7, 0); +lean_inc(x_33); lean_dec(x_7); -x_36 = lean_ctor_get(x_6, 0); -lean_inc(x_36); -lean_dec(x_6); -x_37 = lean_ctor_get(x_36, 1); -lean_inc(x_37); -lean_dec(x_36); -x_38 = lean_box(0); -x_39 = lean_apply_2(x_37, lean_box(0), x_38); -x_40 = lean_apply_4(x_13, lean_box(0), lean_box(0), x_39, x_25); -return x_40; +x_34 = lean_ctor_get(x_33, 1); +lean_inc(x_34); +lean_dec(x_33); +x_35 = lean_box(0); +x_36 = lean_apply_2(x_34, lean_box(0), x_35); +x_37 = lean_apply_4(x_14, lean_box(0), lean_box(0), x_36, x_26); +return x_37; } } } @@ -8385,20 +8351,20 @@ x_28 = lean_box(x_25); lean_inc(x_2); lean_inc(x_1); x_29 = lean_alloc_closure((void*)(l_Lean_withTraceNodeBefore___rarg___lambda__5___boxed), 17, 16); -lean_closure_set(x_29, 0, x_6); -lean_closure_set(x_29, 1, x_18); -lean_closure_set(x_29, 2, x_7); -lean_closure_set(x_29, 3, x_26); -lean_closure_set(x_29, 4, x_9); -lean_closure_set(x_29, 5, x_1); -lean_closure_set(x_29, 6, x_10); -lean_closure_set(x_29, 7, x_11); -lean_closure_set(x_29, 8, x_12); -lean_closure_set(x_29, 9, x_13); -lean_closure_set(x_29, 10, x_14); -lean_closure_set(x_29, 11, x_15); -lean_closure_set(x_29, 12, x_2); -lean_closure_set(x_29, 13, x_5); +lean_closure_set(x_29, 0, x_5); +lean_closure_set(x_29, 1, x_6); +lean_closure_set(x_29, 2, x_18); +lean_closure_set(x_29, 3, x_7); +lean_closure_set(x_29, 4, x_26); +lean_closure_set(x_29, 5, x_9); +lean_closure_set(x_29, 6, x_1); +lean_closure_set(x_29, 7, x_10); +lean_closure_set(x_29, 8, x_11); +lean_closure_set(x_29, 9, x_12); +lean_closure_set(x_29, 10, x_13); +lean_closure_set(x_29, 11, x_14); +lean_closure_set(x_29, 12, x_15); +lean_closure_set(x_29, 13, x_2); lean_closure_set(x_29, 14, x_27); lean_closure_set(x_29, 15, x_28); if (x_25 == 0) @@ -8722,22 +8688,20 @@ lean_object* x_15 = _args[14]; lean_object* x_16 = _args[15]; lean_object* x_17 = _args[16]; lean_object* x_18 = _args[17]; -lean_object* x_19 = _args[18]; _start: { -uint8_t x_20; uint8_t x_21; double x_22; double x_23; lean_object* x_24; -x_20 = lean_unbox(x_5); +uint8_t x_19; uint8_t x_20; double x_21; double x_22; lean_object* x_23; +x_19 = lean_unbox(x_5); lean_dec(x_5); -x_21 = lean_unbox(x_16); +x_20 = lean_unbox(x_15); +lean_dec(x_15); +x_21 = lean_unbox_float(x_16); lean_dec(x_16); x_22 = lean_unbox_float(x_17); lean_dec(x_17); -x_23 = lean_unbox_float(x_18); +x_23 = l_Lean_withTraceNodeBefore___rarg___lambda__3(x_1, x_2, x_3, x_4, x_19, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_20, x_21, x_22, x_18); lean_dec(x_18); -x_24 = l_Lean_withTraceNodeBefore___rarg___lambda__3(x_1, x_2, x_3, x_4, x_20, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_21, x_22, x_23, x_19); -lean_dec(x_19); -lean_dec(x_15); -return x_24; +return x_23; } } LEAN_EXPORT lean_object* l_Lean_withTraceNodeBefore___rarg___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { @@ -8770,13 +8734,14 @@ lean_object* x_17 = _args[16]; _start: { uint8_t x_18; uint8_t x_19; uint8_t x_20; lean_object* x_21; -x_18 = lean_unbox(x_4); -lean_dec(x_4); +x_18 = lean_unbox(x_5); +lean_dec(x_5); x_19 = lean_unbox(x_15); lean_dec(x_15); x_20 = lean_unbox(x_16); lean_dec(x_16); -x_21 = l_Lean_withTraceNodeBefore___rarg___lambda__5(x_1, x_2, x_3, x_18, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_19, x_20, x_17); +x_21 = l_Lean_withTraceNodeBefore___rarg___lambda__5(x_1, x_2, x_3, x_4, x_18, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_19, x_20, x_17); +lean_dec(x_1); return x_21; } } @@ -11103,14 +11068,15 @@ lean_mark_persistent(l_Lean_instInhabitedTraceElem___closed__2); l_Lean_instInhabitedTraceElem = _init_l_Lean_instInhabitedTraceElem(); lean_mark_persistent(l_Lean_instInhabitedTraceElem); l_Lean_instInhabitedTraceState___closed__1 = _init_l_Lean_instInhabitedTraceState___closed__1(); -lean_mark_persistent(l_Lean_instInhabitedTraceState___closed__1); l_Lean_instInhabitedTraceState___closed__2 = _init_l_Lean_instInhabitedTraceState___closed__2(); lean_mark_persistent(l_Lean_instInhabitedTraceState___closed__2); l_Lean_instInhabitedTraceState___closed__3 = _init_l_Lean_instInhabitedTraceState___closed__3(); +lean_mark_persistent(l_Lean_instInhabitedTraceState___closed__3); l_Lean_instInhabitedTraceState___closed__4 = _init_l_Lean_instInhabitedTraceState___closed__4(); -lean_mark_persistent(l_Lean_instInhabitedTraceState___closed__4); l_Lean_instInhabitedTraceState___closed__5 = _init_l_Lean_instInhabitedTraceState___closed__5(); lean_mark_persistent(l_Lean_instInhabitedTraceState___closed__5); +l_Lean_instInhabitedTraceState___closed__6 = _init_l_Lean_instInhabitedTraceState___closed__6(); +lean_mark_persistent(l_Lean_instInhabitedTraceState___closed__6); l_Lean_instInhabitedTraceState = _init_l_Lean_instInhabitedTraceState(); lean_mark_persistent(l_Lean_instInhabitedTraceState); l_Lean_initFn____x40_Lean_Util_Trace___hyg_75____closed__1 = _init_l_Lean_initFn____x40_Lean_Util_Trace___hyg_75____closed__1(); @@ -11238,8 +11204,6 @@ lean_mark_persistent(l_Lean_trace_profiler_threshold_unitAdjusted___closed__1); l_Lean_trace_profiler_threshold_unitAdjusted___closed__2 = _init_l_Lean_trace_profiler_threshold_unitAdjusted___closed__2(); l_Lean_instMonadAlwaysExceptEIO___closed__1 = _init_l_Lean_instMonadAlwaysExceptEIO___closed__1(); lean_mark_persistent(l_Lean_instMonadAlwaysExceptEIO___closed__1); -l_Lean_withTraceNode___rarg___lambda__5___closed__1 = _init_l_Lean_withTraceNode___rarg___lambda__5___closed__1(); -lean_mark_persistent(l_Lean_withTraceNode___rarg___lambda__5___closed__1); l_Lean_withTraceNode___rarg___lambda__6___closed__1 = _init_l_Lean_withTraceNode___rarg___lambda__6___closed__1(); lean_mark_persistent(l_Lean_withTraceNode___rarg___lambda__6___closed__1); l_Lean_withTraceNode___rarg___lambda__6___closed__2 = _init_l_Lean_withTraceNode___rarg___lambda__6___closed__2(); @@ -11248,62 +11212,62 @@ l_Lean_withTraceNode___rarg___lambda__12___closed__1 = _init_l_Lean_withTraceNod lean_mark_persistent(l_Lean_withTraceNode___rarg___lambda__12___closed__1); l_Lean_withTraceNode_x27___rarg___closed__1 = _init_l_Lean_withTraceNode_x27___rarg___closed__1(); lean_mark_persistent(l_Lean_withTraceNode_x27___rarg___closed__1); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__1 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__1(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__1); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__2 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__2(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__2); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__3 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__3(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__3); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__4 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__4(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__4); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__5 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__5(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__5); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__6 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__6(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__6); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__7 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__7(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__7); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__8 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__8(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__8); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__9 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__9(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__9); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__10 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__10(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__10); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__11 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__11(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__11); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__12 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__12(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__12); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__13 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__13(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__13); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__14 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__14(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__14); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__15 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__15(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__15); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__16 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__16(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__16); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__17 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__17(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__17); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__18 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__18(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__18); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__19 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__19(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__19); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__20 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__20(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__20); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__21 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__21(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__21); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__22 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__22(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__22); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__23 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__23(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__23); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__24 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__24(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__24); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__25 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__25(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__25); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__26 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__26(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__26); -l___auto____x40_Lean_Util_Trace___hyg_3018____closed__27 = _init_l___auto____x40_Lean_Util_Trace___hyg_3018____closed__27(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018____closed__27); -l___auto____x40_Lean_Util_Trace___hyg_3018_ = _init_l___auto____x40_Lean_Util_Trace___hyg_3018_(); -lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3018_); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__1 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__1(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__1); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__2 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__2(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__2); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__3 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__3(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__3); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__4 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__4(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__4); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__5 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__5(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__5); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__6 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__6(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__6); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__7 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__7(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__7); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__8 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__8(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__8); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__9 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__9(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__9); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__10 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__10(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__10); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__11 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__11(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__11); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__12 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__12(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__12); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__13 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__13(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__13); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__14 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__14(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__14); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__15 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__15(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__15); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__16 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__16(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__16); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__17 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__17(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__17); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__18 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__18(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__18); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__19 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__19(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__19); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__20 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__20(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__20); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__21 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__21(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__21); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__22 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__22(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__22); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__23 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__23(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__23); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__24 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__24(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__24); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__25 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__25(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__25); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__26 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__26(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__26); +l___auto____x40_Lean_Util_Trace___hyg_3014____closed__27 = _init_l___auto____x40_Lean_Util_Trace___hyg_3014____closed__27(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014____closed__27); +l___auto____x40_Lean_Util_Trace___hyg_3014_ = _init_l___auto____x40_Lean_Util_Trace___hyg_3014_(); +lean_mark_persistent(l___auto____x40_Lean_Util_Trace___hyg_3014_); l_Lean_registerTraceClass___closed__1 = _init_l_Lean_registerTraceClass___closed__1(); lean_mark_persistent(l_Lean_registerTraceClass___closed__1); l_Lean_registerTraceClass___closed__2 = _init_l_Lean_registerTraceClass___closed__2(); diff --git a/stage0/stdlib/Std/Time/DateTime/PlainDateTime.c b/stage0/stdlib/Std/Time/DateTime/PlainDateTime.c index 1b61425373..bf0be4b439 100644 --- a/stage0/stdlib/Std/Time/DateTime/PlainDateTime.c +++ b/stage0/stdlib/Std/Time/DateTime/PlainDateTime.c @@ -87,7 +87,6 @@ static lean_object* l_Std_Time_PlainDateTime_instHAddOffset__1___closed__1; static lean_object* l_Std_Time_instInhabitedPlainDateTime___closed__17; static lean_object* l_Std_Time_PlainDateTime_ofTimestampAssumingUTC___lambda__2___closed__9; LEAN_EXPORT lean_object* l_Std_Time_PlainDateTime_addDays___boxed(lean_object*, lean_object*); -lean_object* l_Fin_ofNat(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at_Std_Time_PlainDateTime_ofTimestampAssumingUTC___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Time_PlainDateTime_instHAddOffset__5; static lean_object* l_Std_Time_PlainDateTime_ofTimestampAssumingUTC___lambda__2___closed__3; @@ -204,6 +203,7 @@ LEAN_EXPORT lean_object* l_Std_Time_PlainDateTime_addHours(lean_object*, lean_ob static lean_object* l_Std_Time_PlainDateTime_ofTimestampAssumingUTC___lambda__2___closed__14; static lean_object* l_Std_Time_instInhabitedPlainDateTime___closed__35; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +lean_object* lean_nat_mod(lean_object*, lean_object*); static lean_object* l_Std_Time_instInhabitedPlainDateTime___closed__39; LEAN_EXPORT lean_object* l_Std_Time_PlainDateTime_instHAddOffset__6; LEAN_EXPORT lean_object* l_Std_Time_PlainDateTime_subYearsClip___boxed(lean_object*, lean_object*); @@ -1654,8 +1654,8 @@ lean_inc(x_31); lean_dec(x_29); x_32 = l_Int_toNat(x_31); lean_dec(x_31); -x_33 = lean_unsigned_to_nat(30u); -x_34 = l_Fin_ofNat(x_33, x_32); +x_33 = lean_unsigned_to_nat(31u); +x_34 = lean_nat_mod(x_32, x_33); lean_dec(x_32); x_35 = lean_unsigned_to_nat(10u); x_36 = lean_nat_dec_lt(x_35, x_30); diff --git a/stage0/stdlib/Std/Time/Format.c b/stage0/stdlib/Std/Time/Format.c index 6ba68d6fe6..6cb9efd295 100644 --- a/stage0/stdlib/Std/Time/Format.c +++ b/stage0/stdlib/Std/Time/Format.c @@ -114,7 +114,6 @@ static lean_object* l_Std_Time_Formats_rfc822___closed__15; static lean_object* l_Std_Time_Formats_ascTime___closed__16; LEAN_EXPORT lean_object* l_Std_Time_PlainTime_fromTime24Hour(lean_object*); LEAN_EXPORT lean_object* l_Std_Time_ZonedDateTime_toRFC822String(lean_object*); -lean_object* l_Fin_ofNat(lean_object*, lean_object*); static lean_object* l_Std_Time_Formats_rfc850___closed__6; LEAN_EXPORT lean_object* l_Std_Time_DateTime_fromLongDateFormatString(lean_object*); static lean_object* l_Std_Time_Formats_leanDateTimeWithIdentifier___closed__10; @@ -183,7 +182,6 @@ static lean_object* l_Std_Time_Formats_dateTime24Hour___closed__13; LEAN_EXPORT lean_object* l_Std_Time_Formats_time12Hour; LEAN_EXPORT lean_object* l_Std_Time_PlainTime_fromLeanTime24Hour(lean_object*); static lean_object* l_Std_Time_Formats_leanDateTimeWithIdentifier___closed__5; -static lean_object* l_Std_Time_PlainTime_fromTime24Hour___lambda__1___closed__1; static lean_object* l_Std_Time_Formats_iso8601___closed__13; static lean_object* l_Std_Time_Formats_longDateFormat___closed__7; static lean_object* l_Std_Time_Formats_longDateFormat___closed__2; @@ -349,7 +347,6 @@ static lean_object* l_Std_Time_Formats_time12Hour___closed__6; static lean_object* l_Std_Time_Formats_time12Hour___closed__2; static lean_object* l_Std_Time_Formats_europeanDate___closed__2; static lean_object* l_Std_Time_Formats_leanDateTimeWithZone___closed__7; -static lean_object* l_Std_Time_PlainTime_fromTime24Hour___lambda__1___closed__2; static lean_object* l_Std_Time_Formats_leanDateTimeWithIdentifierAndNanos___closed__5; static lean_object* l_Std_Time_TimeZone_fromTimeZone___closed__3; static lean_object* l_Std_Time_Formats_ascTime___closed__6; @@ -4550,25 +4547,6 @@ lean_dec(x_1); return x_3; } } -static lean_object* _init_l_Std_Time_PlainTime_fromTime24Hour___lambda__1___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(999999999u); -x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Fin_ofNat(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Std_Time_PlainTime_fromTime24Hour___lambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Time_PlainTime_fromTime24Hour___lambda__1___closed__1; -x_2 = lean_nat_to_int(x_1); -return x_2; -} -} LEAN_EXPORT lean_object* l_Std_Time_PlainTime_fromTime24Hour___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -4577,7 +4555,7 @@ x_4 = !lean_is_exclusive(x_3); if (x_4 == 0) { lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_5 = l_Std_Time_PlainTime_fromTime24Hour___lambda__1___closed__2; +x_5 = l_Std_Time_PlainDate_format___lambda__1___closed__2; x_6 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_6, 0, x_1); lean_ctor_set(x_6, 1, x_2); @@ -4598,7 +4576,7 @@ lean_dec(x_3); x_10 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_10, 0, x_8); lean_ctor_set(x_10, 1, x_9); -x_11 = l_Std_Time_PlainTime_fromTime24Hour___lambda__1___closed__2; +x_11 = l_Std_Time_PlainDate_format___lambda__1___closed__2; x_12 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_12, 0, x_1); lean_ctor_set(x_12, 1, x_2); @@ -4796,7 +4774,7 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; x_12 = l_Std_Time_HourMarker_toAbsolute(x_4, x_1); -x_13 = l_Std_Time_PlainTime_fromTime24Hour___lambda__1___closed__2; +x_13 = l_Std_Time_PlainDate_format___lambda__1___closed__2; x_14 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_2); @@ -4818,7 +4796,7 @@ x_18 = l_Std_Time_HourMarker_toAbsolute(x_4, x_1); x_19 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_19, 0, x_16); lean_ctor_set(x_19, 1, x_17); -x_20 = l_Std_Time_PlainTime_fromTime24Hour___lambda__1___closed__2; +x_20 = l_Std_Time_PlainDate_format___lambda__1___closed__2; x_21 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_21, 0, x_18); lean_ctor_set(x_21, 1, x_2); @@ -7905,10 +7883,6 @@ l_Std_Time_PlainDate_instRepr___closed__4 = _init_l_Std_Time_PlainDate_instRepr_ lean_mark_persistent(l_Std_Time_PlainDate_instRepr___closed__4); l_Std_Time_PlainTime_format___lambda__1___closed__1 = _init_l_Std_Time_PlainTime_format___lambda__1___closed__1(); lean_mark_persistent(l_Std_Time_PlainTime_format___lambda__1___closed__1); -l_Std_Time_PlainTime_fromTime24Hour___lambda__1___closed__1 = _init_l_Std_Time_PlainTime_fromTime24Hour___lambda__1___closed__1(); -lean_mark_persistent(l_Std_Time_PlainTime_fromTime24Hour___lambda__1___closed__1); -l_Std_Time_PlainTime_fromTime24Hour___lambda__1___closed__2 = _init_l_Std_Time_PlainTime_fromTime24Hour___lambda__1___closed__2(); -lean_mark_persistent(l_Std_Time_PlainTime_fromTime24Hour___lambda__1___closed__2); l_Std_Time_PlainTime_fromTime24Hour___closed__1 = _init_l_Std_Time_PlainTime_fromTime24Hour___closed__1(); lean_mark_persistent(l_Std_Time_PlainTime_fromTime24Hour___closed__1); l_Std_Time_PlainTime_fromLeanTime24Hour___closed__1 = _init_l_Std_Time_PlainTime_fromLeanTime24Hour___closed__1(); diff --git a/stage0/stdlib/Std/Time/Format/Basic.c b/stage0/stdlib/Std/Time/Format/Basic.c index fbfc648759..9116bfad19 100644 --- a/stage0/stdlib/Std/Time/Format/Basic.c +++ b/stage0/stdlib/Std/Time/Format/Basic.c @@ -181,7 +181,6 @@ static lean_object* l_Std_Time_Awareness_instInhabitedType___lambda__2___closed_ static lean_object* l___private_Std_Time_Format_Basic_0__Std_Time_formatMonthLong___closed__8; static lean_object* l_Std_Time_OffsetZ_classify___closed__2; LEAN_EXPORT lean_object* l___private_Std_Time_Format_Basic_0__Std_Time_reprOffsetO____x40_Std_Time_Format_Basic___hyg_1279____boxed(lean_object*, lean_object*); -static lean_object* l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__20; static lean_object* l___private_Std_Time_Format_Basic_0__Std_Time_reprModifier____x40_Std_Time_Format_Basic___hyg_1845____closed__29; LEAN_EXPORT lean_object* l_Std_Internal_Parsec_manyCharsCore___at___private_Std_Time_Format_Basic_0__Std_Time_parseFormatPart___spec__4(uint32_t, lean_object*, lean_object*); static lean_object* l___private_Std_Time_Format_Basic_0__Std_Time_reprModifier____x40_Std_Time_Format_Basic___hyg_1845____closed__2; @@ -327,7 +326,6 @@ static lean_object* l___private_Std_Time_Format_Basic_0__Std_Time_parseModifier_ static lean_object* l___private_Std_Time_Format_Basic_0__Std_Time_parseModifier___closed__29; LEAN_EXPORT lean_object* l___private_Std_Time_Format_Basic_0__Std_Time_formatQuarterLong___boxed(lean_object*); LEAN_EXPORT lean_object* l_panic___at_Std_Time_GenericFormat_spec_x21___spec__1___rarg(lean_object*); -lean_object* l_Fin_ofNat(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Time_instInhabitedModifier; LEAN_EXPORT lean_object* l___private_Std_Time_Format_Basic_0__Std_Time_Awareness_getD___boxed(lean_object*, lean_object*); static lean_object* l___private_Std_Time_Format_Basic_0__Std_Time_formatMarkerLong___closed__2; @@ -595,7 +593,6 @@ static lean_object* l___private_Std_Time_Format_Basic_0__Std_Time_formatMarkerSh static lean_object* l___private_Std_Time_Format_Basic_0__Std_Time_reprOffsetO____x40_Std_Time_Format_Basic___hyg_1279____closed__1; static lean_object* l___private_Std_Time_Format_Basic_0__Std_Time_reprText____x40_Std_Time_Format_Basic___hyg_15____closed__13; lean_object* lean_int_div(lean_object*, lean_object*); -static lean_object* l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__19; static lean_object* l___private_Std_Time_Format_Basic_0__Std_Time_formatWith___closed__5; static lean_object* l___private_Std_Time_Format_Basic_0__Std_Time_parseFormatPart___closed__4; LEAN_EXPORT lean_object* l___private_Std_Time_Format_Basic_0__Std_Time_reprOffsetX____x40_Std_Time_Format_Basic___hyg_1001____boxed(lean_object*, lean_object*); @@ -85783,27 +85780,28 @@ static lean_object* _init_l___private_Std_Time_Format_Basic_0__Std_Time_GenericF _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(999999999u); -x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Fin_ofNat(x_1, x_2); +x_1 = l_Std_Time_Awareness_instInhabitedType___lambda__2___closed__27; +x_2 = l___private_Std_Time_Format_Basic_0__Std_Time_reprText____x40_Std_Time_Format_Basic___hyg_15____closed__6; +x_3 = lean_int_add(x_1, x_2); return x_3; } } static lean_object* _init_l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__5() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__4; -x_2 = lean_nat_to_int(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Std_Time_Awareness_instInhabitedType___lambda__2___closed__21; +x_2 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__4; +x_3 = lean_int_emod(x_1, x_2); +return x_3; } } static lean_object* _init_l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Time_Awareness_instInhabitedType___lambda__2___closed__27; -x_2 = l___private_Std_Time_Format_Basic_0__Std_Time_reprText____x40_Std_Time_Format_Basic___hyg_15____closed__6; +x_1 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__5; +x_2 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__4; x_3 = lean_int_add(x_1, x_2); return x_3; } @@ -85812,8 +85810,8 @@ static lean_object* _init_l___private_Std_Time_Format_Basic_0__Std_Time_GenericF _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Time_Awareness_instInhabitedType___lambda__2___closed__21; -x_2 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__6; +x_1 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__6; +x_2 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__4; x_3 = lean_int_emod(x_1, x_2); return x_3; } @@ -85823,7 +85821,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__7; -x_2 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__6; +x_2 = l_Std_Time_Awareness_instInhabitedType___lambda__2___closed__1; x_3 = lean_int_add(x_1, x_2); return x_3; } @@ -85831,29 +85829,9 @@ return x_3; static lean_object* _init_l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__9() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__8; -x_2 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__6; -x_3 = lean_int_emod(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__9; -x_2 = l_Std_Time_Awareness_instInhabitedType___lambda__2___closed__1; -x_3 = lean_int_add(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__11() { -_start: -{ uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = 0; -x_2 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__10; +x_2 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__8; x_3 = lean_box(x_1); x_4 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_4, 0, x_3); @@ -85861,7 +85839,7 @@ lean_ctor_set(x_4, 1, x_2); return x_4; } } -static lean_object* _init_l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__12() { +static lean_object* _init_l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -85871,6 +85849,26 @@ x_3 = lean_int_sub(x_1, x_2); return x_3; } } +static lean_object* _init_l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__10; +x_2 = l_Std_Time_Awareness_instInhabitedType___lambda__2___closed__12; +x_3 = lean_int_emod(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__11; +x_2 = l_Std_Time_Awareness_instInhabitedType___lambda__2___closed__12; +x_3 = lean_int_add(x_1, x_2); +return x_3; +} +} static lean_object* _init_l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__13() { _start: { @@ -85886,7 +85884,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__13; -x_2 = l_Std_Time_Awareness_instInhabitedType___lambda__2___closed__12; +x_2 = l___private_Std_Time_Format_Basic_0__Std_Time_reprText____x40_Std_Time_Format_Basic___hyg_15____closed__6; x_3 = lean_int_add(x_1, x_2); return x_3; } @@ -85895,8 +85893,8 @@ static lean_object* _init_l___private_Std_Time_Format_Basic_0__Std_Time_GenericF _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__14; -x_2 = l_Std_Time_Awareness_instInhabitedType___lambda__2___closed__12; +x_1 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__10; +x_2 = l_Std_Time_Awareness_instInhabitedType___lambda__2___closed__4; x_3 = lean_int_emod(x_1, x_2); return x_3; } @@ -85906,7 +85904,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__15; -x_2 = l___private_Std_Time_Format_Basic_0__Std_Time_reprText____x40_Std_Time_Format_Basic___hyg_15____closed__6; +x_2 = l_Std_Time_Awareness_instInhabitedType___lambda__2___closed__4; x_3 = lean_int_add(x_1, x_2); return x_3; } @@ -85915,7 +85913,7 @@ static lean_object* _init_l___private_Std_Time_Format_Basic_0__Std_Time_GenericF _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__12; +x_1 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__16; x_2 = l_Std_Time_Awareness_instInhabitedType___lambda__2___closed__4; x_3 = lean_int_emod(x_1, x_2); return x_3; @@ -85926,26 +85924,6 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__17; -x_2 = l_Std_Time_Awareness_instInhabitedType___lambda__2___closed__4; -x_3 = lean_int_add(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__19() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__18; -x_2 = l_Std_Time_Awareness_instInhabitedType___lambda__2___closed__4; -x_3 = lean_int_emod(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__20() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__19; x_2 = l___private_Std_Time_Format_Basic_0__Std_Time_reprText____x40_Std_Time_Format_Basic___hyg_15____closed__6; x_3 = lean_int_add(x_1, x_2); return x_3; @@ -85981,64 +85959,64 @@ x_64 = lean_ctor_get(x_1, 22); lean_inc(x_64); if (lean_obj_tag(x_53) == 0) { +lean_object* x_234; +x_234 = lean_ctor_get(x_1, 27); +lean_inc(x_234); +if (lean_obj_tag(x_234) == 0) +{ lean_object* x_235; -x_235 = lean_ctor_get(x_1, 27); +x_235 = lean_ctor_get(x_1, 28); lean_inc(x_235); if (lean_obj_tag(x_235) == 0) { lean_object* x_236; -x_236 = lean_ctor_get(x_1, 28); +x_236 = lean_ctor_get(x_1, 29); lean_inc(x_236); if (lean_obj_tag(x_236) == 0) { lean_object* x_237; -x_237 = lean_ctor_get(x_1, 29); -lean_inc(x_237); -if (lean_obj_tag(x_237) == 0) +x_237 = l_Std_Time_TimeZone_Offset_zero; +x_65 = x_237; +goto block_233; +} +else { lean_object* x_238; -x_238 = l_Std_Time_TimeZone_Offset_zero; +x_238 = lean_ctor_get(x_236, 0); +lean_inc(x_238); +lean_dec(x_236); x_65 = x_238; -goto block_234; +goto block_233; +} } else { lean_object* x_239; -x_239 = lean_ctor_get(x_237, 0); +x_239 = lean_ctor_get(x_235, 0); lean_inc(x_239); -lean_dec(x_237); +lean_dec(x_235); x_65 = x_239; -goto block_234; +goto block_233; } } else { lean_object* x_240; -x_240 = lean_ctor_get(x_236, 0); +x_240 = lean_ctor_get(x_234, 0); lean_inc(x_240); -lean_dec(x_236); +lean_dec(x_234); x_65 = x_240; -goto block_234; +goto block_233; } } else { lean_object* x_241; -x_241 = lean_ctor_get(x_235, 0); +x_241 = lean_ctor_get(x_53, 0); lean_inc(x_241); -lean_dec(x_235); -x_65 = x_241; -goto block_234; -} -} -else -{ -lean_object* x_242; -x_242 = lean_ctor_get(x_53, 0); -lean_inc(x_242); lean_dec(x_53); -x_65 = x_242; -goto block_234; +x_65 = x_241; +goto block_233; } block_52: { @@ -86147,81 +86125,81 @@ return x_51; } } } -block_234: +block_233: { lean_object* x_66; if (lean_obj_tag(x_54) == 0) { -lean_object* x_229; -x_229 = lean_ctor_get(x_1, 24); -lean_inc(x_229); -if (lean_obj_tag(x_229) == 0) +lean_object* x_228; +x_228 = lean_ctor_get(x_1, 24); +lean_inc(x_228); +if (lean_obj_tag(x_228) == 0) { -uint8_t x_230; lean_object* x_231; -x_230 = 1; +uint8_t x_229; lean_object* x_230; +x_229 = 1; lean_inc(x_65); -x_231 = l_Std_Time_TimeZone_Offset_toIsoString(x_65, x_230); +x_230 = l_Std_Time_TimeZone_Offset_toIsoString(x_65, x_229); +x_66 = x_230; +goto block_227; +} +else +{ +lean_object* x_231; +x_231 = lean_ctor_get(x_228, 0); +lean_inc(x_231); +lean_dec(x_228); x_66 = x_231; -goto block_228; +goto block_227; +} } else { lean_object* x_232; -x_232 = lean_ctor_get(x_229, 0); +x_232 = lean_ctor_get(x_54, 0); lean_inc(x_232); -lean_dec(x_229); -x_66 = x_232; -goto block_228; -} -} -else -{ -lean_object* x_233; -x_233 = lean_ctor_get(x_54, 0); -lean_inc(x_233); lean_dec(x_54); -x_66 = x_233; -goto block_228; +x_66 = x_232; +goto block_227; } -block_228: +block_227: { lean_object* x_67; if (lean_obj_tag(x_55) == 0) { -uint8_t x_225; lean_object* x_226; -x_225 = 1; +uint8_t x_224; lean_object* x_225; +x_224 = 1; lean_inc(x_65); -x_226 = l_Std_Time_TimeZone_Offset_toIsoString(x_65, x_225); -x_67 = x_226; -goto block_224; +x_225 = l_Std_Time_TimeZone_Offset_toIsoString(x_65, x_224); +x_67 = x_225; +goto block_223; } else { -lean_object* x_227; -x_227 = lean_ctor_get(x_55, 0); -lean_inc(x_227); +lean_object* x_226; +x_226 = lean_ctor_get(x_55, 0); +lean_inc(x_226); lean_dec(x_55); -x_67 = x_227; -goto block_224; +x_67 = x_226; +goto block_223; } -block_224: +block_223: { lean_object* x_68; lean_object* x_118; if (lean_obj_tag(x_56) == 0) { -lean_object* x_222; -x_222 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__20; -x_118 = x_222; -goto block_221; +lean_object* x_221; +x_221 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__18; +x_118 = x_221; +goto block_220; } else { -lean_object* x_223; -x_223 = lean_ctor_get(x_56, 0); -lean_inc(x_223); +lean_object* x_222; +x_222 = lean_ctor_get(x_56, 0); +lean_inc(x_222); lean_dec(x_56); -x_118 = x_223; -goto block_221; +x_118 = x_222; +goto block_220; } block_117: { @@ -86385,111 +86363,111 @@ return x_99; } } } -block_221: +block_220: { lean_object* x_119; if (lean_obj_tag(x_57) == 0) { -lean_object* x_219; -x_219 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__16; -x_119 = x_219; -goto block_218; +lean_object* x_218; +x_218 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__14; +x_119 = x_218; +goto block_217; } else { -lean_object* x_220; -x_220 = lean_ctor_get(x_57, 0); -lean_inc(x_220); +lean_object* x_219; +x_219 = lean_ctor_get(x_57, 0); +lean_inc(x_219); lean_dec(x_57); -x_119 = x_220; -goto block_218; +x_119 = x_219; +goto block_217; } -block_218: +block_217: { lean_object* x_120; if (lean_obj_tag(x_58) == 0) { if (lean_obj_tag(x_59) == 0) { +lean_object* x_204; +x_204 = lean_ctor_get(x_1, 1); +lean_inc(x_204); +if (lean_obj_tag(x_204) == 0) +{ lean_object* x_205; -x_205 = lean_ctor_get(x_1, 1); -lean_inc(x_205); -if (lean_obj_tag(x_205) == 0) -{ -lean_object* x_206; -x_206 = l_Std_Time_Awareness_instInhabitedType___lambda__2___closed__1; -x_120 = x_206; -goto block_204; +x_205 = l_Std_Time_Awareness_instInhabitedType___lambda__2___closed__1; +x_120 = x_205; +goto block_203; } else { -lean_object* x_207; uint8_t x_208; lean_object* x_209; -x_207 = lean_ctor_get(x_205, 0); -lean_inc(x_207); -lean_dec(x_205); -x_208 = 1; -x_209 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_convertYearAndEra(x_207, x_208); -lean_dec(x_207); -x_120 = x_209; -goto block_204; +lean_object* x_206; uint8_t x_207; lean_object* x_208; +x_206 = lean_ctor_get(x_204, 0); +lean_inc(x_206); +lean_dec(x_204); +x_207 = 1; +x_208 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_convertYearAndEra(x_206, x_207); +lean_dec(x_206); +x_120 = x_208; +goto block_203; } } else { -lean_object* x_210; -x_210 = lean_ctor_get(x_59, 0); -lean_inc(x_210); +lean_object* x_209; +x_209 = lean_ctor_get(x_59, 0); +lean_inc(x_209); lean_dec(x_59); -x_120 = x_210; -goto block_204; +x_120 = x_209; +goto block_203; } } else { if (lean_obj_tag(x_59) == 0) { +lean_object* x_210; +x_210 = lean_ctor_get(x_1, 1); +lean_inc(x_210); +if (lean_obj_tag(x_210) == 0) +{ lean_object* x_211; -x_211 = lean_ctor_get(x_1, 1); -lean_inc(x_211); -if (lean_obj_tag(x_211) == 0) -{ -lean_object* x_212; lean_dec(x_58); -x_212 = l_Std_Time_Awareness_instInhabitedType___lambda__2___closed__1; -x_120 = x_212; -goto block_204; +x_211 = l_Std_Time_Awareness_instInhabitedType___lambda__2___closed__1; +x_120 = x_211; +goto block_203; } else { -lean_object* x_213; lean_object* x_214; uint8_t x_215; lean_object* x_216; -x_213 = lean_ctor_get(x_58, 0); +lean_object* x_212; lean_object* x_213; uint8_t x_214; lean_object* x_215; +x_212 = lean_ctor_get(x_58, 0); +lean_inc(x_212); +lean_dec(x_58); +x_213 = lean_ctor_get(x_210, 0); lean_inc(x_213); -lean_dec(x_58); -x_214 = lean_ctor_get(x_211, 0); -lean_inc(x_214); -lean_dec(x_211); -x_215 = lean_unbox(x_213); +lean_dec(x_210); +x_214 = lean_unbox(x_212); +lean_dec(x_212); +x_215 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_convertYearAndEra(x_213, x_214); lean_dec(x_213); -x_216 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_convertYearAndEra(x_214, x_215); -lean_dec(x_214); -x_120 = x_216; -goto block_204; +x_120 = x_215; +goto block_203; } } else { -lean_object* x_217; +lean_object* x_216; lean_dec(x_58); -x_217 = lean_ctor_get(x_59, 0); -lean_inc(x_217); +x_216 = lean_ctor_get(x_59, 0); +lean_inc(x_216); lean_dec(x_59); -x_120 = x_217; -goto block_204; +x_120 = x_216; +goto block_203; } } -block_204: +block_203: { -lean_object* x_121; lean_object* x_122; lean_object* x_123; uint8_t x_124; lean_object* x_125; lean_object* x_148; lean_object* x_180; +lean_object* x_121; lean_object* x_122; lean_object* x_123; uint8_t x_124; lean_object* x_125; lean_object* x_148; lean_object* x_179; x_121 = l___private_Std_Time_Format_Basic_0__Std_Time_dateFromModifier___closed__1; x_122 = lean_int_mod(x_120, x_121); x_123 = l_Std_Time_Awareness_instInhabitedType___lambda__2___closed__1; @@ -86497,64 +86475,64 @@ x_124 = lean_int_dec_eq(x_122, x_123); lean_dec(x_122); if (lean_obj_tag(x_60) == 0) { -lean_object* x_190; -x_190 = lean_box(0); -x_180 = x_190; -goto block_189; +lean_object* x_189; +x_189 = lean_box(0); +x_179 = x_189; +goto block_188; } else { +lean_object* x_190; +x_190 = lean_ctor_get(x_1, 13); +lean_inc(x_190); +if (lean_obj_tag(x_190) == 0) +{ lean_object* x_191; -x_191 = lean_ctor_get(x_1, 13); +x_191 = lean_ctor_get(x_1, 14); lean_inc(x_191); if (lean_obj_tag(x_191) == 0) { lean_object* x_192; -x_192 = lean_ctor_get(x_1, 14); -lean_inc(x_192); -if (lean_obj_tag(x_192) == 0) -{ -lean_object* x_193; lean_dec(x_60); -x_193 = lean_box(0); -x_180 = x_193; -goto block_189; +x_192 = lean_box(0); +x_179 = x_192; +goto block_188; } else { -lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; uint8_t x_198; lean_object* x_199; -x_194 = lean_ctor_get(x_60, 0); +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; uint8_t x_197; lean_object* x_198; +x_193 = lean_ctor_get(x_60, 0); +lean_inc(x_193); +lean_dec(x_60); +x_194 = lean_ctor_get(x_191, 0); lean_inc(x_194); -lean_dec(x_60); -x_195 = lean_ctor_get(x_192, 0); -lean_inc(x_195); -lean_dec(x_192); -x_196 = l___private_Std_Time_Format_Basic_0__Std_Time_reprText____x40_Std_Time_Format_Basic___hyg_15____closed__6; -x_197 = lean_int_add(x_195, x_196); -lean_dec(x_195); -x_198 = lean_unbox(x_194); +lean_dec(x_191); +x_195 = l___private_Std_Time_Format_Basic_0__Std_Time_reprText____x40_Std_Time_Format_Basic___hyg_15____closed__6; +x_196 = lean_int_add(x_194, x_195); lean_dec(x_194); -x_199 = l_Std_Time_HourMarker_toAbsolute(x_198, x_197); -lean_dec(x_197); -x_148 = x_199; -goto block_179; +x_197 = lean_unbox(x_193); +lean_dec(x_193); +x_198 = l_Std_Time_HourMarker_toAbsolute(x_197, x_196); +lean_dec(x_196); +x_148 = x_198; +goto block_178; } } else { -lean_object* x_200; lean_object* x_201; uint8_t x_202; lean_object* x_203; -x_200 = lean_ctor_get(x_60, 0); -lean_inc(x_200); +lean_object* x_199; lean_object* x_200; uint8_t x_201; lean_object* x_202; +x_199 = lean_ctor_get(x_60, 0); +lean_inc(x_199); lean_dec(x_60); -x_201 = lean_ctor_get(x_191, 0); -lean_inc(x_201); -lean_dec(x_191); -x_202 = lean_unbox(x_200); +x_200 = lean_ctor_get(x_190, 0); +lean_inc(x_200); +lean_dec(x_190); +x_201 = lean_unbox(x_199); +lean_dec(x_199); +x_202 = l_Std_Time_HourMarker_toAbsolute(x_201, x_200); lean_dec(x_200); -x_203 = l_Std_Time_HourMarker_toAbsolute(x_202, x_201); -lean_dec(x_201); -x_148 = x_203; -goto block_179; +x_148 = x_202; +goto block_178; } } block_147: @@ -86667,45 +86645,45 @@ goto block_117; } } } -block_179: +block_178: { lean_object* x_149; if (lean_obj_tag(x_61) == 0) { -lean_object* x_177; -x_177 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__10; -x_149 = x_177; -goto block_176; +lean_object* x_176; +x_176 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__8; +x_149 = x_176; +goto block_175; } else { -lean_object* x_178; -x_178 = lean_ctor_get(x_61, 0); -lean_inc(x_178); +lean_object* x_177; +x_177 = lean_ctor_get(x_61, 0); +lean_inc(x_177); lean_dec(x_61); -x_149 = x_178; -goto block_176; +x_149 = x_177; +goto block_175; } -block_176: +block_175: { lean_object* x_150; if (lean_obj_tag(x_62) == 0) { -lean_object* x_174; -x_174 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__11; -x_150 = x_174; -goto block_173; +lean_object* x_173; +x_173 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__9; +x_150 = x_173; +goto block_172; } else { -lean_object* x_175; -x_175 = lean_ctor_get(x_62, 0); -lean_inc(x_175); +lean_object* x_174; +x_174 = lean_ctor_get(x_62, 0); +lean_inc(x_174); lean_dec(x_62); -x_150 = x_175; -goto block_173; +x_150 = x_174; +goto block_172; } -block_173: +block_172: { lean_object* x_151; if (lean_obj_tag(x_63) == 0) @@ -86723,67 +86701,66 @@ lean_inc(x_162); lean_dec(x_1); if (lean_obj_tag(x_162) == 0) { -lean_object* x_163; lean_object* x_164; -x_163 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__5; -x_164 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_164, 0, x_148); -lean_ctor_set(x_164, 1, x_149); -lean_ctor_set(x_164, 2, x_150); -lean_ctor_set(x_164, 3, x_163); -x_125 = x_164; +lean_object* x_163; +x_163 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_163, 0, x_148); +lean_ctor_set(x_163, 1, x_149); +lean_ctor_set(x_163, 2, x_150); +lean_ctor_set(x_163, 3, x_123); +x_125 = x_163; goto block_147; } else { -lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; +lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_dec(x_150); lean_dec(x_149); lean_dec(x_148); -x_165 = lean_ctor_get(x_162, 0); -lean_inc(x_165); +x_164 = lean_ctor_get(x_162, 0); +lean_inc(x_164); lean_dec(x_162); -x_166 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__3; -x_167 = lean_int_mul(x_165, x_166); -lean_dec(x_165); -x_168 = l_Std_Time_PlainTime_ofNanoseconds(x_167); -lean_dec(x_167); -x_125 = x_168; +x_165 = l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__3; +x_166 = lean_int_mul(x_164, x_165); +lean_dec(x_164); +x_167 = l_Std_Time_PlainTime_ofNanoseconds(x_166); +lean_dec(x_166); +x_125 = x_167; goto block_147; } } else { -lean_object* x_169; lean_object* x_170; +lean_object* x_168; lean_object* x_169; lean_dec(x_150); lean_dec(x_149); lean_dec(x_148); lean_dec(x_1); -x_169 = lean_ctor_get(x_64, 0); -lean_inc(x_169); +x_168 = lean_ctor_get(x_64, 0); +lean_inc(x_168); lean_dec(x_64); -x_170 = l_Std_Time_PlainTime_ofNanoseconds(x_169); -lean_dec(x_169); -x_125 = x_170; +x_169 = l_Std_Time_PlainTime_ofNanoseconds(x_168); +lean_dec(x_168); +x_125 = x_169; goto block_147; } } else { -lean_object* x_171; -x_171 = lean_ctor_get(x_161, 0); -lean_inc(x_171); +lean_object* x_170; +x_170 = lean_ctor_get(x_161, 0); +lean_inc(x_170); lean_dec(x_161); -x_151 = x_171; +x_151 = x_170; goto block_160; } } else { -lean_object* x_172; -x_172 = lean_ctor_get(x_63, 0); -lean_inc(x_172); +lean_object* x_171; +x_171 = lean_ctor_get(x_63, 0); +lean_inc(x_171); lean_dec(x_63); -x_151 = x_172; +x_151 = x_171; goto block_160; } block_160: @@ -86844,58 +86821,58 @@ goto block_147; } } } -block_189: +block_188: +{ +lean_object* x_180; +lean_dec(x_179); +x_180 = lean_ctor_get(x_1, 15); +lean_inc(x_180); +if (lean_obj_tag(x_180) == 0) { lean_object* x_181; -lean_dec(x_180); -x_181 = lean_ctor_get(x_1, 15); +x_181 = lean_ctor_get(x_1, 16); lean_inc(x_181); if (lean_obj_tag(x_181) == 0) { -lean_object* x_182; -x_182 = lean_ctor_get(x_1, 16); -lean_inc(x_182); -if (lean_obj_tag(x_182) == 0) -{ x_148 = x_123; -goto block_179; +goto block_178; +} +else +{ +lean_object* x_182; +x_182 = lean_ctor_get(x_181, 0); +lean_inc(x_182); +lean_dec(x_181); +x_148 = x_182; +goto block_178; +} } else { lean_object* x_183; -x_183 = lean_ctor_get(x_182, 0); +x_183 = lean_ctor_get(x_1, 16); lean_inc(x_183); -lean_dec(x_182); -x_148 = x_183; -goto block_179; -} -} -else +if (lean_obj_tag(x_183) == 0) { -lean_object* x_184; -x_184 = lean_ctor_get(x_1, 16); +lean_object* x_184; lean_object* x_185; lean_object* x_186; +x_184 = lean_ctor_get(x_180, 0); lean_inc(x_184); -if (lean_obj_tag(x_184) == 0) -{ -lean_object* x_185; lean_object* x_186; lean_object* x_187; -x_185 = lean_ctor_get(x_181, 0); -lean_inc(x_185); -lean_dec(x_181); -x_186 = l___private_Std_Time_Format_Basic_0__Std_Time_parseOffset___closed__8; -x_187 = lean_int_add(x_185, x_186); -lean_dec(x_185); -x_148 = x_187; -goto block_179; +lean_dec(x_180); +x_185 = l___private_Std_Time_Format_Basic_0__Std_Time_parseOffset___closed__8; +x_186 = lean_int_add(x_184, x_185); +lean_dec(x_184); +x_148 = x_186; +goto block_178; } else { -lean_object* x_188; -lean_dec(x_181); -x_188 = lean_ctor_get(x_184, 0); -lean_inc(x_188); -lean_dec(x_184); -x_148 = x_188; -goto block_179; +lean_object* x_187; +lean_dec(x_180); +x_187 = lean_ctor_get(x_183, 0); +lean_inc(x_187); +lean_dec(x_183); +x_148 = x_187; +goto block_178; } } } @@ -89490,10 +89467,6 @@ l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___ lean_mark_persistent(l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__17); l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__18 = _init_l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__18(); lean_mark_persistent(l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__18); -l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__19 = _init_l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__19(); -lean_mark_persistent(l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__19); -l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__20 = _init_l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__20(); -lean_mark_persistent(l___private_Std_Time_Format_Basic_0__Std_Time_GenericFormat_DateBuilder_build___closed__20); l_Std_Time_GenericFormat_spec_x21___closed__1 = _init_l_Std_Time_GenericFormat_spec_x21___closed__1(); lean_mark_persistent(l_Std_Time_GenericFormat_spec_x21___closed__1); l_Std_Time_GenericFormat_spec_x21___closed__2 = _init_l_Std_Time_GenericFormat_spec_x21___closed__2(); diff --git a/stage0/stdlib/Std/Time/Time/PlainTime.c b/stage0/stdlib/Std/Time/Time/PlainTime.c index 4f6001dfdd..2cb3fa4381 100644 --- a/stage0/stdlib/Std/Time/Time/PlainTime.c +++ b/stage0/stdlib/Std/Time/Time/PlainTime.c @@ -50,16 +50,13 @@ LEAN_EXPORT lean_object* l_Std_Time_PlainTime_addHours___boxed(lean_object*, lea static lean_object* l_Std_Time_instReprPlainTime___closed__1; lean_object* lean_int_emod(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Time_PlainTime_instHAddOffset__1; -static lean_object* l_Std_Time_PlainTime_midnight___closed__4; static lean_object* l_Std_Time_PlainTime_instHAddOffset__1___closed__1; static lean_object* l_Std_Time_instInhabitedPlainTime___closed__3; -static lean_object* l_Std_Time_PlainTime_midnight___closed__3; LEAN_EXPORT lean_object* l_Std_Time_PlainTime_subMilliseconds(lean_object*, lean_object*); static lean_object* l___private_Std_Time_Time_PlainTime_0__Std_Time_reprPlainTime____x40_Std_Time_Time_PlainTime___hyg_43____closed__3; LEAN_EXPORT lean_object* l_Std_Time_PlainTime_addSeconds___boxed(lean_object*, lean_object*); static lean_object* l___private_Std_Time_Time_PlainTime_0__Std_Time_reprPlainTime____x40_Std_Time_Time_PlainTime___hyg_43____closed__33; static lean_object* l___private_Std_Time_Time_PlainTime_0__Std_Time_reprPlainTime____x40_Std_Time_Time_PlainTime___hyg_43____closed__8; -lean_object* l_Fin_ofNat(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Time_instBEqPlainTime___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Time_PlainTime_instHSubOffset__1; static lean_object* l___private_Std_Time_Time_PlainTime_0__Std_Time_reprPlainTime____x40_Std_Time_Time_PlainTime___hyg_43____closed__27; @@ -1341,30 +1338,11 @@ return x_4; static lean_object* _init_l_Std_Time_PlainTime_midnight___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(999999999u); -x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Fin_ofNat(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Std_Time_PlainTime_midnight___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Time_PlainTime_midnight___closed__2; -x_2 = lean_nat_to_int(x_1); -return x_2; -} -} -static lean_object* _init_l_Std_Time_PlainTime_midnight___closed__4() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Std_Time_instInhabitedPlainTime___closed__10; x_2 = l_Std_Time_instInhabitedPlainTime___closed__18; x_3 = l_Std_Time_PlainTime_midnight___closed__1; -x_4 = l_Std_Time_PlainTime_midnight___closed__3; +x_4 = l___private_Std_Time_Time_PlainTime_0__Std_Time_reprPlainTime____x40_Std_Time_Time_PlainTime___hyg_43____closed__8; x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); lean_ctor_set(x_5, 1, x_2); @@ -1377,7 +1355,7 @@ static lean_object* _init_l_Std_Time_PlainTime_midnight() { _start: { lean_object* x_1; -x_1 = l_Std_Time_PlainTime_midnight___closed__4; +x_1 = l_Std_Time_PlainTime_midnight___closed__2; return x_1; } } @@ -1415,7 +1393,7 @@ x_5 = lean_box(x_1); x_6 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_6, 0, x_5); lean_ctor_set(x_6, 1, x_4); -x_7 = l_Std_Time_PlainTime_midnight___closed__3; +x_7 = l___private_Std_Time_Time_PlainTime_0__Std_Time_reprPlainTime____x40_Std_Time_Time_PlainTime___hyg_43____closed__8; x_8 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_8, 0, x_2); lean_ctor_set(x_8, 1, x_3); @@ -2535,10 +2513,6 @@ l_Std_Time_PlainTime_midnight___closed__1 = _init_l_Std_Time_PlainTime_midnight_ lean_mark_persistent(l_Std_Time_PlainTime_midnight___closed__1); l_Std_Time_PlainTime_midnight___closed__2 = _init_l_Std_Time_PlainTime_midnight___closed__2(); lean_mark_persistent(l_Std_Time_PlainTime_midnight___closed__2); -l_Std_Time_PlainTime_midnight___closed__3 = _init_l_Std_Time_PlainTime_midnight___closed__3(); -lean_mark_persistent(l_Std_Time_PlainTime_midnight___closed__3); -l_Std_Time_PlainTime_midnight___closed__4 = _init_l_Std_Time_PlainTime_midnight___closed__4(); -lean_mark_persistent(l_Std_Time_PlainTime_midnight___closed__4); l_Std_Time_PlainTime_midnight = _init_l_Std_Time_PlainTime_midnight(); lean_mark_persistent(l_Std_Time_PlainTime_midnight); l_Std_Time_PlainTime_toMilliseconds___closed__1 = _init_l_Std_Time_PlainTime_toMilliseconds___closed__1(); diff --git a/stage0/stdlib/Std/Time/Time/Unit/Nanosecond.c b/stage0/stdlib/Std/Time/Time/Unit/Nanosecond.c index 00cc03dc0b..da8a026f08 100644 --- a/stage0/stdlib/Std/Time/Time/Unit/Nanosecond.c +++ b/stage0/stdlib/Std/Time/Time/Unit/Nanosecond.c @@ -34,7 +34,6 @@ LEAN_EXPORT lean_object* l_Std_Time_Nanosecond_instOffsetLE; uint8_t lean_int_dec_le(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Time_Nanosecond_instOffsetNeg; LEAN_EXPORT lean_object* l_Std_Time_Nanosecond_Span_toOffset(lean_object*); -lean_object* l_Fin_ofNat(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Time_Nanosecond_Ordinal_ofInt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Time_Nanosecond_Offset_ofNat(lean_object*); LEAN_EXPORT lean_object* l_Std_Time_Nanosecond_instSpanLE; @@ -47,7 +46,6 @@ LEAN_EXPORT lean_object* l_Std_Time_Nanosecond_instDecidableLtOrdinal___boxed(le LEAN_EXPORT lean_object* l_Std_Time_Nanosecond_Ordinal_toOffset(lean_object*); static lean_object* l_Std_Time_Nanosecond_instInhabitedOrdinal___closed__1; static lean_object* l_Std_Time_Nanosecond_instOrdinalRepr___closed__1; -static lean_object* l_Std_Time_Nanosecond_instOffsetInhabited___closed__1; LEAN_EXPORT lean_object* l_Std_Time_Nanosecond_instOrdinalLT; lean_object* l_Std_Time_Internal_UnitVal_add___rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Time_Nanosecond_instOfNatOrdinal(lean_object*); @@ -64,6 +62,7 @@ LEAN_EXPORT lean_object* l_Std_Time_Nanosecond_Ordinal_instOfDayLT; LEAN_EXPORT uint8_t l_Std_Time_Nanosecond_instDecidableLtOrdinal(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Time_Nanosecond_instSpanBEq; LEAN_EXPORT lean_object* l_Std_Time_Nanosecond_instSpanLT; +lean_object* lean_nat_mod(lean_object*, lean_object*); lean_object* l_Std_Time_Internal_UnitVal_instRepr___rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Time_Nanosecond_Ordinal_instOfDayLE; uint8_t lean_int_dec_lt(lean_object*, lean_object*); @@ -76,7 +75,6 @@ LEAN_EXPORT lean_object* l_Std_Time_Nanosecond_instInhabitedOrdinal; LEAN_EXPORT lean_object* l_Std_Time_Nanosecond_instOffsetSub; static lean_object* l_Std_Time_Nanosecond_instOffsetRepr___closed__1; lean_object* l_Std_Time_Internal_Bounded_instBEq___rarg___boxed(lean_object*, lean_object*); -static lean_object* l_Std_Time_Nanosecond_instInhabitedOrdinal___closed__2; LEAN_EXPORT lean_object* l_Std_Time_Nanosecond_instOffsetBEq; static lean_object* l_Std_Time_Nanosecond_instOffsetNeg___closed__1; static lean_object* _init_l_Std_Time_Nanosecond_instOrdinalRepr___closed__1() { @@ -131,8 +129,8 @@ LEAN_EXPORT lean_object* l_Std_Time_Nanosecond_instOfNatOrdinal(lean_object* x_1 _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = lean_unsigned_to_nat(999999999u); -x_3 = l_Fin_ofNat(x_2, x_1); +x_2 = lean_unsigned_to_nat(1000000000u); +x_3 = lean_nat_mod(x_1, x_2); x_4 = lean_nat_to_int(x_3); return x_4; } @@ -149,18 +147,8 @@ return x_2; static lean_object* _init_l_Std_Time_Nanosecond_instInhabitedOrdinal___closed__1() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(999999999u); -x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Fin_ofNat(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Std_Time_Nanosecond_instInhabitedOrdinal___closed__2() { -_start: -{ lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Time_Nanosecond_instInhabitedOrdinal___closed__1; +x_1 = lean_unsigned_to_nat(0u); x_2 = lean_nat_to_int(x_1); return x_2; } @@ -169,7 +157,7 @@ static lean_object* _init_l_Std_Time_Nanosecond_instInhabitedOrdinal() { _start: { lean_object* x_1; -x_1 = l_Std_Time_Nanosecond_instInhabitedOrdinal___closed__2; +x_1 = l_Std_Time_Nanosecond_instInhabitedOrdinal___closed__1; return x_1; } } @@ -243,20 +231,11 @@ x_1 = l_Std_Time_Nanosecond_instOffsetBEq___closed__1; return x_1; } } -static lean_object* _init_l_Std_Time_Nanosecond_instOffsetInhabited___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(0u); -x_2 = lean_nat_to_int(x_1); -return x_2; -} -} static lean_object* _init_l_Std_Time_Nanosecond_instOffsetInhabited() { _start: { lean_object* x_1; -x_1 = l_Std_Time_Nanosecond_instOffsetInhabited___closed__1; +x_1 = l_Std_Time_Nanosecond_instInhabitedOrdinal___closed__1; return x_1; } } @@ -427,7 +406,7 @@ static lean_object* _init_l_Std_Time_Nanosecond_instInhabitedSpan() { _start: { lean_object* x_1; -x_1 = l_Std_Time_Nanosecond_instOffsetInhabited___closed__1; +x_1 = l_Std_Time_Nanosecond_instInhabitedOrdinal___closed__1; return x_1; } } @@ -554,8 +533,6 @@ l_Std_Time_Nanosecond_instOrdinalLT = _init_l_Std_Time_Nanosecond_instOrdinalLT( lean_mark_persistent(l_Std_Time_Nanosecond_instOrdinalLT); l_Std_Time_Nanosecond_instInhabitedOrdinal___closed__1 = _init_l_Std_Time_Nanosecond_instInhabitedOrdinal___closed__1(); lean_mark_persistent(l_Std_Time_Nanosecond_instInhabitedOrdinal___closed__1); -l_Std_Time_Nanosecond_instInhabitedOrdinal___closed__2 = _init_l_Std_Time_Nanosecond_instInhabitedOrdinal___closed__2(); -lean_mark_persistent(l_Std_Time_Nanosecond_instInhabitedOrdinal___closed__2); l_Std_Time_Nanosecond_instInhabitedOrdinal = _init_l_Std_Time_Nanosecond_instInhabitedOrdinal(); lean_mark_persistent(l_Std_Time_Nanosecond_instInhabitedOrdinal); l_Std_Time_Nanosecond_instOffsetRepr___closed__1 = _init_l_Std_Time_Nanosecond_instOffsetRepr___closed__1(); @@ -566,8 +543,6 @@ l_Std_Time_Nanosecond_instOffsetBEq___closed__1 = _init_l_Std_Time_Nanosecond_in lean_mark_persistent(l_Std_Time_Nanosecond_instOffsetBEq___closed__1); l_Std_Time_Nanosecond_instOffsetBEq = _init_l_Std_Time_Nanosecond_instOffsetBEq(); lean_mark_persistent(l_Std_Time_Nanosecond_instOffsetBEq); -l_Std_Time_Nanosecond_instOffsetInhabited___closed__1 = _init_l_Std_Time_Nanosecond_instOffsetInhabited___closed__1(); -lean_mark_persistent(l_Std_Time_Nanosecond_instOffsetInhabited___closed__1); l_Std_Time_Nanosecond_instOffsetInhabited = _init_l_Std_Time_Nanosecond_instOffsetInhabited(); lean_mark_persistent(l_Std_Time_Nanosecond_instOffsetInhabited); l_Std_Time_Nanosecond_instOffsetAdd___closed__1 = _init_l_Std_Time_Nanosecond_instOffsetAdd___closed__1(); diff --git a/stage0/stdlib/Std/Time/Zoned/Database.c b/stage0/stdlib/Std/Time/Zoned/Database.c index e35ab2f1ff..aa36797866 100644 --- a/stage0/stdlib/Std/Time/Zoned/Database.c +++ b/stage0/stdlib/Std/Time/Zoned/Database.c @@ -13,29 +13,467 @@ #ifdef __cplusplus extern "C" { #endif +LEAN_EXPORT lean_object* l_Std_Time_Database_defaultGetZoneRules___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__9; static uint64_t l_Std_Time_Database_defaultGetLocalZoneRules___closed__2; +lean_object* lean_io_getenv(lean_object*, lean_object*); lean_object* l_Std_Time_Database_TZdb_localRules(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Time_Database_defaultGetLocalZoneRules(lean_object*); static uint64_t l_Std_Time_Database_defaultGetLocalZoneRules___closed__3; +static lean_object* l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__5; +lean_object* l_System_FilePath_pathExists(lean_object*, lean_object*); +static lean_object* l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__8; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Std_Time_Database_defaultGetZoneRules___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint64_t lean_int64_neg(uint64_t); static lean_object* l_Std_Time_Database_defaultGetLocalZoneRules___closed__4; +static lean_object* l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__7; LEAN_EXPORT lean_object* l_Std_Time_Database_defaultGetLocalZoneRules___closed__4___boxed__const__1; +static size_t l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__11; static lean_object* l_Std_Time_Database_defaultGetZoneRules___closed__1; +static lean_object* l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__10; static lean_object* l_Std_Time_Database_defaultGetLocalZoneRules___closed__5; +static lean_object* l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__3; lean_object* l_Std_Time_Database_Windows_getLocalTimeZoneIdentifierAt___boxed(lean_object*, lean_object*); +static lean_object* l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__6; uint64_t lean_int64_of_nat(lean_object*); +LEAN_EXPORT lean_object* l_Std_Time_Database_defaultGetZoneRules___lambda__2___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Time_Database_defaultGetZoneRules___lambda__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Time_Database_defaultGetZoneRules___lambda__1___closed__1; lean_object* l_Bind_bindLeft___at_Std_Time_Database_WindowsDb_inst___spec__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Std_Time_Database_defaultGetZoneRules___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); +lean_object* lean_array_mk(lean_object*); lean_object* l_Std_Time_Database_Windows_getZoneRules___boxed(lean_object*, lean_object*); +size_t lean_usize_add(size_t, size_t); +lean_object* lean_array_uget(lean_object*, size_t); +size_t lean_array_size(lean_object*); lean_object* l_Std_Time_Database_TZdb_readRulesFromDisk(lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__4; +static lean_object* l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__2; +lean_object* lean_string_append(lean_object*, lean_object*); +uint8_t lean_usize_dec_lt(size_t, size_t); +static lean_object* l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__1; +LEAN_EXPORT lean_object* l_Std_Time_Database_defaultGetZoneRules___lambda__2(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Time_Database_defaultGetZoneRules(lean_object*, lean_object*); extern uint8_t l_System_Platform_isWindows; static lean_object* l_Std_Time_Database_defaultGetLocalZoneRules___closed__1; lean_object* l_Std_Time_Database_Windows_getZoneRules(lean_object*, lean_object*); +static lean_object* l_Std_Time_Database_defaultGetZoneRules___lambda__1___closed__2; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Std_Time_Database_defaultGetZoneRules___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, size_t x_6, size_t x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +uint8_t x_10; +x_10 = lean_usize_dec_lt(x_7, x_6); +if (x_10 == 0) +{ +lean_object* x_11; +lean_dec(x_4); +lean_dec(x_1); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_8); +lean_ctor_set(x_11, 1, x_9); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; +lean_dec(x_8); +x_12 = lean_array_uget(x_5, x_7); +x_13 = l_System_FilePath_pathExists(x_12, x_9); +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_unbox(x_14); +lean_dec(x_14); +if (x_15 == 0) +{ +lean_object* x_16; size_t x_17; size_t x_18; +lean_dec(x_12); +x_16 = lean_ctor_get(x_13, 1); +lean_inc(x_16); +lean_dec(x_13); +x_17 = 1; +x_18 = lean_usize_add(x_7, x_17); +lean_inc(x_4); +{ +size_t _tmp_6 = x_18; +lean_object* _tmp_7 = x_4; +lean_object* _tmp_8 = x_16; +x_7 = _tmp_6; +x_8 = _tmp_7; +x_9 = _tmp_8; +} +goto _start; +} +else +{ +uint8_t x_20; +lean_dec(x_4); +x_20 = !lean_is_exclusive(x_13); +if (x_20 == 0) +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_13, 1); +x_22 = lean_ctor_get(x_13, 0); +lean_dec(x_22); +x_23 = l_Std_Time_Database_TZdb_readRulesFromDisk(x_12, x_1, x_21); +if (lean_obj_tag(x_23) == 0) +{ +uint8_t x_24; +x_24 = !lean_is_exclusive(x_23); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_23, 0); +x_26 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_26, 0, x_25); +x_27 = lean_box(0); +lean_ctor_set(x_13, 1, x_27); +lean_ctor_set(x_13, 0, x_26); +lean_ctor_set(x_23, 0, x_13); +return x_23; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_28 = lean_ctor_get(x_23, 0); +x_29 = lean_ctor_get(x_23, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_23); +x_30 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_30, 0, x_28); +x_31 = lean_box(0); +lean_ctor_set(x_13, 1, x_31); +lean_ctor_set(x_13, 0, x_30); +x_32 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_32, 0, x_13); +lean_ctor_set(x_32, 1, x_29); +return x_32; +} +} +else +{ +uint8_t x_33; +lean_free_object(x_13); +x_33 = !lean_is_exclusive(x_23); +if (x_33 == 0) +{ +return x_23; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_23, 0); +x_35 = lean_ctor_get(x_23, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_23); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; lean_object* x_38; +x_37 = lean_ctor_get(x_13, 1); +lean_inc(x_37); +lean_dec(x_13); +x_38 = l_Std_Time_Database_TZdb_readRulesFromDisk(x_12, x_1, x_37); +if (lean_obj_tag(x_38) == 0) +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_39 = lean_ctor_get(x_38, 0); +lean_inc(x_39); +x_40 = lean_ctor_get(x_38, 1); +lean_inc(x_40); +if (lean_is_exclusive(x_38)) { + lean_ctor_release(x_38, 0); + lean_ctor_release(x_38, 1); + x_41 = x_38; +} else { + lean_dec_ref(x_38); + x_41 = lean_box(0); +} +x_42 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_42, 0, x_39); +x_43 = lean_box(0); +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_42); +lean_ctor_set(x_44, 1, x_43); +if (lean_is_scalar(x_41)) { + x_45 = lean_alloc_ctor(0, 2, 0); +} else { + x_45 = x_41; +} +lean_ctor_set(x_45, 0, x_44); +lean_ctor_set(x_45, 1, x_40); +return x_45; +} +else +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_46 = lean_ctor_get(x_38, 0); +lean_inc(x_46); +x_47 = lean_ctor_get(x_38, 1); +lean_inc(x_47); +if (lean_is_exclusive(x_38)) { + lean_ctor_release(x_38, 0); + lean_ctor_release(x_38, 1); + x_48 = x_38; +} else { + lean_dec_ref(x_38); + x_48 = lean_box(0); +} +if (lean_is_scalar(x_48)) { + x_49 = lean_alloc_ctor(1, 2, 0); +} else { + x_49 = x_48; +} +lean_ctor_set(x_49, 0, x_46); +lean_ctor_set(x_49, 1, x_47); +return x_49; +} +} +} +} +} +} +static lean_object* _init_l_Std_Time_Database_defaultGetZoneRules___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("cannot find ", 12, 12); +return x_1; +} +} +static lean_object* _init_l_Std_Time_Database_defaultGetZoneRules___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(" in the local timezone database", 31, 31); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Std_Time_Database_defaultGetZoneRules___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_4 = l_Std_Time_Database_defaultGetZoneRules___lambda__1___closed__1; +x_5 = lean_string_append(x_4, x_1); +x_6 = l_Std_Time_Database_defaultGetZoneRules___lambda__1___closed__2; +x_7 = lean_string_append(x_5, x_6); +x_8 = lean_alloc_ctor(18, 1, 0); +lean_ctor_set(x_8, 0, x_7); +x_9 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_3); +return x_9; +} +} +static lean_object* _init_l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("/usr/share/lib/zoneinfo", 23, 23); +return x_1; +} +} +static lean_object* _init_l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__1; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("/etc/zoneinfo", 13, 13); +return x_1; +} +} +static lean_object* _init_l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__3; +x_2 = l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__2; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("/share/zoneinfo", 15, 15); +return x_1; +} +} +static lean_object* _init_l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__5; +x_2 = l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__4; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("/usr/share/zoneinfo", 19, 19); +return x_1; +} +} +static lean_object* _init_l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__7; +x_2 = l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__6; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__8; +x_2 = lean_array_mk(x_1); +return x_2; +} +} +static lean_object* _init_l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = lean_box(0); +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static size_t _init_l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__11() { +_start: +{ +lean_object* x_1; size_t x_2; +x_1 = l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__9; +x_2 = lean_array_size(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Std_Time_Database_defaultGetZoneRules___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; size_t x_6; lean_object* x_7; size_t x_8; lean_object* x_9; +x_4 = l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__9; +x_5 = lean_box(0); +x_6 = 0; +x_7 = l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__10; +x_8 = l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__11; +lean_inc(x_1); +x_9 = l_Array_forIn_x27Unsafe_loop___at_Std_Time_Database_defaultGetZoneRules___spec__1(x_1, x_4, x_5, x_7, x_4, x_8, x_6, x_7, x_3); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +lean_dec(x_10); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_9, 1); +lean_inc(x_12); +lean_dec(x_9); +x_13 = lean_box(0); +x_14 = l_Std_Time_Database_defaultGetZoneRules___lambda__1(x_1, x_13, x_12); +lean_dec(x_1); +return x_14; +} +else +{ +uint8_t x_15; +lean_dec(x_1); +x_15 = !lean_is_exclusive(x_9); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_9, 0); +lean_dec(x_16); +x_17 = lean_ctor_get(x_11, 0); +lean_inc(x_17); +lean_dec(x_11); +lean_ctor_set(x_9, 0, x_17); +return x_9; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_9, 1); +lean_inc(x_18); +lean_dec(x_9); +x_19 = lean_ctor_get(x_11, 0); +lean_inc(x_19); +lean_dec(x_11); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_18); +return x_20; +} +} +} +else +{ +uint8_t x_21; +lean_dec(x_1); +x_21 = !lean_is_exclusive(x_9); +if (x_21 == 0) +{ +return x_9; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_9, 0); +x_23 = lean_ctor_get(x_9, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_9); +x_24 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_24, 0, x_22); +lean_ctor_set(x_24, 1, x_23); +return x_24; +} +} +} +} static lean_object* _init_l_Std_Time_Database_defaultGetZoneRules___closed__1() { _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("/usr/share/zoneinfo/", 20, 20); +x_1 = lean_mk_string_unchecked("TZDIR", 5, 5); return x_1; } } @@ -46,18 +484,118 @@ uint8_t x_3; x_3 = l_System_Platform_isWindows; if (x_3 == 0) { -lean_object* x_4; lean_object* x_5; +lean_object* x_4; lean_object* x_5; lean_object* x_6; x_4 = l_Std_Time_Database_defaultGetZoneRules___closed__1; -x_5 = l_Std_Time_Database_TZdb_readRulesFromDisk(x_4, x_1, x_2); -return x_5; +x_5 = lean_io_getenv(x_4, x_2); +x_6 = lean_ctor_get(x_5, 0); +lean_inc(x_6); +if (lean_obj_tag(x_6) == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_7 = lean_ctor_get(x_5, 1); +lean_inc(x_7); +lean_dec(x_5); +x_8 = lean_box(0); +x_9 = l_Std_Time_Database_defaultGetZoneRules___lambda__2(x_1, x_8, x_7); +return x_9; } else { -lean_object* x_6; -x_6 = l_Std_Time_Database_Windows_getZoneRules(x_1, x_2); -lean_dec(x_1); -return x_6; +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_5, 1); +lean_inc(x_10); +lean_dec(x_5); +x_11 = lean_ctor_get(x_6, 0); +lean_inc(x_11); +lean_dec(x_6); +x_12 = l_Std_Time_Database_TZdb_readRulesFromDisk(x_11, x_1, x_10); +if (lean_obj_tag(x_12) == 0) +{ +uint8_t x_13; +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +return x_12; } +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_12, 0); +x_15 = lean_ctor_get(x_12, 1); +lean_inc(x_15); +lean_inc(x_14); +lean_dec(x_12); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_14); +lean_ctor_set(x_16, 1, x_15); +return x_16; +} +} +else +{ +uint8_t x_17; +x_17 = !lean_is_exclusive(x_12); +if (x_17 == 0) +{ +return x_12; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_12, 0); +x_19 = lean_ctor_get(x_12, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_12); +x_20 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +return x_20; +} +} +} +} +else +{ +lean_object* x_21; +x_21 = l_Std_Time_Database_Windows_getZoneRules(x_1, x_2); +lean_dec(x_1); +return x_21; +} +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Std_Time_Database_defaultGetZoneRules___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +size_t x_10; size_t x_11; lean_object* x_12; +x_10 = lean_unbox_usize(x_6); +lean_dec(x_6); +x_11 = lean_unbox_usize(x_7); +lean_dec(x_7); +x_12 = l_Array_forIn_x27Unsafe_loop___at_Std_Time_Database_defaultGetZoneRules___spec__1(x_1, x_2, x_3, x_4, x_5, x_10, x_11, x_8, x_9); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Std_Time_Database_defaultGetZoneRules___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Std_Time_Database_defaultGetZoneRules___lambda__1(x_1, x_2, x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Std_Time_Database_defaultGetZoneRules___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Std_Time_Database_defaultGetZoneRules___lambda__2(x_1, x_2, x_3); +lean_dec(x_2); +return x_4; } } static lean_object* _init_l_Std_Time_Database_defaultGetLocalZoneRules___closed__1() { @@ -160,6 +698,31 @@ lean_dec_ref(res); res = initialize_Init_System_Platform(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Std_Time_Database_defaultGetZoneRules___lambda__1___closed__1 = _init_l_Std_Time_Database_defaultGetZoneRules___lambda__1___closed__1(); +lean_mark_persistent(l_Std_Time_Database_defaultGetZoneRules___lambda__1___closed__1); +l_Std_Time_Database_defaultGetZoneRules___lambda__1___closed__2 = _init_l_Std_Time_Database_defaultGetZoneRules___lambda__1___closed__2(); +lean_mark_persistent(l_Std_Time_Database_defaultGetZoneRules___lambda__1___closed__2); +l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__1 = _init_l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__1(); +lean_mark_persistent(l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__1); +l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__2 = _init_l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__2(); +lean_mark_persistent(l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__2); +l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__3 = _init_l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__3(); +lean_mark_persistent(l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__3); +l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__4 = _init_l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__4(); +lean_mark_persistent(l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__4); +l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__5 = _init_l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__5(); +lean_mark_persistent(l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__5); +l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__6 = _init_l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__6(); +lean_mark_persistent(l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__6); +l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__7 = _init_l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__7(); +lean_mark_persistent(l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__7); +l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__8 = _init_l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__8(); +lean_mark_persistent(l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__8); +l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__9 = _init_l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__9(); +lean_mark_persistent(l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__9); +l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__10 = _init_l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__10(); +lean_mark_persistent(l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__10); +l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__11 = _init_l_Std_Time_Database_defaultGetZoneRules___lambda__2___closed__11(); l_Std_Time_Database_defaultGetZoneRules___closed__1 = _init_l_Std_Time_Database_defaultGetZoneRules___closed__1(); lean_mark_persistent(l_Std_Time_Database_defaultGetZoneRules___closed__1); l_Std_Time_Database_defaultGetLocalZoneRules___closed__1 = _init_l_Std_Time_Database_defaultGetLocalZoneRules___closed__1(); diff --git a/stage0/stdlib/Std/Time/Zoned/Database/Basic.c b/stage0/stdlib/Std/Time/Zoned/Database/Basic.c index b92f56a5a2..161dbdb4ba 100644 --- a/stage0/stdlib/Std/Time/Zoned/Database/Basic.c +++ b/stage0/stdlib/Std/Time/Zoned/Database/Basic.c @@ -37,6 +37,7 @@ LEAN_EXPORT uint8_t l_Std_Time_TimeZone_convertWall(uint8_t); LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Std_Time_TimeZone_convertTZifV1___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Time_TimeZone_convertTransition(lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Range_forIn_x27_loop___at_Std_Time_TimeZone_convertTZifV1___spec__1___closed__1; +extern uint8_t l_instInhabitedUInt8; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* l_Std_Range_forIn_x27_loop___at_Std_Time_TimeZone_convertTZifV1___spec__2___closed__1; @@ -50,7 +51,6 @@ LEAN_EXPORT lean_object* l_Std_Time_TimeZone_convertWall___boxed(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); LEAN_EXPORT lean_object* l_Std_Time_TimeZone_convertLocalTimeType___boxed(lean_object*, lean_object*, lean_object*); -extern uint8_t l_UInt8_instInhabited; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Repr_0__Nat_reprFast(lean_object*); @@ -546,7 +546,7 @@ x_4 = lean_ctor_get(x_3, 1); x_5 = l_Int_instInhabited; x_6 = lean_array_get(x_5, x_4, x_2); x_7 = lean_ctor_get(x_3, 2); -x_8 = l_UInt8_instInhabited; +x_8 = l_instInhabitedUInt8; x_9 = lean_box(x_8); x_10 = lean_array_get(x_9, x_7, x_2); x_11 = lean_unbox(x_10); diff --git a/stage0/stdlib/Std/Time/Zoned/Database/TZdb.c b/stage0/stdlib/Std/Time/Zoned/Database/TZdb.c index 223f541796..23047a3415 100644 --- a/stage0/stdlib/Std/Time/Zoned/Database/TZdb.c +++ b/stage0/stdlib/Std/Time/Zoned/Database/TZdb.c @@ -15,75 +15,186 @@ extern "C" { #endif static lean_object* l_Std_Time_Database_TZdb_localRules___closed__2; lean_object* l_Std_Time_TimeZone_TZif_parse(lean_object*); +lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_inst___lambda__3(lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Time_Database_TZdb_idFromPath___closed__2; lean_object* l_System_FilePath_join(lean_object*, lean_object*); lean_object* l_Std_Internal_Parsec_ByteArray_Parser_run___rarg(lean_object*, lean_object*); +lean_object* lean_io_getenv(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_parseTZif(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_localRules(lean_object*, lean_object*); +static lean_object* l_Std_Time_Database_TZdb_inst___lambda__2___closed__1; static lean_object* l_Std_Time_Database_TZdb_inst___closed__3; +LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_inst___lambda__3___boxed(lean_object*, lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); +lean_object* l_System_FilePath_pathExists(lean_object*, lean_object*); +static lean_object* l_Std_Time_Database_TZdb_default___closed__9; +lean_object* lean_string_utf8_byte_size(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Option_Basic_0__Option_decEqOption____x40_Init_Data_Option_Basic___hyg_4____at_Std_Time_Database_TZdb_idFromPath___spec__1___boxed(lean_object*, lean_object*); static lean_object* l_Std_Time_Database_TZdb_inst___closed__2; LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_inst; +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Std_Time_Database_TZdb_inst___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_localRules___lambda__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Time_Database_TZdb_parseTZIfFromDisk___closed__2; +LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_inst___lambda__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Init_Data_Option_Basic_0__Option_decEqOption____x40_Init_Data_Option_Basic___hyg_4____at_Std_Time_Database_TZdb_idFromPath___spec__1(lean_object*, lean_object*); +static lean_object* l_Std_Time_Database_TZdb_inst___lambda__1___closed__2; static lean_object* l_Std_Time_Database_TZdb_parseTZIfFromDisk___closed__1; +static lean_object* l_Std_Time_Database_TZdb_default___closed__4; static lean_object* l_Std_Time_Database_TZdb_localRules___closed__3; lean_object* l_Std_Time_TimeZone_convertTZif(lean_object*, lean_object*); lean_object* l_System_FilePath_components(lean_object*); LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_parseTZIfFromDisk___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Time_Database_TZdb_default___closed__10; static lean_object* l_Std_Time_Database_TZdb_localRules___closed__5; +static lean_object* l_Std_Time_Database_TZdb_default___closed__11; +static lean_object* l_Std_Time_Database_TZdb_default___closed__7; static lean_object* l_Std_Time_Database_TZdb_parseTZif___closed__1; LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_parseTZIfFromDisk(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_default; static lean_object* l_Std_Time_Database_TZdb_default___closed__1; +static lean_object* l_Std_Time_Database_TZdb_default___closed__8; +static lean_object* l_Std_Time_Database_TZdb_inst___lambda__3___closed__1; +lean_object* l_Substring_takeWhileAux___at_Substring_trimLeft___spec__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Time_Database_TZdb_localRules___lambda__1___closed__1; +LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_inst___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Time_Database_TZdb_localRules___closed__1; +lean_object* l_Substring_takeRightWhileAux___at_Substring_trimRight___spec__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_IO_ofExcept___at_Std_Time_Database_TZdb_parseTZIfFromDisk___spec__1(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_inst___lambda__2(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_inst___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Time_Database_TZdb_localRules___closed__4; +static lean_object* l_Std_Time_Database_TZdb_inst___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_idFromPath(lean_object*); LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_parseTZIfFromDisk___lambda__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Time_Database_TZdb_default___closed__5; static lean_object* l_Std_Time_Database_TZdb_inst___closed__1; lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* lean_array_mk(lean_object*); static lean_object* l_Std_Time_Database_TZdb_localRules___lambda__1___closed__2; +size_t lean_usize_add(size_t, size_t); +static lean_object* l_Std_Time_Database_TZdb_parseTZIfFromDisk___closed__3; static lean_object* l_Std_Time_Database_TZdb_default___closed__2; +lean_object* lean_array_uget(lean_object*, size_t); +size_t lean_array_size(lean_object*); LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_readRulesFromDisk(lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Time_Database_TZdb_default___closed__3; static lean_object* l_Std_Time_Database_TZdb_localRules___closed__6; lean_object* lean_string_append(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); +uint8_t lean_usize_dec_lt(size_t, size_t); LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_localRules___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Time_Database_TZdb_default___closed__6; lean_object* l_IO_FS_readBinFile(lean_object*, lean_object*); static lean_object* l_Std_Time_Database_TZdb_idFromPath___closed__3; lean_object* l_IO_Process_run(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Std_Time_Database_TZdb_inst___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_inst___lambda__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_inst___lambda__4(lean_object*, lean_object*); static lean_object* l_Std_Time_Database_TZdb_idFromPath___closed__1; lean_object* l_Array_get_x3f___rarg(lean_object*, lean_object*); static lean_object* _init_l_Std_Time_Database_TZdb_default___closed__1() { _start: { lean_object* x_1; +x_1 = lean_mk_string_unchecked("/usr/share/lib/zoneinfo", 23, 23); +return x_1; +} +} +static lean_object* _init_l_Std_Time_Database_TZdb_default___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Std_Time_Database_TZdb_default___closed__1; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Std_Time_Database_TZdb_default___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("/etc/zoneinfo", 13, 13); +return x_1; +} +} +static lean_object* _init_l_Std_Time_Database_TZdb_default___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Std_Time_Database_TZdb_default___closed__3; +x_2 = l_Std_Time_Database_TZdb_default___closed__2; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Std_Time_Database_TZdb_default___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("/share/zoneinfo", 15, 15); +return x_1; +} +} +static lean_object* _init_l_Std_Time_Database_TZdb_default___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Std_Time_Database_TZdb_default___closed__5; +x_2 = l_Std_Time_Database_TZdb_default___closed__4; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Std_Time_Database_TZdb_default___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("/usr/share/zoneinfo", 19, 19); +return x_1; +} +} +static lean_object* _init_l_Std_Time_Database_TZdb_default___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Std_Time_Database_TZdb_default___closed__7; +x_2 = l_Std_Time_Database_TZdb_default___closed__6; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Std_Time_Database_TZdb_default___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Std_Time_Database_TZdb_default___closed__8; +x_2 = lean_array_mk(x_1); +return x_2; +} +} +static lean_object* _init_l_Std_Time_Database_TZdb_default___closed__10() { +_start: +{ +lean_object* x_1; x_1 = lean_mk_string_unchecked("/etc/localtime", 14, 14); return x_1; } } -static lean_object* _init_l_Std_Time_Database_TZdb_default___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("/usr/share/zoneinfo/", 20, 20); -return x_1; -} -} -static lean_object* _init_l_Std_Time_Database_TZdb_default___closed__3() { +static lean_object* _init_l_Std_Time_Database_TZdb_default___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Time_Database_TZdb_default___closed__1; -x_2 = l_Std_Time_Database_TZdb_default___closed__2; +x_1 = l_Std_Time_Database_TZdb_default___closed__10; +x_2 = l_Std_Time_Database_TZdb_default___closed__9; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -94,7 +205,7 @@ static lean_object* _init_l_Std_Time_Database_TZdb_default() { _start: { lean_object* x_1; -x_1 = l_Std_Time_Database_TZdb_default___closed__3; +x_1 = l_Std_Time_Database_TZdb_default___closed__11; return x_1; } } @@ -200,7 +311,7 @@ static lean_object* _init_l_Std_Time_Database_TZdb_parseTZIfFromDisk___closed__1 _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("cannot find ", 12, 12); +x_1 = lean_mk_string_unchecked("unable to locate ", 17, 17); return x_1; } } @@ -208,7 +319,15 @@ static lean_object* _init_l_Std_Time_Database_TZdb_parseTZIfFromDisk___closed__2 _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked(" in the local timezone database", 31, 31); +x_1 = lean_mk_string_unchecked(" in the local timezone database at '", 36, 36); +return x_1; +} +} +static lean_object* _init_l_Std_Time_Database_TZdb_parseTZIfFromDisk___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("'", 1, 1); return x_1; } } @@ -234,7 +353,7 @@ uint8_t x_8; x_8 = !lean_is_exclusive(x_4); if (x_8 == 0) { -lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; x_9 = lean_ctor_get(x_4, 0); lean_dec(x_9); x_10 = l_Std_Time_Database_TZdb_parseTZIfFromDisk___closed__1; @@ -242,28 +361,34 @@ x_11 = lean_string_append(x_10, x_2); lean_dec(x_2); x_12 = l_Std_Time_Database_TZdb_parseTZIfFromDisk___closed__2; x_13 = lean_string_append(x_11, x_12); -x_14 = lean_alloc_ctor(18, 1, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_4, 0, x_14); +x_14 = lean_string_append(x_13, x_1); +x_15 = l_Std_Time_Database_TZdb_parseTZIfFromDisk___closed__3; +x_16 = lean_string_append(x_14, x_15); +x_17 = lean_alloc_ctor(18, 1, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_4, 0, x_17); return x_4; } else { -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_15 = lean_ctor_get(x_4, 1); -lean_inc(x_15); +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_18 = lean_ctor_get(x_4, 1); +lean_inc(x_18); lean_dec(x_4); -x_16 = l_Std_Time_Database_TZdb_parseTZIfFromDisk___closed__1; -x_17 = lean_string_append(x_16, x_2); +x_19 = l_Std_Time_Database_TZdb_parseTZIfFromDisk___closed__1; +x_20 = lean_string_append(x_19, x_2); lean_dec(x_2); -x_18 = l_Std_Time_Database_TZdb_parseTZIfFromDisk___closed__2; -x_19 = lean_string_append(x_17, x_18); -x_20 = lean_alloc_ctor(18, 1, 0); -lean_ctor_set(x_20, 0, x_19); -x_21 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_21, 0, x_20); -lean_ctor_set(x_21, 1, x_15); -return x_21; +x_21 = l_Std_Time_Database_TZdb_parseTZIfFromDisk___closed__2; +x_22 = lean_string_append(x_20, x_21); +x_23 = lean_string_append(x_22, x_1); +x_24 = l_Std_Time_Database_TZdb_parseTZIfFromDisk___closed__3; +x_25 = lean_string_append(x_23, x_24); +x_26 = lean_alloc_ctor(18, 1, 0); +lean_ctor_set(x_26, 0, x_25); +x_27 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_27, 1, x_18); +return x_27; } } } @@ -395,45 +520,95 @@ x_18 = l___private_Init_Data_Option_Basic_0__Option_decEqOption____x40_Init_Data lean_dec(x_13); if (x_18 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = l_Std_Time_Database_TZdb_idFromPath___closed__3; -x_20 = lean_string_append(x_16, x_19); -x_21 = lean_string_append(x_20, x_10); -lean_dec(x_10); -lean_ctor_set(x_7, 0, x_21); -return x_7; -} -else -{ -lean_dec(x_16); -return x_7; -} -} -else -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; -x_22 = lean_ctor_get(x_13, 0); -lean_inc(x_22); -lean_dec(x_13); -lean_inc(x_22); -x_23 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_23, 0, x_22); -x_24 = l_Std_Time_Database_TZdb_idFromPath___closed__2; -x_25 = l___private_Init_Data_Option_Basic_0__Option_decEqOption____x40_Init_Data_Option_Basic___hyg_4____at_Std_Time_Database_TZdb_idFromPath___spec__1(x_23, x_24); -lean_dec(x_23); -if (x_25 == 0) -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_26 = l_Std_Time_Database_TZdb_idFromPath___closed__3; -x_27 = lean_string_append(x_22, x_26); -x_28 = lean_string_append(x_27, x_10); -lean_dec(x_10); -lean_ctor_set(x_7, 0, x_28); -return x_7; -} -else -{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_19 = lean_string_utf8_byte_size(x_16); +x_20 = lean_unsigned_to_nat(0u); +x_21 = l_Substring_takeWhileAux___at_Substring_trimLeft___spec__1(x_16, x_19, x_20); +x_22 = l_Substring_takeRightWhileAux___at_Substring_trimRight___spec__1(x_16, x_21, x_19); +x_23 = lean_string_utf8_extract(x_16, x_21, x_22); lean_dec(x_22); +lean_dec(x_21); +lean_dec(x_16); +x_24 = l_Std_Time_Database_TZdb_idFromPath___closed__3; +x_25 = lean_string_append(x_23, x_24); +x_26 = lean_string_utf8_byte_size(x_10); +x_27 = l_Substring_takeWhileAux___at_Substring_trimLeft___spec__1(x_10, x_26, x_20); +x_28 = l_Substring_takeRightWhileAux___at_Substring_trimRight___spec__1(x_10, x_27, x_26); +x_29 = lean_string_utf8_extract(x_10, x_27, x_28); +lean_dec(x_28); +lean_dec(x_27); +lean_dec(x_10); +x_30 = lean_string_append(x_25, x_29); +lean_dec(x_29); +lean_ctor_set(x_7, 0, x_30); +return x_7; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +lean_dec(x_16); +x_31 = lean_string_utf8_byte_size(x_10); +x_32 = lean_unsigned_to_nat(0u); +x_33 = l_Substring_takeWhileAux___at_Substring_trimLeft___spec__1(x_10, x_31, x_32); +x_34 = l_Substring_takeRightWhileAux___at_Substring_trimRight___spec__1(x_10, x_33, x_31); +x_35 = lean_string_utf8_extract(x_10, x_33, x_34); +lean_dec(x_34); +lean_dec(x_33); +lean_dec(x_10); +lean_ctor_set(x_7, 0, x_35); +return x_7; +} +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; +x_36 = lean_ctor_get(x_13, 0); +lean_inc(x_36); +lean_dec(x_13); +lean_inc(x_36); +x_37 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_37, 0, x_36); +x_38 = l_Std_Time_Database_TZdb_idFromPath___closed__2; +x_39 = l___private_Init_Data_Option_Basic_0__Option_decEqOption____x40_Init_Data_Option_Basic___hyg_4____at_Std_Time_Database_TZdb_idFromPath___spec__1(x_37, x_38); +lean_dec(x_37); +if (x_39 == 0) +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_40 = lean_string_utf8_byte_size(x_36); +x_41 = lean_unsigned_to_nat(0u); +x_42 = l_Substring_takeWhileAux___at_Substring_trimLeft___spec__1(x_36, x_40, x_41); +x_43 = l_Substring_takeRightWhileAux___at_Substring_trimRight___spec__1(x_36, x_42, x_40); +x_44 = lean_string_utf8_extract(x_36, x_42, x_43); +lean_dec(x_43); +lean_dec(x_42); +lean_dec(x_36); +x_45 = l_Std_Time_Database_TZdb_idFromPath___closed__3; +x_46 = lean_string_append(x_44, x_45); +x_47 = lean_string_utf8_byte_size(x_10); +x_48 = l_Substring_takeWhileAux___at_Substring_trimLeft___spec__1(x_10, x_47, x_41); +x_49 = l_Substring_takeRightWhileAux___at_Substring_trimRight___spec__1(x_10, x_48, x_47); +x_50 = lean_string_utf8_extract(x_10, x_48, x_49); +lean_dec(x_49); +lean_dec(x_48); +lean_dec(x_10); +x_51 = lean_string_append(x_46, x_50); +lean_dec(x_50); +lean_ctor_set(x_7, 0, x_51); +return x_7; +} +else +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +lean_dec(x_36); +x_52 = lean_string_utf8_byte_size(x_10); +x_53 = lean_unsigned_to_nat(0u); +x_54 = l_Substring_takeWhileAux___at_Substring_trimLeft___spec__1(x_10, x_52, x_53); +x_55 = l_Substring_takeRightWhileAux___at_Substring_trimRight___spec__1(x_10, x_54, x_52); +x_56 = lean_string_utf8_extract(x_10, x_54, x_55); +lean_dec(x_55); +lean_dec(x_54); +lean_dec(x_10); +lean_ctor_set(x_7, 0, x_56); return x_7; } } @@ -441,63 +616,86 @@ return x_7; } else { -lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_29 = lean_ctor_get(x_7, 0); -lean_inc(x_29); +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_57 = lean_ctor_get(x_7, 0); +lean_inc(x_57); lean_dec(x_7); -x_30 = lean_unsigned_to_nat(2u); -x_31 = lean_nat_sub(x_4, x_30); +x_58 = lean_unsigned_to_nat(2u); +x_59 = lean_nat_sub(x_4, x_58); lean_dec(x_4); -x_32 = l_Array_get_x3f___rarg(x_3, x_31); -lean_dec(x_31); +x_60 = l_Array_get_x3f___rarg(x_3, x_59); +lean_dec(x_59); lean_dec(x_3); -if (lean_obj_tag(x_32) == 0) +if (lean_obj_tag(x_60) == 0) { -lean_object* x_33; -lean_dec(x_29); -x_33 = lean_box(0); -return x_33; +lean_object* x_61; +lean_dec(x_57); +x_61 = lean_box(0); +return x_61; } else { -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; -x_34 = lean_ctor_get(x_32, 0); -lean_inc(x_34); -if (lean_is_exclusive(x_32)) { - lean_ctor_release(x_32, 0); - x_35 = x_32; +lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint8_t x_66; +x_62 = lean_ctor_get(x_60, 0); +lean_inc(x_62); +if (lean_is_exclusive(x_60)) { + lean_ctor_release(x_60, 0); + x_63 = x_60; } else { - lean_dec_ref(x_32); - x_35 = lean_box(0); + lean_dec_ref(x_60); + x_63 = lean_box(0); } -lean_inc(x_34); -if (lean_is_scalar(x_35)) { - x_36 = lean_alloc_ctor(1, 1, 0); +lean_inc(x_62); +if (lean_is_scalar(x_63)) { + x_64 = lean_alloc_ctor(1, 1, 0); } else { - x_36 = x_35; + x_64 = x_63; } -lean_ctor_set(x_36, 0, x_34); -x_37 = l_Std_Time_Database_TZdb_idFromPath___closed__2; -x_38 = l___private_Init_Data_Option_Basic_0__Option_decEqOption____x40_Init_Data_Option_Basic___hyg_4____at_Std_Time_Database_TZdb_idFromPath___spec__1(x_36, x_37); -lean_dec(x_36); -if (x_38 == 0) +lean_ctor_set(x_64, 0, x_62); +x_65 = l_Std_Time_Database_TZdb_idFromPath___closed__2; +x_66 = l___private_Init_Data_Option_Basic_0__Option_decEqOption____x40_Init_Data_Option_Basic___hyg_4____at_Std_Time_Database_TZdb_idFromPath___spec__1(x_64, x_65); +lean_dec(x_64); +if (x_66 == 0) { -lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; -x_39 = l_Std_Time_Database_TZdb_idFromPath___closed__3; -x_40 = lean_string_append(x_34, x_39); -x_41 = lean_string_append(x_40, x_29); -lean_dec(x_29); -x_42 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_42, 0, x_41); -return x_42; +lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; +x_67 = lean_string_utf8_byte_size(x_62); +x_68 = lean_unsigned_to_nat(0u); +x_69 = l_Substring_takeWhileAux___at_Substring_trimLeft___spec__1(x_62, x_67, x_68); +x_70 = l_Substring_takeRightWhileAux___at_Substring_trimRight___spec__1(x_62, x_69, x_67); +x_71 = lean_string_utf8_extract(x_62, x_69, x_70); +lean_dec(x_70); +lean_dec(x_69); +lean_dec(x_62); +x_72 = l_Std_Time_Database_TZdb_idFromPath___closed__3; +x_73 = lean_string_append(x_71, x_72); +x_74 = lean_string_utf8_byte_size(x_57); +x_75 = l_Substring_takeWhileAux___at_Substring_trimLeft___spec__1(x_57, x_74, x_68); +x_76 = l_Substring_takeRightWhileAux___at_Substring_trimRight___spec__1(x_57, x_75, x_74); +x_77 = lean_string_utf8_extract(x_57, x_75, x_76); +lean_dec(x_76); +lean_dec(x_75); +lean_dec(x_57); +x_78 = lean_string_append(x_73, x_77); +lean_dec(x_77); +x_79 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_79, 0, x_78); +return x_79; } else { -lean_object* x_43; -lean_dec(x_34); -x_43 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_43, 0, x_29); -return x_43; +lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; +lean_dec(x_62); +x_80 = lean_string_utf8_byte_size(x_57); +x_81 = lean_unsigned_to_nat(0u); +x_82 = l_Substring_takeWhileAux___at_Substring_trimLeft___spec__1(x_57, x_80, x_81); +x_83 = l_Substring_takeRightWhileAux___at_Substring_trimRight___spec__1(x_57, x_82, x_80); +x_84 = lean_string_utf8_extract(x_57, x_82, x_83); +lean_dec(x_83); +lean_dec(x_82); +lean_dec(x_57); +x_85 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_85, 0, x_84); +return x_85; } } } @@ -700,18 +898,403 @@ lean_dec(x_4); return x_5; } } +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Std_Time_Database_TZdb_inst___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, size_t x_6, size_t x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +uint8_t x_10; +x_10 = lean_usize_dec_lt(x_7, x_6); +if (x_10 == 0) +{ +lean_object* x_11; +lean_dec(x_4); +lean_dec(x_1); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_8); +lean_ctor_set(x_11, 1, x_9); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; +lean_dec(x_8); +x_12 = lean_array_uget(x_5, x_7); +x_13 = l_System_FilePath_pathExists(x_12, x_9); +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_unbox(x_14); +lean_dec(x_14); +if (x_15 == 0) +{ +lean_object* x_16; size_t x_17; size_t x_18; +lean_dec(x_12); +x_16 = lean_ctor_get(x_13, 1); +lean_inc(x_16); +lean_dec(x_13); +x_17 = 1; +x_18 = lean_usize_add(x_7, x_17); +lean_inc(x_4); +{ +size_t _tmp_6 = x_18; +lean_object* _tmp_7 = x_4; +lean_object* _tmp_8 = x_16; +x_7 = _tmp_6; +x_8 = _tmp_7; +x_9 = _tmp_8; +} +goto _start; +} +else +{ +uint8_t x_20; +lean_dec(x_4); +x_20 = !lean_is_exclusive(x_13); +if (x_20 == 0) +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_13, 1); +x_22 = lean_ctor_get(x_13, 0); +lean_dec(x_22); +x_23 = l_Std_Time_Database_TZdb_readRulesFromDisk(x_12, x_1, x_21); +if (lean_obj_tag(x_23) == 0) +{ +uint8_t x_24; +x_24 = !lean_is_exclusive(x_23); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_23, 0); +x_26 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_26, 0, x_25); +x_27 = lean_box(0); +lean_ctor_set(x_13, 1, x_27); +lean_ctor_set(x_13, 0, x_26); +lean_ctor_set(x_23, 0, x_13); +return x_23; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_28 = lean_ctor_get(x_23, 0); +x_29 = lean_ctor_get(x_23, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_23); +x_30 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_30, 0, x_28); +x_31 = lean_box(0); +lean_ctor_set(x_13, 1, x_31); +lean_ctor_set(x_13, 0, x_30); +x_32 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_32, 0, x_13); +lean_ctor_set(x_32, 1, x_29); +return x_32; +} +} +else +{ +uint8_t x_33; +lean_free_object(x_13); +x_33 = !lean_is_exclusive(x_23); +if (x_33 == 0) +{ +return x_23; +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_ctor_get(x_23, 0); +x_35 = lean_ctor_get(x_23, 1); +lean_inc(x_35); +lean_inc(x_34); +lean_dec(x_23); +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +return x_36; +} +} +} +else +{ +lean_object* x_37; lean_object* x_38; +x_37 = lean_ctor_get(x_13, 1); +lean_inc(x_37); +lean_dec(x_13); +x_38 = l_Std_Time_Database_TZdb_readRulesFromDisk(x_12, x_1, x_37); +if (lean_obj_tag(x_38) == 0) +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_39 = lean_ctor_get(x_38, 0); +lean_inc(x_39); +x_40 = lean_ctor_get(x_38, 1); +lean_inc(x_40); +if (lean_is_exclusive(x_38)) { + lean_ctor_release(x_38, 0); + lean_ctor_release(x_38, 1); + x_41 = x_38; +} else { + lean_dec_ref(x_38); + x_41 = lean_box(0); +} +x_42 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_42, 0, x_39); +x_43 = lean_box(0); +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_42); +lean_ctor_set(x_44, 1, x_43); +if (lean_is_scalar(x_41)) { + x_45 = lean_alloc_ctor(0, 2, 0); +} else { + x_45 = x_41; +} +lean_ctor_set(x_45, 0, x_44); +lean_ctor_set(x_45, 1, x_40); +return x_45; +} +else +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_46 = lean_ctor_get(x_38, 0); +lean_inc(x_46); +x_47 = lean_ctor_get(x_38, 1); +lean_inc(x_47); +if (lean_is_exclusive(x_38)) { + lean_ctor_release(x_38, 0); + lean_ctor_release(x_38, 1); + x_48 = x_38; +} else { + lean_dec_ref(x_38); + x_48 = lean_box(0); +} +if (lean_is_scalar(x_48)) { + x_49 = lean_alloc_ctor(1, 2, 0); +} else { + x_49 = x_48; +} +lean_ctor_set(x_49, 0, x_46); +lean_ctor_set(x_49, 1, x_47); +return x_49; +} +} +} +} +} +} +static lean_object* _init_l_Std_Time_Database_TZdb_inst___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("cannot find ", 12, 12); +return x_1; +} +} +static lean_object* _init_l_Std_Time_Database_TZdb_inst___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(" in the local timezone database", 31, 31); +return x_1; +} +} LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_inst___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_4; lean_object* x_5; -x_4 = lean_ctor_get(x_1, 1); -lean_inc(x_4); -lean_dec(x_1); -x_5 = l_Std_Time_Database_TZdb_readRulesFromDisk(x_4, x_2, x_3); -return x_5; +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_4 = l_Std_Time_Database_TZdb_inst___lambda__1___closed__1; +x_5 = lean_string_append(x_4, x_1); +x_6 = l_Std_Time_Database_TZdb_inst___lambda__1___closed__2; +x_7 = lean_string_append(x_5, x_6); +x_8 = lean_alloc_ctor(18, 1, 0); +lean_ctor_set(x_8, 0, x_7); +x_9 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_3); +return x_9; } } -LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_inst___lambda__2(lean_object* x_1, lean_object* x_2) { +static lean_object* _init_l_Std_Time_Database_TZdb_inst___lambda__2___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = lean_box(0); +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_inst___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; lean_object* x_6; size_t x_7; size_t x_8; lean_object* x_9; lean_object* x_10; +x_5 = lean_ctor_get(x_1, 1); +x_6 = lean_box(0); +x_7 = lean_array_size(x_5); +x_8 = 0; +x_9 = l_Std_Time_Database_TZdb_inst___lambda__2___closed__1; +lean_inc(x_2); +x_10 = l_Array_forIn_x27Unsafe_loop___at_Std_Time_Database_TZdb_inst___spec__1(x_2, x_5, x_6, x_9, x_5, x_7, x_8, x_9, x_4); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +lean_dec(x_11); +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_10, 1); +lean_inc(x_13); +lean_dec(x_10); +x_14 = lean_box(0); +x_15 = l_Std_Time_Database_TZdb_inst___lambda__1(x_2, x_14, x_13); +lean_dec(x_2); +return x_15; +} +else +{ +uint8_t x_16; +lean_dec(x_2); +x_16 = !lean_is_exclusive(x_10); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_10, 0); +lean_dec(x_17); +x_18 = lean_ctor_get(x_12, 0); +lean_inc(x_18); +lean_dec(x_12); +lean_ctor_set(x_10, 0, x_18); +return x_10; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_10, 1); +lean_inc(x_19); +lean_dec(x_10); +x_20 = lean_ctor_get(x_12, 0); +lean_inc(x_20); +lean_dec(x_12); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_19); +return x_21; +} +} +} +else +{ +uint8_t x_22; +lean_dec(x_2); +x_22 = !lean_is_exclusive(x_10); +if (x_22 == 0) +{ +return x_10; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_10, 0); +x_24 = lean_ctor_get(x_10, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_10); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +return x_25; +} +} +} +} +static lean_object* _init_l_Std_Time_Database_TZdb_inst___lambda__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("TZDIR", 5, 5); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_inst___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_4 = l_Std_Time_Database_TZdb_inst___lambda__3___closed__1; +x_5 = lean_io_getenv(x_4, x_3); +x_6 = lean_ctor_get(x_5, 0); +lean_inc(x_6); +if (lean_obj_tag(x_6) == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_7 = lean_ctor_get(x_5, 1); +lean_inc(x_7); +lean_dec(x_5); +x_8 = lean_box(0); +x_9 = l_Std_Time_Database_TZdb_inst___lambda__2(x_1, x_2, x_8, x_7); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_5, 1); +lean_inc(x_10); +lean_dec(x_5); +x_11 = lean_ctor_get(x_6, 0); +lean_inc(x_11); +lean_dec(x_6); +x_12 = l_Std_Time_Database_TZdb_readRulesFromDisk(x_11, x_2, x_10); +if (lean_obj_tag(x_12) == 0) +{ +uint8_t x_13; +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +return x_12; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_12, 0); +x_15 = lean_ctor_get(x_12, 1); +lean_inc(x_15); +lean_inc(x_14); +lean_dec(x_12); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_14); +lean_ctor_set(x_16, 1, x_15); +return x_16; +} +} +else +{ +uint8_t x_17; +x_17 = !lean_is_exclusive(x_12); +if (x_17 == 0) +{ +return x_12; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_12, 0); +x_19 = lean_ctor_get(x_12, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_12); +x_20 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +return x_20; +} +} +} +} +} +LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_inst___lambda__4(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; @@ -726,7 +1309,7 @@ static lean_object* _init_l_Std_Time_Database_TZdb_inst___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_Time_Database_TZdb_inst___lambda__1), 3, 0); +x_1 = lean_alloc_closure((void*)(l_Std_Time_Database_TZdb_inst___lambda__3___boxed), 3, 0); return x_1; } } @@ -734,7 +1317,7 @@ static lean_object* _init_l_Std_Time_Database_TZdb_inst___closed__2() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_Time_Database_TZdb_inst___lambda__2), 2, 0); +x_1 = lean_alloc_closure((void*)(l_Std_Time_Database_TZdb_inst___lambda__4), 2, 0); return x_1; } } @@ -758,6 +1341,50 @@ x_1 = l_Std_Time_Database_TZdb_inst___closed__3; return x_1; } } +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Std_Time_Database_TZdb_inst___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +size_t x_10; size_t x_11; lean_object* x_12; +x_10 = lean_unbox_usize(x_6); +lean_dec(x_6); +x_11 = lean_unbox_usize(x_7); +lean_dec(x_7); +x_12 = l_Array_forIn_x27Unsafe_loop___at_Std_Time_Database_TZdb_inst___spec__1(x_1, x_2, x_3, x_4, x_5, x_10, x_11, x_8, x_9); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +return x_12; +} +} +LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_inst___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Std_Time_Database_TZdb_inst___lambda__1(x_1, x_2, x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_inst___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Std_Time_Database_TZdb_inst___lambda__2(x_1, x_2, x_3, x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Std_Time_Database_TZdb_inst___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Std_Time_Database_TZdb_inst___lambda__3(x_1, x_2, x_3); +lean_dec(x_1); +return x_4; +} +} lean_object* initialize_Std_Time_DateTime(uint8_t builtin, lean_object*); lean_object* initialize_Std_Time_Zoned_TimeZone(uint8_t builtin, lean_object*); lean_object* initialize_Std_Time_Zoned_ZoneRules(uint8_t builtin, lean_object*); @@ -785,6 +1412,22 @@ l_Std_Time_Database_TZdb_default___closed__2 = _init_l_Std_Time_Database_TZdb_de lean_mark_persistent(l_Std_Time_Database_TZdb_default___closed__2); l_Std_Time_Database_TZdb_default___closed__3 = _init_l_Std_Time_Database_TZdb_default___closed__3(); lean_mark_persistent(l_Std_Time_Database_TZdb_default___closed__3); +l_Std_Time_Database_TZdb_default___closed__4 = _init_l_Std_Time_Database_TZdb_default___closed__4(); +lean_mark_persistent(l_Std_Time_Database_TZdb_default___closed__4); +l_Std_Time_Database_TZdb_default___closed__5 = _init_l_Std_Time_Database_TZdb_default___closed__5(); +lean_mark_persistent(l_Std_Time_Database_TZdb_default___closed__5); +l_Std_Time_Database_TZdb_default___closed__6 = _init_l_Std_Time_Database_TZdb_default___closed__6(); +lean_mark_persistent(l_Std_Time_Database_TZdb_default___closed__6); +l_Std_Time_Database_TZdb_default___closed__7 = _init_l_Std_Time_Database_TZdb_default___closed__7(); +lean_mark_persistent(l_Std_Time_Database_TZdb_default___closed__7); +l_Std_Time_Database_TZdb_default___closed__8 = _init_l_Std_Time_Database_TZdb_default___closed__8(); +lean_mark_persistent(l_Std_Time_Database_TZdb_default___closed__8); +l_Std_Time_Database_TZdb_default___closed__9 = _init_l_Std_Time_Database_TZdb_default___closed__9(); +lean_mark_persistent(l_Std_Time_Database_TZdb_default___closed__9); +l_Std_Time_Database_TZdb_default___closed__10 = _init_l_Std_Time_Database_TZdb_default___closed__10(); +lean_mark_persistent(l_Std_Time_Database_TZdb_default___closed__10); +l_Std_Time_Database_TZdb_default___closed__11 = _init_l_Std_Time_Database_TZdb_default___closed__11(); +lean_mark_persistent(l_Std_Time_Database_TZdb_default___closed__11); l_Std_Time_Database_TZdb_default = _init_l_Std_Time_Database_TZdb_default(); lean_mark_persistent(l_Std_Time_Database_TZdb_default); l_Std_Time_Database_TZdb_parseTZif___closed__1 = _init_l_Std_Time_Database_TZdb_parseTZif___closed__1(); @@ -793,6 +1436,8 @@ l_Std_Time_Database_TZdb_parseTZIfFromDisk___closed__1 = _init_l_Std_Time_Databa lean_mark_persistent(l_Std_Time_Database_TZdb_parseTZIfFromDisk___closed__1); l_Std_Time_Database_TZdb_parseTZIfFromDisk___closed__2 = _init_l_Std_Time_Database_TZdb_parseTZIfFromDisk___closed__2(); lean_mark_persistent(l_Std_Time_Database_TZdb_parseTZIfFromDisk___closed__2); +l_Std_Time_Database_TZdb_parseTZIfFromDisk___closed__3 = _init_l_Std_Time_Database_TZdb_parseTZIfFromDisk___closed__3(); +lean_mark_persistent(l_Std_Time_Database_TZdb_parseTZIfFromDisk___closed__3); l_Std_Time_Database_TZdb_idFromPath___closed__1 = _init_l_Std_Time_Database_TZdb_idFromPath___closed__1(); lean_mark_persistent(l_Std_Time_Database_TZdb_idFromPath___closed__1); l_Std_Time_Database_TZdb_idFromPath___closed__2 = _init_l_Std_Time_Database_TZdb_idFromPath___closed__2(); @@ -815,6 +1460,14 @@ l_Std_Time_Database_TZdb_localRules___closed__5 = _init_l_Std_Time_Database_TZdb lean_mark_persistent(l_Std_Time_Database_TZdb_localRules___closed__5); l_Std_Time_Database_TZdb_localRules___closed__6 = _init_l_Std_Time_Database_TZdb_localRules___closed__6(); lean_mark_persistent(l_Std_Time_Database_TZdb_localRules___closed__6); +l_Std_Time_Database_TZdb_inst___lambda__1___closed__1 = _init_l_Std_Time_Database_TZdb_inst___lambda__1___closed__1(); +lean_mark_persistent(l_Std_Time_Database_TZdb_inst___lambda__1___closed__1); +l_Std_Time_Database_TZdb_inst___lambda__1___closed__2 = _init_l_Std_Time_Database_TZdb_inst___lambda__1___closed__2(); +lean_mark_persistent(l_Std_Time_Database_TZdb_inst___lambda__1___closed__2); +l_Std_Time_Database_TZdb_inst___lambda__2___closed__1 = _init_l_Std_Time_Database_TZdb_inst___lambda__2___closed__1(); +lean_mark_persistent(l_Std_Time_Database_TZdb_inst___lambda__2___closed__1); +l_Std_Time_Database_TZdb_inst___lambda__3___closed__1 = _init_l_Std_Time_Database_TZdb_inst___lambda__3___closed__1(); +lean_mark_persistent(l_Std_Time_Database_TZdb_inst___lambda__3___closed__1); l_Std_Time_Database_TZdb_inst___closed__1 = _init_l_Std_Time_Database_TZdb_inst___closed__1(); lean_mark_persistent(l_Std_Time_Database_TZdb_inst___closed__1); l_Std_Time_Database_TZdb_inst___closed__2 = _init_l_Std_Time_Database_TZdb_inst___closed__2(); diff --git a/stage0/stdlib/Std/Time/Zoned/Database/TzIf.c b/stage0/stdlib/Std/Time/Zoned/Database/TzIf.c index 0dd039d48e..539924f53a 100644 --- a/stage0/stdlib/Std/Time/Zoned/Database/TzIf.c +++ b/stage0/stdlib/Std/Time/Zoned/Database/TzIf.c @@ -22,6 +22,7 @@ static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZon LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_parseFooter___spec__3(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_parseLocalTimeTypes___closed__1; static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprTZifV1____x40_Std_Time_Zoned_Database_TzIf___hyg_532____closed__15; +uint8_t lean_uint8_of_nat(lean_object*); static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprLocalTimeType____x40_Std_Time_Zoned_Database_TzIf___hyg_278____closed__14; static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprHeader____x40_Std_Time_Zoned_Database_TzIf___hyg_76____closed__17; LEAN_EXPORT lean_object* l_Std_Time_TimeZone_TZif_instInhabitedLeapSecond; @@ -85,6 +86,7 @@ LEAN_EXPORT lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_Ti LEAN_EXPORT lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_pu64(lean_object*); LEAN_EXPORT lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_parseTransitionTimes___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_toInt32(lean_object*); +extern uint32_t l_instInhabitedUInt32; static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_toInt64___closed__2; LEAN_EXPORT lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprTZifV2____x40_Std_Time_Zoned_Database_TzIf___hyg_748____boxed(lean_object*, lean_object*); lean_object* lean_string_push(lean_object*, uint32_t); @@ -113,7 +115,7 @@ LEAN_EXPORT lean_object* l_repr___at___private_Std_Time_Zoned_Database_TzIf_0__S static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprLocalTimeType____x40_Std_Time_Zoned_Database_TzIf___hyg_278____closed__6; static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_parseTZifV2___closed__1; LEAN_EXPORT lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_parseFooter(lean_object*); -static lean_object* l_Std_Time_TimeZone_TZif_instInhabitedHeader___closed__1; +static uint8_t l_Std_Time_TimeZone_TZif_instInhabitedHeader___closed__1; static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprTZif____x40_Std_Time_Zoned_Database_TzIf___hyg_838____closed__7; static lean_object* l_Std_Time_TimeZone_TZif_instReprTZifV1___closed__1; LEAN_EXPORT lean_object* l_panic___at___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_toUInt32___spec__1___boxed__const__1; @@ -182,6 +184,7 @@ static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZon static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprLocalTimeType____x40_Std_Time_Zoned_Database_TzIf___hyg_278____closed__7; static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprHeader____x40_Std_Time_Zoned_Database_TzIf___hyg_76____closed__16; static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprLocalTimeType____x40_Std_Time_Zoned_Database_TzIf___hyg_278____closed__1; +static uint32_t l_Std_Time_TimeZone_TZif_instInhabitedHeader___closed__2; LEAN_EXPORT lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_toInt64(lean_object*); LEAN_EXPORT lean_object* l_Std_Time_TimeZone_TZif_instInhabitedHeader; static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_parseHeader___closed__2; @@ -191,6 +194,8 @@ LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Std_Time_Zone static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprLocalTimeType____x40_Std_Time_Zoned_Database_TzIf___hyg_278____closed__13; LEAN_EXPORT lean_object* l_repr___at___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprTZifV1____x40_Std_Time_Zoned_Database_TzIf___hyg_532____spec__4(lean_object*); LEAN_EXPORT lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_pu32(lean_object*); +static lean_object* l_Std_Time_TimeZone_TZif_instInhabitedHeader___closed__3; +extern uint8_t l_instInhabitedUInt8; static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_toInt64___closed__1; LEAN_EXPORT lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprTZifV2____x40_Std_Time_Zoned_Database_TzIf___hyg_748_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Time_TimeZone_TZif_instReprHeader; @@ -229,6 +234,7 @@ LEAN_EXPORT lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_Ti static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprHeader____x40_Std_Time_Zoned_Database_TzIf___hyg_76____closed__6; static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprHeader____x40_Std_Time_Zoned_Database_TzIf___hyg_76____closed__24; static lean_object* l_Std_Time_TimeZone_TZif_instReprLocalTimeType___closed__1; +uint32_t lean_uint32_of_nat(lean_object*); static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprLocalTimeType____x40_Std_Time_Zoned_Database_TzIf___hyg_278____closed__11; LEAN_EXPORT lean_object* l_repr___at___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprTZifV1____x40_Std_Time_Zoned_Database_TzIf___hyg_532____spec__3(lean_object*); static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprTZif____x40_Std_Time_Zoned_Database_TzIf___hyg_838____closed__6; @@ -243,7 +249,6 @@ static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZon lean_object* lean_array_mk(lean_object*); LEAN_EXPORT lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_parseIndicators___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprTZifV1____x40_Std_Time_Zoned_Database_TzIf___hyg_532____spec__14(lean_object*, lean_object*); -extern uint32_t l_UInt32_instInhabited; uint8_t lean_byte_array_get(lean_object*, lean_object*); static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprTZifV1____x40_Std_Time_Zoned_Database_TzIf___hyg_532____closed__11; lean_object* lean_uint8_to_nat(uint8_t); @@ -276,7 +281,6 @@ static lean_object* l_Std_Time_TimeZone_TZif_instInhabitedLeapSecond___closed__1 static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprTZifV1____x40_Std_Time_Zoned_Database_TzIf___hyg_532____closed__22; LEAN_EXPORT lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_pu8(lean_object*); uint8_t lean_usize_dec_lt(size_t, size_t); -extern uint8_t l_UInt8_instInhabited; static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_toUInt32___closed__1; lean_object* lean_nat_add(lean_object*, lean_object*); static lean_object* l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprLocalTimeType____x40_Std_Time_Zoned_Database_TzIf___hyg_278____closed__12; @@ -788,12 +792,30 @@ x_1 = l_Std_Time_TimeZone_TZif_instReprHeader___closed__1; return x_1; } } -static lean_object* _init_l_Std_Time_TimeZone_TZif_instInhabitedHeader___closed__1() { +static uint8_t _init_l_Std_Time_TimeZone_TZif_instInhabitedHeader___closed__1() { +_start: +{ +lean_object* x_1; uint8_t x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_uint8_of_nat(x_1); +return x_2; +} +} +static uint32_t _init_l_Std_Time_TimeZone_TZif_instInhabitedHeader___closed__2() { +_start: +{ +lean_object* x_1; uint32_t x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_uint32_of_nat(x_1); +return x_2; +} +} +static lean_object* _init_l_Std_Time_TimeZone_TZif_instInhabitedHeader___closed__3() { _start: { uint8_t x_1; uint32_t x_2; lean_object* x_3; -x_1 = 0; -x_2 = 0; +x_1 = l_Std_Time_TimeZone_TZif_instInhabitedHeader___closed__1; +x_2 = l_Std_Time_TimeZone_TZif_instInhabitedHeader___closed__2; x_3 = lean_alloc_ctor(0, 0, 25); lean_ctor_set_uint8(x_3, 24, x_1); lean_ctor_set_uint32(x_3, 0, x_2); @@ -809,7 +831,7 @@ static lean_object* _init_l_Std_Time_TimeZone_TZif_instInhabitedHeader() { _start: { lean_object* x_1; -x_1 = l_Std_Time_TimeZone_TZif_instInhabitedHeader___closed__1; +x_1 = l_Std_Time_TimeZone_TZif_instInhabitedHeader___closed__3; return x_1; } } @@ -1194,14 +1216,14 @@ return x_1; static lean_object* _init_l_Std_Time_TimeZone_TZif_instInhabitedLocalTimeType___closed__1() { _start: { -uint8_t x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = 0; -x_2 = l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprLocalTimeType____x40_Std_Time_Zoned_Database_TzIf___hyg_278____closed__6; -x_3 = 0; +lean_object* x_1; uint8_t x_2; uint8_t x_3; lean_object* x_4; +x_1 = l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprLocalTimeType____x40_Std_Time_Zoned_Database_TzIf___hyg_278____closed__6; +x_2 = 0; +x_3 = l_Std_Time_TimeZone_TZif_instInhabitedHeader___closed__1; x_4 = lean_alloc_ctor(0, 1, 2); -lean_ctor_set(x_4, 0, x_2); -lean_ctor_set_uint8(x_4, sizeof(void*)*1, x_3); -lean_ctor_set_uint8(x_4, sizeof(void*)*1 + 1, x_1); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set_uint8(x_4, sizeof(void*)*1, x_2); +lean_ctor_set_uint8(x_4, sizeof(void*)*1 + 1, x_3); return x_4; } } @@ -2929,7 +2951,7 @@ static lean_object* _init_l_Std_Time_TimeZone_TZif_instInhabitedTZifV1___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Time_TimeZone_TZif_instInhabitedHeader___closed__1; +x_1 = l_Std_Time_TimeZone_TZif_instInhabitedHeader___closed__3; x_2 = l_Std_Time_TimeZone_TZif_instInhabitedTZifV1___closed__1; x_3 = lean_alloc_ctor(0, 8, 0); lean_ctor_set(x_3, 0, x_1); @@ -3437,7 +3459,7 @@ static lean_object* _init_l_panic___at___private_Std_Time_Zoned_Database_TzIf_0_ _start: { uint32_t x_1; lean_object* x_2; -x_1 = l_UInt32_instInhabited; +x_1 = l_instInhabitedUInt32; x_2 = lean_box_uint32(x_1); return x_2; } @@ -4988,7 +5010,7 @@ if (x_17 == 0) lean_object* x_18; lean_object* x_19; uint8_t x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; uint8_t x_24; uint8_t x_25; x_18 = lean_ctor_get(x_9, 0); x_19 = lean_ctor_get(x_9, 1); -x_20 = l_UInt8_instInhabited; +x_20 = l_instInhabitedUInt8; x_21 = lean_box(x_20); x_22 = lean_array_get(x_21, x_1, x_7); x_23 = lean_unbox(x_22); @@ -5031,7 +5053,7 @@ x_34 = lean_ctor_get(x_9, 1); lean_inc(x_34); lean_inc(x_33); lean_dec(x_9); -x_35 = l_UInt8_instInhabited; +x_35 = l_instInhabitedUInt8; x_36 = lean_box(x_35); x_37 = lean_array_get(x_36, x_1, x_7); x_38 = lean_unbox(x_37); @@ -6733,7 +6755,9 @@ lean_mark_persistent(l_Std_Time_TimeZone_TZif_instReprHeader___closed__1); l_Std_Time_TimeZone_TZif_instReprHeader = _init_l_Std_Time_TimeZone_TZif_instReprHeader(); lean_mark_persistent(l_Std_Time_TimeZone_TZif_instReprHeader); l_Std_Time_TimeZone_TZif_instInhabitedHeader___closed__1 = _init_l_Std_Time_TimeZone_TZif_instInhabitedHeader___closed__1(); -lean_mark_persistent(l_Std_Time_TimeZone_TZif_instInhabitedHeader___closed__1); +l_Std_Time_TimeZone_TZif_instInhabitedHeader___closed__2 = _init_l_Std_Time_TimeZone_TZif_instInhabitedHeader___closed__2(); +l_Std_Time_TimeZone_TZif_instInhabitedHeader___closed__3 = _init_l_Std_Time_TimeZone_TZif_instInhabitedHeader___closed__3(); +lean_mark_persistent(l_Std_Time_TimeZone_TZif_instInhabitedHeader___closed__3); l_Std_Time_TimeZone_TZif_instInhabitedHeader = _init_l_Std_Time_TimeZone_TZif_instInhabitedHeader(); lean_mark_persistent(l_Std_Time_TimeZone_TZif_instInhabitedHeader); l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprLocalTimeType____x40_Std_Time_Zoned_Database_TzIf___hyg_278____closed__1 = _init_l___private_Std_Time_Zoned_Database_TzIf_0__Std_Time_TimeZone_TZif_reprLocalTimeType____x40_Std_Time_Zoned_Database_TzIf___hyg_278____closed__1();